@charset "UTF-8";
/* #Imports
   @mixin ================================================= */
/* #Reset & Basics (Inspired by E. Meyers)
   @mixin ================================================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, button, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

/* blockquote, q
  quotes: none */
/* blockquote
  &:before, &:after
    content: ''
    content: none */
/* q
  &:before, &:after
    content: ''
    content: none */
table {
  border-spacing: 0; }

/* #Mozilla fixes
   @mixin ================================================= */
button::-moz-focus-inner {
  border: 0;
  padding: 0; }

input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/* #Buttons
   @mixin ================================================= */
input[type="submit"], input[type="reset"], input[type="button"] {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #000;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
  padding: 0px;
  margin: 0px;
  border: 0px;
  cursor: pointer;
  margin: 0px;
  background: #30AEBB;
  display: inline-block;
  text-align: center;
  color: #fff;
  line-height: 40px;
  padding: 0 50px; }
  input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
    background: #229DAA;
    cursor: pointer; }
  input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active {
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.6); }

/* #Input
   @mixin ================================================= */
input[type="text"], input[type="password"], input[type="email"] {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #000;
  border: 0px;
  font-size: 16px;
  padding: 8px 0;
  text-indent: 8px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05), 1px 1px 1px #fff;
  margin: 0px; }
  input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus {
    outline: none; }

input[readonly] {
  background-color: #f5f5f5;
  border-color: #ddd;
  color: #555555; }

input.invalid[type="text"], input.invalid[type="password"], input.invalid[type="email"] {
  background: #ffd5d5; }

textarea.invalid {
  background: #ffd5d5; }

input[type="checkbox"] {
  margin: 0px;
  padding: 0px;
  height: 20px;
  width: 20px;
  border: 2px solid #ccc;
  background: #eee; }

/* #Textarea
   @mixin ================================================= */
textarea, select {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  background: #fff;
  color: #000;
  font-size: 16px;
  line-height: normal;
  width: 100%;
  border: 1px #ccc solid;
  padding: 0px;
  background: #fff;
  color: #000;
  width: 200px;
  border: 0px;
  font-size: 16px;
  padding: 8px 0;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05), 1px 1px 1px #fff;
  margin: 0px;
  resize: none; }

select {
  text-indent: 8px;
  outline: none !important; }

textarea {
  text-indent: 0px;
  padding: 8px; }

select {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  width: 161px;
  color: #666;
  background: #fff;
  width: 200px;
  height: 36px;
  overflow: hidden;
  padding: 0 35px 0 0;
  box-shadow: 0px 1px 0px #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("/static/img/select.png") !important;
  background-repeat: no-repeat !important;
  background-position: right !important;
  appearance: none; }
  select:hover {
    cursor: pointer; }

input:focus:required:invalid:focus,
textarea:focus:required:invalid:focus,
select:focus:required:invalid:focus,
input.ng-invalid-duplicate {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #f8b9b7;
  -moz-box-shadow: 0 0 6px #f8b9b7;
  box-shadow: 0 0 6px #f8b9b7; }

.formElement {
  margin-bottom: 9px; }

.inputLabel {
  height: 38px;
  line-height: 38px;
  margin-bottom: 5px; }
  .inputLabel label {
    display: inline;
    float: left; }
  .inputLabel span {
    float: right;
    margin: 0 auto;
    color: #6f6f6f; }
  .inputLabel input, .inputLabel select {
    float: right;
    width: 60%; }

.inputBorders {
  padding-top: 5px;
  margin-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("/static/fonts/glyphiconshalflings-regular.eot");
  src: url("/static/fonts/glyphiconshalflings-regular.eot?#iefix") format("embedded-opentype"), url("/static/fonts/glyphiconshalflings-regular.woff") format("woff"), url("/static/fonts/glyphiconshalflings-regular.ttf") format("truetype"), url("/static/fonts/glyphiconshalflings-regular.svg#glyphicons_halflingsregular") format("svg");
  font-style: normal;
  font-weight: normal; }

.glyphicon, .tuva-icon.filter:before, .tuva-icon.pencil:before, .tuva-icon.download:before, .tuva-icon.help:before, .tuva-icon.more-options:before, .tuva-icon.ti-attribute-search:before, .tuva-icon.ti-hide-unhide-attribute:before, .tuva-icon.ti-add-new-attribute:before {
  vertical-align: middle; }

.glyphicon:before, .tuva-icon.filter:before, .tuva-icon.pencil:before, .tuva-icon.download:before, .tuva-icon.help:before, .tuva-icon.more-options:before, .tuva-icon.ti-attribute-search:before, .tuva-icon.ti-hide-unhide-attribute:before, .tuva-icon.ti-add-new-attribute:before {
  font-family: 'Glyphicons Halflings';
  font-style: normal; }

.glyphicon-asterisk:before {
  content: "\2a"; }

.glyphicon-plus:before, .tuva-icon.ti-add-new-attribute:before {
  content: "\2b"; }

.glyphicon-euro,
.glyphicon-eur:before {
  content: "\20ac"; }

.glyphicon-minus:before {
  content: "\2212"; }

.glyphicon-cloud:before {
  content: "\2601"; }

.glyphicon-envelope:before {
  content: "\2709"; }

.glyphicon-pencil:before, .tuva-icon.pencil:before {
  content: "\270f"; }

.glyphicon-glass:before {
  content: "\e001"; }

.glyphicon-music:before {
  content: "\e002"; }

.glyphicon-search:before, .tuva-icon.ti-attribute-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, .tuva-icon.more-options: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, .tuva-icon.download: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, .tuva-icon.help: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, .tuva-icon.ti-hide-unhide-attribute: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, .tuva-icon.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"; }

/* #Tables
   @mixin ================================================= */
.table {
  width: 100%;
  vertical-align: top; }
  .table td {
    vertical-align: top; }

.twoColumn td {
  width: 50%; }

.twoColumnGR td:first-child {
  width: 38%; }

.twoColumnGR td:last-child {
  width: 62%; }

.twoColumnGR2 td:first-child {
  width: 62%; }

.twoColumnGR2 td:last-child {
  width: 38%; }

.threeColumn td {
  width: 33%; }

.fourColumn td {
  width: 25%; }

.fiveColumn td {
  width: 20%; }

.sixColumn td {
  width: 18%; }

.plansTable {
  width: 80%;
  margin: 0 auto;
  border-bottom: 1px solid #D4D4D0; }
  .plansTable th {
    font-size: 18px;
    width: 20%;
    line-height: 34px;
    text-align: center; }
    .plansTable th:nth-child(2) {
      border-right: 1px solid #D4D4D0; }
  .plansTable td:nth-child(1) {
    padding-left: 20px; }
  .plansTable td:nth-child(2) {
    border-right: 1px solid #D4D4D0;
    text-align: center;
    color: #30AEBB; }
    .plansTable td:nth-child(2) i.glyphicon-minus {
      color: #D4D4D0; }
  .plansTable td:nth-child(3) {
    text-align: center;
    color: #30AEBB; }
  .plansTable tr.planCategory {
    background: rgba(0, 0, 0, 0.05); }
    .plansTable tr.planCategory td {
      width: 20%;
      font-size: 18px;
      line-height: 34px; }
      .plansTable tr.planCategory td:nth-child(2) {
        border-right: none; }

/* #Style
   @mixin ================================================= */
body {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  background: #30AEBB;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0px;
  padding: 0px;
  cursor: default;
  min-width: 768px; }

a, a:visited, a:hover, a:active {
  color: #30AEBB;
  text-decoration: none;
  border: 0px;
  outline: 0; }

a:hover {
  text-decoration: underline; }

a:active {
  color: #268892; }

.datasetWrapper {
  background: #F7F7F2;
  padding-top: 46px;
  height: 100%; }

.embedDatasetWrapper {
  padding-top: 0px; }

.wrapper {
  min-height: calc(100vh - 60px);
  padding-top: 50px; }
  .wrapper .container {
    padding: 0 10px; }

.container {
  max-width: 960px;
  margin: 0 auto; }

.right {
  float: right; }

.leftTabMenu {
  float: left; }
  .leftTabMenu ul {
    list-style: none;
    margin-left: 0px; }
    .leftTabMenu ul .selected {
      border-left: solid 4px #FFCA05;
      color: #30AEBB;
      padding-left: 10px; }
    .leftTabMenu ul .selectable a {
      color: #494949; }
      .leftTabMenu ul .selectable a:hover {
        color: #30AEBB; }
    .leftTabMenu ul li {
      padding: 5px 0px;
      padding-left: 15px; }

.disabledText {
  color: #808080; }

.tag {
  white-space: nowrap;
  display: inline-block;
  line-height: 28px;
  padding: 0 9px 0 4px;
  background: #F4E8DA;
  color: #494949;
  height: 28px;
  margin-right: 5px;
  margin-bottom: 8px;
  margin-left: 12px;
  position: relative; }
  .tag:visited {
    color: #494949; }
  .tag:hover {
    color: #30AEBB; }
  .tag:before {
    width: 0;
    height: 0;
    border: 14px solid;
    border-color: transparent #F4E8DA transparent transparent;
    content: "";
    position: absolute;
    left: -27px; }
  .tag:after {
    content: ".";
    position: absolute;
    left: -8px;
    top: -7.5px;
    color: #fff;
    font-weight: bold;
    font-size: 30px; }

.accountType .tag {
  background: #30AEBB;
  color: #ffffff;
  padding-left: 9px;
  margin-left: 0; }
  .accountType .tag:before, .accountType .tag:after {
    display: none; }

.basicHeader {
  line-height: 60px;
  display: table-cell;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  height: 60px; }
  .basicHeader h1, .basicHeader h2, .basicHeader h3, .basicHeader h4 {
    line-height: 60px; }

.textContent {
  min-height: 600px;
  padding: 20px 0;
  margin: 0 auto; }
  .textContent li, .textContent p {
    margin: 0 auto;
    margin-bottom: 1em;
    max-width: 75ch; }

.contentArea {
  min-height: 600px;
  width: 630px;
  padding: 20px 0;
  width: 60%; }

.contentFullArea {
  min-height: 600px;
  padding: 20px 0;
  padding-right: 30px;
  width: 100%; }

.sidebar {
  width: 300px;
  float: right;
  background: #fff;
  border-radius: 5px;
  margin-top: 14px;
  margin-left: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #e4e4d2; }
  .sidebar .header {
    font-weight: bold;
    background: #e4e4d2;
    margin-left: 0px !important;
    line-height: 46px;
    border-bottom: 1px solid #e4e4d2;
    padding-left: 14px; }
  .sidebar .item {
    padding: 14px 0;
    border-bottom: 1px solid #e4e4d2;
    margin-left: 14px;
    position: relative; }
    .sidebar .item:hover {
      color: #30AEBB;
      cursor: pointer; }
  .sidebar .selected {
    color: #30AEBB;
    background: #fff;
    background: -moz-linear-gradient(left, #fff 0%, #F7F7F2 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #fff), color-stop(100%, #F7F7F2));
    background: -webkit-linear-gradient(left, #fff 0%, #F7F7F2 100%);
    background: -o-linear-gradient(left, #fff 0%, #F7F7F2 100%);
    background: -ms-linear-gradient(left, #fff 0%, #F7F7F2 100%);
    background: linear-gradient(to right, #fff 0%, #F7F7F2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr=' $to',GradientType=1 ); }

.fixedPositionSidebar {
  position: fixed;
  top: 46px;
  right: 50%;
  margin-right: -480px; }

.center {
  text-align: center; }

.padding5px {
  padding: 5px 0; }

.padding8px {
  padding: 8px 0; }

.padding10px {
  padding: 10px 0; }

.padding14px {
  padding: 14px 0; }

.faqQuestion {
  font-weight: bold;
  line-height: 40px; }

.faqAnswer {
  margin-left: 15px; }

.teal {
  color: #30AEBB; }

.white-bg {
  background: #ffffff; }

.lyellow {
  color: #FFCA05; }

.ar-SD {
  direction: rtl; }

/* iOS Safari crash on long press on text element */
svg * {
  -webkit-user-select: none;
  font-family: 'Montserrat', sans-serif; }

blockquote {
  position: relative; }
  blockquote:before {
    position: absolute;
    content: '“';
    left: -20px;
    font-size: 30px;
    font-weight: bold; }

.unstyled {
  list-style: none;
  margin: 0;
  padding: 0; }

.large-text {
  font-size: 16px; }

.print-button {
  float: right;
  color: #000 !important;
  font-size: 23px; }
  .print-button :hover {
    color: #30AEBB; }

.import-button-wrapper {
  text-align: center; }
  .import-button-wrapper .button.big, .import-button-wrapper .django-inapp-survey-wrapper .big.next-button, .django-inapp-survey-wrapper .import-button-wrapper .big.next-button, .import-button-wrapper .django-inapp-survey-wrapper .big.submit-button, .django-inapp-survey-wrapper .import-button-wrapper .big.submit-button {
    padding: 0 20px; }
  .import-button-wrapper .drop-box {
    background: #F8F8F8;
    border: 5px dashed #DDD;
    text-align: center;
    padding: 30px 10px; }
    .import-button-wrapper .drop-box.dragover {
      border: 5px dashed #30AEBB; }
  .import-button-wrapper .import-options {
    display: flex; }
    .import-button-wrapper .import-options > div:first-child a {
      display: block;
      text-align: center; }
      .import-button-wrapper .import-options > div:first-child a .big {
        display: block; }
      .import-button-wrapper .import-options > div:first-child a:first-child {
        margin-bottom: 10px; }
    .import-button-wrapper .import-options > div:last-child {
      flex: 1;
      margin-left: 20px; }

.container.userdataset-progress-bar {
  padding-top: 35px; }
  .container.userdataset-progress-bar > h2 {
    display: inline-block; }
    .container.userdataset-progress-bar > h2.active {
      color: #26AEBC; }

.container.legal .text-head {
  padding: 25px 5px;
  padding-bottom: 10px; }

.container.legal hr {
  border-top: 1px solid #ccc;
  border-bottom: none; }

.container.legal ol {
  padding-top: 15px;
  padding-bottom: 15px; }

.normal-premium-block, .userdatasets-wrapper .premium-block {
  text-align: center;
  padding: 30px 0;
  max-width: 400px;
  margin: 0 auto 15px;
  background-color: #FFCA05;
  background-image: linear-gradient(rgba(117, 117, 117, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(117, 117, 117, 0.15) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 5px 5px, 5px 5px; }

.markdown-content-wrapper {
  line-height: 28px; }
  .markdown-content-wrapper ul, .markdown-content-wrapper ol {
    margin: 0.75em 0 0.75em 35px !important; }
  .markdown-content-wrapper li {
    line-height: 2em; }
  .markdown-content-wrapper table {
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    margin-bottom: 1em; }
    .markdown-content-wrapper table td, .markdown-content-wrapper table th {
      border-right: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      padding: 6px 13px; }
    .markdown-content-wrapper table th {
      font-weight: bold; }
  .markdown-content-wrapper blockquote {
    margin: 1.5em 0; }
    .markdown-content-wrapper blockquote:before {
      display: none; }
  .markdown-content-wrapper a {
    word-wrap: break-word; }
  .markdown-content-wrapper p {
    margin: 0 0 1em; }
  .markdown-content-wrapper h1, .markdown-content-wrapper h2, .markdown-content-wrapper h3, .markdown-content-wrapper h4, .markdown-content-wrapper h5, .markdown-content-wrapper h6 {
    margin: 0 0 0.5em; }

#toast-container {
  top: auto !important;
  bottom: 50px;
  z-index: 9999999 !important; }
  #toast-container .toast-info .toast-message a {
    color: #fff;
    text-decoration: underline; }

.ellipsis, ul.tuva-tabs.responsive li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

ul.tuva-tabs {
  list-style: none;
  padding: 0;
  margin: 0; }
  ul.tuva-tabs.responsive {
    display: flex; }
    @media screen and (max-width: 800px) {
      ul.tuva-tabs.responsive li {
        padding: 8px 10px; } }
    @media screen and (max-width: 600px) {
      ul.tuva-tabs.responsive li {
        padding: 8px 6px;
        position: relative; }
        ul.tuva-tabs.responsive li span.badge-icon {
          padding: 0px 5px;
          line-height: 1.2;
          font-size: 10px;
          top: 0px;
          position: absolute;
          right: 0px; } }
  ul.tuva-tabs li {
    padding: 8px 15px;
    cursor: pointer;
    display: inline-block; }
    ul.tuva-tabs li h3 {
      margin: 0; }
    ul.tuva-tabs li.active {
      border-bottom: 4px solid #F9C934;
      color: #30AEBB; }

ul.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: inline-flex; }
  ul.flex-container li.flex-item {
    background: #fff;
    width: 25%;
    height: 50px;
    margin: 15px;
    line-height: 50px;
    font-weight: bold;
    text-align: center; }

.login-modal .ngdialog-content {
  width: 470px !important; }

.login-modal hr, .registration-modal hr {
  border: 1px solid #ccc;
  margin: 7px 0; }

.login-modal table td, .registration-modal table td {
  text-align: left;
  padding: 5px 8px; }

.login-modal .ngdialog-content input[type="text"], .login-modal .ngdialog-content input[type="password"], .login-modal .ngdialog-content select, .login-modal .ngdialog-content textarea, .registration-modal .ngdialog-content input[type="text"], .registration-modal .ngdialog-content input[type="password"], .registration-modal .ngdialog-content select, .registration-modal .ngdialog-content textarea {
  width: 100%; }

.ngdialog-content ul.tuva-tabs li.active {
  color: #30AEBB; }

.ngdialog-content button, .ngdialog-content input[type="submit"] {
  margin: 16px; }

.ngdialog-content .button, .ngdialog-content .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .ngdialog-content .next-button, .ngdialog-content .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper .ngdialog-content .submit-button {
  line-height: 40px;
  padding: 0 50px; }
  .ngdialog-content .button:disabled, .ngdialog-content .django-inapp-survey-wrapper .next-button:disabled, .django-inapp-survey-wrapper .ngdialog-content .next-button:disabled, .ngdialog-content .django-inapp-survey-wrapper .submit-button:disabled, .django-inapp-survey-wrapper .ngdialog-content .submit-button:disabled {
    opacity: 0.5;
    cursor: wait; }

.ngdialog-content .button.cancel, .ngdialog-content .django-inapp-survey-wrapper .cancel.next-button, .django-inapp-survey-wrapper .ngdialog-content .cancel.next-button, .ngdialog-content .django-inapp-survey-wrapper .cancel.submit-button, .django-inapp-survey-wrapper .ngdialog-content .cancel.submit-button {
  background-color: #EFEFE1;
  color: #000000; }
  .ngdialog-content .button.cancel:hover, .ngdialog-content .django-inapp-survey-wrapper .cancel.next-button:hover, .django-inapp-survey-wrapper .ngdialog-content .cancel.next-button:hover, .ngdialog-content .django-inapp-survey-wrapper .cancel.submit-button:hover, .django-inapp-survey-wrapper .ngdialog-content .cancel.submit-button:hover {
    background-color: #E2E2D5; }

.ngdialog-content .button.danger, .ngdialog-content .django-inapp-survey-wrapper .danger.next-button, .django-inapp-survey-wrapper .ngdialog-content .danger.next-button, .ngdialog-content .django-inapp-survey-wrapper .danger.submit-button, .django-inapp-survey-wrapper .ngdialog-content .danger.submit-button {
  background-color: #eb7878; }
  .ngdialog-content .button.danger:hover, .ngdialog-content .django-inapp-survey-wrapper .danger.next-button:hover, .django-inapp-survey-wrapper .ngdialog-content .danger.next-button:hover, .ngdialog-content .django-inapp-survey-wrapper .danger.submit-button:hover, .django-inapp-survey-wrapper .ngdialog-content .danger.submit-button:hover {
    background-color: #cd6464; }

.ngdialog.assign-activity-modal .button, .ngdialog.assign-activity-modal .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .ngdialog.assign-activity-modal .next-button, .ngdialog.assign-activity-modal .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper .ngdialog.assign-activity-modal .submit-button {
  padding: 0; }

.staff-menu a {
  color: red !important; }

.onboarding-block {
  background-color: white;
  border: 1px solid #ccc;
  padding: 30px;
  max-width: 400px;
  margin: 60px auto;
  line-height: 30px; }
  .onboarding-block.preferences {
    max-width: 630px; }
  .onboarding-block input[type="text"], .onboarding-block input[type="password"], .onboarding-block select {
    width: 100%; }

.manage-schools input {
  width: 100%; }

.angucomplete-dropdown {
  width: 100%;
  overflow-y: auto;
  max-height: 250px; }

.angucomplete-description {
  font-size: 12px; }

div.hopscotch-bubble {
  border: none !important; }
  div.hopscotch-bubble h3, div.hopscotch-bubble .hopscotch-bubble-content {
    font: 14px/22px Montserrat, Arial, "Helvetica Neue", Helvetica, sans-serif; }
  div.hopscotch-bubble .hopscotch-bubble-arrow-border {
    border-color: transparent !important; }
  div.hopscotch-bubble .hopscotch-bubble-content {
    margin: 0 !important; }
  div.hopscotch-bubble .button, div.hopscotch-bubble .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper div.hopscotch-bubble .next-button, div.hopscotch-bubble .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper div.hopscotch-bubble .submit-button {
    min-width: 50px;
    font-weight: bold; }
  div.hopscotch-bubble .skip-tour {
    font-weight: bold; }

.tour-actions {
  text-align: right; }
  .tour-actions > div {
    display: inline-block;
    width: 50%; }
  .tour-actions > div:first-child {
    text-align: left; }

.tuva-bubble-holder {
  position: relative; }

.tuva-bubble {
  cursor: default;
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #26aebc;
  width: 300px;
  padding: 20px;
  color: #494949;
  text-align: left;
  font-weight: normal; }
  .tuva-bubble p {
    margin: 0 0 1em; }
  .tuva-bubble a.bold {
    font-weight: bold;
    cursor: pointer; }
  .tuva-bubble:before, .tuva-bubble:after {
    bottom: 100%;
    right: 20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .tuva-bubble:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: #26aebc;
    border-width: 14px;
    margin-left: -14px; }
  .tuva-bubble:after {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px;
    right: 24px; }

.fa.bookmarked {
  cursor: pointer;
  font-size: 20px; }
  .fa.bookmarked.fa-star-o {
    color: #A9A9A0; }
    .fa.bookmarked.fa-star-o:hover {
      color: #351d1d; }
  .fa.bookmarked.fa-star:hover {
    opacity: 0.8; }
  .fa.bookmarked.notenabled {
    opacity: 1 !important;
    cursor: default !important; }

.django-inapp-survey-wrapper {
  z-index: 9999990 !important;
  box-shadow: 5px -3px 3px 0px rgba(0, 0, 0, 0.16);
  line-height: 30px; }
  .django-inapp-survey-wrapper input {
    display: inline-block; }
  .django-inapp-survey-wrapper p {
    margin: 0; }
  .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .submit-button {
    outline: none; }
  .django-inapp-survey-wrapper .previous-button {
    background: none;
    outline: none;
    color: #30AEBB; }
  .django-inapp-survey-wrapper h1, .django-inapp-survey-wrapper h2, .django-inapp-survey-wrapper h3, .django-inapp-survey-wrapper h4, .django-inapp-survey-wrapper h5, .django-inapp-survey-wrapper h6 {
    margin: 0 0 0.5em; }

.django-inapp-survey-success {
  color: #30AEBB !important; }

.django-inapp-survey-close {
  font-size: 25px; }

#intercom-container {
  z-index: 999999 !important; }

.twitter-picker input {
  height: 30px !important; }

.range-slider label input {
  display: inline-block;
  box-shadow: none; }

.tuva-loader {
  width: 100%;
  height: 100%;
  display: table; }
  .tuva-loader > div {
    display: table-cell;
    vertical-align: middle;
    text-align: center; }
  .tuva-loader .endless_loading {
    display: inline-block; }

.spinner {
  width: 40px;
  height: 40px;
  position: relative; }

.double-bounce1 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #cd6464;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2.0s infinite ease-in-out;
  animation: bounce 2.0s infinite ease-in-out; }

.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #30AEBB;
  opacity: 0.618;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2.0s infinite ease-in-out;
  animation: bounce 2.0s infinite ease-in-out;
  -webkit-animation-delay: -1s;
  animation-delay: -1s; }

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }

@keyframes bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

/* #Typography
   @mixin ================================================= */
body {
  font-size: 14px;
  line-height: 22px;
  color: #494949;
  counter-reset: pages; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal; }

h1 {
  font-size: 36px;
  line-height: 45px; }

h2 {
  font-size: 24px;
  line-height: 34px; }

h3 {
  font-size: 18px;
  line-height: 24px; }

h4 {
  font-size: 14px;
  line-height: 22px; }

.bigText {
  font-size: 42px; }

.subText {
  font-family: "Georgia";
  font-size: 12px;
  line-height: 20px;
  color: #8e8e8e; }

.smallText {
  font-size: 12px;
  line-height: 20px; }

.quotes {
  line-height: 36px;
  font-size: 34px;
  color: #494949; }

p {
  margin: 0 0 0 0; }

em {
  font-style: italic; }

strong {
  font-weight: bold; }

.italic {
  font-style: italic; }

a.tooltip {
  opacity: 1;
  cursor: pointer; }

.tooltip {
  display: inline-block;
  position: relative;
  padding: 0px;
  z-index: initial; }
  .tooltip:hover > p {
    display: block;
    z-index: 10; }
  .tooltip > p {
    display: none;
    width: 210px;
    line-height: 1.5;
    font-size: 12px;
    padding: 10px;
    position: absolute;
    background-color: gray;
    color: white;
    top: -7px;
    left: 18px; }
  .tooltip > p.left-side {
    left: -210px; }

.button, .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .submit-button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
  background: #30AEBB;
  display: inline-block;
  text-align: center;
  color: #fff; }
  .button:hover, .django-inapp-survey-wrapper .next-button:hover, .django-inapp-survey-wrapper .submit-button:hover {
    background: #229DAA;
    cursor: pointer; }
  .button:active, .django-inapp-survey-wrapper .next-button:active, .django-inapp-survey-wrapper .submit-button:active {
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.6); }

a.button, .django-inapp-survey-wrapper a.next-button, .django-inapp-survey-wrapper a.submit-button {
  color: #fff; }

.button:hover:disabled, .django-inapp-survey-wrapper .next-button:hover:disabled, .django-inapp-survey-wrapper .submit-button:hover:disabled, .button:focus:disabled, .django-inapp-survey-wrapper .next-button:focus:disabled, .django-inapp-survey-wrapper .submit-button:focus:disabled, .button:disabled, .django-inapp-survey-wrapper .next-button:disabled, .django-inapp-survey-wrapper .submit-button:disabled {
  background-color: #E2E2D5;
  color: #000;
  cursor: wait; }

.btn-group {
  display: inline-block; }

.dropdown-menu a, .dropdown-menu a:visited, .dropdown-menu a:hover, .dropdown-menu a:active {
  color: #30AEBB;
  text-decoration: none; }

.dropdown-menu li:hover {
  background: #30AEBB; }

.fixedLarge {
  line-height: 40px;
  width: 220px; }

.review {
  background: #ed9c28; }
  .review:hover {
    background: #d58512; }
  .review:active {
    background: #d58512; }

.review.disabled, .review.disabled:hover, .review.disabled:active {
  background: #f2b967; }

.cancel {
  background: #808080; }
  .cancel:hover {
    background: #6f6f6f; }
  .cancel:active {
    background: #6f6f6f; }

.cancel.disabled, .cancel.disabled:hover, .cancel.disabled:active {
  background: #bbb; }

.alt {
  background: #eb7878; }
  .alt:hover {
    background: #cd6464; }

.alt.disabled, .alt.disabled:hover, .alt.disabled:active {
  background: #ff9b9b; }

.link-button {
  color: #30AEBB;
  text-decoration: none;
  border: 0px;
  outline: 0; }
  .link-button:hover {
    cursor: pointer;
    text-decoration: underline; }
  .link-button:active {
    color: #268892; }

.small, .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper .previous-button {
  min-width: 90px;
  padding: 0 12px;
  line-height: 32px;
  font-size: 100%; }

.big {
  line-height: 40px;
  padding: 0 50px; }

.xbig {
  line-height: 50px;
  padding: 0 50px; }

.disabled, .disabled:hover, .disabled:active {
  background: #A5D5D7;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  cursor: not-allowed; }

.toggleMenu {
  width: 480px;
  line-height: 44px;
  margin: 0 auto;
  margin-top: 16px;
  border: 1px solid #ccc;
  height: 44px;
  border-radius: 5px;
  overflow: hidden; }
  .toggleMenu div {
    width: 50%;
    float: left;
    border-right: 0px solid #ccc; }
    .toggleMenu div:last-child {
      border-right: 0px solid transparent; }
    .toggleMenu div:hover {
      cursor: pointer; }
  .toggleMenu .selected {
    background: #ccc; }

.grades {
  height: 30px;
  margin-bottom: 5px;
  border-radius: 0px;
  overflow: hidden;
  display: inline-block;
  border: 1px solid #DFDFDA;
  border-radius: 5px; }
  .grades .grading {
    float: left;
    color: rgba(0, 0, 0, 0.3);
    background: #fff;
    border-right: 1px solid #DFDFDA;
    width: 30px;
    height: 30px;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
    padding: 0 5px; }
    .grades .grading:last-child {
      border-right: 0px solid rgba(0, 0, 0, 0); }
    .grades .grading:hover {
      background: #DFDFDA; }
  .grades .selected {
    color: orange;
    background: #DFDFDA; }

.editable-buttons button {
  display: none; }

.button-group.together {
  display: inline-block; }
  .button-group.together .button, .button-group.together .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .button-group.together .next-button, .button-group.together .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper .button-group.together .submit-button {
    outline: none;
    border-radius: 0;
    padding: .5em 1em;
    line-height: 1em;
    float: left;
    background-color: #f7f7f2;
    border: 1px solid #30AEBB;
    color: #30AEBB; }
    .button-group.together .button.active, .button-group.together .django-inapp-survey-wrapper .active.next-button, .django-inapp-survey-wrapper .button-group.together .active.next-button, .button-group.together .django-inapp-survey-wrapper .active.submit-button, .django-inapp-survey-wrapper .button-group.together .active.submit-button {
      background-color: #30AEBB;
      color: #fff; }
    .button-group.together .button:first-child, .button-group.together .django-inapp-survey-wrapper .next-button:first-child, .django-inapp-survey-wrapper .button-group.together .next-button:first-child, .button-group.together .django-inapp-survey-wrapper .submit-button:first-child, .django-inapp-survey-wrapper .button-group.together .submit-button:first-child {
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px; }
    .button-group.together .button:last-child, .button-group.together .django-inapp-survey-wrapper .next-button:last-child, .django-inapp-survey-wrapper .button-group.together .next-button:last-child, .button-group.together .django-inapp-survey-wrapper .submit-button:last-child, .django-inapp-survey-wrapper .button-group.together .submit-button:last-child {
      border-bottom-right-radius: 4px;
      border-top-right-radius: 4px; }

.button.danger-low-priority, .django-inapp-survey-wrapper .danger-low-priority.next-button, .django-inapp-survey-wrapper .danger-low-priority.submit-button {
  min-width: 95px;
  background-color: #fff !important;
  border: 1px solid #ccc !important;
  color: #d2322d !important; }
  .button.danger-low-priority:hover, .django-inapp-survey-wrapper .danger-low-priority.next-button:hover, .django-inapp-survey-wrapper .danger-low-priority.submit-button:hover {
    background: #d2322d !important;
    background-color: #d2322d !important;
    color: #FFFFFF !important; }
  .button.danger-low-priority:disabled, .django-inapp-survey-wrapper .danger-low-priority.next-button:disabled, .django-inapp-survey-wrapper .danger-low-priority.submit-button:disabled {
    background-color: #ccc !important;
    cursor: not-allowed;
    color: #000 !important; }

.home-banner {
  background-color: #22373d;
  padding: 12px 0;
  color: #fff;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
  font-weight: bold;
  display: none; }
  .home-banner p {
    margin: 0px; }
  .home-banner .cancel-banner {
    float: right;
    color: #fff;
    margin-right: 10px;
    background-color: #22373d;
    line-height: inherit; }
  .home-banner a {
    color: #FFCA05; }
    .home-banner a:active {
      color: #d1a500; }

#header {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #fff;
  border-bottom: 1px #e1e4e8 solid !important; }
  #header .head-options {
    height: 46px;
    line-height: 46px;
    color: #fff; }
  #header input[type="text"] {
    background: #fff url("/static/img/icons/searchIcon.png");
    background-repeat: no-repeat;
    float: right;
    height: 30px;
    margin-top: 8px;
    line-height: 22px;
    width: 240px;
    border-radius: 50px;
    padding: 0px;
    text-indent: 30px;
    margin-right: 9px;
    font-size: inherit;
    box-shadow: 0px 0px 0px transparent;
    border: 0px solid transparent;
    margin-left: 20px;
    float: left; }
  #header .right {
    float: right;
    padding: 0 9px; }
  #header .logout {
    text-transform: uppercase; }
  #header .left {
    float: left;
    height: 46px;
    overflow: hidden;
    padding: 0 9px;
    text-transform: uppercase; }
    #header .left img {
      height: 30px;
      margin-top: 8px; }
  #header .left.logo:hover {
    background: #30AEBB; }
  #header .notification {
    float: right;
    height: 18px;
    width: 18px;
    line-height: 18px;
    border-radius: 18px;
    margin-top: 9px;
    margin-left: 4px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 202, 5, 0.8);
    font-size: 80%; }
  #header .container {
    position: relative;
    max-width: 100%;
    padding: 0 9px; }
  #header li.dropdown {
    list-style: none;
    line-height: inherit;
    height: 46px; }
    #header li.dropdown .arrow {
      float: right;
      padding: 0; }
      #header li.dropdown .arrow:hover {
        background: #2a97a3; }
    #header li.dropdown:hover {
      cursor: pointer;
      background: #2a97a3; }
      #header li.dropdown:hover ul.dropdown-menu {
        display: block; }
    #header li.dropdown a.first {
      text-decoration: none;
      color: #fff;
      height: 46px;
      /*padding: 0 9px*/ }
    #header li.dropdown ul a {
      color: initial; }
  #header li.dropdown.open {
    background: #2a97a3; }
    #header li.dropdown.open a.first {
      background: #2a97a3; }
  #header .username {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100px; }

.left.selected {
  background: rgba(255, 255, 255, 0.2); }

@media only screen and (max-width: 960px) {
  #header .course-head {
    display: none; }
  #header input[type="text"] {
    width: 149px; } }

@media only screen and (max-width: 768px) {
  #header .responsive-head {
    display: none; } }

#header_grid {
  background: #30AEBB url("/static/img/spider.jpg");
  color: #fff;
  height: 300px;
  line-height: 46px;
  background-size: cover;
  background-position: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  #header_grid input[type="text"] {
    background: #fff;
    float: right;
    height: 30px;
    margin-top: 8px;
    line-height: 22px;
    width: 185px;
    border-radius: 50px;
    padding: 0px;
    text-indent: 18px;
    margin-right: 18px;
    font-size: inherit; }
  #header_grid .right {
    float: right; }
  #header_grid .left {
    float: left;
    margin-left: 18px;
    text-transform: uppercase; }
  #header_grid .grid {
    height: 100%;
    width: 100%;
    height: calc(100% - 7px);
    background-image: url("/static/img/grid.png"); }

#header_grid.teal {
  box-shadow: inset 0 -8px 0 0 #30AEBB; }

#footer {
  background: #f7f7f2;
  box-shadow: 0 300px 0 300px #f7f7f2;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 0;
  color: #494949;
  text-align: center; }
  #footer .container {
    position: relative;
    max-width: 100%;
    padding: 0 9px; }
  #footer img {
    margin-top: 20px;
    margin-bottom: 14px; }
  #footer div {
    margin-bottom: 12px;
    line-height: 12px; }
    #footer div .column {
      width: 24%;
      float: left; }
      #footer div .column .head {
        font-weight: bold; }
  #footer a {
    text-decoration: none; }
    #footer a div {
      /*display: inline-block*/
      color: #494949;
      padding: 0 8px;
      border-right: 0px;
      margin-bottom: 10px;
      line-height: 10px;
      border-right: 0px; }
      #footer a div:hover {
        color: #303030; }

#datasetPage {
  color: #666; }
  #datasetPage .headline {
    line-height: 100px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 28px;
    text-align: center; }
  #datasetPage .filterRow {
    box-sizing: initial;
    line-height: 44px;
    min-height: 44px;
    padding-bottom: 1px;
    box-shadow: inset 0px -1px 0 rgba(0, 0, 0, 0.1); }
    #datasetPage .filterRow .item {
      float: left;
      padding: 0 14px;
      cursor: pointer; }
      @media only screen and (min-width: 860px) {
        #datasetPage .filterRow .item {
          font-size: 18px; } }
      #datasetPage .filterRow .item .triangle {
        border: 6px solid transparent;
        border-top: 6px solid #ccc;
        height: 0px;
        width: 0px;
        float: right;
        margin-top: 19px;
        margin-left: 14px; }
    #datasetPage .filterRow .select {
      background: #fff;
      margin-right: 4px; }
    #datasetPage .filterRow .right {
      float: right; }
    #datasetPage .filterRow .select.right {
      margin-right: 0px; }
    #datasetPage .filterRow .select.expand {
      border-bottom: 1px solid #fff; }
    #datasetPage .filterRow .pull-right {
      float: right; }
    #datasetPage .filterRow .pull-right .teal {
      cursor: pointer; }
    #datasetPage .filterRow .pull-right span.teal {
      text-decoration: underline; }
    #datasetPage .filterRow .pull-right .active {
      font-weight: bold; }
  #datasetPage .subHeadline {
    line-height: 68px;
    font-size: 20px;
    text-align: center; }
  #datasetPage .cardTable .text div {
    font-size: 24px;
    font-family: "Georgia";
    font-style: italic;
    line-height: 36px;
    padding-right: 14px; }
  #datasetPage .expandingRow {
    display: none;
    height: 0px;
    width: 100%;
    background: #fff;
    line-height: 42px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative; }
    #datasetPage .expandingRow .padding {
      padding: 14px; }
    #datasetPage .expandingRow .close {
      position: absolute;
      top: 0;
      right: 0;
      padding-right: 14px;
      font-size: 34px; }
  #datasetPage .expandingRow.expand {
    display: block;
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.assignedByText {
  padding-right: 30px;
  float: right;
  display: none; }

.description {
  padding: 10px 0; }
  .description p {
    padding-bottom: 10px; }

.ribbon {
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #494949;
  margin: 20px 14px 20px;
  padding: 30px 0;
  -webkit-transition: all 0.382s;
  -moz-transition: all 0.382s;
  -ms-transition: all 0.382s;
  -o-transition: all 0.382s;
  transition: all 0.382s; }
  .ribbon:hover {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0), 0 0 3px rgba(0, 0, 0, 0.2); }

.dataset-list {
  border-left: 1px solid #D4D4D0;
  border-right: 1px solid #D4D4D0;
  border-bottom: 1px solid #D4D4D0;
  margin: 0 15px; }
  .dataset-list .head-row {
    background: #D4D4D0;
    text-align: left;
    line-height: 34px; }
    .dataset-list .head-row .first {
      margin-left: 10px;
      padding-left: 55px; }
  .dataset-list .sub-rows {
    line-height: 34px;
    margin-left: 10px;
    text-align: left;
    counter-increment: pages; }
    .dataset-list .sub-rows:before {
      content: counter(pages);
      float: left;
      width: 30px;
      padding-left: 10px; }

/* NEW STYLES */
.seventy {
  width: 70%; }

.thirty {
  width: 30%; }

.seventy, .thirty {
  transition: all 0.382s; }

.left {
  float: left; }

.datasetWrapper .chart-wrapper .rightArrow {
  margin-top: 0px; }

.datasetWrapper .seventy, .datasetWrapper .thirty {
  height: 100%; }

.datasetWrapper .activity-wrapper {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  background: #EAEAE8;
  color: #000; }
  .datasetWrapper .activity-wrapper textarea {
    min-height: 100px;
    width: 100%; }
  .datasetWrapper .activity-wrapper .step-title {
    background-color: #F7F7F2;
    margin: 5px;
    padding: 10px;
    position: relative; }
    .datasetWrapper .activity-wrapper .step-title .student-view-ribbon {
      bottom: 0px;
      width: 124px;
      margin: auto;
      position: absolute;
      left: 0;
      right: 0;
      padding: 2px; }
  .datasetWrapper .activity-wrapper fieldset {
    border: 0px;
    min-width: 0;
    display: table-cell; }
  .datasetWrapper .activity-wrapper > div {
    padding: 0 15px; }
    .datasetWrapper .activity-wrapper > div:first-child {
      padding-top: 10px;
      font-weight: bold; }
    .datasetWrapper .activity-wrapper > div.no-activities {
      margin: 5px 5px;
      background-color: #F7F7F2;
      padding: 20px; }
    .datasetWrapper .activity-wrapper > div.activities-list {
      margin-right: 5px;
      margin-left: 5px;
      margin-top: 5px;
      overflow: auto;
      flex: 1;
      padding: 0; }
      .datasetWrapper .activity-wrapper > div.activities-list > div.activity-item {
        background-color: #F7F7F2;
        padding: 10px 20px;
        margin-bottom: 10px; }
        .datasetWrapper .activity-wrapper > div.activities-list > div.activity-item:last-child {
          margin-bottom: 40px; }
        .datasetWrapper .activity-wrapper > div.activities-list > div.activity-item .dropdown-menu a {
          color: #000 !important; }
        .datasetWrapper .activity-wrapper > div.activities-list > div.activity-item .button, .datasetWrapper .activity-wrapper > div.activities-list > div.activity-item .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .datasetWrapper .activity-wrapper > div.activities-list > div.activity-item .next-button, .datasetWrapper .activity-wrapper > div.activities-list > div.activity-item .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper .datasetWrapper .activity-wrapper > div.activities-list > div.activity-item .submit-button {
          margin: 3px 0; }
        .datasetWrapper .activity-wrapper > div.activities-list > div.activity-item .button-group {
          padding-bottom: 0; }
          .datasetWrapper .activity-wrapper > div.activities-list > div.activity-item .button-group::after {
            content: '';
            display: block;
            clear: both; }
        .datasetWrapper .activity-wrapper > div.activities-list > div.activity-item .media-wrapper {
          margin-top: 5px; }
    .datasetWrapper .activity-wrapper > div.activity-step-wrapper {
      position: relative;
      padding: 0;
      flex: 1;
      display: flex;
      flex-direction: column; }
      .datasetWrapper .activity-wrapper > div.activity-step-wrapper > div.activity-step, .datasetWrapper .activity-wrapper > div.activity-step-wrapper > div.endless_loading {
        margin-right: 5px;
        margin-left: 5px;
        padding: 20px;
        flex: 0px;
        overflow: auto;
        background-color: #F7F7F2; }
        .datasetWrapper .activity-wrapper > div.activity-step-wrapper > div.activity-step .finish-step-text blockquote::before, .datasetWrapper .activity-wrapper > div.activity-step-wrapper > div.endless_loading .finish-step-text blockquote::before {
          content: ''; }
        .datasetWrapper .activity-wrapper > div.activity-step-wrapper > div.activity-step .finish-step-text .star-rating .star, .datasetWrapper .activity-wrapper > div.activity-step-wrapper > div.endless_loading .finish-step-text .star-rating .star {
          font-size: 23px;
          padding: 3px; }
        .datasetWrapper .activity-wrapper > div.activity-step-wrapper > div.activity-step .finish-step-text p, .datasetWrapper .activity-wrapper > div.activity-step-wrapper > div.endless_loading .finish-step-text p {
          margin: 10px 0; }
      .datasetWrapper .activity-wrapper > div.activity-step-wrapper .down-arrow-indicator {
        transition: 0.3s linear;
        position: absolute;
        bottom: 20px;
        right: 0px;
        opacity: 0;
        background: #78D0D6;
        border-radius: 3px;
        color: #fff;
        padding: 8px 6px 5px;
        line-height: 10px;
        visibility: hidden; }
        .datasetWrapper .activity-wrapper > div.activity-step-wrapper .down-arrow-indicator.show {
          visibility: visible;
          right: 30px;
          opacity: 1; }

.datasetWrapper .chart-wrapper, .datasetWrapper .activity-wrapper {
  height: calc(100% - 60px); }

.datasetWrapper .activity-footer .create-activity.button, .datasetWrapper .activity-footer .django-inapp-survey-wrapper .create-activity.next-button, .django-inapp-survey-wrapper .datasetWrapper .activity-footer .create-activity.next-button, .datasetWrapper .activity-footer .django-inapp-survey-wrapper .create-activity.submit-button, .django-inapp-survey-wrapper .datasetWrapper .activity-footer .create-activity.submit-button {
  color: #fff;
  display: block;
  padding: 5px;
  margin: 12px auto;
  width: 200px;
  height: 40px; }

.datasetWrapper .activity-footer .button.full, .datasetWrapper .activity-footer .django-inapp-survey-wrapper .full.next-button, .django-inapp-survey-wrapper .datasetWrapper .activity-footer .full.next-button, .datasetWrapper .activity-footer .django-inapp-survey-wrapper .full.submit-button, .django-inapp-survey-wrapper .datasetWrapper .activity-footer .full.submit-button {
  line-height: 60px;
  height: 100%;
  font-size: 20px;
  width: 100%;
  color: #fff; }

.datasetWrapper .activity-footer .button.medium, .datasetWrapper .activity-footer .django-inapp-survey-wrapper .medium.next-button, .django-inapp-survey-wrapper .datasetWrapper .activity-footer .medium.next-button, .datasetWrapper .activity-footer .django-inapp-survey-wrapper .medium.submit-button, .django-inapp-survey-wrapper .datasetWrapper .activity-footer .medium.submit-button {
  line-height: 60px;
  font-size: 20px;
  width: 60%;
  color: #fff; }

.datasetWrapper .activity-footer .feedback-anchor {
  line-height: 60px;
  padding-left: 10px; }
  @media only screen and (max-width: 1100px) {
    .datasetWrapper .activity-footer .feedback-anchor > span {
      display: none; }
    .datasetWrapper .activity-footer .feedback-anchor .fa {
      font-size: 20px; } }

.datasetWrapper .chart-footer, .datasetWrapper .activity-footer {
  height: 60px;
  overflow: hidden; }

.datasetWrapper .chart-footer {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  color: #A9A9A0; }
  .datasetWrapper .chart-footer ul {
    list-style: none;
    margin: 0;
    width: 100%; }
    .datasetWrapper .chart-footer ul li {
      padding: 20px 10px; }
  .datasetWrapper .chart-footer ul.chart-footer-left {
    float: left;
    width: 60%; }
    .datasetWrapper .chart-footer ul.chart-footer-left li {
      float: left; }
  .datasetWrapper .chart-footer ul.chart-footer-right {
    float: right;
    width: 40%; }
    .datasetWrapper .chart-footer ul.chart-footer-right li {
      float: right; }

.datasetWrapper.full .seventy {
  width: 100%; }

.datasetWrapper.full .thirty {
  width: 0px;
  overflow: hidden; }

.datasetWrapper:not(.full) .chart-wrapper .canvasArea .rightArrow {
  background-position: -29px 0;
  padding-right: 0px; }
  .datasetWrapper:not(.full) .chart-wrapper .canvasArea .rightArrow div {
    margin-left: 40px; }

/* Activity */
.readonly-activity {
  /* we should add css to disable the input controls as well */ }
  .readonly-activity textarea {
    width: 100%; }

/* For Footer Icons */
a.icons-wrapper:focus {
  outline: 0; }

.icons-wrapper {
  text-decoration: none;
  color: #000;
  cursor: pointer; }
  @media only screen and (max-width: 760px) {
    .icons-wrapper > span {
      display: none; } }
  .icons-wrapper > i {
    background-color: #30AEBB;
    padding: 8px;
    color: #FFF;
    text-align: center;
    border-radius: 20px;
    margin-top: -10px;
    width: 35px;
    height: 35px;
    font-size: 20px; }
    .icons-wrapper > i.fa {
      width: 40px;
      height: 40px;
      padding-left: 10px;
      font-size: 22px; }
      .icons-wrapper > i.fa.lyellow {
        background: #FFCA05; }
  .icons-wrapper:hover, .icons-wrapper.hover {
    color: #000000; }
    .icons-wrapper:hover > i, .icons-wrapper.hover > i {
      background-color: #229DAA; }

@media only screen and (max-width: 1100px) {
  .datasetWrapper .icons-wrapper > span {
    display: none; } }

.button-group {
  padding: 10px 0; }

.datasetWrapper {
  overflow: hidden; }
  .datasetWrapper .button, .datasetWrapper .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .datasetWrapper .next-button, .datasetWrapper .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper .datasetWrapper .submit-button {
    padding: 0 12px;
    line-height: 30px; }
  .datasetWrapper .activities-list .activity-item {
    word-wrap: break-word; }
  .datasetWrapper .activities-list a.button, .datasetWrapper .activities-list .django-inapp-survey-wrapper a.next-button, .django-inapp-survey-wrapper .datasetWrapper .activities-list a.next-button, .datasetWrapper .activities-list .django-inapp-survey-wrapper a.submit-button, .django-inapp-survey-wrapper .datasetWrapper .activities-list a.submit-button {
    color: #fff; }
  .datasetWrapper .activities-list .button, .datasetWrapper .activities-list .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .datasetWrapper .activities-list .next-button, .datasetWrapper .activities-list .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper .datasetWrapper .activities-list .submit-button {
    line-height: 36px; }
  .datasetWrapper .link, .datasetWrapper .share {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .datasetWrapper .link {
    font-size: 12px; }

ul.social-share {
  margin: 0; }
  ul.social-share li {
    display: inline-block; }

.datasetWrapper .share .socialIcon, ul.social-share .socialIcon {
  height: 34px;
  margin: 10px 3px;
  width: 34px;
  background: #30AEBB;
  border-radius: 20px;
  display: inline-block;
  background-size: cover; }

.datasetWrapper .share .twitter, ul.social-share .twitter {
  background-image: url("/static/img/icons/twitter.png"); }

.datasetWrapper .share .facebook, ul.social-share .facebook {
  background-image: url("/static/img/icons/facebook.png"); }

.datasetWrapper .share .email, ul.social-share .email {
  background-image: url("/static/img/icons/email.png"); }

.datasetWrapper .share .google, ul.social-share .google {
  background-image: url("/static/img/icons/google.png"); }

.endless_container {
  text-align: center; }

.endless_loading {
  padding-top: 20px; }

.expandingRow .subgroup-title {
  padding: 5px;
  margin: 0 30px 0 0;
  text-align: center;
  font-weight: bold;
  font-size: 15px; }

.filter-table-wrapper {
  width: 100%; }
  @media only screen and (min-width: 868px) {
    .filter-table-wrapper {
      display: table;
      table-layout: fixed; } }
  @media only screen and (min-width: 868px) {
    .filter-table-wrapper > div {
      display: table-cell;
      height: 100%; }
      .filter-table-wrapper > div:last-child .tuva-tooltip > p, .filter-table-wrapper > div:nth-child(n+4) .tuva-tooltip > p {
        left: auto;
        right: 18px; } }
  .filter-table-wrapper > div label {
    padding: 8px;
    padding-bottom: 0px;
    color: #30AEBB;
    cursor: pointer; }
  .filter-table-wrapper > div input {
    display: inline;
    width: auto;
    height: auto; }

.datasetWrapper .seventy.expand {
  width: calc(100% - 40px); }

.datasetWrapper .collapsible-area {
  position: relative; }
  .datasetWrapper .collapsible-area.collapsed {
    width: 40px; }
    .datasetWrapper .collapsible-area.collapsed .main-content {
      display: none; }
    .datasetWrapper .collapsible-area.collapsed .rotated {
      display: block; }
    .datasetWrapper .collapsible-area.collapsed .trigger {
      left: -7px; }
  .datasetWrapper .collapsible-area .trigger {
    position: absolute;
    padding: 10px 2px;
    background: #EAEAE8;
    border: 1px solid #ccc;
    top: 42%;
    left: -6px;
    cursor: pointer;
    z-index: 99; }
  .datasetWrapper .collapsible-area .rotated {
    height: calc(100% - 59px);
    background: #EAEAE8;
    display: none;
    overflow: hidden;
    cursor: pointer; }
    .datasetWrapper .collapsible-area .rotated .vertical-text {
      font-size: 15px;
      line-height: 35px;
      height: 40px;
      white-space: nowrap;
      transform: rotate(90deg);
      transform-origin: left top 0;
      font-weight: bold;
      margin-left: 40px;
      float: left;
      padding-left: 20px; }

.tuva-tooltip {
  display: inline-block;
  position: relative;
  cursor: pointer; }
  .tuva-tooltip > p {
    display: none;
    width: 320px;
    line-height: 1.5;
    font-size: 12px;
    padding: 10px;
    position: absolute;
    background-color: gray;
    color: white;
    top: -7px;
    left: 18px;
    z-index: 10; }
    @media only screen and (max-width: 1200px) {
      .tuva-tooltip > p {
        width: 250px; } }
    @media only screen and (max-width: 1000px) {
      .tuva-tooltip > p {
        width: 150px; } }
  .tuva-tooltip:hover > p {
    display: block; }

.archived-ribbon {
  padding: 10px;
  text-align: center;
  font-weight: bold;
  background-color: #FCC930; }

/* NEW DATASET LIST PAGE STYLES */
.vertical-flex {
  display: flex;
  flex-direction: column; }

#datasetPage.vertical-flex {
  height: calc(100vh - 46px); }

#datasetPage .main-wrapper {
  flex: 1;
  overflow: hidden; }
  #datasetPage .main-wrapper .thirty > ul {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow-y: auto; }
    #datasetPage .main-wrapper .thirty > ul.inactive {
      opacity: 0.5;
      cursor: not-allowed; }
      #datasetPage .main-wrapper .thirty > ul.inactive input, #datasetPage .main-wrapper .thirty > ul.inactive label, #datasetPage .main-wrapper .thirty > ul.inactive .tuva-tooltip, #datasetPage .main-wrapper .thirty > ul.inactive .filter-title {
        cursor: inherit !important; }
      #datasetPage .main-wrapper .thirty > ul.inactive .tuva-tooltip:hover p {
        display: none; }
      #datasetPage .main-wrapper .thirty > ul.inactive .filter-title:hover {
        color: inherit; }
    #datasetPage .main-wrapper .thirty > ul li.upcomingDatasets {
      border-bottom: 0px;
      padding-top: 25px; }
  #datasetPage .main-wrapper .thirty, #datasetPage .main-wrapper .seventy {
    height: 100%;
    display: inline-block;
    vertical-align: top; }
  #datasetPage .main-wrapper .seventy {
    overflow-y: auto; }
  #datasetPage .main-wrapper .endless_container {
    margin-bottom: 20px; }

#datasetPage .main-wrapper {
  position: relative; }
  #datasetPage .main-wrapper .thirty {
    left: 0;
    position: absolute; }
  #datasetPage .main-wrapper .seventy {
    right: 0;
    position: absolute; }

#datasetPage .filter-button {
  display: none; }

@media only screen and (max-width: 860px) {
  #datasetPage .filter-button {
    display: block; }
  #datasetPage .main-wrapper {
    position: relative; }
    #datasetPage .main-wrapper .thirty {
      position: absolute;
      z-index: 10;
      left: -100%;
      width: 100%;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s; }
      #datasetPage .main-wrapper .thirty.opened {
        left: 0; }
      #datasetPage .main-wrapper .thirty > ul {
        background-color: #fff;
        width: 80%;
        max-width: 350px; }
    #datasetPage .main-wrapper .seventy {
      width: 100%; }
  #datasetPage .filter-bar {
    padding-left: 5px;
    padding-right: 5px; }
    #datasetPage .filter-bar .filtered-options {
      display: none !important; }
    #datasetPage .filter-bar > .filtered-options-mobile {
      display: flex !important; }
    #datasetPage .filter-bar > div:first-child > div.button-group {
      padding: 0 4px !important; }
      #datasetPage .filter-bar > div:first-child > div.button-group .button, #datasetPage .filter-bar > div:first-child > div.button-group .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper #datasetPage .filter-bar > div:first-child > div.button-group .next-button, #datasetPage .filter-bar > div:first-child > div.button-group .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper #datasetPage .filter-bar > div:first-child > div.button-group .submit-button {
        padding: 0.5em 0.65em; } }

@media only screen and (max-width: 600px) {
  #datasetPage .hide-for-mobile-portrait {
    display: none !important; }
  #datasetPage .filter-bar > div:first-child {
    display: block !important; } }

#datasetPage .filter-bar {
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  line-height: 1em;
  padding: 20px 10px; }
  #datasetPage .filter-bar > div:first-child {
    display: flex;
    overflow: hidden; }
    #datasetPage .filter-bar > div:first-child > div.button-group {
      padding: 0 10px;
      line-height: 2em; }
    #datasetPage .filter-bar > div:first-child > .filtered-options {
      flex: 1; }
  #datasetPage .filter-bar .filtered-options, #datasetPage .filter-bar .filtered-options-mobile {
    display: flex; }
    #datasetPage .filter-bar .filtered-options > div:first-child, #datasetPage .filter-bar .filtered-options-mobile > div:first-child {
      margin-right: 10px;
      padding-right: 10px;
      border-right: 1px solid #e6e6e6; }
    #datasetPage .filter-bar .filtered-options > div:last-child, #datasetPage .filter-bar .filtered-options-mobile > div:last-child {
      flex: 1; }
  #datasetPage .filter-bar > .filtered-options-mobile {
    padding: 10px 10px 0 !important;
    display: none; }
  #datasetPage .filter-bar .archived {
    text-align: right;
    padding: 0 8px;
    line-height: 2em; }
    #datasetPage .filter-bar .archived span:hover {
      cursor: pointer;
      text-decoration: underline; }

#datasetPage .sub-filter-bar {
  margin: 0 15px; }
  #datasetPage .sub-filter-bar select {
    background-image: url(/static/img/select3.png) !important;
    border: 1px solid #30AEBB;
    background: #f7f7f2;
    color: #30AEBB;
    box-shadow: initial; }

ul.filter-list > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 20px; }
  ul.filter-list > li .filter-title {
    padding: 10px 0;
    cursor: pointer; }
    ul.filter-list > li .filter-title > .fa {
      font-size: 1.5em;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
    ul.filter-list > li .filter-title:hover {
      color: #000; }
  ul.filter-list > li > .filter-options {
    padding-top: 0px;
    border: none; }
  ul.filter-list > li.active > .filter-title > .fa, ul.filter-list > li.active li.active > .filter-title > .fa {
    transform: rotate(-90deg); }
  ul.filter-list > li fieldset .fa {
    font-size: 1.2em !important; }
  ul.filter-list > li ul ul {
    padding-left: 10px; }

ul.filter-list li.active > .filter-title {
  background-size: 100% 1px;
  background-position: 0 100%, 0 0;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, rgba(204, 204, 204, 0.41), transparent); }

ul.filter-list label {
  padding-left: 20px;
  color: inherit;
  line-height: 2em; }

ul.filter-list input {
  margin-left: -20px;
  display: inline-block;
  height: auto;
  width: auto; }

ul.filter-list li.subgroup-list {
  padding-left: 20px; }
  ul.filter-list li.subgroup-list .filter-title {
    margin-right: 25px; }

.dataset-activity-overview .left {
  box-sizing: border-box; }
  .dataset-activity-overview .left img {
    max-width: 90%; }

.dataset-activity-overview .preview-ribbon {
  background: #FEDA90;
  text-align: center;
  font-weight: bold;
  padding: 5px;
  margin-top: 5px; }

.dataset-activity-overview #activity-action-area {
  padding: 20px;
  position: absolute;
  right: 1em;
  top: 50px; }
  .dataset-activity-overview #activity-action-area > div:first-child {
    margin-top: 5px; }
  .dataset-activity-overview #activity-action-area .button, .dataset-activity-overview #activity-action-area .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .dataset-activity-overview #activity-action-area .next-button, .dataset-activity-overview #activity-action-area .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper .dataset-activity-overview #activity-action-area .submit-button {
    width: 100%;
    margin: 0 0 10px 0; }

#chartPage {
  box-sizing: initial; }
  #chartPage .content {
    width: 60%;
    min-height: 300px; }
  #chartPage .panel {
    width: 30%;
    float: right; }
    #chartPage .panel .header {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      line-height: 40px; }
    #chartPage .panel .link {
      line-height: 40px;
      color: #30AEBB;
      font-weight: bold; }
      #chartPage .panel .link .glyphicon, #chartPage .panel .link .tuva-icon.filter:before, #chartPage .panel .link .tuva-icon.pencil:before, #chartPage .panel .link .tuva-icon.download:before, #chartPage .panel .link .tuva-icon.help:before, #chartPage .panel .link .tuva-icon.more-options:before, #chartPage .panel .link .tuva-icon.ti-attribute-search:before, #chartPage .panel .link .tuva-icon.ti-hide-unhide-attribute:before, #chartPage .panel .link .tuva-icon.ti-add-new-attribute:before {
        color: #494949;
        margin-right: 10px;
        background-size: cover;
        float: left;
        height: 20px;
        width: 20px; }
      #chartPage .panel .link .icon {
        margin-right: 10px;
        background-size: cover;
        float: left;
        height: 20px;
        width: 20px;
        margin-top: 10px;
        background-color: #F7F7F2; }
      #chartPage .panel .link .link {
        background-image: url("/static/img/icons/link.png"); }
      #chartPage .panel .link .bookmark {
        background-image: url("/static/img/icons/paperclip.png"); }
      #chartPage .panel .link .download {
        background-image: url("/static/img/icons/download.png"); }
    #chartPage .panel .share {
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      height: 60px;
      line-height: 00px; }
      #chartPage .panel .share .subText {
        height: 60px;
        line-height: 60px;
        float: left; }
      #chartPage .panel .share .socialIcon {
        height: 34px;
        margin-top: 10px;
        margin-left: 10px;
        width: 34px;
        background: #30AEBB;
        border-radius: 20px;
        float: left;
        background-size: cover; }
      #chartPage .panel .share .twitter {
        background-image: url("/static/img/icons/twitter.png"); }
      #chartPage .panel .share .facebook {
        background-image: url("/static/img/icons/facebook.png"); }
      #chartPage .panel .share .email {
        background-image: url("/static/img/icons/email.png"); }
      #chartPage .panel .share .google {
        background-image: url("/static/img/icons/google.png"); }
  #chartPage h1 {
    font-size: 32px; }
  #chartPage .tagWrapper {
    margin: 10px 0; }

.dataset {
  line-height: 40px !important; }
  .dataset table {
    margin: 0px auto; }
  .dataset td {
    line-height: 40px !important;
    padding: 20px 0; }
  .dataset .icon {
    float: left;
    margin-left: 20px;
    margin-right: 12px;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.382); }

#chartArea {
  box-sizing: initial;
  background: #fff;
  height: 600px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  position: relative; }
  #chartArea .canvasArea {
    -webkit-transition: all 0.382s;
    -moz-transition: all 0.382s;
    -ms-transition: all 0.382s;
    -o-transition: all 0.382s;
    transition: all 0.382s;
    background: #fff;
    float: left;
    height: inherit;
    width: 100%; }
  #chartArea .slidingArea {
    -webkit-transition: all 0.382s;
    -moz-transition: all 0.382s;
    -ms-transition: all 0.382s;
    -o-transition: all 0.382s;
    transition: all 0.382s;
    background: #f7f7f2;
    float: left;
    height: inherit;
    overflow: hidden;
    width: 0%;
    z-index: 99; }
    #chartArea .slidingArea .qna-wrapper {
      height: 400px;
      overflow: scroll;
      overflow-x: hidden; }
      #chartArea .slidingArea .qna-wrapper .instructionHead {
        text-align: center;
        padding-bottom: 10px; }
    #chartArea .slidingArea .activities-wrapper {
      height: 90%;
      overflow: scroll;
      overflow-x: hidden; }
      #chartArea .slidingArea .activities-wrapper .activity-item {
        padding: 14px 0;
        margin: 0 14px;
        border-top: 1px solid rgba(0, 0, 0, 0.1); }
      #chartArea .slidingArea .activities-wrapper .create-activity {
        font-size: 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  #chartArea .padding-table {
    height: calc(100% - 39px);
    padding-left: 14px;
    padding-right: 14px; }
  #chartArea #rightPanel .button, #chartArea #rightPanel .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper #chartArea #rightPanel .next-button, #chartArea #rightPanel .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper #chartArea #rightPanel .submit-button {
    line-height: 36px;
    margin-top: 14px;
    margin-right: 8px; }
  #chartArea #rightPanel .minWidth80pxButton {
    min-width: 80px; }

.tableArea {
  width: 100%;
  height: 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 999 !important;
  -webkit-transition: all 0.382s;
  -moz-transition: all 0.382s;
  -ms-transition: all 0.382s;
  -o-transition: all 0.382s;
  transition: all 0.382s; }
  .tableArea .tableHeaderArrow {
    float: left;
    -webkit-transition: all 0.382s;
    -moz-transition: all 0.382s;
    -ms-transition: all 0.382s;
    -o-transition: all 0.382s;
    transition: all 0.382s;
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg); }
    .tableArea .tableHeaderArrow .arrow {
      display: block;
      margin-left: -5px;
      background: transparent url("/static/img/rightToggle.png") no-repeat;
      background-size: auto 100%;
      background-position: -24px 0;
      overflow: hidden;
      width: 40px;
      height: 40px; }
  .tableArea .tableHeader {
    line-height: 40px;
    height: 40px;
    background: #fff;
    padding: 0 14px;
    box-shadow: inset -1px 0px 3px -2px #ccc; }
    .tableArea .tableHeader:hover {
      background: #f5f5f5;
      cursor: pointer; }
  .tableArea .datatable-container {
    height: 300px;
    width: 100%; }

.visualHeader {
  height: 5%;
  top: 0; }
  .visualHeader a:hover {
    color: #494949; }

.fullScreen {
  height: 100%;
  width: 100%;
  bottom: 0;
  position: relative; }
  .fullScreen #chartArea {
    height: 100%; }

.slideRight .canvasArea .rightArrow {
  background-position: -29px 0;
  padding-right: 00px; }
  .slideRight .canvasArea .rightArrow div {
    margin-left: 40px; }

.slideRight #rightPanel {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); }

.slideLeft .leftPanel {
  position: initial; }

.slideLeft #leftPanel {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); }
  .slideLeft #leftPanel .caseHeader .caseCardText {
    cursor: pointer; }
  .slideLeft #leftPanel .caseHeader .caseCardTitle {
    display: block; }
  .slideLeft #leftPanel .caseHeader .hoverButtons {
    visibility: hidden; }

.slideLeft .canvasArea .leftSideButton {
  background-position: 6px 0;
  padding-right: 0px; }
  .slideLeft .canvasArea .leftSideButton div {
    margin-left: 40px; }

.slideTable .tableArea {
  height: 100%; }

.slideTable .tableHeaderArrow {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.chartButtonHolder {
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.382);
  height: 40px;
  line-height: 40px;
  width: 150px;
  border-radius: 5px; }

.chartButton {
  height: inherit;
  width: inherit;
  background: red;
  border-radius: inherit;
  text-align: center;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.382), inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  background: #EFEFE2; }

.firstHeader {
  height: 40px;
  box-shadow: 0px 2px 8px 0px #ccc; }
  .firstHeader .leftSideButton {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    padding: 0px;
    background: white;
    border-right: 1px solid #ccc;
    position: relative;
    float: left;
    margin-left: -5px;
    background: #eaeae8 url("/static/img/rightToggle.png") no-repeat;
    background-size: auto 100%;
    background-position: -24px 0;
    overflow: hidden; }
    .firstHeader .leftSideButton:hover {
      cursor: pointer;
      -webkit-transition: all 0s;
      -moz-transition: all 0s;
      -ms-transition: all 0s;
      -o-transition: all 0s;
      transition: all 0s;
      background-color: #e3e3e0; }
      .firstHeader .leftSideButton:hover div {
        background-color: #e3e3e0 !important;
        margin-left: 30px; }

.hoverButtons .left {
  margin-left: -14px; }

.hoverButtons .left, .hoverButtons .right {
  width: 50px; }
  .hoverButtons .left:hover, .hoverButtons .right:hover {
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer; }
  .hoverButtons .left:active, .hoverButtons .right:active {
    color: #232323;
    background: rgba(255, 255, 255, 0.9); }

.rightArrow {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 50px;
  background: red;
  position: absolute;
  top: 0px;
  z-index: 98;
  right: 0;
  margin-top: -50px;
  background: #F7F7F2 url("/static/img/rightToggle.png") no-repeat;
  box-shadow: -1px 0 1px rgba(0, 0, 0, 0.09), 0px 1px 0px rgba(0, 0, 0, 0.09), 0px -1px 0px rgba(0, 0, 0, 0.09);
  background-size: auto 100%;
  background-position: 8px 0;
  padding-right: 90px;
  overflow: hidden; }
  .rightArrow div {
    height: 100%;
    width: 90px;
    margin-left: 30px;
    line-height: 40px;
    background: #F7F7F2; }
  .rightArrow:hover {
    cursor: pointer;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
    background-color: #F7F7F2;
    background-color: #f1f1e9; }
    .rightArrow:hover div {
      background-color: #f1f1e9 !important;
      margin-left: 30px; }

.hide {
  display: none; }

.embedBlock {
  border: 1px solid #f7f7f2;
  height: 95%; }

.embedFooter {
  width: 100%;
  display: inline-block;
  border-left: 1px solid #f7f7f2;
  border-right: 1px solid #f7f7f2;
  border-bottom: 1px solid #f7f7f2;
  line-height: 36px; }

.embedText {
  width: 95%;
  height: 60px;
  color: #494949;
  font-size: 12px; }

.leftPanel .caseCardView {
  width: 95%; }

.leftPanel .attributeCard {
  text-align: center;
  width: 80%;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  /* word-wrap: break-word */
  overflow: hidden;
  text-overflow: ellipsis; }

.leftPanel .valueCard {
  text-align: center;
  display: none;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  /* word-wrap: break-word */
  overflow: hidden;
  text-overflow: ellipsis; }

.leftPanel .colorCard {
  display: none;
  padding-left: 5px; }

.leftPanel .filterCard {
  text-align: center;
  width: 20%;
  display: table-cell;
  /* width: 20% */ }
  .leftPanel .filterCard i {
    color: #494949; }
  .leftPanel .filterCard:hover {
    background: #dedede;
    pointer: pointer; }

.leftPanel .teal i {
  color: #30AEBB; }

#leftPanel {
  width: 12% !important;
  min-width: 160px; }
  #leftPanel .caseHeader .caseCardTitle {
    display: block; }
  #leftPanel .caseHeader .hoverButtons {
    visibility: hidden; }

.canvasArea {
  width: 88% !important;
  max-width: calc(100% - 160px) !important; }
  .canvasArea .plotToolbar .navbar .nav .activate {
    display: none; }

.visualContainer {
  width: 100%;
  margin-bottom: 11px;
  position: relative;
  background: #fff;
  padding-left: 10px;
  display: block; }

#caseDiv {
  border-bottom: 1px solid #f5f5f5;
  height: 518px;
  overflow: scroll;
  overflow-x: hidden; }

.fullScreen #plotContainer {
  height: calc(100% - 50px); }

.fullScreen #casePanel {
  height: 100%; }

.fullScreen #caseDiv {
  height: 95%; }

#content-resizer {
  position: absolute;
  height: 5px;
  bottom: 39px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: n-resize; }

#plot-content {
  height: calc(100% - 50px) !important;
  overflow: hidden;
  display: block;
  position: relative; }

.plotTools li .disabled {
  background: #fff;
  opacity: 0.5;
  box-shadow: none; }
  .plotTools li .disabled:hover, .plotTools li .disabled:active {
    background: #fff;
    box-shadow: none; }

.leaflet-container {
  background: initial !important; }

.plotToolbar {
  background-color: #f7f7f2;
  margin-bottom: 10px; }

.plotToolbar .navbar .nav {
  background: transparent; }
  .plotToolbar .navbar .nav > li {
    min-width: 40px;
    text-align: center;
    border: 1px solid #ccc;
    color: #888; }
    .plotToolbar .navbar .nav > li > a {
      color: #494949; }
  .plotToolbar .navbar .nav > li.active > a,
  .plotToolbar .navbar .nav > li.active > a:hover {
    background-color: #fff;
    color: #30AEBB; }

.plotToolbar .navbar .active > a,
.plotToolbar .navbar .active > a:hover {
  background-color: #fff;
  color: #30AEBB; }

.threelines_icon {
  background: url("/static/img/icons/threelines.png") no-repeat;
  width: 20px;
  height: 20px; }

.plotToolbar ul.nav li.dropdown:hover > ul.dropdown-menu,
.plotToolbar ul.nav li.dropdown.open > ul.dropdown-menu {
  display: block;
  width: 220px; }

.dropdown-submenu {
  position: relative; }
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    width: 200px; }

.plotToolbar .dropdown-submenu > .dropdown-menu:after {
  border: none !important;
  content: "" !important; }

.plotToolbar .dropdown-submenu > .dropdown-menu:before {
  border: none !important;
  content: "" !important; }

.plotToolbar li.dropdown-submenu:hover {
  background-color: #f7f7f2; }

.plotToolbar .dropdown-submenu > a:after {
  display: block;
  float: right;
  width: 0;
  height: 0;
  margin-top: 5px;
  margin-right: -10px;
  border-color: transparent;
  border-left-color: #cccccc;
  border-style: solid;
  border-width: 5px 0px 5px 5px;
  content: " "; }

.dropdown-submenu:hover > .dropdown-menu {
  display: block; }

.dropdown-submenu:hover > a:after {
  border-left-color: #494949; }

.dropdown-submenu.pull-left {
  float: none; }

.dropdown > .dropdown-menu > li > a,
.dropdown-submenu > .dropdown-menu > li > a {
  white-space: normal; }

.slideLeft .canvasArea {
  width: 75% !important;
  max-width: calc(100% - 300px) !important; }

.slideLeft #leftPanel {
  width: 25% !important;
  min-width: 300px !important; }
  .slideLeft #leftPanel .caseHeader .caseCardTitle {
    display: none; }
  .slideLeft #leftPanel .caseHeader .hoverButtons {
    visibility: visible; }
  .slideLeft #leftPanel .caseCardView {
    width: 97%; }
  .slideLeft #leftPanel .attributeCard {
    width: 35%; }
  .slideLeft #leftPanel .valueCard {
    width: 35%;
    display: table-cell;
    vertical-align: inherit; }
  .slideLeft #leftPanel .colorCard {
    width: 20%;
    display: table-cell; }
  .slideLeft #leftPanel .filterCard {
    width: 10%;
    display: table-cell; }

.slideLeft #rightPanel {
  width: 0%  !important; }

.slideRight .canvasArea {
  width: 58% !important; }

.slideRight #leftPanel {
  width: 12% !important; }
  .slideRight #leftPanel .caseHeader .caseCardTitle {
    display: block; }
  .slideRight #leftPanel .caseHeader .hoverButtons {
    visibility: hidden; }
  .slideRight #leftPanel .attributeCard {
    width: 100%; }
  .slideRight #leftPanel .valueCard {
    display: none; }
  .slideRight #leftPanel .colorCard {
    display: none; }

.slideRight #rightPanel {
  width: 30% !important; }

.slideBoth .canvasArea {
  width: 45% !important; }
  .slideBoth .canvasArea .plotToolbar .navbar .nav li {
    min-width: 30px; }

.slideBoth #leftPanel {
  width: 25%  !important; }
  .slideBoth #leftPanel .caseHeader .caseCardTitle {
    display: none; }
  .slideBoth #leftPanel .caseHeader .hoverButtons {
    visibility: visible; }
  .slideBoth #leftPanel .caseCardView {
    width: 97%; }
  .slideBoth #leftPanel .attributeCard {
    width: 35%; }
  .slideBoth #leftPanel .valueCard {
    width: 35%;
    display: table-cell;
    vertical-align: inherit; }
  .slideBoth #leftPanel .colorCard {
    width: 20%;
    display: table-cell; }
  .slideBoth #leftPanel .filterCard {
    width: 10%;
    display: table-cell; }

.slideBoth #rightPanel {
  width: 30% !important; }

@media only screen and (max-width: 960px) {
  .canvasArea .plotToolbar .navbar .nav li {
    min-width: 25px; }
  .canvasArea .plotToolbar .navbar .nav .optional {
    display: none; }
  .canvasArea .plotToolbar .navbar .nav .activate {
    display: block; }
  .slideLeft .canvasArea {
    width: 75% !important; }
  .slideLeft #leftPanel {
    width: 25% !important; }
  .slideLeft #rightPanel {
    width: 0%  !important; }
  .slideRight .canvasArea {
    width: 70% !important; }
  .slideRight #leftPanel {
    width: 0%  !important; }
  .slideRight #rightPanel {
    width: 30% !important; }
  .slideBoth .canvasArea {
    width: 45% !important; }
    .slideBoth .canvasArea .plotToolbar .navbar .nav .optional {
      display: none; }
  .slideBoth #leftPanel {
    width: 25%  !important; }
  .slideBoth #rightPanel {
    width: 30% !important; } }

@media only screen and (max-width: 768px) {
  #leftPanel {
    width: 0% !important; }
  .canvasArea {
    width: 100% !important; }
    .canvasArea .plotToolbar .navbar .nav li {
      min-width: 25px; }
    .canvasArea .plotToolbar .navbar .nav .optional {
      display: none; }
    .canvasArea .plotToolbar .navbar .nav .activate {
      display: block; } }

@media only screen and (max-width: 480px) {
  #leftPanel {
    width: 0% !important; }
  .canvasArea {
    width: 100% !important; }
    .canvasArea .plotToolbar .navbar .nav li {
      min-width: 20px; }
    .canvasArea .plotToolbar .navbar .nav .optional {
      display: none; }
    .canvasArea .plotToolbar .navbar .nav .nomobile {
      display: none; }
    .canvasArea .plotToolbar .navbar .nav .activate {
      display: block; } }

.canvasArea .plotToolbar .title {
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 28px;
  overflow: hidden;
  line-height: 26px;
  max-width: 350px;
  background-color: #F7F7F2;
  padding: 6px 8px;
  border-left: 1px solid #ccc;
  margin: 0;
  font-weight: normal; }

@media only screen and (max-width: 970px) {
  .canvasArea .plotToolbar .title span {
    display: none; } }

.data-plot-wrapper {
  box-sizing: initial;
  border-right: 1px solid #eee;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  position: relative;
  height: 100%; }
  .data-plot-wrapper a {
    text-decoration: underline; }
  .data-plot-wrapper label {
    display: inline; }
  .data-plot-wrapper .tde-btn {
    min-width: 82px; }
  .data-plot-wrapper .formula-wrapper .mq-editable-field {
    padding: 6px 0 !important; }
  .data-plot-wrapper .formula-wrapper button {
    padding: 0 6px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc; }
  .data-plot-wrapper .slider label {
    display: inline; }
  .data-plot-wrapper #data-plot-area {
    height: 100%; }

.data-plot-wrapper .premium-block {
  bottom: 17%;
  top: 17%;
  width: 50%;
  z-index: 100;
  position: absolute;
  left: 35%; }

.premium-block .premium-overlay {
  background: #FFCA05;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.8;
  background-image: linear-gradient(rgba(117, 117, 117, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(117, 117, 117, 0.15) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 5px 5px, 5px 5px; }

.premium-block .premium-content {
  position: absolute;
  width: 100%;
  z-index: 2;
  text-align: center;
  top: 20%;
  margin: auto;
  min-width: 200px; }
  .premium-block .premium-content h2 {
    color: #000; }
  .premium-block .premium-content .button, .premium-block .premium-content .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .premium-block .premium-content .next-button, .premium-block .premium-content .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper .premium-block .premium-content .submit-button {
    max-width: 200px; }

.premium-block .activity-footer .button.medium, .premium-block .activity-footer .django-inapp-survey-wrapper .medium.next-button, .django-inapp-survey-wrapper .premium-block .activity-footer .medium.next-button, .premium-block .activity-footer .django-inapp-survey-wrapper .medium.submit-button, .django-inapp-survey-wrapper .premium-block .activity-footer .medium.submit-button {
  line-height: 45px;
  font-size: 20px;
  width: 60%;
  color: #fff; }

@media only screen and (max-width: 970px) {
  .premium-content .button, .premium-content .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .premium-content .next-button, .premium-content .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper .premium-content .submit-button {
    max-width: 150px; }
  .premium-block .activity-footer .button.medium, .premium-block .activity-footer .django-inapp-survey-wrapper .medium.next-button, .django-inapp-survey-wrapper .premium-block .activity-footer .medium.next-button, .premium-block .activity-footer .django-inapp-survey-wrapper .medium.submit-button, .django-inapp-survey-wrapper .premium-block .activity-footer .medium.submit-button {
    line-height: 30px;
    font-size: 14px;
    width: 60%;
    color: #fff; } }

.world {
  border-bottom-color: #DE7172 !important; }

.sport {
  border-bottom-color: #CA7A77 !important; }

.all {
  border-bottom-color: #DCA082 !important; }

.food {
  border-bottom-color: #DFD383 !important; }

.politics {
  border-bottom-color: #B1C881 !important; }

.community {
  border-bottom-color: #70BE78 !important; }

.entertainment {
  border-bottom-color: #70BB84 !important; }

.environment {
  border-bottom-color: #70B69A !important; }

.development {
  border-bottom-color: #74BFBE !important; }

.culture {
  border-bottom-color: #6B96BA !important; }

.health {
  border-bottom-color: #8277BD !important; }

.energy {
  border-bottom-color: #A870B5 !important; }

.historical {
  border-bottom-color: #B676B6 !important; }

.science {
  border-bottom-color: #B17080 !important; }

.modal {
  top: 100px;
  left: 50%;
  margin: 0 0 0 -300px;
  /* margin: initial */
  /* margin-left: -300px */
  width: 520px;
  background: #eeeeee url(modal-gloss.png) no-repeat -200px -80px;
  position: fixed;
  z-index: 99999999;
  padding: 30px 30px 34px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  max-height: 500px !important; }
  .modal.small, .django-inapp-survey-wrapper .modal.next-button, .django-inapp-survey-wrapper .modal.submit-button, .django-inapp-survey-wrapper .modal.previous-button {
    width: 200px;
    margin-left: -140px; }
  .modal.medium {
    width: 400px;
    margin-left: -240px; }
  .modal.large {
    width: 600px;
    margin-left: -340px; }
  .modal.xlarge {
    width: 800px;
    margin-left: -440px; }
  .modal .tag {
    margin-right: 5px; }
  .modal .close-reveal-modal {
    font-size: 22px;
    line-height: .5;
    position: absolute;
    top: 8px;
    right: 11px;
    color: #aaa;
    text-shadow: 0 -1px 1px rbga(0, 0, 0, 0.6);
    font-weight: bold;
    cursor: pointer; }
  .modal hr {
    border: 1px solid rgba(0, 0, 0, 0);
    border-top: 1px solid rgba(0, 0, 0, 0.382);
    margin: 0 -40px;
    margin-bottom: 28px; }

.modal.fade {
  top: 100px; }

.modal.fade.in {
  top: 100px; }

.modal-backdrop {
  z-index: 99999998; }

.reveal-modal-bg {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  top: 0;
  z-index: 99999998;
  left: 0; }

.reveal-modal {
  display: none;
  top: 100px;
  left: 50%;
  margin-left: -300px;
  width: 520px;
  background: #eeeeee url(/static/img/modal-gloss.png) no-repeat -200px -80px;
  position: absolute;
  z-index: 99999999;
  padding: 30px 30px 34px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); }
  .reveal-modal.small, .django-inapp-survey-wrapper .reveal-modal.next-button, .django-inapp-survey-wrapper .reveal-modal.submit-button, .django-inapp-survey-wrapper .reveal-modal.previous-button {
    width: 200px;
    margin-left: -140px; }
  .reveal-modal.medium {
    width: 400px;
    margin-left: -240px; }
  .reveal-modal.large {
    width: 600px;
    margin-left: -340px; }
  .reveal-modal.xlarge {
    width: 800px;
    margin-left: -440px; }
  .reveal-modal .close-reveal-modal {
    font-size: 22px;
    line-height: .5;
    position: absolute;
    top: 8px;
    right: 11px;
    color: #aaa;
    text-shadow: 0 -1px 1px rbga(0, 0, 0, 0.6);
    font-weight: bold;
    cursor: pointer; }
  .reveal-modal hr {
    border: 1px solid rgba(0, 0, 0, 0);
    border-top: 1px solid rgba(0, 0, 0, 0.382);
    margin: 0 -40px;
    margin-bottom: 28px; }

.registration {
  line-height: 24px !important; }
  .registration input[type="text"], .registration input[type="password"] {
    width: 300px; }
  .registration select {
    width: 300px; }

.google,
.google-signup {
  background-image: url("/static/img/assets/google/normal_web.png");
  background-repeat: no-repeat;
  border: 0px;
  height: 46px;
  width: 191px;
  margin: 0 auto; }
  .google:hover,
  .google-signup:hover {
    background-image: url("/static/img/assets/google/focus_web.png"); }
  .google:active,
  .google-signup:active {
    background-image: url("/static/img/assets/google/pressed_web.png"); }

.google-signup {
  background-image: url("/static/img/assets/google/normal_web_signup.png"); }
  .google-signup:hover {
    background-image: url("/static/img/assets/google/focus_web_signup.png"); }
  .google-signup:active {
    background-image: url("/static/img/assets/google/pressed_web_signup.png"); }

.collapsable {
  -webkit-transition: all 0.382s;
  -moz-transition: all 0.382s;
  -ms-transition: all 0.382s;
  -o-transition: all 0.382s;
  transition: all 0.382s;
  height: 84px;
  overflow: hidden; }

.modalText {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px;
  color: rgba(0, 0, 0, 0.618); }
  .modalText:hover {
    color: rgba(0, 0, 0, 0.8); }

.hideCode .collapsable {
  height: 0px !important;
  opacity: 0;
  -webkit-transition: all 0.382;
  -moz-transition: all 0.382;
  -ms-transition: all 0.382;
  -o-transition: all 0.382;
  transition: all 0.382; }

.keyword-section {
  float: left; }

.orTable {
  margin: 14px 0;
  width: 100%; }
  .orTable td {
    width: 300px;
    line-height: 28px;
    width: 8%; }
    .orTable td:nth-child(1), .orTable td:nth-child(3) {
      width: 46%; }
  .orTable hr {
    margin: 14px 0;
    border: 1px solid #ccc; }

.classList {
  position: relative; }
  .classList div {
    margin: 7px; }
  .classList .gclass-icon {
    top: 12px;
    position: absolute; }

.cardWrapper {
  padding: 0 14px;
  padding-bottom: 28px;
  padding-left: 0px;
  position: relative;
  display: inline-block;
  width: 30%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  @media screen and (max-width: 867px) {
    .cardWrapper {
      width: 49%;
      margin: 0 auto; } }
  @media screen and (max-width: 479px) {
    .cardWrapper {
      min-width: 100%;
      margin: 0 auto; } }
  .cardWrapper .card-new {
    height: 340px;
    overflow: hidden; }
  .cardWrapper .card {
    background: #fff;
    min-height: 340px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 10px;
    -webkit-transition: all 0.382s;
    -moz-transition: all 0.382s;
    -ms-transition: all 0.382s;
    -o-transition: all 0.382s;
    transition: all 0.382s; }
    .cardWrapper .card:hover {
      box-shadow: 1px 1px 7px 1px #D4D4D0;
      cursor: pointer; }
    .cardWrapper .card i {
      z-index: 9999;
      line-height: 1 !important;
      position: absolute;
      display: block;
      top: 15px;
      right: 15px; }
      .cardWrapper .card i.bookmarked {
        left: 15px;
        right: auto; }
    .cardWrapper .card .language-holder {
      z-index: 9999;
      border-radius: 3px;
      padding: 2px 4px;
      margin-right: 3px;
      background-color: #30AEBB;
      color: #fff; }
    .cardWrapper .card .divider {
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      padding-top: 16px;
      margin-top: 16px; }
    .cardWrapper .card .jobContent {
      width: 80%;
      margin: 0 auto;
      position: absolute;
      left: 10%;
      top: 20%;
      vertical-align: middle;
      text-align: center;
      padding-bottom: 12px; }
      .cardWrapper .card .jobContent .subText {
        font-style: italic; }
    .cardWrapper .card .content {
      width: 80%;
      margin: 0 auto;
      position: absolute;
      left: 10%;
      text-align: center;
      padding: 30px 0px; }
    .cardWrapper .card .content-new {
      text-align: center;
      position: relative;
      left: 0;
      top: 0;
      -webkit-transition: all 0.382s;
      -moz-transition: all 0.382s;
      -ms-transition: all 0.382s;
      -o-transition: all 0.382s;
      transition: all 0.382s; }
      .cardWrapper .card .content-new .default {
        margin: 0 auto;
        width: 80%;
        padding: 35px 0 10px;
        height: 340px; }
      .cardWrapper .card .content-new .desc {
        margin: 0 auto;
        background-color: #30AEBB;
        color: #fff;
        height: 140px;
        padding: 20px 20px 10px;
        overflow: hidden; }
    .cardWrapper .card .btn {
      margin: 30px auto 10px;
      padding: 10px;
      width: 60%; }
    .cardWrapper .card .icon {
      height: 108px;
      width: 108px;
      margin: 0 auto;
      background: #ccc;
      margin-bottom: 16px;
      background-size: cover; }
      @media screen and (max-width: 768px) {
        .cardWrapper .card .icon {
          height: 70px;
          width: 70px;
          border-radius: 35px; } }
    .cardWrapper .card .batchIcon {
      line-height: 28px;
      color: #fff;
      border-radius: 15px;
      height: 30px;
      position: absolute;
      top: -10px;
      right: -10px;
      width: 30px;
      background-color: #F1635F; }
    .cardWrapper .card .subText {
      padding-bottom: 10px; }
    .cardWrapper .card .titleWrapper {
      height: 48px;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-transition: all 0.382s;
      -moz-transition: all 0.382s;
      -ms-transition: all 0.382s;
      -o-transition: all 0.382s;
      transition: all 0.382s;
      margin-bottom: 30px; }
      .cardWrapper .card .titleWrapper h3 {
        color: #494949;
        font-size: 18px;
        line-height: 24px;
        font-weight: normal; }
    .cardWrapper .card .tagWrapper {
      height: 44px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
      .cardWrapper .card .tagWrapper .tag {
        font-size: 12px;
        color: #8e8e8e; }
    .cardWrapper .card .gclass-icon {
      position: absolute;
      left: 22px;
      bottom: 22px; }
      @media screen and (max-width: 867px) {
        .cardWrapper .card .gclass-icon {
          left: 10px; } }
  .cardWrapper .jobCard {
    min-height: 300px; }
  .cardWrapper .datastoryCard {
    min-height: 300px; }
    .cardWrapper .datastoryCard .blockContent {
      width: 100%;
      margin: 0 auto;
      position: absolute;
      vertical-align: middle;
      text-align: center;
      padding-bottom: 12px; }
      .cardWrapper .datastoryCard .blockContent .subText {
        font-style: italic; }
      .cardWrapper .datastoryCard .blockContent .titleWrapper h3 {
        padding: 0 10px; }
    .cardWrapper .datastoryCard i {
      z-index: 99;
      line-height: 1 !important;
      position: absolute;
      display: block;
      bottom: 10px;
      right: 15px;
      top: initial; }
      .cardWrapper .datastoryCard i.bookmarked {
        left: 15px;
        right: auto; }
    .cardWrapper .datastoryCard .icon {
      border-radius: 0px;
      width: 100%;
      height: 180px; }
  .cardWrapper .overlayCard {
    width: calc(100% - 27px);
    height: calc(100% - 28px);
    display: none;
    position: absolute;
    top: 0px;
    left: 14px;
    background-color: #30AEBB;
    opacity: 0.95; }
    .cardWrapper .overlayCard .hoverBox {
      margin: 0 40px;
      width: calc(100% - 80px); }
    .cardWrapper .overlayCard .metadata {
      padding-top: 80px; }
    .cardWrapper .overlayCard .casedesc {
      padding-top: 40px; }
    .cardWrapper .overlayCard div {
      display: inline-block;
      justify-content: center;
      text-align: center;
      align-items: center;
      color: white; }
    .cardWrapper .overlayCard hr {
      color: white;
      border-top: none; }
  .cardWrapper:hover .content-new {
    top: -145px; }
    .cardWrapper:hover .content-new .titleWrapper {
      margin-top: 60px; }
  .cardWrapper:hover .overlayCard {
    display: block; }

.collectionCard {
  width: 44%;
  margin: 0 auto; }
  .collectionCard .holder {
    height: 300px;
    padding: 0;
    position: relative; }
    .collectionCard .holder .collectionTitle {
      background-color: white;
      width: 100%;
      opacity: 0.9;
      padding: 10px 10px;
      text-align: center;
      position: absolute;
      bottom: 0; }
      .collectionCard .holder .collectionTitle .text {
        min-height: 50px;
        color: #494949; }

.courseCard {
  margin-bottom: 20px;
  padding: 15px 0px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  position: relative;
  -webkit-transition: all 0.382s;
  -moz-transition: all 0.382s;
  -ms-transition: all 0.382s;
  -o-transition: all 0.382s;
  transition: all 0.382s; }
  .courseCard div {
    margin: 5px 0; }
  .courseCard .subText {
    font-style: italic; }
  .courseCard .titleWrapper {
    overflow: hidden;
    text-overflow: ellipsis; }
    .courseCard .titleWrapper h4 {
      color: #494949;
      font-weight: normal; }

.courseCard.dashboardWidget {
  padding: 15px 10px; }

.dashboardCard {
  width: 60%;
  padding: 0px;
  padding-top: 15px; }
  .dashboardCard .jobCard {
    min-height: 200px; }

.fullWidthCard .cardWrapper {
  width: 100%;
  padding: 0px;
  padding-top: 14px; }

.notification {
  background: #888;
  color: #fff; }

.notification.fixed {
  position: absolute;
  top: 46px;
  left: 0px;
  width: 100%; }

.notification.corner {
  max-width: 20%;
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 20px;
  padding: 20px;
  line-height: 20px;
  text-indent: 0px; }

.notification.red {
  background: #EC2349;
  margin: 10px;
  padding: 10px; }

.notification.warning {
  margin-bottom: 20px;
  padding: 5px 10px;
  background: #FFEB9C;
  color: #000; }

.notification.error-notify {
  background: #ff8080;
  line-height: 20px;
  margin: 10px;
  padding: 10px; }

.notification.corner.error-notify {
  margin-bottom: 50px; }

.notification.success-notify {
  background: #5BB75B;
  line-height: 20px;
  margin: 10px;
  padding: 10px; }

.notification.corner.success-notify {
  margin-bottom: 50px; }

.dashboardHeader {
  background: #e4e4d2;
  height: 100px; }
  .dashboardHeader .tab {
    height: 38px;
    float: left;
    line-height: 38px;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 62px;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
    padding: 0 14px; }
    .dashboardHeader .tab:hover {
      cursor: pointer;
      background: rgba(0, 0, 0, 0.16); }
    .dashboardHeader .tab:active {
      background: #F7F7F2;
      -webkit-transition: all 0.382s;
      -moz-transition: all 0.382s;
      -ms-transition: all 0.382s;
      -o-transition: all 0.382s;
      transition: all 0.382s; }
  .dashboardHeader .selected {
    background: #F7F7F2 !important; }
    .dashboardHeader .selected:hover {
      cursor: default; }
  .dashboardHeader .right {
    float: right; }

.sixtyPercentWidth {
  width: 60%;
  float: left; }
  .sixtyPercentWidth ul {
    margin: initial; }

.fourtyPercentWidth {
  float: left;
  width: 40%; }
  .fourtyPercentWidth table th {
    text-align: center;
    line-height: 24px; }
  .fourtyPercentWidth table td, .fourtyPercentWidth table .studentTable td {
    line-height: 19px;
    font-size: 12px; }
  .fourtyPercentWidth p {
    line-height: 19px;
    font-size: 12px; }

.activityRow {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 60%;
  padding: 10px 0;
  min-height: 66px; }
  .activityRow .timestamp {
    float: right;
    color: rgba(0, 0, 0, 0.382); }
  .activityRow .avatar {
    height: 66px;
    width: 66px;
    float: left;
    background: #ccc;
    margin-right: 10px; }

.rightPanel {
  width: 35%;
  float: right; }
  .rightPanel .title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 60px;
    font-size: 18px; }

.recentDatasetCard {
  background: #fff; }

.recentDatasetCardAlternative {
  height: 175px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-top: 10px;
  position: relative;
  background-size: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .recentDatasetCardAlternative .footer {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 46px;
    background: #000;
    opacity: .65;
    width: 100%;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    text-indent: 14px;
    height: 46px;
    overflow: hidden; }
    .recentDatasetCardAlternative .footer .textWrap {
      height: 46px;
      text-indent: 0px;
      padding-top: 12px;
      line-height: 22px;
      margin: 0 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.618); }
  .recentDatasetCardAlternative .timestamp {
    padding-right: 14px;
    float: right; }
  .recentDatasetCardAlternative:hover {
    cursor: pointer; }
    .recentDatasetCardAlternative:hover .footer {
      height: 175px;
      opacity: .8; }

.dashboard-tab .pointerArrow {
  float: left; }

.dashboard-tab .collapsed .pointerArrow {
  -webkit-transition: all 0.382s;
  -moz-transition: all 0.382s;
  -ms-transition: all 0.382s;
  -o-transition: all 0.382s;
  transition: all 0.382s;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.studentTable {
  border-left: 1px solid #D4D4D0;
  border-right: 1px solid #D4D4D0;
  border-bottom: 1px solid #D4D4D0; }
  .studentTable th {
    background: #D4D4D0;
    text-align: left; }
  .studentTable td, .studentTable th {
    width: 20%;
    line-height: 20px; }
  .studentTable tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.05); }
  .studentTable thead tr:hover {
    cursor: pointer;
    cursor: hand; }
  .studentTable thead tr th.headerSortUp,
  .studentTable thead tr th.headerSortDown {
    font-style: italic; }

.customTable {
  border-left: 1px solid #D4D4D0;
  border-right: 1px solid #D4D4D0;
  border-bottom: 1px solid #D4D4D0; }
  .customTable th {
    background: #D4D4D0;
    text-align: left; }
  .customTable td, .customTable th {
    width: 20%;
    line-height: 34px; }
  .customTable tr.odd {
    background: rgba(0, 0, 0, 0.05); }
  .customTable td.innerTd {
    padding-left: 0px;
    padding-right: 0px; }

.subTable {
  margin-left: 2%;
  width: 98%; }
  .subTable th {
    background: initial;
    text-align: left; }
  .subTable td, .subTable th {
    line-height: 18px; }
  .subTable tr {
    padding-left: 2%; }
    .subTable tr:nth-child(odd) {
      background: initial; }

.insideTable {
  margin-left: 0;
  width: 100%; }
  .insideTable td {
    line-height: 16px;
    font-size: 95%;
    width: 20%; }

.add-class-wrapper {
  margin-bottom: 15px; }
  .add-class-wrapper > a {
    min-width: 30%;
    background-color: #fff;
    color: #000;
    font-weight: 400;
    display: block;
    float: left;
    margin: 10px;
    padding: 6.5px 10px;
    height: 40px;
    line-height: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1); }
    .add-class-wrapper > a > i {
      font-size: 22px;
      margin-right: 7px;
      color: #30AEBB;
      float: left;
      margin-top: 2px; }
    .add-class-wrapper > a > img {
      width: 25px;
      margin-right: 7px; }
    .add-class-wrapper > a:hover {
      box-shadow: 3px 3px 3px #D4D4D0; }
  .add-class-wrapper:after {
    clear: both;
    content: '';
    display: block; }

.ngdialog .class-list {
  text-align: left;
  max-width: 300px;
  margin: auto; }
  .ngdialog .class-list li {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    box-shadow: none; }
    .ngdialog .class-list li:hover {
      box-shadow: 3px 3px 3px #D4D4D0; }
    .ngdialog .class-list li img {
      width: 25px; }
    .ngdialog .class-list li.disabled {
      opacity: .7;
      position: relative;
      padding-right: 30px; }
      .ngdialog .class-list li.disabled i.fa {
        top: 15px;
        position: absolute;
        right: 5px; }
      .ngdialog .class-list li.disabled:hover {
        box-shadow: none; }

.ngdialog .student-list {
  float: right;
  width: 60%;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 8px;
  text-align: left; }

.dashboard-view .seventy, .dashboard-view .thirty {
  min-height: 1em; }
  @media screen and (min-width: 750px) {
    .dashboard-view .seventy, .dashboard-view .thirty {
      float: left; } }
  @media screen and (max-width: 750px) {
    .dashboard-view .seventy, .dashboard-view .thirty {
      width: 100%; } }

.dashboard-view .seventy .cardWrapper {
  width: 33%;
  margin: 0 auto; }
  @media screen and (max-width: 479px) {
    .dashboard-view .seventy .cardWrapper {
      min-width: 100%;
      margin: 0 auto; } }

.dashboard-view .studentTable td {
  line-height: 19px;
  font-size: 12px; }

.dashboard-view .conference-banner {
  background-image: url(/static/img/home/dashboard/NSTA.jpg);
  background-size: cover;
  background-position: 50% 0;
  padding: 0; }
  .dashboard-view .conference-banner:after {
    background: rgba(48, 184, 187, 0.89); }
  .dashboard-view .conference-banner h3 {
    font-weight: 600;
    color: #ffdf68; }

.dashboard-view .premium-offer {
  background-image: url(/static/img/home/bg-section.jpg);
  background-size: cover;
  background-position: 50% 0;
  padding: 0; }
  .dashboard-view .premium-offer:after {
    background: rgba(48, 184, 187, 0.79); }
  .dashboard-view .premium-offer h3 {
    font-weight: 600;
    color: #ffdf68; }

.dashboard-clasroom-wrapper ul.tuva-tabs {
  margin-bottom: 0; }
  .dashboard-clasroom-wrapper ul.tuva-tabs li {
    padding: 12px 24px; }

@media screen and (max-width: 600px) {
  .dashboard-clasroom-wrapper ul.tuva-tabs {
    padding-top: 10px; }
    .dashboard-clasroom-wrapper ul.tuva-tabs li {
      padding: 8px 6px; } }

.dashboard-clasroom-wrapper .pointerArrow {
  float: left; }
  .dashboard-clasroom-wrapper .pointerArrow.expand {
    transform: rotate(90deg);
    transition: all 0.382s; }

.dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper {
  padding: 20px;
  border: 1px solid #ccc;
  background: #fff;
  margin-bottom: 20px; }
  .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper.no-padding {
    padding: 0; }
  .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper.completed {
    background-color: #E3E4D4;
    padding-top: 5px;
    padding-bottom: 5px; }
  .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box {
    display: flex;
    align-items: center; }
    .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box.clickable {
      cursor: pointer; }
      .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box.clickable:hover {
        opacity: 0.8; }
    .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box a.button:hover, .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box .django-inapp-survey-wrapper a.next-button:hover, .django-inapp-survey-wrapper .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box a.next-button:hover, .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box .django-inapp-survey-wrapper a.submit-button:hover, .django-inapp-survey-wrapper .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box a.submit-button:hover, .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box a.button:visited, .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box .django-inapp-survey-wrapper a.next-button:visited, .django-inapp-survey-wrapper .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box a.next-button:visited, .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box .django-inapp-survey-wrapper a.submit-button:visited, .django-inapp-survey-wrapper .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box a.submit-button:visited {
      color: #fff; }
    .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box h3 {
      margin-bottom: 5px; }
    .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box > div {
      display: inline-block;
      vertical-align: middle; }
      .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box > div:first-child {
        width: 100px;
        background-position: 50%;
        background-color: #e4e4d2;
        background-size: cover;
        height: 100px;
        border-radius: 100px;
        cursor: pointer; }
      .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box > div:nth-child(2) {
        padding: 0 20px;
        flex: 1; }
      .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box > div:nth-child(3) {
        min-width: 100px;
        max-width: 200px;
        vertical-align: middle;
        text-align: right; }
    .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary_box .inline-item {
      display: inline-block;
      padding: 0 25px 0 0; }
  .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > div {
    padding: 15px 20px;
    display: flex;
    align-items: center; }
  .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-header {
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px; }
    .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-header h3 {
      margin: 0; }
    .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-header > div:first-child {
      min-width: 50px;
      background-position: 50%;
      background-color: #e4e4d2;
      background-size: cover;
      height: 50px;
      border-radius: 50px;
      margin-right: 20px; }
    .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-header a .star-rating.readonly .star {
      cursor: pointer; }
  .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-notes {
    padding-bottom: 0; }
    .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-notes > div.profile-image {
      width: 40px;
      background-position: 50%;
      background-image: url("/static/img/profile_img.png");
      background-size: cover;
      height: 40px;
      border-radius: 40px;
      margin-right: 10px; }
    .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-notes > div.notes {
      flex: 1;
      max-width: 700px; }
    .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-notes.editable > div.notes {
      padding-right: 10px;
      position: relative;
      display: flex; }
      .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-notes.editable > div.notes .fa-pencil {
        padding-left: 10px;
        vertical-align: top;
        color: #30AEBB;
        font-size: 16px;
        cursor: pointer; }
  .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-meta > div:first-child {
    margin-right: 20px;
    flex: 1; }
  .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-meta .button, .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-meta .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-meta .next-button, .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-meta .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-meta .submit-button {
    min-width: 80px; }
  @media screen and (max-width: 750px) {
    .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-meta {
      display: block; }
      .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-meta > div {
        display: block; }
        .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-meta > div:first-child {
          margin-right: 0; }
        .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box > .summary-meta > div:last-child {
          margin-top: 15px; } }
  .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-wrapper .summary-box .inline-item {
    display: inline-block;
    padding: 0 25px 0 0; }

.dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-details {
  margin-top: 20px;
  border: 1px solid #e5e5e5; }
  .dashboard-clasroom-wrapper .classroom-activities-wrapper .activity-details .action-wrapper {
    padding: 10px;
    border-bottom: 1px solid #e5e5e5; }

.individual-notice {
  padding: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .individual-notice .notice {
    opacity: 0.9; }
  .individual-notice.highlight {
    background: #E4E4D2;
    font-weight: bold;
    border-bottom-color: #fff; }
    .individual-notice.highlight .notice {
      opacity: 1; }

.badge-icon {
  background: #fff;
  color: #000;
  border-radius: 11px;
  padding: 0px 8px; }

.button.orange, .django-inapp-survey-wrapper .orange.next-button, .django-inapp-survey-wrapper .orange.submit-button {
  background-color: #ed9c28; }
  .button.orange:hover, .django-inapp-survey-wrapper .orange.next-button:hover, .django-inapp-survey-wrapper .orange.submit-button:hover {
    background-color: #d58512; }

.button.gray, .django-inapp-survey-wrapper .gray.next-button, .django-inapp-survey-wrapper .gray.submit-button {
  background-color: #86867e; }
  .button.gray:hover, .django-inapp-survey-wrapper .gray.next-button:hover, .django-inapp-survey-wrapper .gray.submit-button:hover {
    background-color: #6F6F6F; }

.grading-wrapper .thirty {
  width: 25%; }

.grading-wrapper .seventy {
  width: 75%; }

.grading-wrapper .grading-drawer-overlay, .grading-wrapper .grading-drawer-button, .grading-wrapper .fa-times-circle-o {
  display: none; }

@media screen and (max-width: 800px) {
  .grading-wrapper.collapsed .grading-drawer-overlay {
    display: none; }
  .grading-wrapper.collapsed .thirty {
    width: 0px; }
  .grading-wrapper.collapsed .grading-drawer-button {
    display: block;
    position: absolute;
    top: 70px;
    left: 5px;
    font-size: 20px; }
  .grading-wrapper.collapsed .grading-header {
    padding-left: 30px; }
  .grading-wrapper.collapsed .fa-times-circle-o {
    display: none; }
  .grading-wrapper .grading-drawer-overlay {
    display: block;
    width: 100%;
    position: absolute;
    height: 100%;
    background: #000;
    opacity: 0.2; }
  .grading-wrapper .thirty {
    width: 250px;
    position: fixed;
    top: 48px;
    bottom: 0;
    left: 0;
    background: #F7F7F2;
    overflow: hidden; }
  .grading-wrapper .seventy {
    width: 100%; }
  .grading-wrapper .fa-times-circle-o {
    display: block;
    position: absolute;
    right: 3px;
    top: 3px;
    font-size: 25px; } }

.grading-wrapper .studentTable td, .grading-wrapper .studentTable th {
  width: auto;
  padding-right: 12px;
  padding-left: 12px; }

.grading-wrapper .activity-grade {
  font-weight: bold;
  padding-top: 3px;
  text-align: center;
  height: 30px;
  width: 30px;
  border-radius: 25px;
  border: 1px solid #285e8e;
  background: #3276b1;
  color: #FFFFFF; }

.grading-wrapper .student-review {
  max-width: 1000px;
  margin: auto; }

.grading-wrapper > div {
  display: inline-block;
  vertical-align: top; }
  .grading-wrapper > div .grading-header {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 70px; }
    .grading-wrapper > div .grading-header.flexible {
      display: flex; }
      .grading-wrapper > div .grading-header.flexible > div {
        display: inline-block;
        vertical-align: top; }
        .grading-wrapper > div .grading-header.flexible > div:first-child {
          flex: 1;
          min-width: 0; }
  @media screen and (min-width: 800px) {
    .grading-wrapper > div.thirty {
      border-right: 1px solid rgba(0, 0, 0, 0.1);
      box-shadow: 5px 0px 10px #E2E2E2; } }

.grading-wrapper .question-answer-list {
  height: calc(100vh - 116px);
  overflow-y: auto;
  padding: 10px 20px; }

.grading-wrapper ul.student-activity-list {
  height: calc(100vh - 116px);
  background-color: #EEF0E3;
  overflow-y: auto; }
  .grading-wrapper ul.student-activity-list li {
    line-height: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .grading-wrapper ul.student-activity-list li a {
      padding: 10px;
      display: block;
      color: inherit; }
    .grading-wrapper ul.student-activity-list li.active a {
      background: #F7F7F2; }
      .grading-wrapper ul.student-activity-list li.active a h4 {
        font-weight: bold; }

.grading-wrapper .comment-section {
  padding: 20px; }
  .grading-wrapper .comment-section textarea {
    width: 100%; }

html, body {
  height: 100%;
  min-width: 320px; }

/*.gly-spin
    animation: spin 2s infinite linear*/
/*@keyframes spin
    0%
        transform: rotate(0deg)
    100%
        transform: rotate(359deg)*/
.button.fixed, .django-inapp-survey-wrapper .fixed.next-button, .django-inapp-survey-wrapper .fixed.submit-button {
  height: 100%;
  width: 120px;
  cursor: pointer;
  border-radius: 0;
  margin: 0;
  padding: 0; }
  .button.fixed:disabled, .django-inapp-survey-wrapper .fixed.next-button:disabled, .django-inapp-survey-wrapper .fixed.submit-button:disabled {
    opacity: 0.5; }

.button.fixed.check, .django-inapp-survey-wrapper .fixed.check.next-button, .django-inapp-survey-wrapper .fixed.check.submit-button {
  color: #000;
  background-color: #FFCA05; }

a.button:hover, .django-inapp-survey-wrapper a.next-button:hover, .django-inapp-survey-wrapper a.submit-button:hover {
  text-decoration: none;
  color: #fff; }

.button.previous, .django-inapp-survey-wrapper .previous.next-button, .django-inapp-survey-wrapper .previous.submit-button {
  background-color: #EFEFE1;
  color: #000000; }
  .button.previous:hover, .django-inapp-survey-wrapper .previous.next-button:hover, .django-inapp-survey-wrapper .previous.submit-button:hover {
    background-color: #E2E2D5; }

.button.disabled, .django-inapp-survey-wrapper .disabled.next-button, .django-inapp-survey-wrapper .disabled.submit-button {
  cursor: wait; }
  .button.disabled.cursor, .django-inapp-survey-wrapper .disabled.cursor.next-button, .django-inapp-survey-wrapper .disabled.cursor.submit-button {
    cursor: not-allowed; }

.inline-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000000;
  overflow: auto; }

.inline-modal.full-except-header {
  padding: 20px;
  background-color: #FDFDFD;
  top: 46px;
  transition: all 500ms ease-in-out; }

.inline-modal.full-except-header.ng-hide {
  top: 100%; }

.inline-modal.full-center-content {
  background-color: transparent;
  transition: all linear 300ms; }
  .inline-modal.full-center-content .modal-overlay {
    position: absolute;
    z-index: 9999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.7; }
  .inline-modal.full-center-content .button, .inline-modal.full-center-content .django-inapp-survey-wrapper .next-button, .django-inapp-survey-wrapper .inline-modal.full-center-content .next-button, .inline-modal.full-center-content .django-inapp-survey-wrapper .submit-button, .django-inapp-survey-wrapper .inline-modal.full-center-content .submit-button {
    height: 60px;
    width: 50%; }
  .inline-modal.full-center-content .modal-content-wrapper {
    background-color: #FFFFFF;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000000; }
    .inline-modal.full-center-content .modal-content-wrapper .modal-content {
      padding: 40px 20px;
      text-align: center; }
    .inline-modal.full-center-content .modal-content-wrapper .modal-footer {
      padding: 0; }
    .inline-modal.full-center-content .modal-content-wrapper > .close {
      margin-right: 4px; }

.inline-modal.full-center-content.ng-hide {
  opacity: 0; }

#courses-page {
  height: 100%; }
  #courses-page #breadcrumb-wrapper {
    padding: 0;
    margin: 0 9px;
    height: 46px;
    position: relative;
    overflow: hidden;
    white-space: nowrap; }
    #courses-page #breadcrumb-wrapper.ellipsis .ellipsis-wrapper, #courses-page ul.tuva-tabs.responsive li#breadcrumb-wrapper .ellipsis-wrapper, ul.tuva-tabs.responsive #courses-page li#breadcrumb-wrapper .ellipsis-wrapper {
      display: block; }
    #courses-page #breadcrumb-wrapper.ellipsis .breadcrumbs, #courses-page ul.tuva-tabs.responsive li#breadcrumb-wrapper .breadcrumbs, ul.tuva-tabs.responsive #courses-page li#breadcrumb-wrapper .breadcrumbs {
      right: 0; }
    #courses-page #breadcrumb-wrapper .ellipsis-wrapper {
      padding: 0 9px;
      position: absolute;
      z-index: 100;
      font-size: 20px;
      display: none; }
      #courses-page #breadcrumb-wrapper .ellipsis-wrapper:hover > div {
        display: block; }
      #courses-page #breadcrumb-wrapper .ellipsis-wrapper > div {
        display: none;
        font-size: 12px;
        position: fixed;
        left: 90px;
        top: 42px;
        max-width: calc(100% - 150px);
        color: #666;
        white-space: pre-wrap;
        background-color: #F7F7F2;
        border: 1px solid #E0E0DE;
        box-shadow: 5px 5px 10px #E2E2E2;
        line-height: 1;
        padding: 10px; }
        #courses-page #breadcrumb-wrapper .ellipsis-wrapper > div > i {
          color: #F7F7F2;
          position: absolute;
          top: -7px;
          font-size: 16px; }
    #courses-page #breadcrumb-wrapper .breadcrumbs {
      padding: 0 9px;
      position: absolute; }
    #courses-page #breadcrumb-wrapper:hover > div {
      text-decoration: underline; }
  #courses-page a {
    text-decoration: none;
    cursor: pointer; }
  #courses-page #header a {
    display: block; }
  #courses-page #header .container {
    padding: 0;
    display: flex; }
    #courses-page #header .container #breadcrumb-wrapper {
      flex: 1; }
  #courses-page .left {
    float: left; }
  #courses-page .courses-wrapper {
    overflow: hidden;
    height: -webkit-calc(100% - 46px);
    height: -moz-calc(100% - 46px);
    height: calc(100% - 46px);
    padding-top: 46px; }
    #courses-page .courses-wrapper .form-wrapper {
      max-width: 75ch; }
      #courses-page .courses-wrapper .form-wrapper textarea {
        box-sizing: border-box; }
      #courses-page .courses-wrapper .form-wrapper textarea, #courses-page .courses-wrapper .form-wrapper img {
        width: 100%; }
    #courses-page .courses-wrapper ol {
      margin: 0 0 .75em 35px; }
    #courses-page .courses-wrapper b {
      font-weight: bold; }
    #courses-page .courses-wrapper ul.dropdown-menu {
      margin: 0; }
    #courses-page .courses-wrapper li {
      line-height: unset; }
    #courses-page .courses-wrapper > .left, #courses-page .courses-wrapper > .right {
      height: -webkit-calc(100% - 60px);
      height: -moz-calc(100% - 60px);
      height: calc(100% - 60px);
      box-sizing: border-box; }
      #courses-page .courses-wrapper > .left > .content-wrapper, #courses-page .courses-wrapper > .right > .content-wrapper {
        height: 100%;
        box-sizing: border-box; }
    #courses-page .courses-wrapper > .right > .content-wrapper {
      padding: 30px 40px;
      overflow: auto; }
    #courses-page .courses-wrapper > .right.seventy img, #courses-page .courses-wrapper > .right.seventy textarea, #courses-page .courses-wrapper > .right.seventy figure {
      max-width: 530px; }
    #courses-page .courses-wrapper > .right.thirty img, #courses-page .courses-wrapper > .right.thirty textarea, #courses-page .courses-wrapper > .right.thirty figure {
      max-width: 320px; }
    @media only screen and (max-width: 760px) {
      #courses-page .courses-wrapper > .right.seventy {
        width: 100%; } }
    #courses-page .courses-wrapper > .right.seventy > .content-wrapper {
      position: relative; }
      #courses-page .courses-wrapper > .right.seventy > .content-wrapper > h2 {
        margin-right: 100px; }
      #courses-page .courses-wrapper > .right.seventy > .content-wrapper > .time-label {
        right: 40px;
        top: 25px;
        position: absolute;
        background-color: #F4E8D9;
        padding: 10px; }
    #courses-page .courses-wrapper .thirty {
      width: 30%; }
    #courses-page .courses-wrapper .seventy {
      width: 70%; }
    #courses-page .courses-wrapper .right.thirty, #courses-page .courses-wrapper .right.seventy {
      border-left: 1px solid #E5E5E5; }
    #courses-page .courses-wrapper .left.thirty, #courses-page .courses-wrapper .right.thirty {
      background-color: #F7F7F2; }
    #courses-page .courses-wrapper .left.thirty {
      background: linear-gradient(-90deg, transparent 0%, transparent 10%, #F7F7F2 10%, #F7F7F2 10%), linear-gradient(0deg, #7C7C7B 0%, #7C7C7B 10%, #F7F7F2 10%, #F7F7F2 10%);
      background-size: 1.25em 1.25em; }
      @media only screen and (max-width: 760px) {
        #courses-page .courses-wrapper .left.thirty {
          display: none; } }
    #courses-page .courses-wrapper .left.seventy {
      padding: 0px;
      height: 100%; }
      #courses-page .courses-wrapper .left.seventy .content-wrapper {
        /* Remove footer height */
        height: -webkit-calc(100% - 62px);
        height: -moz-calc(100% - 62px);
        height: calc(100% - 62px); }
      #courses-page .courses-wrapper .left.seventy .markdown-content-wrapper {
        height: 100%;
        overflow: auto;
        padding: 30px 40px;
        box-sizing: border-box; }
    #courses-page .courses-wrapper .fullScreen {
      position: relative;
      height: 100%; }
    #courses-page .courses-wrapper .docs-block {
      border: 1px solid #ccc;
      padding: 10px;
      margin: 20px 0;
      border-radius: 5px; }
    #courses-page .courses-wrapper .content-wrapper table.bordered {
      border-right: 1px solid #e5e5e5;
      border-bottom: 1px solid #e5e5e5; }
      #courses-page .courses-wrapper .content-wrapper table.bordered td.bordered {
        border-left: 1px solid #e5e5e5;
        border-top: 1px solid #e5e5e5;
        padding: 10px; }
      #courses-page .courses-wrapper .content-wrapper table.bordered td {
        vertical-align: top;
        padding: 5px; }
    #courses-page .courses-wrapper .content-wrapper.ar-SD ul, #courses-page .courses-wrapper .content-wrapper.ar-SD ol {
      margin: 0 35px .75em 0; }
  #courses-page .module-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    min-width: 230px;
    background-color: #F7F7F2;
    border-right: 1px solid #E5E5E5;
    z-index: 999998;
    padding: 46px 0 60px 0;
    box-sizing: border-box; }
    #courses-page .module-drawer .module-wrapper {
      height: 100%;
      overflow: auto; }
      #courses-page .module-drawer .module-wrapper .module-list {
        margin: 0; }
        #courses-page .module-drawer .module-wrapper .module-list a {
          text-decoration: none;
          color: #A9A9A0; }
          #courses-page .module-drawer .module-wrapper .module-list a :hover {
            text-decoration: underline; }
        #courses-page .module-drawer .module-wrapper .module-list a.selected, #courses-page .module-drawer .module-wrapper .module-list a:hover {
          color: #000000; }
      #courses-page .module-drawer .module-wrapper .module-list > li {
        border-bottom: 1px solid #E5E5E5; }
      #courses-page .module-drawer .module-wrapper .module-list > li > a {
        padding: 20px;
        display: block; }
        #courses-page .module-drawer .module-wrapper .module-list > li > a > i {
          float: right; }
      #courses-page .module-drawer .module-wrapper .module-list > li > a.collapsed {
        background-color: #EFEFE1; }
      #courses-page .module-drawer .module-wrapper .module-list ul {
        margin-bottom: 20px;
        padding-right: 20px; }
      #courses-page .module-drawer .module-wrapper .module-list ul li {
        padding: 5px 10px 5px 5px; }
    #courses-page .module-drawer .premium-block {
      background-color: #F5F6F0;
      position: absolute;
      width: 100%;
      bottom: 0;
      left: 0;
      z-index: 10;
      height: 350px; }
      #courses-page .module-drawer .premium-block .premium-content {
        top: 12%; }
      #courses-page .module-drawer .premium-block .premium-overlay {
        margin: 10px 10px 90px 10px; }
  #courses-page .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background-color: #FFFFFF;
    border-top: 1px solid #E5E5E5;
    z-index: 999999; }
    #courses-page .footer .footer-options {
      width: 70%;
      float: left;
      height: 100%;
      border-right: 1px solid #E5E5E5;
      color: #A9A9A0; }
      #courses-page .footer .footer-options .footer-left-options {
        float: left; }
      #courses-page .footer .footer-options .footer-right-options {
        float: right;
        padding-top: 20px; }
        #courses-page .footer .footer-options .footer-right-options div {
          padding-right: 20px; }
    #courses-page .footer .left {
      padding-left: 20px;
      padding-top: 20px; }
      #courses-page .footer .left .glossary {
        text-decoration: none;
        color: #A9A9A0; }
        @media only screen and (max-width: 760px) {
          #courses-page .footer .left .glossary > span {
            display: none; } }
      #courses-page .footer .left .glossary:hover, #courses-page .footer .left .glossary.hover {
        color: #000000; }
        #courses-page .footer .left .glossary:hover .glossary-icon, #courses-page .footer .left .glossary.hover .glossary-icon {
          background-color: #E5CE7D; }
    #courses-page .footer a.button, #courses-page .footer .django-inapp-survey-wrapper a.next-button, .django-inapp-survey-wrapper #courses-page .footer a.next-button, #courses-page .footer .django-inapp-survey-wrapper a.submit-button, .django-inapp-survey-wrapper #courses-page .footer a.submit-button {
      color: #FFFFFF; }
  #courses-page .feedback-option {
    display: initial; }
    #courses-page .feedback-option .feedback-anchor {
      line-height: 60px;
      padding-left: 10px; }
      @media only screen and (max-width: 1100px) {
        #courses-page .feedback-option .feedback-anchor > span {
          display: none; }
        #courses-page .feedback-option .feedback-anchor .fa {
          font-size: 20px; } }
  #courses-page .list {
    list-style-type: none; }
  #courses-page .glossary-icon {
    background-color: #E5E5E5;
    padding: 10px;
    color: #FFFFFF;
    text-align: center;
    border-radius: 20px; }
  #courses-page .module-drawer {
    transition: all 1s ease-in-out;
    box-shadow: 5px 0px 10px #E2E2E2; }
  #courses-page .module-drawer.animated-close {
    left: -30%; }
    @media only screen and (max-width: 760px) {
      #courses-page .module-drawer.animated-close {
        left: -240px; } }
  #courses-page .module-drawer.animated-open {
    left: 0; }
  #courses-page #partners {
    position: relative;
    padding: 0;
    border-right: 1px solid #E5E5E5; }
    #courses-page #partners:hover .collaborator-hover-wrapper {
      display: block; }
    #courses-page #partners .collaborator-hover-wrapper {
      position: absolute;
      bottom: 100%;
      left: 0;
      width: 1px;
      height: 1px;
      display: none; }
      #courses-page #partners .collaborator-hover-wrapper > p {
        font-size: 13px;
        line-height: 1.5;
        width: 170px;
        left: 0;
        bottom: 10px;
        position: absolute;
        padding: 5px;
        background-color: #E5E5E5; }
      #courses-page #partners .collaborator-hover-wrapper > i {
        font-size: 20px;
        color: #E5E5E5;
        position: absolute;
        bottom: -4px;
        left: 20px; }

.analytics2 .course-name {
  text-align: left;
  color: #494949;
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 15px;
  font-weight: normal; }

.analytics2 .tuva-tabs {
  font-size: 18px; }
  .analytics2 .tuva-tabs li:first-child {
    padding-left: 0; }

.analytics2 .performance .items {
  margin-top: 10px; }
  .analytics2 .performance .items li {
    width: 45%;
    display: inline-flex;
    align-items: center;
    margin: 10px 10px 10px 0; }
    .analytics2 .performance .items li div:first-child {
      border-radius: 5px;
      font-weight: bold;
      flex-shrink: 0;
      width: 50px;
      text-align: center;
      margin-right: 10px; }
      .analytics2 .performance .items li div:first-child.poor {
        background-color: #F8F1E9;
        color: #FB7079; }
      .analytics2 .performance .items li div:first-child.good {
        background-color: #D5EFF2;
        color: #23AFB9; }
    .analytics2 .performance .items li div:last-child {
      line-height: 1.5em; }

.analytics2 .overview {
  display: flex; }
  .analytics2 .overview .enrolls {
    margin-left: 0; }
  .analytics2 .overview .details {
    text-align: center;
    background-color: transparent;
    padding: 0; }
    .analytics2 .overview .details a {
      color: #fff;
      display: block;
      background-color: #26AEB8;
      border-radius: 5px;
      padding: 12px; }
      .analytics2 .overview .details a:first-child {
        margin-bottom: 15px; }
  .analytics2 .overview > div {
    border-radius: 5px;
    margin: 0 20px;
    padding: 20px;
    background-color: #D5EFF2; }
    .analytics2 .overview > div > div {
      color: #23AFB9;
      font-weight: bold; }
      .analytics2 .overview > div > div:last-child {
        padding-top: 20px;
        font-size: 20px;
        text-align: center; }
  .analytics2 .overview > a.btn {
    width: unset;
    margin: auto 0;
    color: #fff; }

.tuva-attr, .tuva-icon {
  padding: 3px 5px;
  vertical-align: middle;
  font-family: Montserrat, sans-serif;
  line-height: 16px;
  white-space: nowrap;
  font-style: normal; }

.tuva-attr {
  border: 1px solid #CCC;
  color: #555555;
  background-color: #FFF;
  overflow: hidden;
  display: inline-block;
  max-width: 75%;
  text-overflow: ellipsis; }

.tuva-icon {
  color: #000;
  border: 1.5px solid #CCC;
  background-color: #F7F7F2; }
  .tuva-icon.reset:before {
    content: 'Reset'; }
  .tuva-icon.dot:before {
    content: 'Dot'; }
  .tuva-icon.line:before {
    content: 'Line'; }
  .tuva-icon.pie:before {
    content: 'Pie'; }
  .tuva-icon.bar:before {
    content: 'Bar'; }
  .tuva-icon.box:before {
    content: 'Box'; }
  .tuva-icon.bar-chart:before {
    content: 'Bar Chart'; }
  .tuva-icon.stacked-bar-chart:before {
    content: 'Stacked Bar Chart'; }
  .tuva-icon.stretched-bar-chart:before {
    content: 'Stretched Bar Chart'; }
  .tuva-icon.histogram:before {
    content: 'Histogram'; }
  .tuva-icon.box-plot:before {
    content: 'Box Plot'; }
  .tuva-icon.box-plot-with-outliers:before {
    content: 'Box Plot with Outliers'; }
  .tuva-icon.box-and-dot-plot:before {
    content: 'Box and Dot Plot'; }
  .tuva-icon.exclude-selected-cases:before {
    content: 'Exclude Selected Cases'; }
  .tuva-icon.keep-only-selected-cases:before {
    content: 'Keep Only Selected Cases'; }
  .tuva-icon.reset-all-filters:before {
    content: 'Reset All Filters'; }
  .tuva-icon.swap-x-and-y-axes:before {
    content: 'Swap X and Y Axes'; }
  .tuva-icon.count:before {
    content: 'Count'; }
  .tuva-icon.count-cases:before {
    content: 'Count Cases'; }
  .tuva-icon.count-by-section:before {
    content: 'Count by Section'; }
  .tuva-icon.totals:before {
    content: 'Totals'; }
  .tuva-icon.percent:before {
    content: 'Percent'; }
  .tuva-icon.percent-of-cases:before {
    content: 'Percent of Cases'; }
  .tuva-icon.percent-by-section:before {
    content: 'Percent By Section'; }
  .tuva-icon.overall-percent:before {
    content: 'Overall Percent'; }
  .tuva-icon.percent-column-wise:before {
    content: 'Percent Column-wise'; }
  .tuva-icon.percent-row-wise:before {
    content: 'Percent Row-wise'; }
  .tuva-icon.mean:before {
    content: 'Mean'; }
  .tuva-icon.median:before {
    content: 'Median'; }
  .tuva-icon.mode:before {
    content: 'Mode'; }
  .tuva-icon.standard-deviation:before {
    content: 'Standard Deviation'; }
  .tuva-icon.best-fit:before {
    content: 'Least Squares Line'; }
  .tuva-icon.least-squares-line:before {
    content: 'Least Squares Line'; }
  .tuva-icon.least-squares-line-by-category:before {
    content: 'Lines by Category'; }
  .tuva-icon.dividers:before {
    content: 'Dividers'; }
  .tuva-icon.ref-line-on-x:before {
    content: 'Add Reference Line on X'; }
  .tuva-icon.ref-line-on-y:before {
    content: 'Add Reference Line on Y'; }
  .tuva-icon.movable-line:before {
    content: 'Add Movable Line on X-Y'; }
  .tuva-icon.plus:before {
    content: '+'; }
  .tuva-icon.minus:before {
    content: '-'; }
  .tuva-icon.minus-plus:before {
    content: '- +'; }
  .tuva-icon.case-card:before {
    content: 'CASE CARD'; }
  .tuva-icon.ti-table-view:before {
    content: 'TABLE VIEW'; }
  .tuva-icon.ti-summary-view:before {
    content: 'SUMMARY VIEW'; }
  .tuva-icon.line-graph:before {
    content: 'Line Graph'; }
  .tuva-icon.line-graph-by-category:before {
    content: 'Line Graph by Category'; }
  .tuva-icon.percent-by-category:before {
    content: 'Percent by Category'; }
  .tuva-icon.count-by-category:before {
    content: 'Count by Category'; }
  .tuva-icon.functions:before {
    content: 'Stats'; }
  .tuva-icon.menu:before {
    content: 'Stats'; }
  .tuva-icon.stats:before {
    content: 'Stats'; }
  .tuva-icon.order-cases-by:before {
    content: 'Order Cases By'; }
  .tuva-icon.map:before {
    content: 'Map'; }
  .tuva-icon.swap-xy-axes:before {
    content: url(/static/img/icons/swap-xy-axes.svg); }
  .tuva-icon.ti-about-dataset, .tuva-icon.ti-keywords, .tuva-icon.ti-glossary, .tuva-icon.ti-tutorial-video {
    cursor: pointer; }
    .tuva-icon.ti-about-dataset:before, .tuva-icon.ti-keywords:before, .tuva-icon.ti-glossary:before, .tuva-icon.ti-tutorial-video:before {
      background-color: #30AEBB;
      padding: 2px 6px;
      color: #FFF;
      text-align: center;
      border-radius: 12px;
      margin-top: -10px;
      font-size: 13px; }
    .tuva-icon.ti-about-dataset:hover:before, .tuva-icon.ti-keywords:hover:before, .tuva-icon.ti-glossary:hover:before, .tuva-icon.ti-tutorial-video:hover:before {
      background-color: #229DAA; }
  .tuva-icon.ti-about-dataset:before {
    content: 'A';
    padding: 2px 5px; }
  .tuva-icon.ti-about-dataset:after {
    content: ' About'; }
  .tuva-icon.ti-keywords:before {
    content: 'V'; }
  .tuva-icon.ti-keywords:after {
    content: ' Vocabulary'; }
  .tuva-icon.ti-glossary:before {
    content: 'G'; }
  .tuva-icon.ti-glossary:after {
    content: ' Glossary'; }
  .tuva-icon.ti-tutorial-video:before {
    content: 'T'; }
  .tuva-icon.ti-tutorial-video:after {
    content: ' Tutorial Video'; }
  .tuva-icon.ti-text-size:before {
    content: '(T) Text Size'; }
  .tuva-icon.ti-circle:before {
    content: 'Circle'; }
  .tuva-icon.ti-annotate:before {
    content: 'Annotate'; }
  .tuva-icon.ti-text:before {
    content: 'Text'; }
  .tuva-icon.ti-arrow:before {
    content: 'Arrow'; }
  .tuva-icon.ti-clear-all:before {
    content: 'Clear All'; }
  .tuva-icon.ti-clear-all-reference-lines:before {
    content: 'Clear All Reference Lines'; }
  .tuva-icon.ti-f-of-x:before {
    content: 'f(x)'; }

.tuva-alert {
  padding: 20px;
  border: 2px solid;
  border-radius: 5px;
  margin: 10px 0 30px;
  border-color: #F1F0EC; }
  .tuva-alert .tuva-alert-icon {
    text-align: center;
    padding-bottom: 10px; }
    .tuva-alert .tuva-alert-icon .alert-hand:before {
      content: url(/static/img/icons/alert-stop.svg); }

.seventy .tuva-alert {
  display: table;
  width: 100%;
  box-sizing: border-box;
  border-color: #F7F6F1; }
  .seventy .tuva-alert .tuva-alert-icon {
    padding-bottom: 0;
    vertical-align: middle;
    width: 100px;
    padding-right: 10px;
    display: table-cell; }
  .seventy .tuva-alert .tuva-alert-content {
    vertical-align: middle;
    display: table-cell; }

fieldset:disabled .question-wrapper label, fieldset:disabled .question-wrapper input {
  cursor: default; }

fieldset:disabled input, fieldset:disabled textarea {
  color: #808080;
  background-color: #f5f5f5; }

.question-wrapper {
  margin-bottom: 10px; }
  .question-wrapper input[type="text"] {
    font-size: inherit; }
  .question-wrapper .question-label {
    margin-top: 5px; }
  .question-wrapper .options-wrapper {
    padding-left: 15px; }
    .question-wrapper .options-wrapper.invalid {
      border: 1px solid red;
      border-radius: 5px; }
    .question-wrapper .options-wrapper label {
      cursor: pointer;
      padding-left: 20px;
      text-indent: -20px; }
      .question-wrapper .options-wrapper label input {
        display: inline-block; }
    .question-wrapper .options-wrapper input {
      height: 15px;
      width: 15px; }
    .question-wrapper .options-wrapper ul {
      margin-left: 20px !important;
      list-style-type: upper-alpha; }
  .question-wrapper .result-indicator {
    display: none; }
    .question-wrapper .result-indicator.glyphicon-remove {
      color: #D61821; }
    .question-wrapper .result-indicator.glyphicon-ok {
      color: #26AEBC; }
  .question-wrapper.lesson-review {
    border: 1px solid #e5e5e5;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 5px; }
    .question-wrapper.lesson-review.green {
      border-color: green; }
    .question-wrapper.lesson-review.red {
      border-color: red; }
    .question-wrapper.lesson-review .result-indicator {
      display: inline; }
    .question-wrapper.lesson-review .answer {
      display: inline-block; }

.ar-SD .question-wrapper .options-wrapper {
  padding-right: 15px;
  padding-left: 0; }
  .ar-SD .question-wrapper .options-wrapper label {
    padding-right: 20px;
    padding-left: 0; }

.help-icon {
  display: inline;
  line-height: 2em;
  margin: 0 5px; }
  .help-icon button {
    background-color: #f7f7f2;
    padding: 0 10px; }

.star-rating {
  margin: 0;
  padding: 0;
  display: inline-block; }
  .star-rating .star {
    padding: 1px;
    color: #ddd;
    font-size: 20px;
    text-shadow: .05em .05em #aaa;
    list-style-type: none;
    display: inline-block;
    cursor: pointer; }
    .star-rating .star.filled {
      color: #FFC93F; }
  .star-rating.readonly .star {
    cursor: default; }
    .star-rating.readonly .star.filled {
      color: #FFC93F; }

.userdatasets-wrapper h3 {
  margin: 20px 0 20px; }

.userdatasets-wrapper hr {
  margin: 0.5em 0; }

.userdatasets-wrapper .edit-icon {
  text-decoration: none;
  color: #494949; }

.userdatasets-wrapper .review-header > div.action-wrapper {
  float: right;
  width: 180px;
  text-align: right; }
  @media screen and (max-width: 760px) {
    .userdatasets-wrapper .review-header > div.action-wrapper {
      float: none;
      max-width: 305px;
      width: 100%;
      margin: auto; } }

.userdatasets-wrapper .review-header > div.basic-info {
  float: left;
  width: calc(100% - 180px); }
  @media screen and (max-width: 760px) {
    .userdatasets-wrapper .review-header > div.basic-info {
      float: none;
      width: 100%; } }
  .userdatasets-wrapper .review-header > div.basic-info h2 {
    line-height: 24px;
    margin: 0; }
  .userdatasets-wrapper .review-header > div.basic-info input[name="title"] {
    width: 100%; }
  .userdatasets-wrapper .review-header > div.basic-info table tr td {
    vertical-align: middle;
    padding: 5px 10px 5px 0; }
    .userdatasets-wrapper .review-header > div.basic-info table tr td:first-child {
      white-space: nowrap; }
    .userdatasets-wrapper .review-header > div.basic-info table tr td:last-child {
      width: 99%; }

.userdatasets-wrapper .button:hover, .userdatasets-wrapper .django-inapp-survey-wrapper .next-button:hover, .django-inapp-survey-wrapper .userdatasets-wrapper .next-button:hover, .userdatasets-wrapper .django-inapp-survey-wrapper .submit-button:hover, .django-inapp-survey-wrapper .userdatasets-wrapper .submit-button:hover {
  color: #fff; }
  .userdatasets-wrapper .button:hover.gray, .userdatasets-wrapper .django-inapp-survey-wrapper .next-button:hover.gray, .django-inapp-survey-wrapper .userdatasets-wrapper .next-button:hover.gray, .userdatasets-wrapper .django-inapp-survey-wrapper .submit-button:hover.gray, .django-inapp-survey-wrapper .userdatasets-wrapper .submit-button:hover.gray {
    background: #666666; }

.userdatasets-wrapper .button.gray, .userdatasets-wrapper .django-inapp-survey-wrapper .gray.next-button, .django-inapp-survey-wrapper .userdatasets-wrapper .gray.next-button, .userdatasets-wrapper .django-inapp-survey-wrapper .gray.submit-button, .django-inapp-survey-wrapper .userdatasets-wrapper .gray.submit-button {
  background: gray; }

.userdatasets-wrapper .attributes-wrapper > div {
  display: inline-block;
  width: 38%;
  vertical-align: top; }
  .userdatasets-wrapper .attributes-wrapper > div:last-child {
    width: 24%; }
  @media screen and (max-width: 760px) {
    .userdatasets-wrapper .attributes-wrapper > div {
      display: block;
      width: 100% !important; } }

.userdatasets-wrapper .attributes-wrapper .attribs-wrapper {
  max-width: 400px;
  width: 100%;
  margin: auto;
  padding: 10px; }
  .userdatasets-wrapper .attributes-wrapper .attribs-wrapper h4 {
    font-size: 16px; }
  .userdatasets-wrapper .attributes-wrapper .attribs-wrapper .section {
    padding: 10px;
    background: #eaeae8; }
    .userdatasets-wrapper .attributes-wrapper .attribs-wrapper .section > h4 {
      text-align: center; }
  .userdatasets-wrapper .attributes-wrapper .attribs-wrapper div.attrib-row {
    margin: 5px 0;
    display: table; }
    .userdatasets-wrapper .attributes-wrapper .attribs-wrapper div.attrib-row.header {
      font-weight: bold; }
    .userdatasets-wrapper .attributes-wrapper .attribs-wrapper div.attrib-row > div {
      display: table-cell;
      background: #fff;
      padding: 5px;
      border-right: 1px solid #eaeae8; }
    .userdatasets-wrapper .attributes-wrapper .attribs-wrapper div.attrib-row > div:first-child {
      width: 40px;
      vertical-align: middle;
      text-align: center; }
    .userdatasets-wrapper .attributes-wrapper .attribs-wrapper div.attrib-row > div:nth-child(2) {
      width: 50px;
      vertical-align: middle; }
    .userdatasets-wrapper .attributes-wrapper .attribs-wrapper div.attrib-row > div:nth-child(3) {
      word-break: break-all;
      word-break: break-word;
      width: 135px; }
    .userdatasets-wrapper .attributes-wrapper .attribs-wrapper div.attrib-row > div:last-child {
      width: 135px;
      border: none; }
    .userdatasets-wrapper .attributes-wrapper .attribs-wrapper div.attrib-row .glyphicon-pencil, .userdatasets-wrapper .attributes-wrapper .attribs-wrapper div.attrib-row .tuva-icon.pencil:before {
      cursor: pointer; }
  .userdatasets-wrapper .attributes-wrapper .attribs-wrapper .attribs-editor hr {
    border-color: #ccc;
    border-bottom: none; }
  .userdatasets-wrapper .attributes-wrapper .attribs-wrapper .attribs-editor table td {
    vertical-align: middle;
    padding: 10px; }
    .userdatasets-wrapper .attributes-wrapper .attribs-wrapper .attribs-editor table td:first-child {
      white-space: nowrap; }
    .userdatasets-wrapper .attributes-wrapper .attribs-wrapper .attribs-editor table td:last-child {
      width: 99%; }
  .userdatasets-wrapper .attributes-wrapper .attribs-wrapper .attribs-editor table input, .userdatasets-wrapper .attributes-wrapper .attribs-wrapper .attribs-editor table select {
    width: 100%;
    color: #666; }
  .userdatasets-wrapper .attributes-wrapper .attribs-wrapper .attribs-editor table ul.unstyled {
    max-height: 200px;
    overflow-y: auto; }
  .userdatasets-wrapper .attributes-wrapper .attribs-wrapper .attribs-editor .action-wrapper {
    max-width: 250px;
    margin: 10px auto; }
    .userdatasets-wrapper .attributes-wrapper .attribs-wrapper .attribs-editor .action-wrapper input {
      padding: 0 10px;
      width: 45%;
      margin: 0 5px; }

.userdatasets-wrapper .attributes-wrapper .numerical-wrapper .attribs-wrapper div.attrib-row > div:nth-child(3) {
  width: 125px; }

.userdatasets-wrapper .attributes-wrapper .numerical-wrapper .attribs-wrapper div.attrib-row > div:last-child {
  width: 145px; }

.userdatasets-wrapper .example-spreadsheet {
  border: 1px solid #cccccc;
  margin-top: 30px; }
  .userdatasets-wrapper .example-spreadsheet > div {
    padding: 20px; }
    .userdatasets-wrapper .example-spreadsheet > div > h3 {
      margin-top: 0; }
    .userdatasets-wrapper .example-spreadsheet > div:last-child {
      max-width: 500px;
      margin: auto; }
      .userdatasets-wrapper .example-spreadsheet > div:last-child > h3 {
        text-align: center; }
  @media screen and (min-width: 760px) {
    .userdatasets-wrapper .example-spreadsheet > div {
      display: inline-block;
      vertical-align: top; }
      .userdatasets-wrapper .example-spreadsheet > div:first-child {
        width: 60%; }
      .userdatasets-wrapper .example-spreadsheet > div:last-child {
        border-left: 1px solid #ccc;
        width: 40%; }
        .userdatasets-wrapper .example-spreadsheet > div:last-child > h3 {
          text-align: left; } }

.userdatasets-wrapper ul.tuva-tabs li {
  font-size: 16px; }

.userdatasets-wrapper .attributes-wrapper #caseDiv {
  height: auto !important; }

.userdatasets-wrapper .attributes-wrapper table.caseCardView {
  margin: 0;
  width: 100%; }
  .userdatasets-wrapper .attributes-wrapper table.caseCardView tr td.filterCard {
    width: 25px;
    text-align: center; }
  .userdatasets-wrapper .attributes-wrapper table.caseCardView tr td.colorCard {
    width: 50px; }
  .userdatasets-wrapper .attributes-wrapper table.caseCardView tr td.valueCard {
    width: 82px; }
  .userdatasets-wrapper .attributes-wrapper table.caseCardView tr td.attributeCard {
    overflow: hidden; }

.userdatasets-wrapper .attributes-wrapper .filterArea {
  min-height: 425px; }

.upload-wrapper {
  height: calc(100vh - 46px);
  position: relative; }
  .upload-wrapper .file-handler-wrapper {
    position: absolute;
    background-color: #fff;
    top: 42px;
    left: 190px;
    right: 0;
    bottom: 48px;
    z-index: 998; }
    @media screen and (min-width: 1260px) {
      .upload-wrapper .file-handler-wrapper {
        left: 15%; } }
    .upload-wrapper .file-handler-wrapper .drop-box {
      overflow: auto;
      background: #FFF;
      border: 5px dashed #DDD;
      text-align: center;
      padding: 30px 10px 10px;
      right: 20px;
      position: absolute;
      top: 10px;
      left: 20px;
      bottom: 2px; }
      .upload-wrapper .file-handler-wrapper .drop-box.dragover {
        background: #F8F8F8;
        border-color: #30AEBB; }
        .upload-wrapper .file-handler-wrapper .drop-box.dragover .upload-options {
          display: none; }
    .upload-wrapper .file-handler-wrapper .upload-options {
      margin: 50px auto;
      text-align: left;
      max-width: 510px; }
    .upload-wrapper .file-handler-wrapper .buttons-wrapper button {
      border-radius: 5px;
      padding: 0.5em 1em;
      line-height: 1.5em;
      background-color: #fff;
      border: 1px solid #30AEBB;
      color: #30AEBB;
      margin: auto 5px;
      outline: 0; }
      .upload-wrapper .file-handler-wrapper .buttons-wrapper button.drag-drop {
        border: 1px dashed #666;
        color: #666; }

#datatable .handsontable, .tableView .handsontable {
  overflow: hidden; }

.a11y a:focus {
  outline: auto;
  outline-color: #30AEBB; }

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