@charset "utf-8";
/*============= GENERAL ===============*/
body {
  margin: 0;
  padding: 0;
  width: 100%;
}
* {
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
* {
  -webkit-tap-highlight-color: transparent;
}
html,
body {
  height: 100%;
}
html,
body,
table,
select,
input,
textarea {
  font-family: Verdana, Arial, Helvetica, sans-serif;
}
table,
select,
input,
textarea {
  font-size: inherit;
}
table {
  width: 100%;
}
html,
body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
fieldset,
input,
hr {
  margin: 0;
  padding: 0;
}
li {
  list-style-position: outside;
}
fieldset,
img,
hr {
  border: none;
}
caption,
th {
  text-align: left;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td {
  vertical-align: top;
}
div {
  display: block;
}
span {
  display: inline-block;
}
a {
  text-decoration: none;
  cursor: pointer;
}
a:focus,
a:hover {
  text-decoration: none;
}
select {
  border: 1px solid #CCCCCC;
}
p.spacer {
  line-height: 0px;
  clear: both;
  display: block;
  padding: 0px;
  margin: 0px;
  height: 0px;
}
input[type="button"]:focus {
  outline: none;
}
img {
  max-width: 100%;
  display: inline-block;
}
video {
  max-width: 100%;
}
b,
strong {
  font-weight: bold;
  font-weight: 600;
}
s div,
i div,
u div,
s span,
i span,
u span {
  text-decoration: inherit;
}
/*Scroll bar*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #fff;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
::-webkit-scrollbar-thumb:active {
  background: #888;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/* Varibles */
/*System UI Color*/
/*Default*/
/*Button Color*/
/*Theme Color*/
/*Filter from white to Color1 */
.filter-whiteToColor1 {
  -webkit-filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
  filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
}
/* Project Varibles */
/* Effects */
/* Preset Classes*/
.fill {
  width: 100%;
  height: 100%;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.relative {
  position: relative;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.top {
  vertical-align: top;
}
.middle {
  vertical-align: middle;
}
.bottom {
  vertical-align: bottom;
}
.pointer {
  cursor: pointer;
}
.marginB10 {
  margin-bottom: 10px;
}
.marginB20 {
  margin-bottom: 20px;
}
.marginR10 {
  margin-right: 10px;
}
.marginR20 {
  margin-right: 20px;
}
.hide {
  display: none !important;
}
div.show {
  display: block !important;
}
span.show {
  display: inline-block !important;
}
.hidden {
  visibility: hidden;
}
.opacity0 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.opacity80 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.opacity50 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.opacity30 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
.floatR,
right {
  float: right;
}
.floatL,
left {
  float: left;
}
.hidden {
  visibility: hidden;
}
.roundCorners-5 {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.roundCorners-10 {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.bolder {
  font-weight: bolder;
  font-weight: 500;
}
.bold {
  font-weight: bold;
  font-weight: 600;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.fixLine {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fixLine.one {
  line-clamp: 1;
  -webkit-line-clamp: 1;
}
.fixLine.two {
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
.fixLine.three {
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
.overflowHidden {
  overflow: hidden;
}
.withMask:before {
  position: fixed;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (min-width: 769px) {
  .hide-d {
    display: none;
  }
}
@media (max-width: 768px) {
  .hide-m {
    display: none;
  }
}
@media (max-width: 480px) {
  .hide-p {
    display: none;
  }
}
@media (min-width: 769px) {
  *.hide-d {
    display: none !important;
  }
}
@media (max-width: 768px) {
  *.hide-m {
    display: none !important;
  }
}
.fullW {
  width: 100% !important;
  display: block;
}
@media (max-width: 969px) {
  .fullW-dm {
    width: 100% !important;
    display: block;
  }
}
@media (max-width: 768px) {
  .fullW-m {
    width: 100% !important;
    display: block;
  }
}
@media (max-width: 480px) {
  .fullW-p {
    width: 100% !important;
    display: block;
  }
}
/* Preset Theme */
.textColor1 {
  color: #0059ae;
}
.textColor2 {
  color: #1976d2;
}
.bgColor1 {
  background-color: #0059ae;
}
.bgColor2 {
  background-color: #1976d2;
}
.bgColor3 {
  background-color: #1fa686;
}
.bgColor4 {
  background-color: #189d7e;
}
.bgColor5 {
  background-color: #f4fdff;
}
.bgBanner {
  background-image: url("/intranet/images/banner.jpg");
}
.mainWidth {
  width: 95%;
  max-width: 1800px;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
/* Resp break points */
html,
body,
table,
select,
input,
textarea {
  font-family: Arial, 'LiHei Pro', 'Microsoft JhengHei', sans-serif;
  font-style: normal;
  color: #333;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
}
@media (max-width: 768px) {
  html,
  body,
  table,
  select,
  input,
  textarea {
    font-size: 17px;
  }
}
/* Icon Web Font */
/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}
.fa-xs {
  font-size: .75em;
}
.fa-sm {
  font-size: .875em;
}
.fa-1x {
  font-size: 1em;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-6x {
  font-size: 6em;
}
.fa-7x {
  font-size: 7em;
}
.fa-8x {
  font-size: 8em;
}
.fa-9x {
  font-size: 9em;
}
.fa-10x {
  font-size: 10em;
}
.fa-fw {
  text-align: center;
  width: 1.25em;
}
.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}
.fa-border {
  border-radius: .1em;
  border: solid 0.08em #eee;
  padding: .2em .25em .15em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em;
}
.fa-spin {
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2em;
}
.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}
.fa-accessible-icon:before {
  content: "\f368";
}
.fa-accusoft:before {
  content: "\f369";
}
.fa-acquisitions-incorporated:before {
  content: "\f6af";
}
.fa-ad:before {
  content: "\f641";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-card:before {
  content: "\f2bb";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-adn:before {
  content: "\f170";
}
.fa-adobe:before {
  content: "\f778";
}
.fa-adversal:before {
  content: "\f36a";
}
.fa-affiliatetheme:before {
  content: "\f36b";
}
.fa-air-freshener:before {
  content: "\f5d0";
}
.fa-airbnb:before {
  content: "\f834";
}
.fa-algolia:before {
  content: "\f36c";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-alipay:before {
  content: "\f642";
}
.fa-allergies:before {
  content: "\f461";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-amazon-pay:before {
  content: "\f42c";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-amilia:before {
  content: "\f36d";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-android:before {
  content: "\f17b";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angry:before {
  content: "\f556";
}
.fa-angrycreative:before {
  content: "\f36e";
}
.fa-angular:before {
  content: "\f420";
}
.fa-ankh:before {
  content: "\f644";
}
.fa-app-store:before {
  content: "\f36f";
}
.fa-app-store-ios:before {
  content: "\f370";
}
.fa-apper:before {
  content: "\f371";
}
.fa-apple:before {
  content: "\f179";
}
.fa-apple-alt:before {
  content: "\f5d1";
}
.fa-apple-pay:before {
  content: "\f415";
}
.fa-archive:before {
  content: "\f187";
}
.fa-archway:before {
  content: "\f557";
}
.fa-arrow-alt-circle-down:before {
  content: "\f358";
}
.fa-arrow-alt-circle-left:before {
  content: "\f359";
}
.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}
.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-arrows-alt-h:before {
  content: "\f337";
}
.fa-arrows-alt-v:before {
  content: "\f338";
}
.fa-artstation:before {
  content: "\f77a";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-asymmetrik:before {
  content: "\f372";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-atlas:before {
  content: "\f558";
}
.fa-atlassian:before {
  content: "\f77b";
}
.fa-atom:before {
  content: "\f5d2";
}
.fa-audible:before {
  content: "\f373";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-autoprefixer:before {
  content: "\f41c";
}
.fa-avianex:before {
  content: "\f374";
}
.fa-aviato:before {
  content: "\f421";
}
.fa-award:before {
  content: "\f559";
}
.fa-aws:before {
  content: "\f375";
}
.fa-baby:before {
  content: "\f77c";
}
.fa-baby-carriage:before {
  content: "\f77d";
}
.fa-backspace:before {
  content: "\f55a";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-bacon:before {
  content: "\f7e5";
}
.fa-bahai:before {
  content: "\f666";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-balance-scale-left:before {
  content: "\f515";
}
.fa-balance-scale-right:before {
  content: "\f516";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-band-aid:before {
  content: "\f462";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-bars:before {
  content: "\f0c9";
}
.fa-baseball-ball:before {
  content: "\f433";
}
.fa-basketball-ball:before {
  content: "\f434";
}
.fa-bath:before {
  content: "\f2cd";
}
.fa-battery-empty:before {
  content: "\f244";
}
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battle-net:before {
  content: "\f835";
}
.fa-bed:before {
  content: "\f236";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bezier-curve:before {
  content: "\f55b";
}
.fa-bible:before {
  content: "\f647";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-biking:before {
  content: "\f84a";
}
.fa-bimobject:before {
  content: "\f378";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-biohazard:before {
  content: "\f780";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitcoin:before {
  content: "\f379";
}
.fa-bity:before {
  content: "\f37a";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-blackberry:before {
  content: "\f37b";
}
.fa-blender:before {
  content: "\f517";
}
.fa-blender-phone:before {
  content: "\f6b6";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-blog:before {
  content: "\f781";
}
.fa-blogger:before {
  content: "\f37c";
}
.fa-blogger-b:before {
  content: "\f37d";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-bold:before {
  content: "\f032";
}
.fa-bolt:before {
  content: "\f0e7";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-bone:before {
  content: "\f5d7";
}
.fa-bong:before {
  content: "\f55c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-book-dead:before {
  content: "\f6b7";
}
.fa-book-medical:before {
  content: "\f7e6";
}
.fa-book-open:before {
  content: "\f518";
}
.fa-book-reader:before {
  content: "\f5da";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-bootstrap:before {
  content: "\f836";
}
.fa-border-all:before {
  content: "\f84c";
}
.fa-border-none:before {
  content: "\f850";
}
.fa-border-style:before {
  content: "\f853";
}
.fa-bowling-ball:before {
  content: "\f436";
}
.fa-box:before {
  content: "\f466";
}
.fa-box-open:before {
  content: "\f49e";
}
.fa-box-tissue:before {
  content: "\f95b";
}
.fa-boxes:before {
  content: "\f468";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-brain:before {
  content: "\f5dc";
}
.fa-bread-slice:before {
  content: "\f7ec";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-briefcase-medical:before {
  content: "\f469";
}
.fa-broadcast-tower:before {
  content: "\f519";
}
.fa-broom:before {
  content: "\f51a";
}
.fa-brush:before {
  content: "\f55d";
}
.fa-btc:before {
  content: "\f15a";
}
.fa-buffer:before {
  content: "\f837";
}
.fa-bug:before {
  content: "\f188";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-burn:before {
  content: "\f46a";
}
.fa-buromobelexperte:before {
  content: "\f37f";
}
.fa-bus:before {
  content: "\f207";
}
.fa-bus-alt:before {
  content: "\f55e";
}
.fa-business-time:before {
  content: "\f64a";
}
.fa-buy-n-large:before {
  content: "\f8a6";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-calendar:before {
  content: "\f133";
}
.fa-calendar-alt:before {
  content: "\f073";
}
.fa-calendar-check:before {
  content: "\f274";
}
.fa-calendar-day:before {
  content: "\f783";
}
.fa-calendar-minus:before {
  content: "\f272";
}
.fa-calendar-plus:before {
  content: "\f271";
}
.fa-calendar-times:before {
  content: "\f273";
}
.fa-calendar-week:before {
  content: "\f784";
}
.fa-camera:before {
  content: "\f030";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-campground:before {
  content: "\f6bb";
}
.fa-canadian-maple-leaf:before {
  content: "\f785";
}
.fa-candy-cane:before {
  content: "\f786";
}
.fa-cannabis:before {
  content: "\f55f";
}
.fa-capsules:before {
  content: "\f46b";
}
.fa-car:before {
  content: "\f1b9";
}
.fa-car-alt:before {
  content: "\f5de";
}
.fa-car-battery:before {
  content: "\f5df";
}
.fa-car-crash:before {
  content: "\f5e1";
}
.fa-car-side:before {
  content: "\f5e4";
}
.fa-caravan:before {
  content: "\f8ff";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-caret-square-down:before {
  content: "\f150";
}
.fa-caret-square-left:before {
  content: "\f191";
}
.fa-caret-square-right:before {
  content: "\f152";
}
.fa-caret-square-up:before {
  content: "\f151";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-carrot:before {
  content: "\f787";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cash-register:before {
  content: "\f788";
}
.fa-cat:before {
  content: "\f6be";
}
.fa-cc-amazon-pay:before {
  content: "\f42d";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-apple-pay:before {
  content: "\f416";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-centercode:before {
  content: "\f380";
}
.fa-centos:before {
  content: "\f789";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-chair:before {
  content: "\f6c0";
}
.fa-chalkboard:before {
  content: "\f51b";
}
.fa-chalkboard-teacher:before {
  content: "\f51c";
}
.fa-charging-station:before {
  content: "\f5e7";
}
.fa-chart-area:before {
  content: "\f1fe";
}
.fa-chart-bar:before {
  content: "\f080";
}
.fa-chart-line:before {
  content: "\f201";
}
.fa-chart-pie:before {
  content: "\f200";
}
.fa-check:before {
  content: "\f00c";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-check-double:before {
  content: "\f560";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-cheese:before {
  content: "\f7ef";
}
.fa-chess:before {
  content: "\f439";
}
.fa-chess-bishop:before {
  content: "\f43a";
}
.fa-chess-board:before {
  content: "\f43c";
}
.fa-chess-king:before {
  content: "\f43f";
}
.fa-chess-knight:before {
  content: "\f441";
}
.fa-chess-pawn:before {
  content: "\f443";
}
.fa-chess-queen:before {
  content: "\f445";
}
.fa-chess-rook:before {
  content: "\f447";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-chromecast:before {
  content: "\f838";
}
.fa-church:before {
  content: "\f51d";
}
.fa-circle:before {
  content: "\f111";
}
.fa-circle-notch:before {
  content: "\f1ce";
}
.fa-city:before {
  content: "\f64f";
}
.fa-clinic-medical:before {
  content: "\f7f2";
}
.fa-clipboard:before {
  content: "\f328";
}
.fa-clipboard-check:before {
  content: "\f46c";
}
.fa-clipboard-list:before {
  content: "\f46d";
}
.fa-clock:before {
  content: "\f017";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-closed-captioning:before {
  content: "\f20a";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-cloud-download-alt:before {
  content: "\f381";
}
.fa-cloud-meatball:before {
  content: "\f73b";
}
.fa-cloud-moon:before {
  content: "\f6c3";
}
.fa-cloud-moon-rain:before {
  content: "\f73c";
}
.fa-cloud-rain:before {
  content: "\f73d";
}
.fa-cloud-showers-heavy:before {
  content: "\f740";
}
.fa-cloud-sun:before {
  content: "\f6c4";
}
.fa-cloud-sun-rain:before {
  content: "\f743";
}
.fa-cloud-upload-alt:before {
  content: "\f382";
}
.fa-cloudscale:before {
  content: "\f383";
}
.fa-cloudsmith:before {
  content: "\f384";
}
.fa-cloudversify:before {
  content: "\f385";
}
.fa-cocktail:before {
  content: "\f561";
}
.fa-code:before {
  content: "\f121";
}
.fa-code-branch:before {
  content: "\f126";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cog:before {
  content: "\f013";
}
.fa-cogs:before {
  content: "\f085";
}
.fa-coins:before {
  content: "\f51e";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-comment:before {
  content: "\f075";
}
.fa-comment-alt:before {
  content: "\f27a";
}
.fa-comment-dollar:before {
  content: "\f651";
}
.fa-comment-dots:before {
  content: "\f4ad";
}
.fa-comment-medical:before {
  content: "\f7f5";
}
.fa-comment-slash:before {
  content: "\f4b3";
}
.fa-comments:before {
  content: "\f086";
}
.fa-comments-dollar:before {
  content: "\f653";
}
.fa-compact-disc:before {
  content: "\f51f";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-compress:before {
  content: "\f066";
}
.fa-compress-alt:before {
  content: "\f422";
}
.fa-compress-arrows-alt:before {
  content: "\f78c";
}
.fa-concierge-bell:before {
  content: "\f562";
}
.fa-confluence:before {
  content: "\f78d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-cookie:before {
  content: "\f563";
}
.fa-cookie-bite:before {
  content: "\f564";
}
.fa-copy:before {
  content: "\f0c5";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-cotton-bureau:before {
  content: "\f89e";
}
.fa-couch:before {
  content: "\f4b8";
}
.fa-cpanel:before {
  content: "\f388";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-creative-commons-by:before {
  content: "\f4e7";
}
.fa-creative-commons-nc:before {
  content: "\f4e8";
}
.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}
.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}
.fa-creative-commons-nd:before {
  content: "\f4eb";
}
.fa-creative-commons-pd:before {
  content: "\f4ec";
}
.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}
.fa-creative-commons-remix:before {
  content: "\f4ee";
}
.fa-creative-commons-sa:before {
  content: "\f4ef";
}
.fa-creative-commons-sampling:before {
  content: "\f4f0";
}
.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}
.fa-creative-commons-share:before {
  content: "\f4f2";
}
.fa-creative-commons-zero:before {
  content: "\f4f3";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-critical-role:before {
  content: "\f6c9";
}
.fa-crop:before {
  content: "\f125";
}
.fa-crop-alt:before {
  content: "\f565";
}
.fa-cross:before {
  content: "\f654";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-crow:before {
  content: "\f520";
}
.fa-crown:before {
  content: "\f521";
}
.fa-crutch:before {
  content: "\f7f7";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-css3-alt:before {
  content: "\f38b";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-cut:before {
  content: "\f0c4";
}
.fa-cuttlefish:before {
  content: "\f38c";
}
.fa-d-and-d:before {
  content: "\f38d";
}
.fa-d-and-d-beyond:before {
  content: "\f6ca";
}
.fa-dailymotion:before {
  content: "\f952";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-deaf:before {
  content: "\f2a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-democrat:before {
  content: "\f747";
}
.fa-deploydog:before {
  content: "\f38e";
}
.fa-deskpro:before {
  content: "\f38f";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-dev:before {
  content: "\f6cc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-dharmachakra:before {
  content: "\f655";
}
.fa-dhl:before {
  content: "\f790";
}
.fa-diagnoses:before {
  content: "\f470";
}
.fa-diaspora:before {
  content: "\f791";
}
.fa-dice:before {
  content: "\f522";
}
.fa-dice-d20:before {
  content: "\f6cf";
}
.fa-dice-d6:before {
  content: "\f6d1";
}
.fa-dice-five:before {
  content: "\f523";
}
.fa-dice-four:before {
  content: "\f524";
}
.fa-dice-one:before {
  content: "\f525";
}
.fa-dice-six:before {
  content: "\f526";
}
.fa-dice-three:before {
  content: "\f527";
}
.fa-dice-two:before {
  content: "\f528";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-digital-ocean:before {
  content: "\f391";
}
.fa-digital-tachograph:before {
  content: "\f566";
}
.fa-directions:before {
  content: "\f5eb";
}
.fa-discord:before {
  content: "\f392";
}
.fa-discourse:before {
  content: "\f393";
}
.fa-disease:before {
  content: "\f7fa";
}
.fa-divide:before {
  content: "\f529";
}
.fa-dizzy:before {
  content: "\f567";
}
.fa-dna:before {
  content: "\f471";
}
.fa-dochub:before {
  content: "\f394";
}
.fa-docker:before {
  content: "\f395";
}
.fa-dog:before {
  content: "\f6d3";
}
.fa-dollar-sign:before {
  content: "\f155";
}
.fa-dolly:before {
  content: "\f472";
}
.fa-dolly-flatbed:before {
  content: "\f474";
}
.fa-donate:before {
  content: "\f4b9";
}
.fa-door-closed:before {
  content: "\f52a";
}
.fa-door-open:before {
  content: "\f52b";
}
.fa-dot-circle:before {
  content: "\f192";
}
.fa-dove:before {
  content: "\f4ba";
}
.fa-download:before {
  content: "\f019";
}
.fa-draft2digital:before {
  content: "\f396";
}
.fa-drafting-compass:before {
  content: "\f568";
}
.fa-dragon:before {
  content: "\f6d5";
}
.fa-draw-polygon:before {
  content: "\f5ee";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-dribbble-square:before {
  content: "\f397";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-drum:before {
  content: "\f569";
}
.fa-drum-steelpan:before {
  content: "\f56a";
}
.fa-drumstick-bite:before {
  content: "\f6d7";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-dumbbell:before {
  content: "\f44b";
}
.fa-dumpster:before {
  content: "\f793";
}
.fa-dumpster-fire:before {
  content: "\f794";
}
.fa-dungeon:before {
  content: "\f6d9";
}
.fa-dyalog:before {
  content: "\f399";
}
.fa-earlybirds:before {
  content: "\f39a";
}
.fa-ebay:before {
  content: "\f4f4";
}
.fa-edge:before {
  content: "\f282";
}
.fa-edit:before {
  content: "\f044";
}
.fa-egg:before {
  content: "\f7fb";
}
.fa-eject:before {
  content: "\f052";
}
.fa-elementor:before {
  content: "\f430";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-ello:before {
  content: "\f5f1";
}
.fa-ember:before {
  content: "\f423";
}
.fa-empire:before {
  content: "\f1d1";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-text:before {
  content: "\f658";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-envira:before {
  content: "\f299";
}
.fa-equals:before {
  content: "\f52c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-erlang:before {
  content: "\f39d";
}
.fa-ethereum:before {
  content: "\f42e";
}
.fa-ethernet:before {
  content: "\f796";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-euro-sign:before {
  content: "\f153";
}
.fa-evernote:before {
  content: "\f839";
}
.fa-exchange-alt:before {
  content: "\f362";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-expand:before {
  content: "\f065";
}
.fa-expand-alt:before {
  content: "\f424";
}
.fa-expand-arrows-alt:before {
  content: "\f31e";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-external-link-alt:before {
  content: "\f35d";
}
.fa-external-link-square-alt:before {
  content: "\f360";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-dropper:before {
  content: "\f1fb";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-facebook-f:before {
  content: "\f39e";
}
.fa-facebook-messenger:before {
  content: "\f39f";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-fan:before {
  content: "\f863";
}
.fa-fantasy-flight-games:before {
  content: "\f6dc";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-faucet:before {
  content: "\f905";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-feather:before {
  content: "\f52d";
}
.fa-feather-alt:before {
  content: "\f56b";
}
.fa-fedex:before {
  content: "\f797";
}
.fa-fedora:before {
  content: "\f798";
}
.fa-female:before {
  content: "\f182";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-figma:before {
  content: "\f799";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-alt:before {
  content: "\f15c";
}
.fa-file-archive:before {
  content: "\f1c6";
}
.fa-file-audio:before {
  content: "\f1c7";
}
.fa-file-code:before {
  content: "\f1c9";
}
.fa-file-contract:before {
  content: "\f56c";
}
.fa-file-csv:before {
  content: "\f6dd";
}
.fa-file-download:before {
  content: "\f56d";
}
.fa-file-excel:before {
  content: "\f1c3";
}
.fa-file-export:before {
  content: "\f56e";
}
.fa-file-image:before {
  content: "\f1c5";
}
.fa-file-import:before {
  content: "\f56f";
}
.fa-file-invoice:before {
  content: "\f570";
}
.fa-file-invoice-dollar:before {
  content: "\f571";
}
.fa-file-medical:before {
  content: "\f477";
}
.fa-file-medical-alt:before {
  content: "\f478";
}
.fa-file-pdf:before {
  content: "\f1c1";
}
.fa-file-powerpoint:before {
  content: "\f1c4";
}
.fa-file-prescription:before {
  content: "\f572";
}
.fa-file-signature:before {
  content: "\f573";
}
.fa-file-upload:before {
  content: "\f574";
}
.fa-file-video:before {
  content: "\f1c8";
}
.fa-file-word:before {
  content: "\f1c2";
}
.fa-fill:before {
  content: "\f575";
}
.fa-fill-drip:before {
  content: "\f576";
}
.fa-film:before {
  content: "\f008";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-fingerprint:before {
  content: "\f577";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-fire-alt:before {
  content: "\f7e4";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-firefox-browser:before {
  content: "\f907";
}
.fa-first-aid:before {
  content: "\f479";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-first-order-alt:before {
  content: "\f50a";
}
.fa-firstdraft:before {
  content: "\f3a1";
}
.fa-fish:before {
  content: "\f578";
}
.fa-fist-raised:before {
  content: "\f6de";
}
.fa-flag:before {
  content: "\f024";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-flag-usa:before {
  content: "\f74d";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-flipboard:before {
  content: "\f44d";
}
.fa-flushed:before {
  content: "\f579";
}
.fa-fly:before {
  content: "\f417";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-minus:before {
  content: "\f65d";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-folder-plus:before {
  content: "\f65e";
}
.fa-font:before {
  content: "\f031";
}
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-font-awesome-alt:before {
  content: "\f35c";
}
.fa-font-awesome-flag:before {
  content: "\f425";
}
.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-fonticons-fi:before {
  content: "\f3a2";
}
.fa-football-ball:before {
  content: "\f44e";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-fort-awesome-alt:before {
  content: "\f3a3";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-freebsd:before {
  content: "\f3a4";
}
.fa-frog:before {
  content: "\f52e";
}
.fa-frown:before {
  content: "\f119";
}
.fa-frown-open:before {
  content: "\f57a";
}
.fa-fulcrum:before {
  content: "\f50b";
}
.fa-funnel-dollar:before {
  content: "\f662";
}
.fa-futbol:before {
  content: "\f1e3";
}
.fa-galactic-republic:before {
  content: "\f50c";
}
.fa-galactic-senate:before {
  content: "\f50d";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-gas-pump:before {
  content: "\f52f";
}
.fa-gavel:before {
  content: "\f0e3";
}
.fa-gem:before {
  content: "\f3a5";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-ghost:before {
  content: "\f6e2";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-gifts:before {
  content: "\f79c";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-git-alt:before {
  content: "\f841";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-github:before {
  content: "\f09b";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-gitkraken:before {
  content: "\f3a6";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-gitter:before {
  content: "\f426";
}
.fa-glass-cheers:before {
  content: "\f79f";
}
.fa-glass-martini:before {
  content: "\f000";
}
.fa-glass-martini-alt:before {
  content: "\f57b";
}
.fa-glass-whiskey:before {
  content: "\f7a0";
}
.fa-glasses:before {
  content: "\f530";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-globe-africa:before {
  content: "\f57c";
}
.fa-globe-americas:before {
  content: "\f57d";
}
.fa-globe-asia:before {
  content: "\f57e";
}
.fa-globe-europe:before {
  content: "\f7a2";
}
.fa-gofore:before {
  content: "\f3a7";
}
.fa-golf-ball:before {
  content: "\f450";
}
.fa-goodreads:before {
  content: "\f3a8";
}
.fa-goodreads-g:before {
  content: "\f3a9";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-google-drive:before {
  content: "\f3aa";
}
.fa-google-play:before {
  content: "\f3ab";
}
.fa-google-plus:before {
  content: "\f2b3";
}
.fa-google-plus-g:before {
  content: "\f0d5";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-gopuram:before {
  content: "\f664";
}
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-gratipay:before {
  content: "\f184";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-greater-than:before {
  content: "\f531";
}
.fa-greater-than-equal:before {
  content: "\f532";
}
.fa-grimace:before {
  content: "\f57f";
}
.fa-grin:before {
  content: "\f580";
}
.fa-grin-alt:before {
  content: "\f581";
}
.fa-grin-beam:before {
  content: "\f582";
}
.fa-grin-beam-sweat:before {
  content: "\f583";
}
.fa-grin-hearts:before {
  content: "\f584";
}
.fa-grin-squint:before {
  content: "\f585";
}
.fa-grin-squint-tears:before {
  content: "\f586";
}
.fa-grin-stars:before {
  content: "\f587";
}
.fa-grin-tears:before {
  content: "\f588";
}
.fa-grin-tongue:before {
  content: "\f589";
}
.fa-grin-tongue-squint:before {
  content: "\f58a";
}
.fa-grin-tongue-wink:before {
  content: "\f58b";
}
.fa-grin-wink:before {
  content: "\f58c";
}
.fa-grip-horizontal:before {
  content: "\f58d";
}
.fa-grip-lines:before {
  content: "\f7a4";
}
.fa-grip-lines-vertical:before {
  content: "\f7a5";
}
.fa-grip-vertical:before {
  content: "\f58e";
}
.fa-gripfire:before {
  content: "\f3ac";
}
.fa-grunt:before {
  content: "\f3ad";
}
.fa-guitar:before {
  content: "\f7a6";
}
.fa-gulp:before {
  content: "\f3ae";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-hacker-news-square:before {
  content: "\f3af";
}
.fa-hackerrank:before {
  content: "\f5f7";
}
.fa-hamburger:before {
  content: "\f805";
}
.fa-hammer:before {
  content: "\f6e3";
}
.fa-hamsa:before {
  content: "\f665";
}
.fa-hand-holding:before {
  content: "\f4bd";
}
.fa-hand-holding-heart:before {
  content: "\f4be";
}
.fa-hand-holding-medical:before {
  content: "\f95c";
}
.fa-hand-holding-usd:before {
  content: "\f4c0";
}
.fa-hand-holding-water:before {
  content: "\f4c1";
}
.fa-hand-lizard:before {
  content: "\f258";
}
.fa-hand-middle-finger:before {
  content: "\f806";
}
.fa-hand-paper:before {
  content: "\f256";
}
.fa-hand-peace:before {
  content: "\f25b";
}
.fa-hand-point-down:before {
  content: "\f0a7";
}
.fa-hand-point-left:before {
  content: "\f0a5";
}
.fa-hand-point-right:before {
  content: "\f0a4";
}
.fa-hand-point-up:before {
  content: "\f0a6";
}
.fa-hand-pointer:before {
  content: "\f25a";
}
.fa-hand-rock:before {
  content: "\f255";
}
.fa-hand-scissors:before {
  content: "\f257";
}
.fa-hand-sparkles:before {
  content: "\f95d";
}
.fa-hand-spock:before {
  content: "\f259";
}
.fa-hands:before {
  content: "\f4c2";
}
.fa-hands-helping:before {
  content: "\f4c4";
}
.fa-hands-wash:before {
  content: "\f95e";
}
.fa-handshake:before {
  content: "\f2b5";
}
.fa-handshake-alt-slash:before {
  content: "\f95f";
}
.fa-handshake-slash:before {
  content: "\f960";
}
.fa-hanukiah:before {
  content: "\f6e6";
}
.fa-hard-hat:before {
  content: "\f807";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-hat-cowboy:before {
  content: "\f8c0";
}
.fa-hat-cowboy-side:before {
  content: "\f8c1";
}
.fa-hat-wizard:before {
  content: "\f6e8";
}
.fa-hdd:before {
  content: "\f0a0";
}
.fa-head-side-cough:before {
  content: "\f961";
}
.fa-head-side-cough-slash:before {
  content: "\f962";
}
.fa-head-side-mask:before {
  content: "\f963";
}
.fa-head-side-virus:before {
  content: "\f964";
}
.fa-heading:before {
  content: "\f1dc";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-headphones-alt:before {
  content: "\f58f";
}
.fa-headset:before {
  content: "\f590";
}
.fa-heart:before {
  content: "\f004";
}
.fa-heart-broken:before {
  content: "\f7a9";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-helicopter:before {
  content: "\f533";
}
.fa-highlighter:before {
  content: "\f591";
}
.fa-hiking:before {
  content: "\f6ec";
}
.fa-hippo:before {
  content: "\f6ed";
}
.fa-hips:before {
  content: "\f452";
}
.fa-hire-a-helper:before {
  content: "\f3b0";
}
.fa-history:before {
  content: "\f1da";
}
.fa-hockey-puck:before {
  content: "\f453";
}
.fa-holly-berry:before {
  content: "\f7aa";
}
.fa-home:before {
  content: "\f015";
}
.fa-hooli:before {
  content: "\f427";
}
.fa-hornbill:before {
  content: "\f592";
}
.fa-horse:before {
  content: "\f6f0";
}
.fa-horse-head:before {
  content: "\f7ab";
}
.fa-hospital:before {
  content: "\f0f8";
}
.fa-hospital-alt:before {
  content: "\f47d";
}
.fa-hospital-symbol:before {
  content: "\f47e";
}
.fa-hospital-user:before {
  content: "\f80d";
}
.fa-hot-tub:before {
  content: "\f593";
}
.fa-hotdog:before {
  content: "\f80f";
}
.fa-hotel:before {
  content: "\f594";
}
.fa-hotjar:before {
  content: "\f3b1";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-house-damage:before {
  content: "\f6f1";
}
.fa-house-user:before {
  content: "\f965";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-hryvnia:before {
  content: "\f6f2";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-hubspot:before {
  content: "\f3b2";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-ice-cream:before {
  content: "\f810";
}
.fa-icicles:before {
  content: "\f7ad";
}
.fa-icons:before {
  content: "\f86d";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-id-card:before {
  content: "\f2c2";
}
.fa-id-card-alt:before {
  content: "\f47f";
}
.fa-ideal:before {
  content: "\f913";
}
.fa-igloo:before {
  content: "\f7ae";
}
.fa-image:before {
  content: "\f03e";
}
.fa-images:before {
  content: "\f302";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-industry:before {
  content: "\f275";
}
.fa-infinity:before {
  content: "\f534";
}
.fa-info:before {
  content: "\f129";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-instagram-square:before {
  content: "\f955";
}
.fa-intercom:before {
  content: "\f7af";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-invision:before {
  content: "\f7b0";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-italic:before {
  content: "\f033";
}
.fa-itch-io:before {
  content: "\f83a";
}
.fa-itunes:before {
  content: "\f3b4";
}
.fa-itunes-note:before {
  content: "\f3b5";
}
.fa-java:before {
  content: "\f4e4";
}
.fa-jedi:before {
  content: "\f669";
}
.fa-jedi-order:before {
  content: "\f50e";
}
.fa-jenkins:before {
  content: "\f3b6";
}
.fa-jira:before {
  content: "\f7b1";
}
.fa-joget:before {
  content: "\f3b7";
}
.fa-joint:before {
  content: "\f595";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-journal-whills:before {
  content: "\f66a";
}
.fa-js:before {
  content: "\f3b8";
}
.fa-js-square:before {
  content: "\f3b9";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-kaaba:before {
  content: "\f66b";
}
.fa-kaggle:before {
  content: "\f5fa";
}
.fa-key:before {
  content: "\f084";
}
.fa-keybase:before {
  content: "\f4f5";
}
.fa-keyboard:before {
  content: "\f11c";
}
.fa-keycdn:before {
  content: "\f3ba";
}
.fa-khanda:before {
  content: "\f66d";
}
.fa-kickstarter:before {
  content: "\f3bb";
}
.fa-kickstarter-k:before {
  content: "\f3bc";
}
.fa-kiss:before {
  content: "\f596";
}
.fa-kiss-beam:before {
  content: "\f597";
}
.fa-kiss-wink-heart:before {
  content: "\f598";
}
.fa-kiwi-bird:before {
  content: "\f535";
}
.fa-korvue:before {
  content: "\f42f";
}
.fa-landmark:before {
  content: "\f66f";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-laptop-code:before {
  content: "\f5fc";
}
.fa-laptop-house:before {
  content: "\f966";
}
.fa-laptop-medical:before {
  content: "\f812";
}
.fa-laravel:before {
  content: "\f3bd";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-laugh:before {
  content: "\f599";
}
.fa-laugh-beam:before {
  content: "\f59a";
}
.fa-laugh-squint:before {
  content: "\f59b";
}
.fa-laugh-wink:before {
  content: "\f59c";
}
.fa-layer-group:before {
  content: "\f5fd";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-lemon:before {
  content: "\f094";
}
.fa-less:before {
  content: "\f41d";
}
.fa-less-than:before {
  content: "\f536";
}
.fa-less-than-equal:before {
  content: "\f537";
}
.fa-level-down-alt:before {
  content: "\f3be";
}
.fa-level-up-alt:before {
  content: "\f3bf";
}
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-lightbulb:before {
  content: "\f0eb";
}
.fa-line:before {
  content: "\f3c0";
}
.fa-link:before {
  content: "\f0c1";
}
.fa-linkedin:before {
  content: "\f08c";
}
.fa-linkedin-in:before {
  content: "\f0e1";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-lira-sign:before {
  content: "\f195";
}
.fa-list:before {
  content: "\f03a";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-lock:before {
  content: "\f023";
}
.fa-lock-open:before {
  content: "\f3c1";
}
.fa-long-arrow-alt-down:before {
  content: "\f309";
}
.fa-long-arrow-alt-left:before {
  content: "\f30a";
}
.fa-long-arrow-alt-right:before {
  content: "\f30b";
}
.fa-long-arrow-alt-up:before {
  content: "\f30c";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-luggage-cart:before {
  content: "\f59d";
}
.fa-lungs:before {
  content: "\f604";
}
.fa-lungs-virus:before {
  content: "\f967";
}
.fa-lyft:before {
  content: "\f3c3";
}
.fa-magento:before {
  content: "\f3c4";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-mail-bulk:before {
  content: "\f674";
}
.fa-mailchimp:before {
  content: "\f59e";
}
.fa-male:before {
  content: "\f183";
}
.fa-mandalorian:before {
  content: "\f50f";
}
.fa-map:before {
  content: "\f279";
}
.fa-map-marked:before {
  content: "\f59f";
}
.fa-map-marked-alt:before {
  content: "\f5a0";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-map-marker-alt:before {
  content: "\f3c5";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-markdown:before {
  content: "\f60f";
}
.fa-marker:before {
  content: "\f5a1";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mask:before {
  content: "\f6fa";
}
.fa-mastodon:before {
  content: "\f4f6";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-mdb:before {
  content: "\f8ca";
}
.fa-medal:before {
  content: "\f5a2";
}
.fa-medapps:before {
  content: "\f3c6";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-medium-m:before {
  content: "\f3c7";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-medrt:before {
  content: "\f3c8";
}
.fa-meetup:before {
  content: "\f2e0";
}
.fa-megaport:before {
  content: "\f5a3";
}
.fa-meh:before {
  content: "\f11a";
}
.fa-meh-blank:before {
  content: "\f5a4";
}
.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}
.fa-memory:before {
  content: "\f538";
}
.fa-mendeley:before {
  content: "\f7b3";
}
.fa-menorah:before {
  content: "\f676";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-meteor:before {
  content: "\f753";
}
.fa-microblog:before {
  content: "\f91a";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-alt:before {
  content: "\f3c9";
}
.fa-microphone-alt-slash:before {
  content: "\f539";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-microscope:before {
  content: "\f610";
}
.fa-microsoft:before {
  content: "\f3ca";
}
.fa-minus:before {
  content: "\f068";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-mitten:before {
  content: "\f7b5";
}
.fa-mix:before {
  content: "\f3cb";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-mixer:before {
  content: "\f956";
}
.fa-mizuni:before {
  content: "\f3cc";
}
.fa-mobile:before {
  content: "\f10b";
}
.fa-mobile-alt:before {
  content: "\f3cd";
}
.fa-modx:before {
  content: "\f285";
}
.fa-monero:before {
  content: "\f3d0";
}
.fa-money-bill:before {
  content: "\f0d6";
}
.fa-money-bill-alt:before {
  content: "\f3d1";
}
.fa-money-bill-wave:before {
  content: "\f53a";
}
.fa-money-bill-wave-alt:before {
  content: "\f53b";
}
.fa-money-check:before {
  content: "\f53c";
}
.fa-money-check-alt:before {
  content: "\f53d";
}
.fa-monument:before {
  content: "\f5a6";
}
.fa-moon:before {
  content: "\f186";
}
.fa-mortar-pestle:before {
  content: "\f5a7";
}
.fa-mosque:before {
  content: "\f678";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-mountain:before {
  content: "\f6fc";
}
.fa-mouse:before {
  content: "\f8cc";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-mug-hot:before {
  content: "\f7b6";
}
.fa-music:before {
  content: "\f001";
}
.fa-napster:before {
  content: "\f3d2";
}
.fa-neos:before {
  content: "\f612";
}
.fa-network-wired:before {
  content: "\f6ff";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-newspaper:before {
  content: "\f1ea";
}
.fa-nimblr:before {
  content: "\f5a8";
}
.fa-node:before {
  content: "\f419";
}
.fa-node-js:before {
  content: "\f3d3";
}
.fa-not-equal:before {
  content: "\f53e";
}
.fa-notes-medical:before {
  content: "\f481";
}
.fa-npm:before {
  content: "\f3d4";
}
.fa-ns8:before {
  content: "\f3d5";
}
.fa-nutritionix:before {
  content: "\f3d6";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-oil-can:before {
  content: "\f613";
}
.fa-old-republic:before {
  content: "\f510";
}
.fa-om:before {
  content: "\f679";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-orcid:before {
  content: "\f8d2";
}
.fa-osi:before {
  content: "\f41a";
}
.fa-otter:before {
  content: "\f700";
}
.fa-outdent:before {
  content: "\f03b";
}
.fa-page4:before {
  content: "\f3d7";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-pager:before {
  content: "\f815";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-paint-roller:before {
  content: "\f5aa";
}
.fa-palette:before {
  content: "\f53f";
}
.fa-palfed:before {
  content: "\f3d8";
}
.fa-pallet:before {
  content: "\f482";
}
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-parachute-box:before {
  content: "\f4cd";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-parking:before {
  content: "\f540";
}
.fa-passport:before {
  content: "\f5ab";
}
.fa-pastafarianism:before {
  content: "\f67b";
}
.fa-paste:before {
  content: "\f0ea";
}
.fa-patreon:before {
  content: "\f3d9";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-peace:before {
  content: "\f67c";
}
.fa-pen:before {
  content: "\f304";
}
.fa-pen-alt:before {
  content: "\f305";
}
.fa-pen-fancy:before {
  content: "\f5ac";
}
.fa-pen-nib:before {
  content: "\f5ad";
}
.fa-pen-square:before {
  content: "\f14b";
}
.fa-pencil-alt:before {
  content: "\f303";
}
.fa-pencil-ruler:before {
  content: "\f5ae";
}
.fa-penny-arcade:before {
  content: "\f704";
}
.fa-people-arrows:before {
  content: "\f968";
}
.fa-people-carry:before {
  content: "\f4ce";
}
.fa-pepper-hot:before {
  content: "\f816";
}
.fa-percent:before {
  content: "\f295";
}
.fa-percentage:before {
  content: "\f541";
}
.fa-periscope:before {
  content: "\f3da";
}
.fa-person-booth:before {
  content: "\f756";
}
.fa-phabricator:before {
  content: "\f3db";
}
.fa-phoenix-framework:before {
  content: "\f3dc";
}
.fa-phoenix-squadron:before {
  content: "\f511";
}
.fa-phone:before {
  content: "\f095";
}
.fa-phone-alt:before {
  content: "\f879";
}
.fa-phone-slash:before {
  content: "\f3dd";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-phone-square-alt:before {
  content: "\f87b";
}
.fa-phone-volume:before {
  content: "\f2a0";
}
.fa-photo-video:before {
  content: "\f87c";
}
.fa-php:before {
  content: "\f457";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-pied-piper-hat:before {
  content: "\f4e5";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-square:before {
  content: "\f91e";
}
.fa-piggy-bank:before {
  content: "\f4d3";
}
.fa-pills:before {
  content: "\f484";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-pizza-slice:before {
  content: "\f818";
}
.fa-place-of-worship:before {
  content: "\f67f";
}
.fa-plane:before {
  content: "\f072";
}
.fa-plane-arrival:before {
  content: "\f5af";
}
.fa-plane-departure:before {
  content: "\f5b0";
}
.fa-plane-slash:before {
  content: "\f969";
}
.fa-play:before {
  content: "\f04b";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-playstation:before {
  content: "\f3df";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-plus:before {
  content: "\f067";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-poll:before {
  content: "\f681";
}
.fa-poll-h:before {
  content: "\f682";
}
.fa-poo:before {
  content: "\f2fe";
}
.fa-poo-storm:before {
  content: "\f75a";
}
.fa-poop:before {
  content: "\f619";
}
.fa-portrait:before {
  content: "\f3e0";
}
.fa-pound-sign:before {
  content: "\f154";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-pray:before {
  content: "\f683";
}
.fa-praying-hands:before {
  content: "\f684";
}
.fa-prescription:before {
  content: "\f5b1";
}
.fa-prescription-bottle:before {
  content: "\f485";
}
.fa-prescription-bottle-alt:before {
  content: "\f486";
}
.fa-print:before {
  content: "\f02f";
}
.fa-procedures:before {
  content: "\f487";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-project-diagram:before {
  content: "\f542";
}
.fa-pump-medical:before {
  content: "\f96a";
}
.fa-pump-soap:before {
  content: "\f96b";
}
.fa-pushed:before {
  content: "\f3e1";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-python:before {
  content: "\f3e2";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-question:before {
  content: "\f128";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-quidditch:before {
  content: "\f458";
}
.fa-quinscape:before {
  content: "\f459";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-quran:before {
  content: "\f687";
}
.fa-r-project:before {
  content: "\f4f7";
}
.fa-radiation:before {
  content: "\f7b9";
}
.fa-radiation-alt:before {
  content: "\f7ba";
}
.fa-rainbow:before {
  content: "\f75b";
}
.fa-random:before {
  content: "\f074";
}
.fa-raspberry-pi:before {
  content: "\f7bb";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-react:before {
  content: "\f41b";
}
.fa-reacteurope:before {
  content: "\f75d";
}
.fa-readme:before {
  content: "\f4d5";
}
.fa-rebel:before {
  content: "\f1d0";
}
.fa-receipt:before {
  content: "\f543";
}
.fa-record-vinyl:before {
  content: "\f8d9";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-red-river:before {
  content: "\f3e3";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-redhat:before {
  content: "\f7bc";
}
.fa-redo:before {
  content: "\f01e";
}
.fa-redo-alt:before {
  content: "\f2f9";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-remove-format:before {
  content: "\f87d";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-reply:before {
  content: "\f3e5";
}
.fa-reply-all:before {
  content: "\f122";
}
.fa-replyd:before {
  content: "\f3e6";
}
.fa-republican:before {
  content: "\f75e";
}
.fa-researchgate:before {
  content: "\f4f8";
}
.fa-resolving:before {
  content: "\f3e7";
}
.fa-restroom:before {
  content: "\f7bd";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-rev:before {
  content: "\f5b2";
}
.fa-ribbon:before {
  content: "\f4d6";
}
.fa-ring:before {
  content: "\f70b";
}
.fa-road:before {
  content: "\f018";
}
.fa-robot:before {
  content: "\f544";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-rocketchat:before {
  content: "\f3e8";
}
.fa-rockrms:before {
  content: "\f3e9";
}
.fa-route:before {
  content: "\f4d7";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-ruble-sign:before {
  content: "\f158";
}
.fa-ruler:before {
  content: "\f545";
}
.fa-ruler-combined:before {
  content: "\f546";
}
.fa-ruler-horizontal:before {
  content: "\f547";
}
.fa-ruler-vertical:before {
  content: "\f548";
}
.fa-running:before {
  content: "\f70c";
}
.fa-rupee-sign:before {
  content: "\f156";
}
.fa-sad-cry:before {
  content: "\f5b3";
}
.fa-sad-tear:before {
  content: "\f5b4";
}
.fa-safari:before {
  content: "\f267";
}
.fa-salesforce:before {
  content: "\f83b";
}
.fa-sass:before {
  content: "\f41e";
}
.fa-satellite:before {
  content: "\f7bf";
}
.fa-satellite-dish:before {
  content: "\f7c0";
}
.fa-save:before {
  content: "\f0c7";
}
.fa-schlix:before {
  content: "\f3ea";
}
.fa-school:before {
  content: "\f549";
}
.fa-screwdriver:before {
  content: "\f54a";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-scroll:before {
  content: "\f70e";
}
.fa-sd-card:before {
  content: "\f7c2";
}
.fa-search:before {
  content: "\f002";
}
.fa-search-dollar:before {
  content: "\f688";
}
.fa-search-location:before {
  content: "\f689";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-searchengin:before {
  content: "\f3eb";
}
.fa-seedling:before {
  content: "\f4d8";
}
.fa-sellcast:before {
  content: "\f2da";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-server:before {
  content: "\f233";
}
.fa-servicestack:before {
  content: "\f3ec";
}
.fa-shapes:before {
  content: "\f61f";
}
.fa-share:before {
  content: "\f064";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-shekel-sign:before {
  content: "\f20b";
}
.fa-shield-alt:before {
  content: "\f3ed";
}
.fa-shield-virus:before {
  content: "\f96c";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-shipping-fast:before {
  content: "\f48b";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-shoe-prints:before {
  content: "\f54b";
}
.fa-shopify:before {
  content: "\f957";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-shopware:before {
  content: "\f5b5";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-shuttle-van:before {
  content: "\f5b6";
}
.fa-sign:before {
  content: "\f4d9";
}
.fa-sign-in-alt:before {
  content: "\f2f6";
}
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-sign-out-alt:before {
  content: "\f2f5";
}
.fa-signal:before {
  content: "\f012";
}
.fa-signature:before {
  content: "\f5b7";
}
.fa-sim-card:before {
  content: "\f7c4";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-sistrix:before {
  content: "\f3ee";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-sith:before {
  content: "\f512";
}
.fa-skating:before {
  content: "\f7c5";
}
.fa-sketch:before {
  content: "\f7c6";
}
.fa-skiing:before {
  content: "\f7c9";
}
.fa-skiing-nordic:before {
  content: "\f7ca";
}
.fa-skull:before {
  content: "\f54c";
}
.fa-skull-crossbones:before {
  content: "\f714";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-slack:before {
  content: "\f198";
}
.fa-slack-hash:before {
  content: "\f3ef";
}
.fa-slash:before {
  content: "\f715";
}
.fa-sleigh:before {
  content: "\f7cc";
}
.fa-sliders-h:before {
  content: "\f1de";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-smile:before {
  content: "\f118";
}
.fa-smile-beam:before {
  content: "\f5b8";
}
.fa-smile-wink:before {
  content: "\f4da";
}
.fa-smog:before {
  content: "\f75f";
}
.fa-smoking:before {
  content: "\f48d";
}
.fa-smoking-ban:before {
  content: "\f54d";
}
.fa-sms:before {
  content: "\f7cd";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-snowboarding:before {
  content: "\f7ce";
}
.fa-snowflake:before {
  content: "\f2dc";
}
.fa-snowman:before {
  content: "\f7d0";
}
.fa-snowplow:before {
  content: "\f7d2";
}
.fa-soap:before {
  content: "\f96e";
}
.fa-socks:before {
  content: "\f696";
}
.fa-solar-panel:before {
  content: "\f5ba";
}
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-alpha-down:before {
  content: "\f15d";
}
.fa-sort-alpha-down-alt:before {
  content: "\f881";
}
.fa-sort-alpha-up:before {
  content: "\f15e";
}
.fa-sort-alpha-up-alt:before {
  content: "\f882";
}
.fa-sort-amount-down:before {
  content: "\f160";
}
.fa-sort-amount-down-alt:before {
  content: "\f884";
}
.fa-sort-amount-up:before {
  content: "\f161";
}
.fa-sort-amount-up-alt:before {
  content: "\f885";
}
.fa-sort-down:before {
  content: "\f0dd";
}
.fa-sort-numeric-down:before {
  content: "\f162";
}
.fa-sort-numeric-down-alt:before {
  content: "\f886";
}
.fa-sort-numeric-up:before {
  content: "\f163";
}
.fa-sort-numeric-up-alt:before {
  content: "\f887";
}
.fa-sort-up:before {
  content: "\f0de";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-sourcetree:before {
  content: "\f7d3";
}
.fa-spa:before {
  content: "\f5bb";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-speakap:before {
  content: "\f3f3";
}
.fa-speaker-deck:before {
  content: "\f83c";
}
.fa-spell-check:before {
  content: "\f891";
}
.fa-spider:before {
  content: "\f717";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-splotch:before {
  content: "\f5bc";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-spray-can:before {
  content: "\f5bd";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-square-full:before {
  content: "\f45c";
}
.fa-square-root-alt:before {
  content: "\f698";
}
.fa-squarespace:before {
  content: "\f5be";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-stackpath:before {
  content: "\f842";
}
.fa-stamp:before {
  content: "\f5bf";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-and-crescent:before {
  content: "\f699";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-star-half-alt:before {
  content: "\f5c0";
}
.fa-star-of-david:before {
  content: "\f69a";
}
.fa-star-of-life:before {
  content: "\f621";
}
.fa-staylinked:before {
  content: "\f3f5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-steam-symbol:before {
  content: "\f3f6";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-sticker-mule:before {
  content: "\f3f7";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stopwatch:before {
  content: "\f2f2";
}
.fa-stopwatch-20:before {
  content: "\f96f";
}
.fa-store:before {
  content: "\f54e";
}
.fa-store-alt:before {
  content: "\f54f";
}
.fa-store-alt-slash:before {
  content: "\f970";
}
.fa-store-slash:before {
  content: "\f971";
}
.fa-strava:before {
  content: "\f428";
}
.fa-stream:before {
  content: "\f550";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-stripe:before {
  content: "\f429";
}
.fa-stripe-s:before {
  content: "\f42a";
}
.fa-stroopwafel:before {
  content: "\f551";
}
.fa-studiovinari:before {
  content: "\f3f8";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-subway:before {
  content: "\f239";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-suitcase-rolling:before {
  content: "\f5c1";
}
.fa-sun:before {
  content: "\f185";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-supple:before {
  content: "\f3f9";
}
.fa-surprise:before {
  content: "\f5c2";
}
.fa-suse:before {
  content: "\f7d6";
}
.fa-swatchbook:before {
  content: "\f5c3";
}
.fa-swift:before {
  content: "\f8e1";
}
.fa-swimmer:before {
  content: "\f5c4";
}
.fa-swimming-pool:before {
  content: "\f5c5";
}
.fa-symfony:before {
  content: "\f83d";
}
.fa-synagogue:before {
  content: "\f69b";
}
.fa-sync:before {
  content: "\f021";
}
.fa-sync-alt:before {
  content: "\f2f1";
}
.fa-syringe:before {
  content: "\f48e";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-table-tennis:before {
  content: "\f45d";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-tablet-alt:before {
  content: "\f3fa";
}
.fa-tablets:before {
  content: "\f490";
}
.fa-tachometer-alt:before {
  content: "\f3fd";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-tape:before {
  content: "\f4db";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-taxi:before {
  content: "\f1ba";
}
.fa-teamspeak:before {
  content: "\f4f9";
}
.fa-teeth:before {
  content: "\f62e";
}
.fa-teeth-open:before {
  content: "\f62f";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-telegram-plane:before {
  content: "\f3fe";
}
.fa-temperature-high:before {
  content: "\f769";
}
.fa-temperature-low:before {
  content: "\f76b";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-tenge:before {
  content: "\f7d7";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-the-red-yeti:before {
  content: "\f69d";
}
.fa-theater-masks:before {
  content: "\f630";
}
.fa-themeco:before {
  content: "\f5c6";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-thermometer:before {
  content: "\f491";
}
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-think-peaks:before {
  content: "\f731";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbtack:before {
  content: "\f08d";
}
.fa-ticket-alt:before {
  content: "\f3ff";
}
.fa-times:before {
  content: "\f00d";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-tint:before {
  content: "\f043";
}
.fa-tint-slash:before {
  content: "\f5c7";
}
.fa-tired:before {
  content: "\f5c8";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-toilet:before {
  content: "\f7d8";
}
.fa-toilet-paper:before {
  content: "\f71e";
}
.fa-toilet-paper-slash:before {
  content: "\f972";
}
.fa-toolbox:before {
  content: "\f552";
}
.fa-tools:before {
  content: "\f7d9";
}
.fa-tooth:before {
  content: "\f5c9";
}
.fa-torah:before {
  content: "\f6a0";
}
.fa-torii-gate:before {
  content: "\f6a1";
}
.fa-tractor:before {
  content: "\f722";
}
.fa-trade-federation:before {
  content: "\f513";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-traffic-light:before {
  content: "\f637";
}
.fa-trailer:before {
  content: "\f941";
}
.fa-train:before {
  content: "\f238";
}
.fa-tram:before {
  content: "\f7da";
}
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-trash-alt:before {
  content: "\f2ed";
}
.fa-trash-restore:before {
  content: "\f829";
}
.fa-trash-restore-alt:before {
  content: "\f82a";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-trello:before {
  content: "\f181";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-truck-loading:before {
  content: "\f4de";
}
.fa-truck-monster:before {
  content: "\f63b";
}
.fa-truck-moving:before {
  content: "\f4df";
}
.fa-truck-pickup:before {
  content: "\f63c";
}
.fa-tshirt:before {
  content: "\f553";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-tv:before {
  content: "\f26c";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-typo3:before {
  content: "\f42b";
}
.fa-uber:before {
  content: "\f402";
}
.fa-ubuntu:before {
  content: "\f7df";
}
.fa-uikit:before {
  content: "\f403";
}
.fa-umbraco:before {
  content: "\f8e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-umbrella-beach:before {
  content: "\f5ca";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-undo:before {
  content: "\f0e2";
}
.fa-undo-alt:before {
  content: "\f2ea";
}
.fa-uniregistry:before {
  content: "\f404";
}
.fa-unity:before {
  content: "\f949";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-university:before {
  content: "\f19c";
}
.fa-unlink:before {
  content: "\f127";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-untappd:before {
  content: "\f405";
}
.fa-upload:before {
  content: "\f093";
}
.fa-ups:before {
  content: "\f7e0";
}
.fa-usb:before {
  content: "\f287";
}
.fa-user:before {
  content: "\f007";
}
.fa-user-alt:before {
  content: "\f406";
}
.fa-user-alt-slash:before {
  content: "\f4fa";
}
.fa-user-astronaut:before {
  content: "\f4fb";
}
.fa-user-check:before {
  content: "\f4fc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-clock:before {
  content: "\f4fd";
}
.fa-user-cog:before {
  content: "\f4fe";
}
.fa-user-edit:before {
  content: "\f4ff";
}
.fa-user-friends:before {
  content: "\f500";
}
.fa-user-graduate:before {
  content: "\f501";
}
.fa-user-injured:before {
  content: "\f728";
}
.fa-user-lock:before {
  content: "\f502";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-user-minus:before {
  content: "\f503";
}
.fa-user-ninja:before {
  content: "\f504";
}
.fa-user-nurse:before {
  content: "\f82f";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-user-shield:before {
  content: "\f505";
}
.fa-user-slash:before {
  content: "\f506";
}
.fa-user-tag:before {
  content: "\f507";
}
.fa-user-tie:before {
  content: "\f508";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-users:before {
  content: "\f0c0";
}
.fa-users-cog:before {
  content: "\f509";
}
.fa-usps:before {
  content: "\f7e1";
}
.fa-ussunnah:before {
  content: "\f407";
}
.fa-utensil-spoon:before {
  content: "\f2e5";
}
.fa-utensils:before {
  content: "\f2e7";
}
.fa-vaadin:before {
  content: "\f408";
}
.fa-vector-square:before {
  content: "\f5cb";
}
.fa-venus:before {
  content: "\f221";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-vial:before {
  content: "\f492";
}
.fa-vials:before {
  content: "\f493";
}
.fa-viber:before {
  content: "\f409";
}
.fa-video:before {
  content: "\f03d";
}
.fa-video-slash:before {
  content: "\f4e2";
}
.fa-vihara:before {
  content: "\f6a7";
}
.fa-vimeo:before {
  content: "\f40a";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-vimeo-v:before {
  content: "\f27d";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-virus:before {
  content: "\f974";
}
.fa-virus-slash:before {
  content: "\f975";
}
.fa-viruses:before {
  content: "\f976";
}
.fa-vk:before {
  content: "\f189";
}
.fa-vnv:before {
  content: "\f40b";
}
.fa-voicemail:before {
  content: "\f897";
}
.fa-volleyball-ball:before {
  content: "\f45f";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-mute:before {
  content: "\f6a9";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-vote-yea:before {
  content: "\f772";
}
.fa-vr-cardboard:before {
  content: "\f729";
}
.fa-vuejs:before {
  content: "\f41f";
}
.fa-walking:before {
  content: "\f554";
}
.fa-wallet:before {
  content: "\f555";
}
.fa-warehouse:before {
  content: "\f494";
}
.fa-water:before {
  content: "\f773";
}
.fa-wave-square:before {
  content: "\f83e";
}
.fa-waze:before {
  content: "\f83f";
}
.fa-weebly:before {
  content: "\f5cc";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-weight:before {
  content: "\f496";
}
.fa-weight-hanging:before {
  content: "\f5cd";
}
.fa-weixin:before {
  content: "\f1d7";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-whatsapp-square:before {
  content: "\f40c";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-whmcs:before {
  content: "\f40d";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-wind:before {
  content: "\f72e";
}
.fa-window-close:before {
  content: "\f410";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-wine-bottle:before {
  content: "\f72f";
}
.fa-wine-glass:before {
  content: "\f4e3";
}
.fa-wine-glass-alt:before {
  content: "\f5ce";
}
.fa-wix:before {
  content: "\f5cf";
}
.fa-wizards-of-the-coast:before {
  content: "\f730";
}
.fa-wolf-pack-battalion:before {
  content: "\f514";
}
.fa-won-sign:before {
  content: "\f159";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-wordpress-simple:before {
  content: "\f411";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-wpressr:before {
  content: "\f3e4";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-x-ray:before {
  content: "\f497";
}
.fa-xbox:before {
  content: "\f412";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-yammer:before {
  content: "\f840";
}
.fa-yandex:before {
  content: "\f413";
}
.fa-yandex-international:before {
  content: "\f414";
}
.fa-yarn:before {
  content: "\f7e3";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-yen-sign:before {
  content: "\f157";
}
.fa-yin-yang:before {
  content: "\f6ad";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-youtube-square:before {
  content: "\f431";
}
.fa-zhihu:before {
  content: "\f63f";
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/intranet/fonts/fa-regular-400.eot');
  src: url('/intranet/fonts/fa-regular-400.eot?#iefix') format('embedded-opentype'), url('/intranet/fonts/fa-regular-400.woff2') format('woff2'), url('/intranet/fonts/fa-regular-400.woff') format('woff'), url('/intranet/fonts/fa-regular-400.ttf') format('truetype'), url('/intranet/fonts/fa-regular-400.svg#fontawesome') format('svg');
}
.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}
/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('/intranet/fonts/fa-solid-900.eot');
  src: url('/intranet/fonts/fa-solid-900.eot?#iefix') format('embedded-opentype'), url('/intranet/fonts/fa-solid-900.woff2') format('woff2'), url('/intranet/fonts/fa-solid-900.woff') format('woff'), url('/intranet/fonts/fa-solid-900.ttf') format('truetype'), url('/intranet/fonts/fa-solid-900.svg#fontawesome') format('svg');
}
.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/intranet/fonts/fa-brands-400.eot');
  src: url('/intranet/fonts/fa-brands-400.eot?#iefix') format('embedded-opentype'), url('/intranet/fonts/fa-brands-400.woff2') format('woff2'), url('/intranet/fonts/fa-brands-400.woff') format('woff'), url('/intranet/fonts/fa-brands-400.ttf') format('truetype'), url('/intranet/fonts/fa-brands-400.svg#fontawesome') format('svg');
}
.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
}
.fa,
.fas,
.far,
.fab {
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon.fa-pull-left {
  margin-right: .3em;
}
.icon.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
}
@media (min-width: 970px) {
}
/* For Current Project */
html,
body {
  min-width: 320px;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}
body {
  min-height: 100%;
  background-color: #fff;
  padding-top: 48px;
  padding-bottom: 60px;
  height: auto;
}
body #cBody {
  padding-bottom: 60px;
  margin-bottom: -60px;
  min-height: calc(100vh - 48px);
  z-index: 1;
}
@media (max-width: 768px) {
}
body.classroom #cBody {
  padding-bottom: 90px;
  margin-bottom: -90px;
}
/* UI Elements */
.ul {
  padding-left: 20px;
}
textarea {
  resize: none;
}
input[type="text"],
input[type="password"],
input[type="file"],
input[type="search"],
select,
textarea {
  border-bottom-color: rgba(0, 0, 0, 0.3);
  border-bottom-style: solid;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="file"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
  border: 1px solid #0059ae;
  outline: 0;
}
input[type="search"] {
  -webkit-appearance: none;
}
.selector {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 6px 0;
  font-size: 17px;
  line-height: 24px;
  height: 36px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .selector {
    font-size: 17px;
  }
}
.selector.focus {
  border-color: #0059ae;
}
.selector::before {
  color: #0059ae;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f078";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: smaller;
  text-align: center;
  padding: inherit;
}
.selector::before.fa-pull-left {
  margin-right: .3em;
}
.selector::before.fa-pull-right {
  margin-left: .3em;
}
.selector select {
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  padding-right: 30px;
  width: 100%;
  cursor: pointer;
  border-radius: 0;
}
.selector select::-ms-expand {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
input[type="checkbox"],
input[type="radio"] {
  display: none;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  padding-left: 23px;
  display: inline-block;
  min-height: 23px;
  margin-bottom: 0;
}
input[type="checkbox"] + label::before,
input[type="radio"] + label::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #6e7174;
  top: 2px;
  position: absolute;
  left: 0;
  width: 23px;
  text-align: center;
}
input[type="checkbox"] + label::before.fa-pull-left,
input[type="radio"] + label::before.fa-pull-left {
  margin-right: .3em;
}
input[type="checkbox"] + label::before.fa-pull-right,
input[type="radio"] + label::before.fa-pull-right {
  margin-left: .3em;
}
input[type="checkbox"] + label::before {
  content: "\f0c8";
}
input[type="radio"] + label::before {
  content: "\f111";
}
input[type="checkbox"][checked="checked"] + label::before,
input[type="checkbox"]:checked + label::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f14a";
  color: #1976d2;
}
input[type="checkbox"][checked="checked"] + label::before.fa-pull-left,
input[type="checkbox"]:checked + label::before.fa-pull-left {
  margin-right: .3em;
}
input[type="checkbox"][checked="checked"] + label::before.fa-pull-right,
input[type="checkbox"]:checked + label::before.fa-pull-right {
  margin-left: .3em;
}
input[type="radio"][checked="checked"] + label::before,
input[type="radio"]:checked + label::before {
  content: "\f192";
  color: #1976d2;
}
input[type="radio"] + label + input[type="radio"] + label,
input[type="radio"] + label + input[type="checkbox"] + label,
input[type="checkbox"] + label + input[type="radio"] + label,
input[type="checkbox"] + label + input[type="checkbox"] + label {
  margin-left: 10px;
}
input[type="checkbox"].checkbox-style2 + label {
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #0059ae;
}
@media (hover: none) and (pointer: coarse) {
  input[type="checkbox"].checkbox-style2 + label:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
input[type="checkbox"].checkbox-style2 + label:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  input[type="checkbox"].checkbox-style2 + label:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
input[type="checkbox"].checkbox-style2 + label,
input[type="checkbox"].checkbox-style2 + label:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main input[type="checkbox"].checkbox-style2 + label:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main input[type="checkbox"].checkbox-style2 + label:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (hover: none) and (pointer: coarse) {
  input[type="checkbox"].checkbox-style2 + label:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
input[type="checkbox"].checkbox-style2 + label:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  input[type="checkbox"].checkbox-style2 + label:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
input[type="checkbox"].checkbox-style2 + label,
input[type="checkbox"].checkbox-style2 + label:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main input[type="checkbox"].checkbox-style2 + label:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main input[type="checkbox"].checkbox-style2 + label:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
input[type="checkbox"].checkbox-style2 + label::before {
  color: transparent;
  content: "\f00c";
  font-size: small;
  top: 3px;
  left: 8px;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  max-width: 0;
  overflow: hidden;
}
input[type="checkbox"].checkbox-style2 + label::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid #0059ae;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
}
input[type="checkbox"].checkbox-style2[checked="checked"] + label,
input[type="checkbox"].checkbox-style2:checked + label {
  background-color: #0059ae;
  color: #fff;
  padding-left: 35px;
}
input[type="checkbox"].checkbox-style2[checked="checked"] + label::before,
input[type="checkbox"].checkbox-style2:checked + label::before {
  color: #fff;
  content: "\f00c";
  max-width: 50px;
}
/*File upload using <label>*/
input[type="file"] {
  width: 0.1px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
  visibility: hidden;
  outline: 0 !important;
}
input[type="file"] + label {
  display: inline-block;
  float: left;
  /* Default button style */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  padding: 3px 14px;
  text-align: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font-weight: 400;
  font-size: inherit;
  border: 0;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  cursor: pointer;
  font-size: 16px;
  line-height: 23px;
  min-width: 80px;
  background-color: #0059ae;
  /* Default button style */
  background: -moz-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0059ae 0%, #313c8c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn1', endColorstr='@ColorBtn1a', GradientType=1);
  /* IE6-9 */
  line-height: inherit;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  input[type="file"] + label {
    font-size: 16px;
  }
}
input[type="file"] + label,
input[type="file"] + label:focus,
input[type="file"] + label:hover {
  color: #fff;
}
input[type="file"] + label.fullW {
  white-space: normal;
}
input[type="file"] + label > span:first-child.icon,
input[type="file"] + label > span:first-child.fa,
input[type="file"] + label > span:first-child.far,
input[type="file"] + label > span:first-child.fab,
input[type="file"] + label > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
input[type="file"] + label > * + span.icon,
input[type="file"] + label > * + span.fa,
input[type="file"] + label > * + span.far,
input[type="file"] + label > * + span.fab,
input[type="file"] + label > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
input[type="file"] + label > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  input[type="file"] + label:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
input[type="file"] + label:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  input[type="file"] + label:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  input[type="file"] + label {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
input[type="file"] + label > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
input[type="file"] + label > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  input[type="file"] + label {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
input[type="file"] + label > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
input[type="file"] + label > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  input[type="file"] + label {
    font-size: 16px;
  }
}
input[type="file"] + label,
input[type="file"] + label:focus,
input[type="file"] + label:hover {
  color: #fff;
}
input[type="file"] + label.fullW {
  white-space: normal;
}
input[type="file"] + label > span:first-child.icon,
input[type="file"] + label > span:first-child.fa,
input[type="file"] + label > span:first-child.far,
input[type="file"] + label > span:first-child.fab,
input[type="file"] + label > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
input[type="file"] + label > * + span.icon,
input[type="file"] + label > * + span.fa,
input[type="file"] + label > * + span.far,
input[type="file"] + label > * + span.fab,
input[type="file"] + label > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
input[type="file"] + label > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  input[type="file"] + label:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
input[type="file"] + label:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  input[type="file"] + label:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  input[type="file"] + label {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
input[type="file"] + label > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
input[type="file"] + label > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  input[type="file"] + label {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
input[type="file"] + label > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
input[type="file"] + label > img + span {
  margin-left: 5px;
}
input[type="file"] + label,
input[type="file"] + label:hover,
input[type="file"] + label:focus {
  color: #0059ae;
}
input[type="file"] + label,
input[type="file"] + label.button-disabled {
  background: transparent !important;
}
input[type="file"] + label:hover,
input[type="file"] + label:focus {
  background: rgba(0, 0, 0, 0.05) !important;
}
input[type="file"] + label > img {
  -webkit-filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
  filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
}
input[type="file"] + label,
input[type="file"] + label:hover,
input[type="file"] + label:focus {
  color: #0059ae;
}
input[type="file"] + label,
input[type="file"] + label.button-disabled {
  background: transparent !important;
}
input[type="file"] + label:hover,
input[type="file"] + label:focus {
  background: rgba(0, 0, 0, 0.05) !important;
}
input[type="file"] + label > img {
  -webkit-filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
  filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
}
input[type="file"]:hover + label,
input[type="file"]:focus + label {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}
/*Textbox with label*/
.textbox {
  padding-top: 12px;
}
.textbox > .textboxLabel,
.textbox > .textboxPlaceholder {
  position: absolute;
  top: 12px;
  left: 0;
  padding: 6px 0;
  width: 100%;
  transition: all 0.2s ease;
  z-index: 0;
  color: #999;
  font-weight: 300;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.textbox input[type="text"],
.textbox input[type="password"],
.textbox input[type="search"],
.textbox textarea {
  background: transparent;
  border-width: 0;
  border-bottom-width: 1px;
  padding: 6px 0;
  z-index: 1;
}
.textbox input[type="text"]::placeholder,
.textbox input[type="password"]::placeholder,
.textbox input[type="search"]::placeholder,
.textbox textarea::placeholder {
  color: #aaa;
  font-weight: 300;
  overflow: visible;
}
.textbox input[type="text"]:-ms-input-placeholder,
.textbox input[type="password"]:-ms-input-placeholder,
.textbox input[type="search"]:-ms-input-placeholder,
.textbox textarea:-ms-input-placeholder {
  color: #aaa;
  font-weight: 300;
  overflow: visible;
}
.textbox input[type="text"]::-ms-input-placeholder,
.textbox input[type="password"]::-ms-input-placeholder,
.textbox input[type="search"]::-ms-input-placeholder,
.textbox textarea::-ms-input-placeholder {
  color: #aaa;
  font-weight: 300;
  overflow: visible;
}
.textbox input[type="text"]:focus + .textboxLabel,
.textbox input[type="password"]:focus + .textboxLabel,
.textbox input[type="search"]:focus + .textboxLabel,
.textbox textarea:focus + .textboxLabel {
  position: absolute;
  top: 0;
  padding-top: 0;
  font-size: 12px;
  color: #1976d2;
  font-weight: 400;
}
@media (max-width: 768px) {
  .textbox input[type="text"]:focus + .textboxLabel,
  .textbox input[type="password"]:focus + .textboxLabel,
  .textbox input[type="search"]:focus + .textboxLabel,
  .textbox textarea:focus + .textboxLabel {
    font-size: 12px;
  }
}
.textbox input[type="text"]:focus + .textboxPlaceholder,
.textbox input[type="password"]:focus + .textboxPlaceholder,
.textbox input[type="search"]:focus + .textboxPlaceholder,
.textbox textarea:focus + .textboxPlaceholder {
  display: none !important;
}
.textbox input.notEmpty[type="text"] + .textboxLabel,
.textbox input.notEmpty[type="password"] + .textboxLabel,
.textbox textarea.notEmpty + .textboxLabel {
  position: absolute;
  top: 0;
  padding-top: 0;
  font-size: 12px;
  color: #777;
  font-weight: 400;
}
@media (max-width: 768px) {
  .textbox input.notEmpty[type="text"] + .textboxLabel,
  .textbox input.notEmpty[type="password"] + .textboxLabel,
  .textbox textarea.notEmpty + .textboxLabel {
    font-size: 12px;
  }
}
.textbox input.notEmpty[type="text"] + .textboxPlaceholder,
.textbox input.notEmpty[type="password"] + .textboxPlaceholder,
.textbox textarea.notEmpty + .textboxPlaceholder {
  display: none !important;
}
.textbox-search {
  padding-top: 0;
}
.textbox-search > input {
  padding-right: calc(1em + 5px) !important;
  width: 100%;
}
.textbox-search > .textboxPlaceholder {
  top: 0;
}
.textbox-search::after {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f002";
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  padding-right: 0;
  position: absolute;
  right: 0;
  bottom: 6px;
}
.textbox-search::after.fa-pull-left {
  margin-right: .3em;
}
.textbox-search::after.fa-pull-right {
  margin-left: .3em;
}
@media (hover: none) and (pointer: coarse) {
  .textbox-search::after:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.textbox-search::after:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .textbox-search::after:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .textbox-search::after:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.textbox-search::after:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .textbox-search::after:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
/*Textbox with label*/
.textbox-floatlabel {
  padding-top: 12px;
}
.textbox-floatlabel > .textboxLabel {
  position: absolute;
  top: 12px;
  left: 0;
  padding: 6px 0;
  width: 100%;
  transition: all 0.2s ease;
  z-index: 0;
  color: #aaa;
  font-weight: 300;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.textbox-floatlabel input[type="text"],
.textbox-floatlabel input[type="password"],
.textbox-floatlabel input[type="search"],
.textbox-floatlabel textarea {
  background: transparent;
  border-width: 0;
  border-bottom-width: 1px;
  padding: 6px 0;
  z-index: 1;
}
.textbox-floatlabel input[type="text"]:focus + .textboxLabel,
.textbox-floatlabel input[type="password"]:focus + .textboxLabel,
.textbox-floatlabel input[type="search"]:focus + .textboxLabel,
.textbox-floatlabel textarea:focus + .textboxLabel {
  position: absolute;
  top: 0;
  padding-top: 0;
  font-size: 12px;
  color: #1976d2;
  font-weight: 400;
}
@media (max-width: 768px) {
  .textbox-floatlabel input[type="text"]:focus + .textboxLabel,
  .textbox-floatlabel input[type="password"]:focus + .textboxLabel,
  .textbox-floatlabel input[type="search"]:focus + .textboxLabel,
  .textbox-floatlabel textarea:focus + .textboxLabel {
    font-size: 12px;
  }
}
.textbox-floatlabel input.notEmpty[type="text"] + .textboxLabel,
.textbox-floatlabel input.notEmpty[type="password"] + .textboxLabel,
.textbox-floatlabel textarea.notEmpty + .textboxLabel {
  position: absolute;
  top: 0;
  padding-top: 0;
  font-size: 12px;
  color: #777;
  font-weight: 400;
}
@media (max-width: 768px) {
  .textbox-floatlabel input.notEmpty[type="text"] + .textboxLabel,
  .textbox-floatlabel input.notEmpty[type="password"] + .textboxLabel,
  .textbox-floatlabel textarea.notEmpty + .textboxLabel {
    font-size: 12px;
  }
}
.datepicker {
  min-width: 195px;
  max-width: 100%;
  display: inline-block;
}
.datepicker input[type="text"],
.datepicker input[type="search"] {
  background: transparent;
  border-width: 0;
  border-bottom-width: 1px;
  padding: 6px 0;
  z-index: 1;
  cursor: pointer;
  padding-right: 30px;
}
.datepicker .icon-button {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  width: 30px;
  -webkit-transition-property: filter;
  -moz-transition-property: filter;
  -o-transition-property: filter;
  transition-property: filter;
  position: absolute;
  right: 0;
  top: 6px;
}
.datepicker .icon-button:first-of-type {
  pointer-events: none;
}
.datepicker .clearDate {
  display: none;
}
.datepicker.datepicker-picked input[type="text"],
.datepicker.datepicker-picked input[type="search"] {
  padding-right: 60px;
}
.datepicker.datepicker-picked .icon-button:first-of-type {
  margin-right: 30px;
}
.datepicker.datepicker-picked .clearDate {
  display: inline-block;
}
/*Button*/
/* Override bootstrap */
.btn {
  /* Default button style */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  padding: 3px 14px;
  text-align: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font-weight: 400;
  font-size: inherit;
  border: 0;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  cursor: pointer;
  font-size: 16px;
  line-height: 23px;
  min-width: 80px;
  white-space: nowrap;
  background-color: #0059ae;
  /* Default button style */
  background: -moz-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0059ae 0%, #313c8c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn1', endColorstr='@ColorBtn1a', GradientType=1);
  /* IE6-9 */
  text-transform: none;
}
@media (max-width: 768px) {
  .btn {
    font-size: 16px;
  }
}
.btn,
.btn:focus,
.btn:hover {
  color: #fff;
}
.btn.fullW {
  white-space: normal;
}
.btn > span:first-child.icon,
.btn > span:first-child.fa,
.btn > span:first-child.far,
.btn > span:first-child.fab,
.btn > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
.btn > * + span.icon,
.btn > * + span.fa,
.btn > * + span.far,
.btn > * + span.fab,
.btn > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
.btn > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  .btn:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.btn:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .btn:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .btn {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.btn > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.btn > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .btn {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.btn > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.btn > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .btn {
    font-size: 16px;
  }
}
.btn,
.btn:focus,
.btn:hover {
  color: #fff;
}
.btn.fullW {
  white-space: normal;
}
.btn > span:first-child.icon,
.btn > span:first-child.fa,
.btn > span:first-child.far,
.btn > span:first-child.fab,
.btn > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
.btn > * + span.icon,
.btn > * + span.fa,
.btn > * + span.far,
.btn > * + span.fab,
.btn > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
.btn > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  .btn:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.btn:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .btn:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .btn {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.btn > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.btn > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .btn {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.btn > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.btn > img + span {
  margin-left: 5px;
}
a:not([href]):not([tabindex]) {
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (hover: none) and (pointer: coarse) {
  a:not([href]):not([tabindex]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
a:not([href]):not([tabindex]):not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  a:not([href]):not([tabindex]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main a:not([href]):not([tabindex]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main a:not([href]):not([tabindex]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (hover: none) and (pointer: coarse) {
  a:not([href]):not([tabindex]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
a:not([href]):not([tabindex]):not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  a:not([href]):not([tabindex]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main a:not([href]):not([tabindex]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main a:not([href]):not([tabindex]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
.button {
  padding: 3px 14px;
  text-align: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font-weight: 400;
  font-size: inherit;
  border: 0;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  cursor: pointer;
  font-size: 16px;
  line-height: 23px;
  min-width: 80px;
  white-space: nowrap;
  background-color: #0059ae;
  /* Default button style */
  background: -moz-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0059ae 0%, #313c8c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn1', endColorstr='@ColorBtn1a', GradientType=1);
  /* IE6-9 */
}
@media (max-width: 768px) {
  .button {
    font-size: 16px;
  }
}
.button,
.button:focus,
.button:hover {
  color: #fff;
}
.button.fullW {
  white-space: normal;
}
input[type=button],
input[type=submit],
a.button,
a.button:not([href]):not([tabindex]) {
  /* Default button style */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  padding: 3px 14px;
  text-align: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font-weight: 400;
  font-size: inherit;
  border: 0;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  cursor: pointer;
  font-size: 16px;
  line-height: 23px;
  min-width: 80px;
  white-space: nowrap;
  background-color: #0059ae;
  /* Default button style */
  background: -moz-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0059ae 0%, #313c8c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn1', endColorstr='@ColorBtn1a', GradientType=1);
  /* IE6-9 */
  display: inline-block;
}
@media (max-width: 768px) {
  input[type=button],
  input[type=submit],
  a.button,
  a.button:not([href]):not([tabindex]) {
    font-size: 16px;
  }
}
input[type=button],
input[type=submit],
a.button,
a.button:not([href]):not([tabindex]),
input[type=button]:focus,
input[type=submit]:focus,
a.button:focus,
a.button:not([href]):not([tabindex]):focus,
input[type=button]:hover,
input[type=submit]:hover,
a.button:hover,
a.button:not([href]):not([tabindex]):hover {
  color: #fff;
}
input[type=button].fullW,
input[type=submit].fullW,
a.button.fullW,
a.button:not([href]):not([tabindex]).fullW {
  white-space: normal;
}
input[type=button] > span:first-child.icon,
input[type=submit] > span:first-child.icon,
a.button > span:first-child.icon,
a.button:not([href]):not([tabindex]) > span:first-child.icon,
input[type=button] > span:first-child.fa,
input[type=submit] > span:first-child.fa,
a.button > span:first-child.fa,
a.button:not([href]):not([tabindex]) > span:first-child.fa,
input[type=button] > span:first-child.far,
input[type=submit] > span:first-child.far,
a.button > span:first-child.far,
a.button:not([href]):not([tabindex]) > span:first-child.far,
input[type=button] > span:first-child.fab,
input[type=submit] > span:first-child.fab,
a.button > span:first-child.fab,
a.button:not([href]):not([tabindex]) > span:first-child.fab,
input[type=button] > span:first-child.fas,
input[type=submit] > span:first-child.fas,
a.button > span:first-child.fas,
a.button:not([href]):not([tabindex]) > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
input[type=button] > * + span.icon,
input[type=submit] > * + span.icon,
a.button > * + span.icon,
a.button:not([href]):not([tabindex]) > * + span.icon,
input[type=button] > * + span.fa,
input[type=submit] > * + span.fa,
a.button > * + span.fa,
a.button:not([href]):not([tabindex]) > * + span.fa,
input[type=button] > * + span.far,
input[type=submit] > * + span.far,
a.button > * + span.far,
a.button:not([href]):not([tabindex]) > * + span.far,
input[type=button] > * + span.fab,
input[type=submit] > * + span.fab,
a.button > * + span.fab,
a.button:not([href]):not([tabindex]) > * + span.fab,
input[type=button] > * + span.fas,
input[type=submit] > * + span.fas,
a.button > * + span.fas,
a.button:not([href]):not([tabindex]) > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
input[type=button] > *:not(.middle):not(.bottom),
input[type=submit] > *:not(.middle):not(.bottom),
a.button > *:not(.middle):not(.bottom),
a.button:not([href]):not([tabindex]) > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  input[type=button]:not(:disabled):not(.disabled):hover,
  input[type=submit]:not(:disabled):not(.disabled):hover,
  a.button:not(:disabled):not(.disabled):hover,
  a.button:not([href]):not([tabindex]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
input[type=button]:not(:disabled):not(.disabled):hover,
input[type=submit]:not(:disabled):not(.disabled):hover,
a.button:not(:disabled):not(.disabled):hover,
a.button:not([href]):not([tabindex]):not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  input[type=button]:not(:disabled):not(.disabled):hover,
  input[type=submit]:not(:disabled):not(.disabled):hover,
  a.button:not(:disabled):not(.disabled):hover,
  a.button:not([href]):not([tabindex]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  input[type=button],
  input[type=submit],
  a.button,
  a.button:not([href]):not([tabindex]) {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
input[type=button] > img,
input[type=submit] > img,
a.button > img,
a.button:not([href]):not([tabindex]) > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
input[type=button] > img + span,
input[type=submit] > img + span,
a.button > img + span,
a.button:not([href]):not([tabindex]) > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  input[type=button],
  input[type=submit],
  a.button,
  a.button:not([href]):not([tabindex]) {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
input[type=button] > img,
input[type=submit] > img,
a.button > img,
a.button:not([href]):not([tabindex]) > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
input[type=button] > img + span,
input[type=submit] > img + span,
a.button > img + span,
a.button:not([href]):not([tabindex]) > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  input[type=button],
  input[type=submit],
  a.button,
  a.button:not([href]):not([tabindex]) {
    font-size: 16px;
  }
}
input[type=button],
input[type=submit],
a.button,
a.button:not([href]):not([tabindex]),
input[type=button]:focus,
input[type=submit]:focus,
a.button:focus,
a.button:not([href]):not([tabindex]):focus,
input[type=button]:hover,
input[type=submit]:hover,
a.button:hover,
a.button:not([href]):not([tabindex]):hover {
  color: #fff;
}
input[type=button].fullW,
input[type=submit].fullW,
a.button.fullW,
a.button:not([href]):not([tabindex]).fullW {
  white-space: normal;
}
input[type=button] > span:first-child.icon,
input[type=submit] > span:first-child.icon,
a.button > span:first-child.icon,
a.button:not([href]):not([tabindex]) > span:first-child.icon,
input[type=button] > span:first-child.fa,
input[type=submit] > span:first-child.fa,
a.button > span:first-child.fa,
a.button:not([href]):not([tabindex]) > span:first-child.fa,
input[type=button] > span:first-child.far,
input[type=submit] > span:first-child.far,
a.button > span:first-child.far,
a.button:not([href]):not([tabindex]) > span:first-child.far,
input[type=button] > span:first-child.fab,
input[type=submit] > span:first-child.fab,
a.button > span:first-child.fab,
a.button:not([href]):not([tabindex]) > span:first-child.fab,
input[type=button] > span:first-child.fas,
input[type=submit] > span:first-child.fas,
a.button > span:first-child.fas,
a.button:not([href]):not([tabindex]) > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
input[type=button] > * + span.icon,
input[type=submit] > * + span.icon,
a.button > * + span.icon,
a.button:not([href]):not([tabindex]) > * + span.icon,
input[type=button] > * + span.fa,
input[type=submit] > * + span.fa,
a.button > * + span.fa,
a.button:not([href]):not([tabindex]) > * + span.fa,
input[type=button] > * + span.far,
input[type=submit] > * + span.far,
a.button > * + span.far,
a.button:not([href]):not([tabindex]) > * + span.far,
input[type=button] > * + span.fab,
input[type=submit] > * + span.fab,
a.button > * + span.fab,
a.button:not([href]):not([tabindex]) > * + span.fab,
input[type=button] > * + span.fas,
input[type=submit] > * + span.fas,
a.button > * + span.fas,
a.button:not([href]):not([tabindex]) > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
input[type=button] > *:not(.middle):not(.bottom),
input[type=submit] > *:not(.middle):not(.bottom),
a.button > *:not(.middle):not(.bottom),
a.button:not([href]):not([tabindex]) > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  input[type=button]:not(:disabled):not(.disabled):hover,
  input[type=submit]:not(:disabled):not(.disabled):hover,
  a.button:not(:disabled):not(.disabled):hover,
  a.button:not([href]):not([tabindex]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
input[type=button]:not(:disabled):not(.disabled):hover,
input[type=submit]:not(:disabled):not(.disabled):hover,
a.button:not(:disabled):not(.disabled):hover,
a.button:not([href]):not([tabindex]):not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  input[type=button]:not(:disabled):not(.disabled):hover,
  input[type=submit]:not(:disabled):not(.disabled):hover,
  a.button:not(:disabled):not(.disabled):hover,
  a.button:not([href]):not([tabindex]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  input[type=button],
  input[type=submit],
  a.button,
  a.button:not([href]):not([tabindex]) {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
input[type=button] > img,
input[type=submit] > img,
a.button > img,
a.button:not([href]):not([tabindex]) > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
input[type=button] > img + span,
input[type=submit] > img + span,
a.button > img + span,
a.button:not([href]):not([tabindex]) > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  input[type=button],
  input[type=submit],
  a.button,
  a.button:not([href]):not([tabindex]) {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
input[type=button] > img,
input[type=submit] > img,
a.button > img,
a.button:not([href]):not([tabindex]) > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
input[type=button] > img + span,
input[type=submit] > img + span,
a.button > img + span,
a.button:not([href]):not([tabindex]) > img + span {
  margin-left: 5px;
}
input[type=file].button:after {
  /* Default button style */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  padding: 3px 14px;
  text-align: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font-weight: 400;
  font-size: inherit;
  border: 0;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  cursor: pointer;
  font-size: 16px;
  line-height: 23px;
  min-width: 80px;
  white-space: nowrap;
  background-color: #0059ae;
  /* Default button style */
  background: -moz-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0059ae 0%, #313c8c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn1', endColorstr='@ColorBtn1a', GradientType=1);
  /* IE6-9 */
}
@media (max-width: 768px) {
  input[type=file].button:after {
    font-size: 16px;
  }
}
input[type=file].button:after,
input[type=file].button:after:focus,
input[type=file].button:after:hover {
  color: #fff;
}
input[type=file].button:after.fullW {
  white-space: normal;
}
input[type=file].button:after > span:first-child.icon,
input[type=file].button:after > span:first-child.fa,
input[type=file].button:after > span:first-child.far,
input[type=file].button:after > span:first-child.fab,
input[type=file].button:after > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
input[type=file].button:after > * + span.icon,
input[type=file].button:after > * + span.fa,
input[type=file].button:after > * + span.far,
input[type=file].button:after > * + span.fab,
input[type=file].button:after > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
input[type=file].button:after > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  input[type=file].button:after:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
input[type=file].button:after:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  input[type=file].button:after:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  input[type=file].button:after {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
input[type=file].button:after > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
input[type=file].button:after > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  input[type=file].button:after {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
input[type=file].button:after > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
input[type=file].button:after > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  input[type=file].button:after {
    font-size: 16px;
  }
}
input[type=file].button:after,
input[type=file].button:after:focus,
input[type=file].button:after:hover {
  color: #fff;
}
input[type=file].button:after.fullW {
  white-space: normal;
}
input[type=file].button:after > span:first-child.icon,
input[type=file].button:after > span:first-child.fa,
input[type=file].button:after > span:first-child.far,
input[type=file].button:after > span:first-child.fab,
input[type=file].button:after > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
input[type=file].button:after > * + span.icon,
input[type=file].button:after > * + span.fa,
input[type=file].button:after > * + span.far,
input[type=file].button:after > * + span.fab,
input[type=file].button:after > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
input[type=file].button:after > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  input[type=file].button:after:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
input[type=file].button:after:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  input[type=file].button:after:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  input[type=file].button:after {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
input[type=file].button:after > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
input[type=file].button:after > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  input[type=file].button:after {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
input[type=file].button:after > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
input[type=file].button:after > img + span {
  margin-left: 5px;
}
input[type=file].button:after,
input[type=file].button:focus:after,
input[type=file].button:hover:after {
  color: #fff;
}
.button > span:first-child.icon,
.button > span:first-child.fa,
.button > span:first-child.far,
.button > span:first-child.fab,
.button > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
.button > * + span.icon,
.button > * + span.fa,
.button > * + span.far,
.button > * + span.fab,
.button > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
.button > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  .button:not(:disabled):not(.disabled):hover,
  .icon-button:not(:disabled):not(.disabled):hover,
  .link:not(:disabled):not(.disabled):hover,
  a:not(:disabled):not(.disabled):hover,
  a:not([href]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.button-alternative,
.btn-alternative,
a.button-alternative,
a.button:not([href]):not([tabindex]).button-alternative,
input.button-alternative {
  /* Default button style */
  background-color: #1fa686;
  /* Old browsers */
  background: -moz-linear-gradient(left, #1fa686 0%, #189d7e 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #1fa686 0%, #189d7e 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #1fa686 0%, #189d7e 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn2', endColorstr='@ColorBtn2a', GradientType=1);
  /* IE6-9 */
}
.button-secondary,
.btn-secondary,
a.button-secondary,
a.button:not([href]):not([tabindex]).button-secondary,
input.button-secondary,
.button-secondary:hover,
.btn-secondary:hover,
a.button-secondary:hover,
a.button:not([href]):not([tabindex]).button-secondary:hover,
input.button-secondary:hover,
.button-secondary:focus,
.btn-secondary:focus,
a.button-secondary:focus,
a.button:not([href]):not([tabindex]).button-secondary:focus,
input.button-secondary:focus {
  color: #0059ae;
}
.button-secondary,
.btn-secondary,
a.button-secondary,
a.button:not([href]):not([tabindex]).button-secondary,
input.button-secondary,
.button-secondary.button-disabled,
.btn-secondary.button-disabled,
a.button-secondary.button-disabled,
a.button:not([href]):not([tabindex]).button-secondary.button-disabled,
input.button-secondary.button-disabled {
  background: transparent !important;
}
.button-secondary:hover,
.btn-secondary:hover,
a.button-secondary:hover,
a.button:not([href]):not([tabindex]).button-secondary:hover,
input.button-secondary:hover,
.button-secondary:focus,
.btn-secondary:focus,
a.button-secondary:focus,
a.button:not([href]):not([tabindex]).button-secondary:focus,
input.button-secondary:focus {
  background: rgba(0, 0, 0, 0.05) !important;
}
.button-secondary > img,
.btn-secondary > img,
a.button-secondary > img,
a.button:not([href]):not([tabindex]).button-secondary > img,
input.button-secondary > img {
  -webkit-filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
  filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
}
.button-secondary-offset {
  margin-left: -14px;
}
.button:not(:disabled):not(.disabled):hover,
.icon-button:not(:disabled):not(.disabled):hover,
.link:not(:disabled):not(.disabled):hover,
a:not(:disabled):not(.disabled):hover,
a:not([href]):not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .button:not(:disabled):not(.disabled):hover,
  .icon-button:not(:disabled):not(.disabled):hover,
  .link:not(:disabled):not(.disabled):hover,
  a:not(:disabled):not(.disabled):hover,
  a:not([href]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.button-disabled,
.btn-disabled,
a.button-disabled,
a.button:not([href]):not([tabindex]).button-disabled,
input.button-disabled {
  cursor: default !important;
  background: #eee !important;
  color: #aaa !important;
  pointer-events: none;
}
@media (max-width: 768px) {
  .button,
  input[type=file].button:after {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.button > img,
input[type=file].button:after > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.button > img + span,
input[type=file].button:after > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .button,
  input[type=file].button:after {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.button > img,
input[type=file].button:after > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.button > img + span,
input[type=file].button:after > img + span {
  margin-left: 5px;
}
.button-l,
a.button-l,
a.button:not([href]):not([tabindex]).button-l,
input.button-l {
  padding: 7px 18px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  min-width: 100px;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 768px) {
  .button-l,
  a.button-l,
  a.button:not([href]):not([tabindex]).button-l,
  input.button-l {
    font-size: 18px;
  }
}
.button-l > img,
a.button-l > img,
a.button:not([href]):not([tabindex]).button-l > img,
input.button-l > img {
  height: 26px;
  padding-top: -1px;
  padding-bottom: -1px;
}
.button-l > img + span,
a.button-l > img + span,
a.button:not([href]):not([tabindex]).button-l > img + span,
input.button-l > img + span {
  margin-left: 5px;
}
.button-m,
a.button-m,
a.button:not([href]):not([tabindex]).button-m,
input.button-m {
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  min-width: 100px;
}
@media (max-width: 768px) {
  .button-m,
  a.button-m,
  a.button:not([href]):not([tabindex]).button-m,
  input.button-m {
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
.button-m > img,
a.button-m > img,
a.button:not([href]):not([tabindex]).button-m > img,
input.button-m > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.button-m > img + span,
a.button-m > img + span,
a.button:not([href]):not([tabindex]).button-m > img + span,
input.button-m > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .button-s,
  a.button-s,
  a.button:not([href]):not([tabindex]).button-s,
  input.button-s {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.button-s > img,
a.button-s > img,
a.button:not([href]):not([tabindex]).button-s > img,
input.button-s > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.button-s > img + span,
a.button-s > img + span,
a.button:not([href]):not([tabindex]).button-s > img + span,
input.button-s > img + span {
  margin-left: 5px;
}
.icon-button {
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
}
.link {
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.link,
.link:hover {
  color: #0059ae;
}
.portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]),
.classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]) {
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (hover: none) and (pointer: coarse) {
  .portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
  .classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
.classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
  .classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]),
.classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]),
.portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):hover,
.classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
  .eContent-main .classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
    .eContent-main .classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (hover: none) and (pointer: coarse) {
  .portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
  .classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
.classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
  .classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]),
.classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]),
.portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):hover,
.classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
  .eContent-main .classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .portal a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
    .eContent-main .classroom a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
.portal a:not(.button):not([class^="button-"]):not([class^="btn-"]):not(.nav-link):hover,
.classroom a:not(.button):not([class^="button-"]):not([class^="btn-"]):not(.nav-link):hover,
#ploginWrapper a:not(.button):not([class^="button-"]):not([class^="btn-"]):not(.nav-link):hover {
  color: #0059ae;
  -webkit-filter: brightness(1) contrast(1);
  filter: brightness(1) contrast(1);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .portal a:not(.button):not([class^="button-"]):not([class^="btn-"]):not(.nav-link):hover,
  .classroom a:not(.button):not([class^="button-"]):not([class^="btn-"]):not(.nav-link):hover,
  #ploginWrapper a:not(.button):not([class^="button-"]):not([class^="btn-"]):not(.nav-link):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.isApp .portal a:not(.button):not([class^="button-"]):not([class^="btn-"]):not(.nav-link):hover,
.isApp .classroom a:not(.button):not([class^="button-"]):not([class^="btn-"]):not(.nav-link):hover,
.isApp #ploginWrapper a:not(.button):not([class^="button-"]):not([class^="btn-"]):not(.nav-link):hover {
  color: #000;
}
.text-1 {
  color: #2389ab;
  font-size: 26px;
  font-weight: bold;
}
.text-2 {
  color: #333;
  font-size: 20px;
}
.text-passed {
  color: #0ea84f;
  white-space: nowrap;
}
.text-passed::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00c";
  margin-right: 5px;
}
.text-passed::before.fa-pull-left {
  margin-right: .3em;
}
.text-passed::before.fa-pull-right {
  margin-left: .3em;
}
.text-failed {
  color: #ca5555;
}
/* Override above */
.text-passed,
.text-failed {
  color: inherit;
  font-weight: inherit;
}
.text-passed::before,
.text-failed::before {
  display: none !important;
}
.text-warning {
  color: #ca5555 !important;
  white-space: nowrap;
}
.text-warning::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f071";
  margin-right: 5px;
}
.text-warning::before.fa-pull-left {
  margin-right: .3em;
}
.text-warning::before.fa-pull-right {
  margin-left: .3em;
}
.horizontalScroll {
  overflow-x: auto;
}
@media (max-width: 768px) {
  .horizontalScroll {
    width: calc(100% / 0.95);
    margin-left: -2.5%;
    padding-left: 2.5%;
    padding-right: 2.5%;
  }
}
.tableWrapper {
  overflow-x: auto;
  min-height: 300px;
}
@media (max-width: 768px) {
  .portal .tableWrapper {
    width: calc((100% + 30px) / 0.95);
    margin-left: calc(((100% + 30px) / 0.95 - 100%) / 2 * -1);
    padding-left: calc(((100% + 30px) / 0.95 - 100%) / 2);
    padding-right: calc(((100% + 30px) / 0.95 - 100%) / 2);
  }
  .tableWrapper > .table:not(.table-resp) {
    min-width: 768px;
  }
  .classroom .portalArea .tableWrapper {
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.table > thead > tr > th {
  vertical-align: top;
}
@media (min-width: 769px) {
  .table-resp td .hide-d + * {
    float: left;
    max-width: calc(100% - 1em);
  }
}
@media (max-width: 768px) {
  .role-learner .table-resp td:first-child ~ td.hide-d > span:first-child,
  .role-learner .table-resp td .hide-d {
    color: #333;
  }
}
.table-resp .th-m {
  color: #333;
  margin-right: 5px;
}
@media (min-width: 769px) {
  .table-resp .th-m {
    display: none;
  }
}
.table-default > thead {
  background-color: #f8f8f8;
}
.table-default > thead > tr > th {
  color: #0059ae;
  border-bottom: 1px solid #cccccc;
}
.table-default > tbody > tr:nth-of-type(even) {
  background-color: rgba(0, 0, 0, 0.02);
}
.table-default > tbody > tr > td {
  border-top: 0;
}
.table-default > thead > tr > th:first-child,
.table-default > tbody > tr > td:first-child {
  padding-left: 30px;
}
.table-default > thead > tr > th:last-child,
.table-default > tbody > tr > td:last-child {
  padding-right: 30px;
}
@media (max-width: 768px) {
  .table-default.table-resp > tbody > tr:nth-of-type(even) {
    background-color: rgba(0, 0, 0, 0);
  }
  .table-default.table-resp > tbody > tr:not(:first-child) {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.itemInput .table-default > thead > tr > th {
  padding-top: 0.75rem !important;
}
.table-borderless {
  background-color: rgba(0, 0, 0, 0.04);
}
.table-borderless td {
  border: 0;
}
.table-borderless > thead th {
  font-size: 14px;
  padding-right: 10px;
  vertical-align: top;
  padding-top: 20px;
  font-weight: bold;
  color: inherit;
  border: 0;
}
@media (max-width: 768px) {
  .table-borderless > thead th {
    font-size: 14px;
  }
}
.table-borderless > tbody > tr:last-child > td {
  padding-bottom: 30px;
}
.table-borderless > tbody + tbody {
  border-top: 0;
}
.table-borderless > tbody + tbody > tr:first-child > td {
  padding-top: 30px;
}
.table-borderless > tbody + tbody > tr:first-child > td::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  display: block;
  border-top: 1px solid #ddd;
}
.table-borderless > tbody + tbody > tr:first-child > td:first-child::before {
  left: 40px;
}
.table-borderless > tbody + tbody > tr:first-child > td:last-child::before {
  right: 40px;
}
@media (max-width: 768px) {
  .table-borderless > tbody + tbody > tr:first-child > td:first-child::before {
    left: 15px;
  }
  .table-borderless > tbody + tbody > tr:first-child > td:last-child::before {
    right: 15px;
  }
}
@media (min-width: 769px) {
  .table-borderless > thead th {
    padding-top: 30px;
  }
  .table-borderless > tbody:first-child > tr:first-child > td {
    padding-top: 30px;
  }
  .table-borderless > tbody > tr > td:first-child {
    padding-left: 40px;
  }
  .table-borderless > tbody > tr > td:last-child {
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .table-borderless.table-resp > thead {
    display: none;
  }
  .table-borderless.table-resp > tbody > tr > td {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
.table-edit > tbody > tr > td:last-child {
  width: 1%;
  white-space: nowrap;
}
.table-edit.table-default > thead > tr > th:last-child,
.table-edit.table-default > tbody > tr > td:last-child {
  padding-right: 0.75rem;
}
.table-select > thead > tr > th:first-child,
.table-select > tbody > tr > td:first-child {
  width: 1px;
  white-space: nowrap;
}
.table-survey {
  background: #fff;
}
.table-survey td,
.table-survey th {
  border-top: none;
  padding: 0.7rem 0.5rem;
  text-align: left;
}
.table-survey td:first-child,
.table-survey th:first-child {
  padding-left: 1rem;
}
.table-survey td:last-child,
.table-survey th:last-child {
  padding-right: 1rem;
}
.table-survey > tbody > tr:not(:first-child) {
  border-top: 1px solid #d7d7d7;
}
.table-survey > thead > tr > th {
  border-color: #bcbcbc;
}
.table-survey > thead > tr:not(:last-child) > th {
  border: 0;
}
.table {
  font-weight: 400;
}
.table th > a.th-sort,
.table th > a.th-sort-asc,
.table th > a.th-sort-desc {
  display: inline-block;
  max-width: 100%;
  padding-right: 15px;
}
.table th > a.th-sort:after,
.table th > a.th-sort-asc:after,
.table th > a.th-sort-desc:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 15px;
  text-align: right;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.table th > a.th-sort:after.fa-pull-left,
.table th > a.th-sort-asc:after.fa-pull-left,
.table th > a.th-sort-desc:after.fa-pull-left {
  margin-right: .3em;
}
.table th > a.th-sort:after.fa-pull-right,
.table th > a.th-sort-asc:after.fa-pull-right,
.table th > a.th-sort-desc:after.fa-pull-right {
  margin-left: .3em;
}
.table th > a.th-sort:after {
  content: "\f0dc";
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
.table th > a.th-sort:hover:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.table th > a.th-sort-asc:after {
  content: "\f0de";
}
.table th > a.th-sort-desc:after {
  content: "\f0dd";
}
.table-actions {
  margin-bottom: 10px;
}
.table-actions::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.table-actions > .table-actions-left {
  float: left;
}
.table-actions > .table-actions-left::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.table-actions > .table-actions-left > .button {
  float: left;
  margin-right: 5px;
}
.table-actions > .table-actions-left > .button-secondary:first-child {
  margin-left: -14px;
}
.table-actions > .table-actions-right {
  overflow: hidden;
}
.table-actions > .table-actions-right::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.table-actions > .table-actions-right > .button,
.table-actions > .table-actions-right > * {
  float: right;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .table-select.table-resp tbody tr::after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
  }
  .table-select.table-resp tbody tr td:first-child {
    float: left;
    width: 2em !important;
  }
  .table-select.table-resp tbody tr td:first-child ~ td {
    overflow: hidden;
    width: auto !important;
  }
  .table-select.table-resp tbody tr td:first-child + td {
    padding-top: 10px !important;
    font-size: inherit;
    color: inherit;
  }
}
.td-borderR {
  border-right: 1px solid #cccccc;
}
@media (max-width: 768px) {
  .table-resp .td-borderR {
    border-right: 0;
  }
}
.portal .pin,
.classroom .pin {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
  color: #ccc;
  padding-left: 3px;
  padding-right: 3px;
}
.portal .pin.fa-pull-left,
.classroom .pin.fa-pull-left {
  margin-right: .3em;
}
.portal .pin.fa-pull-right,
.classroom .pin.fa-pull-right {
  margin-left: .3em;
}
.portal .pin:before,
.classroom .pin:before {
  content: "\f08d";
}
.portal .pin.pin-pinned,
.classroom .pin.pin-pinned {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #0059ae;
}
.portal .pin.pin-pinned.fa-pull-left,
.classroom .pin.pin-pinned.fa-pull-left {
  margin-right: .3em;
}
.portal .pin.pin-pinned.fa-pull-right,
.classroom .pin.pin-pinned.fa-pull-right {
  margin-left: .3em;
}
/* Multi Action */
.multiAction {
  clear: both;
}
.multiAction::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.multiAction .button {
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  float: left;
}
.portal .multiAction,
.classroom .multiAction {
  background-color: #f8f8f8;
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
}
.portal .multiAction + .tableWrapper > .table::before,
.classroom .multiAction + .tableWrapper > .table::before,
.portal .multiAction + form > .tableWrapper > .table::before,
.classroom .multiAction + form > .tableWrapper > .table::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 20px;
  right: 20px;
  border-top: 1px solid #dedede;
}
@media (min-width: 769px) {
  .portal .multiAction > .button:first-child,
  .classroom .multiAction > .button:first-child {
    margin-left: -14px;
  }
}
@media (max-width: 768px) {
  .portal .multiAction,
  .classroom .multiAction {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.portalNavBar + .multiAction {
  padding-top: 30px;
}
.portalOptions + .multiAction {
  padding-top: 35px;
}
.portalOptions + .multiAction::before {
  position: absolute;
  content: "";
  display: block;
  top: 25px;
  left: 20px;
  right: 20px;
  border-top: 1px solid #ddd;
}
.role-admin .multiAction {
  border: 1px solid #d5d5d5;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
}
.role-admin .multiAction .button {
  margin-bottom: 5px;
}
.role-admin .multiAction + .table {
  border-top: 0;
}
.role-admin .multiAction + .table > thead > tr:first-child > th {
  border-top: 0;
}
.pagination {
  display: block;
  font-size: 14px;
  color: #777;
}
@media (max-width: 768px) {
  .pagination {
    font-size: 14px;
  }
  .pagination > .pagination-text {
    text-align: left;
    padding-left: 5px;
  }
}
.pagination::after,
.pagination > .floatR::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.pagination > .pagination-text {
  float: left;
  padding: 8px 0;
}
.pagination > .floatR > .pagination-perPage,
.pagination > .floatR > .pagination-goTo {
  float: right;
}
.pagination > .floatR > div + div {
  margin-right: 40px;
}
.pagination .pagination-perPage::after,
.pagination .pagination-goTo::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.pagination .pagination-perPage > span,
.pagination .pagination-goTo > span {
  vertical-align: middle;
}
.pagination .pagination-perPage .selector:before,
.pagination .pagination-goTo .selector:before {
  display: none;
}
.pagination .pagination-perPage .selector select,
.pagination .pagination-goTo .selector select {
  padding: 0 8px;
  text-align-last: center;
  font-size: inherit;
  color: #0059ae;
  font-weight: bold;
  font-weight: 600;
}
.pagination .pagination-goTo .pagination-goTo-first,
.pagination .pagination-goTo .pagination-goTo-prev,
.pagination .pagination-goTo .pagination-goTo-next,
.pagination .pagination-goTo .pagination-goTo-last {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  padding: 0 8px;
  font-size: 18px;
}
.pagination .pagination-goTo .pagination-goTo-first.fa-pull-left,
.pagination .pagination-goTo .pagination-goTo-prev.fa-pull-left,
.pagination .pagination-goTo .pagination-goTo-next.fa-pull-left,
.pagination .pagination-goTo .pagination-goTo-last.fa-pull-left {
  margin-right: .3em;
}
.pagination .pagination-goTo .pagination-goTo-first.fa-pull-right,
.pagination .pagination-goTo .pagination-goTo-prev.fa-pull-right,
.pagination .pagination-goTo .pagination-goTo-next.fa-pull-right,
.pagination .pagination-goTo .pagination-goTo-last.fa-pull-right {
  margin-left: .3em;
}
@media (hover: none) and (pointer: coarse) {
  .pagination .pagination-goTo .pagination-goTo-first:not(:disabled):not(.disabled):hover,
  .pagination .pagination-goTo .pagination-goTo-prev:not(:disabled):not(.disabled):hover,
  .pagination .pagination-goTo .pagination-goTo-next:not(:disabled):not(.disabled):hover,
  .pagination .pagination-goTo .pagination-goTo-last:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.pagination .pagination-goTo .pagination-goTo-first:not(:disabled):not(.disabled):hover,
.pagination .pagination-goTo .pagination-goTo-prev:not(:disabled):not(.disabled):hover,
.pagination .pagination-goTo .pagination-goTo-next:not(:disabled):not(.disabled):hover,
.pagination .pagination-goTo .pagination-goTo-last:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .pagination .pagination-goTo .pagination-goTo-first:not(:disabled):not(.disabled):hover,
  .pagination .pagination-goTo .pagination-goTo-prev:not(:disabled):not(.disabled):hover,
  .pagination .pagination-goTo .pagination-goTo-next:not(:disabled):not(.disabled):hover,
  .pagination .pagination-goTo .pagination-goTo-last:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .pagination .pagination-goTo .pagination-goTo-first:not(:disabled):not(.disabled):hover,
  .pagination .pagination-goTo .pagination-goTo-prev:not(:disabled):not(.disabled):hover,
  .pagination .pagination-goTo .pagination-goTo-next:not(:disabled):not(.disabled):hover,
  .pagination .pagination-goTo .pagination-goTo-last:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.pagination .pagination-goTo .pagination-goTo-first:not(:disabled):not(.disabled):hover,
.pagination .pagination-goTo .pagination-goTo-prev:not(:disabled):not(.disabled):hover,
.pagination .pagination-goTo .pagination-goTo-next:not(:disabled):not(.disabled):hover,
.pagination .pagination-goTo .pagination-goTo-last:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .pagination .pagination-goTo .pagination-goTo-first:not(:disabled):not(.disabled):hover,
  .pagination .pagination-goTo .pagination-goTo-prev:not(:disabled):not(.disabled):hover,
  .pagination .pagination-goTo .pagination-goTo-next:not(:disabled):not(.disabled):hover,
  .pagination .pagination-goTo .pagination-goTo-last:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .pagination .pagination-goTo .pagination-goTo-first,
  .pagination .pagination-goTo .pagination-goTo-prev,
  .pagination .pagination-goTo .pagination-goTo-next,
  .pagination .pagination-goTo .pagination-goTo-last {
    font-size: 18px;
  }
}
.pagination .pagination-goTo .pagination-goTo-first:disabled,
.pagination .pagination-goTo .pagination-goTo-prev:disabled,
.pagination .pagination-goTo .pagination-goTo-next:disabled,
.pagination .pagination-goTo .pagination-goTo-last:disabled,
.pagination .pagination-goTo .pagination-goTo-first.disabled,
.pagination .pagination-goTo .pagination-goTo-prev.disabled,
.pagination .pagination-goTo .pagination-goTo-next.disabled,
.pagination .pagination-goTo .pagination-goTo-last.disabled {
  cursor: default;
}
.pagination .pagination-goTo .pagination-goTo-first:disabled::before,
.pagination .pagination-goTo .pagination-goTo-prev:disabled::before,
.pagination .pagination-goTo .pagination-goTo-next:disabled::before,
.pagination .pagination-goTo .pagination-goTo-last:disabled::before,
.pagination .pagination-goTo .pagination-goTo-first.disabled::before,
.pagination .pagination-goTo .pagination-goTo-prev.disabled::before,
.pagination .pagination-goTo .pagination-goTo-next.disabled::before,
.pagination .pagination-goTo .pagination-goTo-last.disabled::before {
  color: #ddd;
}
.pagination .pagination-goTo .pagination-goTo-first::before {
  content: "\f100";
}
.pagination .pagination-goTo .pagination-goTo-prev::before {
  content: "\f104";
}
.pagination .pagination-goTo .pagination-goTo-next::before {
  content: "\f105";
}
.pagination .pagination-goTo .pagination-goTo-last::before {
  content: "\f101";
}
@media (max-width: 768px) {
  .pagination > .pagination-text,
  .pagination > .floatR {
    width: 100%;
  }
  .pagination > .floatR > .pagination-goTo {
    float: left;
    margin-right: 0;
  }
  .pagination > .pagination-text {
    text-align: right;
  }
  .pagination .pagination-perPage > span.hide-m {
    display: inline-block;
  }
}
@media (max-width: 480px) {
  .pagination .pagination-perPage > span.hide-m {
    display: none;
  }
}
.divider {
  margin: 30px 0 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  clear: both;
}
/* Tabs */
.nav-tabs {
  border-bottom: 1px solid #aaa;
  padding-top: 20px;
}
.nav-tabs .nav-item .nav-link {
  text-transform: none;
  font-size: 18px;
  font-weight: bolder;
  font-weight: 500;
  color: #0059ae;
  padding: 5px 20px;
}
@media (max-width: 768px) {
  .nav-tabs .nav-item .nav-link {
    font-size: 18px;
  }
}
.nav-tabs .nav-item .nav-link.active,
.nav-tabs .nav-item .nav-link.active:focus,
.nav-tabs .nav-item .nav-link.active:hover {
  border-bottom-color: #0059ae;
}
.nav-tabs .nav-item .nav-link:hover {
  border-bottom-color: rgba(0, 89, 174, 0.6);
}
/* Tab default style*/
.tab > .nav-tabs {
  padding-right: 120px;
}
@media (max-width: 480px) {
  .tab > .nav-tabs .nav-item {
    width: 100%;
  }
  .tab > .nav-tabs .nav-item .nav-link {
    border-bottom: 0;
    border-left-style: solid;
    border-left-width: 3px;
    border-left-color: transparent;
  }
  .tab > .nav-tabs .nav-item .nav-link.active,
  .tab > .nav-tabs .nav-item .nav-link.active:focus,
  .tab > .nav-tabs .nav-item .nav-link.active:hover {
    border-left-color: #0059ae;
  }
  .tab > .nav-tabs .nav-item .nav-link:hover {
    border-left-color: rgba(0, 89, 174, 0.6);
  }
}
.tab .tab-content section:not(.portalOptions):not(.tableWrapper) {
  margin-top: 30px;
  margin-bottom: 30px;
}
.tab .tab-content .tab-pane .table-default:first-child > thead > tr > th,
.tab .tab-content .tab-pane .table-responsive:first-child > .table-default > thead > tr > th,
.tab .tab-content .tab-pane .tableWrapper:first-child > .table-default > thead > tr > th {
  padding-top: 35px;
}
/* Resp tab - Change tab buttons to drop down */
.tabs-to-dropdown .tabs-to-dropdown-buttonWrapper {
  display: none;
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView {
  padding-top: 20px;
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-buttonWrapper {
  display: block;
  position: relative;
  border-bottom: 1px solid #aaa;
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-buttonWrapper .button {
  font-size: 18px;
  font-weight: bolder;
  font-weight: 500;
  color: #0059ae;
  padding: 5px 35px 5px 15px;
  margin-bottom: .214rem;
  max-width: calc(100% - 120px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-buttonWrapper .button::after {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f078";
  position: absolute;
  right: 13px;
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-buttonWrapper .button::after.fa-pull-left {
  margin-right: .3em;
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-buttonWrapper .button::after.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  .tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-buttonWrapper .button {
    font-size: 18px;
  }
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-items {
  position: absolute;
  overflow-y: auto;
  max-height: 500px;
  left: 0;
  top: 100%;
  background: #fff;
  border-radius: .125rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  z-index: 3;
  display: none;
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-items.opened {
  display: block;
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-items .nav-tabs {
  padding-top: 0;
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-items #menu-tab.nav-tabs,
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-items .inner-tabs.nav-tabs {
  flex-direction: column !important;
  border-bottom: 0;
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-items #menu-tab.nav-tabs .nav-item,
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-items .inner-tabs.nav-tabs .nav-item {
  padding: 0;
  margin: 0;
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-items #menu-tab.nav-tabs .nav-item .nav-link,
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-items .inner-tabs.nav-tabs .nav-item .nav-link {
  border: none;
  color: #000;
  min-width: 7rem;
  max-width: 17.5rem;
  min-height: 3rem;
  padding: .8rem 1rem;
  line-height: 1;
  font-weight: normal;
}
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-items #menu-tab.nav-tabs .nav-item .nav-link.active,
.tabs-to-dropdown.tabs-to-dropdown-mobileView .tabs-to-dropdown-items .inner-tabs.nav-tabs .nav-item .nav-link.active {
  color: #000;
  font-weight: normal;
  background-color: #f7f7f7;
}
@media (max-width: 768px) {
  .tabs-to-dropdown {
    padding-top: 20px;
  }
  .tabs-to-dropdown .tabs-to-dropdown-buttonWrapper {
    display: block;
    position: relative;
    border-bottom: 1px solid #aaa;
  }
  .tabs-to-dropdown .tabs-to-dropdown-buttonWrapper .button {
    font-size: 18px;
    font-weight: bolder;
    font-weight: 500;
    color: #0059ae;
    padding: 5px 35px 5px 15px;
    margin-bottom: .214rem;
    max-width: calc(100% - 120px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .tabs-to-dropdown .tabs-to-dropdown-buttonWrapper .button::after {
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f078";
    position: absolute;
    right: 13px;
  }
  .tabs-to-dropdown .tabs-to-dropdown-buttonWrapper .button::after.fa-pull-left {
    margin-right: .3em;
  }
  .tabs-to-dropdown .tabs-to-dropdown-buttonWrapper .button::after.fa-pull-right {
    margin-left: .3em;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items {
    position: absolute;
    overflow-y: auto;
    max-height: 500px;
    left: 0;
    top: 100%;
    background: #fff;
    border-radius: .125rem;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    z-index: 3;
    display: none;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items.opened {
    display: block;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items .nav-tabs {
    padding-top: 0;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items #menu-tab.nav-tabs,
  .tabs-to-dropdown .tabs-to-dropdown-items .inner-tabs.nav-tabs {
    flex-direction: column !important;
    border-bottom: 0;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items #menu-tab.nav-tabs .nav-item,
  .tabs-to-dropdown .tabs-to-dropdown-items .inner-tabs.nav-tabs .nav-item {
    padding: 0;
    margin: 0;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items #menu-tab.nav-tabs .nav-item .nav-link,
  .tabs-to-dropdown .tabs-to-dropdown-items .inner-tabs.nav-tabs .nav-item .nav-link {
    border: none;
    color: #000;
    min-width: 7rem;
    max-width: 17.5rem;
    min-height: 3rem;
    padding: .8rem 1rem;
    line-height: 1;
    font-weight: normal;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items #menu-tab.nav-tabs .nav-item .nav-link.active,
  .tabs-to-dropdown .tabs-to-dropdown-items .inner-tabs.nav-tabs .nav-item .nav-link.active {
    color: #000;
    font-weight: normal;
    background-color: #f7f7f7;
  }
  .tabs-to-dropdown .tabs-to-dropdown-buttonWrapper {
    display: block;
    position: relative;
    border-bottom: 1px solid #aaa;
  }
  .tabs-to-dropdown .tabs-to-dropdown-buttonWrapper .button {
    font-size: 18px;
    font-weight: bolder;
    font-weight: 500;
    color: #0059ae;
    padding: 5px 35px 5px 15px;
    margin-bottom: .214rem;
    max-width: calc(100% - 120px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .tabs-to-dropdown .tabs-to-dropdown-buttonWrapper .button::after {
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f078";
    position: absolute;
    right: 13px;
  }
  .tabs-to-dropdown .tabs-to-dropdown-buttonWrapper .button::after.fa-pull-left {
    margin-right: .3em;
  }
  .tabs-to-dropdown .tabs-to-dropdown-buttonWrapper .button::after.fa-pull-right {
    margin-left: .3em;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items {
    position: absolute;
    overflow-y: auto;
    max-height: 500px;
    left: 0;
    top: 100%;
    background: #fff;
    border-radius: .125rem;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    z-index: 3;
    display: none;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items.opened {
    display: block;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items .nav-tabs {
    padding-top: 0;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items #menu-tab.nav-tabs,
  .tabs-to-dropdown .tabs-to-dropdown-items .inner-tabs.nav-tabs {
    flex-direction: column !important;
    border-bottom: 0;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items #menu-tab.nav-tabs .nav-item,
  .tabs-to-dropdown .tabs-to-dropdown-items .inner-tabs.nav-tabs .nav-item {
    padding: 0;
    margin: 0;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items #menu-tab.nav-tabs .nav-item .nav-link,
  .tabs-to-dropdown .tabs-to-dropdown-items .inner-tabs.nav-tabs .nav-item .nav-link {
    border: none;
    color: #000;
    min-width: 7rem;
    max-width: 17.5rem;
    min-height: 3rem;
    padding: .8rem 1rem;
    line-height: 1;
    font-weight: normal;
  }
  .tabs-to-dropdown .tabs-to-dropdown-items #menu-tab.nav-tabs .nav-item .nav-link.active,
  .tabs-to-dropdown .tabs-to-dropdown-items .inner-tabs.nav-tabs .nav-item .nav-link.active {
    color: #000;
    font-weight: normal;
    background-color: #f7f7f7;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .tabs-to-dropdown .tabs-to-dropdown-buttonWrapper .button {
    font-size: 18px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .tabs-to-dropdown .tabs-to-dropdown-buttonWrapper .button {
    font-size: 18px;
  }
}
/* Photo wrapper to fit parent & keep scale */
.photoWrapper-32 {
  overflow: hidden;
}
.photoWrapper-32::before {
  display: block;
  content: "";
  padding-top: 66.667%;
}
.photoWrapper-32 > img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  max-width: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.photoWrapper-32 > img.fitWidth {
  width: 100%;
  height: auto;
}
/*datepicker*/
.vdp-datepicker__calendar {
  background: rgba(255, 255, 255, 0.95) !important;
  padding: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  border: none;
}
.vdp-datepicker__calendar header {
  font-weight: 600;
}
.vdp-datepicker__calendar header .prev:after {
  border-right-color: #aaa !important;
}
.vdp-datepicker__calendar header .next:after {
  border-left-color: #aaa !important;
}
.vdp-datepicker__calendar header .prev:hover:after {
  border-right-color: #0059ae !important;
}
.vdp-datepicker__calendar header .next:hover:after {
  border-left-color: #0059ae !important;
}
.vdp-datepicker__calendar .cell {
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}
.vdp-datepicker__calendar .cell.day {
  border-width: 0 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.vdp-datepicker__calendar .cell.day:hover {
  border-width: 0 !important;
  background: #eee;
  font-weight: 500;
  color: #0059ae;
}
.vdp-datepicker__calendar .cell.selected {
  background: rgba(0, 89, 174, 0.1) !important;
  font-weight: 500;
  color: #0059ae;
}
/* ckeditor fix */
.ck.ck-editor__top {
  position: relative;
  z-index: 2;
}
.ck.ck-editor__top + .ck-editor__main {
  z-index: 1;
}
.ck.ck-content li {
  list-style-position: inside;
}
.ck.ck-content mark {
  padding: 0;
}
.ck-editor__editable_inline span {
  display: inline;
}
/* bootstrap switch */
.switch {
  padding-left: 5px;
}
.switch label {
  min-height: 1em;
}
.switch label .bmd-switch-track {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.26)), color-stop(50%, rgba(0, 0, 0, 0.26)), color-stop(0, rgba(0, 89, 174, 0.4)), to(rgba(0, 89, 174, 0.4)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.26) 0, rgba(0, 0, 0, 0.26) 50%, rgba(0, 89, 174, 0.4) 0, rgba(0, 89, 174, 0.4));
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.26) 0, rgba(0, 0, 0, 0.26) 50%, rgba(0, 89, 174, 0.4) 0, rgba(0, 89, 174, 0.4));
}
.switch label input:checked + .bmd-switch-track:after {
  background-color: #0059ae;
}
/* bootstrap selectpicker */
.selector .bootstrap-select {
  margin: 0;
  width: 100% !important;
}
.selector .bootstrap-select .dropdown-toggle {
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  margin: 0;
  padding: 0 30px 0 0;
  box-shadow: none;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: 1.4;
  display: inline-block;
  vertical-align: top;
}
.selector .bootstrap-select .dropdown-toggle::after {
  display: none;
}
.selector .bootstrap-select .dropdown-toggle.bs-placeholder,
.selector .bootstrap-select .dropdown-toggle.bs-placeholder:active,
.selector .bootstrap-select .dropdown-toggle.bs-placeholder:focus,
.selector .bootstrap-select .dropdown-toggle.bs-placeholder:hover {
  color: #999;
}
.selector .bootstrap-select .dropdown-toggle .filter-option {
  vertical-align: top;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.selector .bootstrap-select .caret {
  display: none;
}
.selector .bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
}
.selector .bootstrap-select .dropdown-menu[role="combobox"] {
  border: 0;
  border-radius: 5px;
  font-size: inherit;
  background: rgba(255, 255, 255, 0.95);
  max-width: 230px;
}
.selector .bootstrap-select .dropdown-menu[role="listbox"] {
  font-size: inherit;
  margin-top: 0;
  background: transparent;
}
.selector .bootstrap-select .dropdown-menu li.hidden {
  display: none;
}
.selector .bootstrap-select .dropdown-menu li a span.text {
  word-break: break-word;
  word-wrap: break-word;
  display: block;
}
.selector .bootstrap-select input.form-control {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.selector .bootstrap-select input.form-control,
.selector .bootstrap-select input.form-control:active,
.selector .bootstrap-select input.form-control:focus {
  border-radius: 0;
  outline: none;
  box-shadow: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: none;
}
.selector .bootstrap-select li {
  margin-left: 0;
  padding: 5px 15px;
}
.selector .bootstrap-select li:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.selector .bootstrap-select li a {
  display: block;
  color: inherit;
  line-height: inherit;
  padding: 0;
  min-height: auto;
  color: inherit !important;
}
.selector .bootstrap-select li a:focus {
  outline: none;
}
.selector .bootstrap-select li a .check-mark {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 0 !important;
  right: 0 !important;
  top: 0;
}
.selector .bootstrap-select li a .check-mark.fa-pull-left {
  margin-right: .3em;
}
.selector .bootstrap-select li a .check-mark.fa-pull-right {
  margin-left: .3em;
}
.selector .bootstrap-select li a .check-mark:after {
  content: "\f00c";
  color: #0059ae;
  border: 0;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  width: auto;
  height: auto;
  line-height: inherit;
}
.selector .bootstrap-select li.is-hidden {
  display: none;
}
.selector .bootstrap-select li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.selector .bootstrap-select .bs-actionsbox {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.selector .bootstrap-select .bs-actionsbox .btn-group {
  margin-bottom: 5px;
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn {
  min-width: 106px;
}
@media (max-width: 768px) {
  .selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn > img + span {
  margin-left: 5px;
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn,
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn:hover,
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn:focus {
  color: #0059ae;
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn,
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn.button-disabled {
  background: transparent !important;
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn:hover,
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn:focus {
  background: rgba(0, 0, 0, 0.05) !important;
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn > img {
  -webkit-filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
  filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn,
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn:hover,
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn:focus {
  color: #0059ae;
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn,
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn.button-disabled {
  background: transparent !important;
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn:hover,
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn:focus {
  background: rgba(0, 0, 0, 0.05) !important;
}
.selector .bootstrap-select .bs-actionsbox .btn-group .actions-btn > img {
  -webkit-filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
  filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
}
.selector .bootstrap-select.show {
  z-index: 2;
}
/* bootstrap dropdown */
.dropdownMenuButton {
  padding-left: 5px;
  padding-right: 5px;
}
.dropdownMenuButton::after {
  display: none;
}
.dropdownMenuButton[aria-expanded="true"]::before {
  content: "\f077";
}
.dropdownMenuButton + .dropdown-menu a.dropdown-item {
  color: inherit !important;
}
.dropdownMenuButton + .dropdown-menu a.dropdown-item:hover {
  -webkit-filter: brightness(1) !important;
  filter: brightness(1) !important;
}
/* Drag & Drop Plugin */
.smooth-dnd-container {
  min-height: 3px !important;
}
/* bootstrap tooltips */
.tooltip {
  z-index: 999999;
}
.tooltip .tooltip-inner {
  text-align: left;
}
@media (max-width: 768px) {
  .tooltip.show {
    display: none !important;
  }
}
.app .tooltip {
  display: none;
}
@media (hover: none) and (pointer: coarse) {
  .tooltip {
    display: none !important;
  }
  .tooltip.show {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .tooltip {
    display: none !important;
  }
  .tooltip.show {
    display: none !important;
  }
}
/* bootstrap datetimepicker */
.bootstrap-datetimepicker-widget {
  background: rgba(255, 255, 255, 0.95);
  padding: 10px !important;
  margin: 0 !important;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  border: none;
  width: 300px !important;
  border: 1px solid #ccc;
  text-align: center;
}
.bootstrap-datetimepicker-widget::before,
.bootstrap-datetimepicker-widget::after {
  display: none !important;
}
.bootstrap-datetimepicker-widget .picker-switch.accordion-toggle {
  display: none;
}
.bootstrap-datetimepicker-widget .datepicker {
  width: 100% !important;
}
.bootstrap-datetimepicker-widget .datepicker .prev .fa,
.bootstrap-datetimepicker-widget .datepicker .next .fa {
  height: 40px;
  position: absolute;
  top: 0;
}
.bootstrap-datetimepicker-widget .datepicker .prev .fa::before,
.bootstrap-datetimepicker-widget .datepicker .next .fa::before {
  display: none;
}
.bootstrap-datetimepicker-widget .datepicker .prev .fa::after,
.bootstrap-datetimepicker-widget .datepicker .next .fa::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  border: 6px solid transparent;
}
.bootstrap-datetimepicker-widget .datepicker .prev::after,
.bootstrap-datetimepicker-widget .datepicker .next::after {
  display: none;
}
.bootstrap-datetimepicker-widget .datepicker .prev .fa:after {
  border-right: 10px solid #000;
  border-right-color: #aaa !important;
  margin-left: -5px;
}
.bootstrap-datetimepicker-widget .datepicker .next .fa:after {
  border-left: 10px solid #000;
  border-left-color: #aaa !important;
  margin-left: 5px;
}
.bootstrap-datetimepicker-widget .datepicker .dow {
  font-size: 75%;
  white-space: nowrap;
  cursor: inherit;
  font-weight: normal;
}
.bootstrap-datetimepicker-widget table th,
.bootstrap-datetimepicker-widget table td {
  line-height: 40px !important;
  height: 40px !important;
  width: 40px !important;
  border-radius: 40px;
  text-align: center;
  padding: 0 !important;
}
.bootstrap-datetimepicker-widget table td.day {
  line-height: 40px;
  height: 40px;
}
.bootstrap-datetimepicker-widget table td.day.old,
.bootstrap-datetimepicker-widget table td.day.new {
  color: #eee;
}
.bootstrap-datetimepicker-widget table td.day.today:before {
  display: none;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #333;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10000)";
  filter: alpha(opacity=10000);
  -webkit-opacity: 100;
  -moz-opacity: 100;
  opacity: 100;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
/*Pages*/
.layout-m {
  max-width: 960px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.layout-s {
  max-width: 640px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.graphicWithThemeColor {
  text-align: center;
}
.graphicWithThemeColor > span {
  max-width: 90%;
}
.graphicWithThemeColor > span::before {
  position: absolute;
  display: block;
  content: "";
  background-color: #0059ae;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
}
.graphicWithThemeColor img {
  max-width: 100%;
}
.subtitle {
  font-weight: 700;
  margin: 20px 0;
}
.subtitle:not(:first-child) {
  margin-top: 40px;
}
.subtitle > .button-secondary.floatR:first-child {
  margin-right: -14px;
}
.portal .section-title,
.classroom .section-title {
  font-weight: bold;
  font-weight: 600;
  font-size: 19px;
  border-left: 4px solid #0059ae;
  padding: 10px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .portal .section-title,
  .classroom .section-title {
    font-size: 19px;
  }
}
.article::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6,
.article .h1,
.article .h2,
.article .h3,
.article .h4,
.article .h5,
.article .h6,
.article .subtitle {
  font-weight: 700;
  margin: 20px 0;
}
.article h1:not(:first-child),
.article h2:not(:first-child),
.article h3:not(:first-child),
.article h4:not(:first-child),
.article h5:not(:first-child),
.article h6:not(:first-child),
.article .h1:not(:first-child),
.article .h2:not(:first-child),
.article .h3:not(:first-child),
.article .h4:not(:first-child),
.article .h5:not(:first-child),
.article .h6:not(:first-child),
.article .subtitle:not(:first-child) {
  margin-top: 40px;
}
.article h1 > .button-secondary.floatR:first-child,
.article h2 > .button-secondary.floatR:first-child,
.article h3 > .button-secondary.floatR:first-child,
.article h4 > .button-secondary.floatR:first-child,
.article h5 > .button-secondary.floatR:first-child,
.article h6 > .button-secondary.floatR:first-child,
.article .h1 > .button-secondary.floatR:first-child,
.article .h2 > .button-secondary.floatR:first-child,
.article .h3 > .button-secondary.floatR:first-child,
.article .h4 > .button-secondary.floatR:first-child,
.article .h5 > .button-secondary.floatR:first-child,
.article .h6 > .button-secondary.floatR:first-child,
.article .subtitle > .button-secondary.floatR:first-child {
  margin-right: -14px;
}
.article h1:not(:first-child),
.article h2:not(:first-child),
.article h3:not(:first-child),
.article h4:not(:first-child),
.article h5:not(:first-child),
.article h6:not(:first-child),
.article .h1:not(:first-child),
.article .h2:not(:first-child),
.article .h3:not(:first-child),
.article .h4:not(:first-child),
.article .h5:not(:first-child),
.article .h6:not(:first-child),
.article .subtitle:not(:first-child) {
  margin-top: 40px;
}
.article h1 > .button-secondary.floatR:first-child,
.article h2 > .button-secondary.floatR:first-child,
.article h3 > .button-secondary.floatR:first-child,
.article h4 > .button-secondary.floatR:first-child,
.article h5 > .button-secondary.floatR:first-child,
.article h6 > .button-secondary.floatR:first-child,
.article .h1 > .button-secondary.floatR:first-child,
.article .h2 > .button-secondary.floatR:first-child,
.article .h3 > .button-secondary.floatR:first-child,
.article .h4 > .button-secondary.floatR:first-child,
.article .h5 > .button-secondary.floatR:first-child,
.article .h6 > .button-secondary.floatR:first-child,
.article .subtitle > .button-secondary.floatR:first-child {
  margin-right: -14px;
}
.article p {
  margin-bottom: 40px;
  text-align: justify;
  word-break: break-word;
  word-wrap: break-word;
}
.article ul,
.article ol {
  margin-left: 20px;
  margin-bottom: 30px;
}
.article ul li,
.article ol li {
  margin-bottom: 15px;
}
.article hr {
  margin: 30px 0 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  clear: both;
}
.indicated-record {
  border-left: 5px solid #f29722;
}
.indicated-record.remark {
  padding-left: 5px;
}
.indicated-alert-record {
  border-left: 5px solid #f56e72;
}
.text-inst {
  color: #333;
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}
.remark {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  margin-bottom: 20px;
}
.remark + .remark {
  margin-top: -15px !important;
}
.itemInput .remark {
  margin-bottom: 0;
}
.itemInput .remark + .remark {
  margin-top: 0 !important;
}
.remark.remark-warn {
  color: #dd2c00;
}
.remark.remark-warn + .remark {
  overflow: hidden;
}
.remark > .icon {
  float: left;
  margin-right: 5px;
}
.remark > .icon + * {
  display: block;
  overflow: hidden;
}
.remark img {
  height: 18.2px;
  padding-top: 1px;
  padding-bottom: 1px;
  vertical-align: top;
}
.portal .remarks {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  margin-bottom: 20px;
}
.portal .remarks + .remark {
  margin-top: -15px !important;
}
.itemInput .portal .remarks {
  margin-bottom: 0;
}
.itemInput .portal .remarks + .remark {
  margin-top: 0 !important;
}
.portal .remarks.remark-warn {
  color: #dd2c00;
}
.portal .remarks.remark-warn + .remark {
  overflow: hidden;
}
.portal .remarks > .icon {
  float: left;
  margin-right: 5px;
}
.portal .remarks > .icon + * {
  display: block;
  overflow: hidden;
}
.portal .remarks img {
  height: 18.2px;
  padding-top: 1px;
  padding-bottom: 1px;
  vertical-align: top;
}
.portal .remarks + .remark {
  margin-top: -15px !important;
}
.itemInput .portal .remarks {
  margin-bottom: 0;
}
.itemInput .portal .remarks + .remark {
  margin-top: 0 !important;
}
.portal .remarks.remark-warn {
  color: #dd2c00;
}
.portal .remarks.remark-warn + .remark {
  overflow: hidden;
}
.portal .remarks > .icon {
  float: left;
  margin-right: 5px;
}
.portal .remarks > .icon + * {
  display: block;
  overflow: hidden;
}
.portal .remarks img {
  height: 18.2px;
  padding-top: 1px;
  padding-bottom: 1px;
  vertical-align: top;
}
.dialog-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  text-align: center;
}
.dialog-container::after {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 0;
  height: 100%;
  visibility: hidden;
  margin-right: -1px;
}
.dialog-container .dialog {
  display: inline-block;
  vertical-align: middle;
  max-width: 98%;
  box-shadow: rgba(0, 0, 0, 0.247059) 0px 14px 45px, rgba(0, 0, 0, 0.219608) 0px 10px 18px;
}
.dialog-container .dialog img {
  max-width: 100%;
}
.dialog-container .dialog-l {
  width: 90%;
  max-width: 1400px;
  height: 85%;
  max-height: 1400px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  text-align: left;
  overflow: hidden;
}
.dialog-container .dialog-l .dialog-header {
  background-color: #0059ae;
  color: #fff;
  font-weight: 500;
  line-height: 40px;
  height: 40px;
  padding-left: 15px;
  padding-right: 3px;
}
.dialog-container .dialog-l .dialog-header .closeDialog-button {
  float: right;
  width: 40px;
  height: 40px;
  background-image: url("/intranet/images/icon-close.png");
  background-size: 18px 18px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dialog-container .dialog-l .dialog-header .closeDialog-button:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.dialog-container .dialog-l .dialog-header div {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.dialog-container .dialog-l .dialog-content {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  background-color: #ffffff;
  padding-bottom: 74px;
}
.dialog-container .dialog-l .dialog-content:last-child {
  padding-bottom: 25px;
}
@-moz-document url-prefix() /* Firefox fix */ {
  .dialog-container .dialog-l .dialog-content {
    bottom: 74px;
    padding-bottom: 0;
  }
  .dialog-container .dialog-l .dialog-content:last-child {
    bottom: 25px;
  }
}
.dialog-container .dialog-l .dialog-buttons {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #eee;
}
.dialog-container .dialog-l .dialog-buttons::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.dialog-container .dialog-l .dialog-buttons .button {
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  min-width: 100px;
  margin-left: 15px;
}
@media (max-width: 768px) {
  .dialog-container .dialog-l .dialog-buttons .button {
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
.dialog-container .dialog-l .dialog-buttons .button > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.dialog-container .dialog-l .dialog-buttons .button > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .dialog-container .dialog-l .dialog-buttons .button {
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
.dialog-container .dialog-l .dialog-buttons .button > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.dialog-container .dialog-l .dialog-buttons .button > img + span {
  margin-left: 5px;
}
.dialog-container .dialog-l .dialog-buttons .button:first-child {
  margin-left: 0;
}
.dialog-container .dialog-m {
  width: 90%;
  max-width: 900px;
  min-height: 500px;
  max-height: 85%;
  background-color: #ffffff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  text-align: left;
  overflow: hidden;
}
.dialog-container .dialog-m .dialog-header {
  height: 40px;
  line-height: 40px;
}
.dialog-container .dialog-m .dialog-header .closeDialog-button {
  float: right;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  height: 40px;
  font-size: 20px;
  color: #AAA;
}
.dialog-container .dialog-m .dialog-header .closeDialog-button.fa-pull-left {
  margin-right: .3em;
}
.dialog-container .dialog-m .dialog-header .closeDialog-button.fa-pull-right {
  margin-left: .3em;
}
@media (hover: none) and (pointer: coarse) {
  .dialog-container .dialog-m .dialog-header .closeDialog-button:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.dialog-container .dialog-m .dialog-header .closeDialog-button:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .dialog-container .dialog-m .dialog-header .closeDialog-button:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .dialog-container .dialog-m .dialog-header .closeDialog-button:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.dialog-container .dialog-m .dialog-header .closeDialog-button:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .dialog-container .dialog-m .dialog-header .closeDialog-button:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.dialog-container .dialog-m .dialog-header .closeDialog-button::before {
  content: "\f00d";
}
.dialog-container .dialog-m .dialog-content {
  overflow-y: auto;
  max-height: calc(85vh - 40px);
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 74px;
}
.dialog-container .dialog-m .dialog-content:last-child {
  padding-bottom: 25px;
}
@-moz-document url-prefix() /* Firefox fix */ {
  .dialog-container .dialog-m .dialog-content {
    max-height: calc(85vh - 40px - 74px);
    margin-bottom: 74px;
    padding-bottom: 0;
  }
  .dialog-container .dialog-m .dialog-content:last-child {
    max-height: calc(85vh - 40px - 25px);
    margin-bottom: 25px;
  }
}
.dialog-container .dialog-m .dialog-buttons {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #eee;
}
.dialog-container .dialog-m .dialog-buttons::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.dialog-container .dialog-m .dialog-buttons .button {
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  min-width: 100px;
  margin-left: 15px;
  vertical-align: top;
}
@media (max-width: 768px) {
  .dialog-container .dialog-m .dialog-buttons .button {
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
.dialog-container .dialog-m .dialog-buttons .button > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.dialog-container .dialog-m .dialog-buttons .button > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .dialog-container .dialog-m .dialog-buttons .button {
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
.dialog-container .dialog-m .dialog-buttons .button > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.dialog-container .dialog-m .dialog-buttons .button > img + span {
  margin-left: 5px;
}
.dialog-container .dialog-m .dialog-buttons .button:first-child {
  margin-left: 0;
}
.dialog-container .dialog-confirm,
.dialog-container .dialog-s {
  width: 90%;
  max-width: 500px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.247059) 0px 14px 45px, rgba(0, 0, 0, 0.219608) 0px 10px 18px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  padding: 30px 30px 5px 30px;
  text-align: left;
  max-height: 95%;
  overflow-y: auto;
  text-align: center;
}
.dialog-container .dialog-confirm .dialog-header,
.dialog-container .dialog-s .dialog-header {
  font-weight: bold;
  font-weight: 600;
}
.dialog-container .dialog-confirm > div,
.dialog-container .dialog-s > div {
  margin-bottom: 25px;
  text-align: left;
}
.dialog-container .dialog-confirm > div::after,
.dialog-container .dialog-s > div::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.dialog-container .dialog-confirm .dialog-content,
.dialog-container .dialog-s .dialog-content {
  padding-bottom: 25px;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
}
.dialog-container .dialog-confirm .dialog-buttons,
.dialog-container .dialog-s .dialog-buttons {
  display: inline-block;
  margin-top: 25px;
  z-index: 1;
}
.dialog-container .dialog-confirm .dialog-buttons::after,
.dialog-container .dialog-s .dialog-buttons::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.dialog-container .dialog-confirm .dialog-buttons .button,
.dialog-container .dialog-s .dialog-buttons .button {
  padding: 5px 10px;
  margin-left: 15px;
  float: right;
}
.dialog-container .dialog-confirm .dialog-buttons .button:last-child,
.dialog-container .dialog-s .dialog-buttons .button:last-child {
  margin-left: 0;
}
.portal .dialog-container .dialog-confirm .modal-header,
.portal .dialog-container .dialog-s .modal-header,
.classroom .dialog-container .dialog-confirm .modal-header,
.classroom .dialog-container .dialog-s .modal-header {
  padding: 0;
  border-bottom: 0;
  font-weight: bold;
  font-weight: 600;
}
.portal .dialog-container .dialog-confirm .modal-body,
.portal .dialog-container .dialog-s .modal-body,
.classroom .dialog-container .dialog-confirm .modal-body,
.classroom .dialog-container .dialog-s .modal-body {
  padding: 0;
  padding-bottom: 25px;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
}
.portal .portal .dialog-container .dialog-confirm .modal-body,
.portal .portal .dialog-container .dialog-s .modal-body,
.portal .classroom .dialog-container .dialog-confirm .modal-body,
.portal .classroom .dialog-container .dialog-s .modal-body,
.classroom .portal .dialog-container .dialog-confirm .modal-body,
.classroom .portal .dialog-container .dialog-s .modal-body,
.classroom .classroom .dialog-container .dialog-confirm .modal-body,
.classroom .classroom .dialog-container .dialog-s .modal-body {
  border-bottom: 0;
}
@media (max-width: 374px) {
  .dialog-container .dialog-confirm,
  .dialog-container .dialog-s {
    padding: 30px 25px 5px 25px;
  }
}
.portal .dialog-container .dialog-confirm .dialog-content,
.portal .dialog-container .dialog-s .dialog-content,
.portal .dialog-container .dialog-confirm .modal-body,
.portal .dialog-container .dialog-s .modal-body,
.classroom .dialog-container .dialog-confirm .dialog-content,
.classroom .dialog-container .dialog-s .dialog-content,
.classroom .dialog-container .dialog-confirm .modal-body,
.classroom .dialog-container .dialog-s .modal-body {
  border-bottom: 0;
}
.dialog-container .dialog-confirm .dialog-buttons .button,
.dialog-container .dialog-s .dialog-buttons .button {
  margin-bottom: 8px;
}
.dialog-container .dialog-photo .closeDialog-button {
  position: absolute;
  left: 100%;
  bottom: 100%;
  color: white;
  cursor: pointer;
  width: 35px;
}
.dialog-container .dialog-photo .closeDialog-button > img {
  width: 35px;
}
.backToTop {
  position: fixed;
  bottom: 45px;
  right: 30px;
  /* Default button style */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  padding: 3px 14px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font-weight: 400;
  font-size: inherit;
  border: 0;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  cursor: pointer;
  font-size: 16px;
  line-height: 23px;
  min-width: 80px;
  white-space: nowrap;
  background-color: #0059ae;
  /* Default button style */
  background: -moz-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0059ae 0%, #313c8c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn1', endColorstr='@ColorBtn1a', GradientType=1);
  /* IE6-9 */
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  height: 42px;
  width: 42px;
  line-height: 42px;
  font-size: 28px !important;
  min-width: auto;
  text-align: center;
  padding: 0 !important;
  border-radius: 21px;
  -moz-border-radius: 21px;
  -webkit-border-radius: 21px;
  z-index: 999991;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
}
@media (max-width: 768px) {
  .backToTop {
    font-size: 16px;
  }
}
.backToTop,
.backToTop:focus,
.backToTop:hover {
  color: #fff;
}
.backToTop.fullW {
  white-space: normal;
}
.backToTop > span:first-child.icon,
.backToTop > span:first-child.fa,
.backToTop > span:first-child.far,
.backToTop > span:first-child.fab,
.backToTop > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
.backToTop > * + span.icon,
.backToTop > * + span.fa,
.backToTop > * + span.far,
.backToTop > * + span.fab,
.backToTop > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
.backToTop > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  .backToTop:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.backToTop:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .backToTop:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .backToTop {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.backToTop > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.backToTop > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .backToTop {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.backToTop > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.backToTop > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .backToTop {
    font-size: 16px;
  }
}
.backToTop,
.backToTop:focus,
.backToTop:hover {
  color: #fff;
}
.backToTop.fullW {
  white-space: normal;
}
.backToTop > span:first-child.icon,
.backToTop > span:first-child.fa,
.backToTop > span:first-child.far,
.backToTop > span:first-child.fab,
.backToTop > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
.backToTop > * + span.icon,
.backToTop > * + span.fa,
.backToTop > * + span.far,
.backToTop > * + span.fab,
.backToTop > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
.backToTop > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  .backToTop:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.backToTop:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .backToTop:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .backToTop {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.backToTop > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.backToTop > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .backToTop {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.backToTop > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.backToTop > img + span {
  margin-left: 5px;
}
.backToTop::after {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f062";
}
.backToTop::after.fa-pull-left {
  margin-right: .3em;
}
.backToTop::after.fa-pull-right {
  margin-left: .3em;
}
body.scrolled .backToTop {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
body.scrolled .backToTop:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .backToTop {
    right: 15px;
  }
}
.loading,
.loading-cover {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  cursor: progress;
}
.loading::before,
.loading-cover::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f110";
  color: #0059ae;
  -webkit-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
  font-size: 50px;
  line-height: 50px;
  width: 50px;
  height: 50px;
  vertical-align: middle;
}
.loading::before.fa-pull-left,
.loading-cover::before.fa-pull-left {
  margin-right: .3em;
}
.loading::before.fa-pull-right,
.loading-cover::before.fa-pull-right {
  margin-left: .3em;
}
.loading::after,
.loading-cover::after {
  display: inline-block;
  height: 100%;
  width: 0;
  content: "";
  vertical-align: middle;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -moz-transform-origin: center;
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -webkit-transform-origin: center;
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: center;
    transform-origin: center;
  }
}
.loading {
  height: 400px;
}
.loading-cover {
  position: fixed;
  z-index: 99999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.submissionArea.layout-m,
#blkFooter.layout-m {
  max-width: 960px;
}
.submissionArea {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  margin-bottom: 100px;
}
.submissionArea::after {
  content: "";
  display: block;
  clear: both;
  height: 0px;
  visibility: hidden;
}
.submissionArea .button-secondary.floatR {
  margin-right: 15px;
}
.systemMsg {
  background-color: #1976d2;
  padding: 15px 15px 15px 20px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  line-height: 26px;
}
.systemMsg::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.systemMsg .systemMsg-close {
  float: right;
  margin-left: 10px;
  cursor: pointer;
}
.systemMsg .systemMsg-close::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  color: white;
  padding-top: 0;
  padding-bottom: 0;
  content: "\f00d";
}
.systemMsg .systemMsg-close::before.fa-pull-left {
  margin-right: .3em;
}
.systemMsg .systemMsg-close::before.fa-pull-right {
  margin-left: .3em;
}
@media (hover: none) and (pointer: coarse) {
  .systemMsg .systemMsg-close::before:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.systemMsg .systemMsg-close::before:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .systemMsg .systemMsg-close::before:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .systemMsg .systemMsg-close::before:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.systemMsg .systemMsg-close::before:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .systemMsg .systemMsg-close::before:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.systemMsg .systemMsg-content {
  overflow: hidden;
}
@-moz-document url-prefix() /* Firefox fix */ {
  .systemMsg .systemMsg-content {
    margin-right: 50px;
  }
}
.systemMsg .systemMsg-content > table td:nth-child(2) {
  width: 1%;
  white-space: nowrap;
}
@media (min-width: 481px) and (max-width: 768px) {
  .systemMsg .systemMsg-content > table,
  .systemMsg .systemMsg-content > table tbody,
  .systemMsg .systemMsg-content > table tr,
  .systemMsg .systemMsg-content > table td {
    display: block;
    width: 100% !important;
    white-space: normal !important;
  }
}
@media (max-width: 480px) {
  .systemMsg .systemMsg-content > table,
  .systemMsg .systemMsg-content > table tbody,
  .systemMsg .systemMsg-content > table tr,
  .systemMsg .systemMsg-content > table td {
    display: block;
    width: 100% !important;
    white-space: normal !important;
  }
}
.systemMsg .systemMsg-actionBtn {
  float: right;
  background-color: #fff;
  border-radius: 13px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  line-height: 26px;
  font-size: 15px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #0059ae;
  font-weight: 400;
}
@media (max-width: 768px) {
  .systemMsg .systemMsg-actionBtn {
    font-size: 15px;
  }
}
.systemMsg .systemMsg-actionBtn:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
}
@media (min-width: 481px) and (max-width: 768px) {
  .systemMsg .systemMsg-actionBtn {
    float: none;
    display: inline-block;
    max-width: 100%;
    margin-top: 10px;
    margin-left: 25px;
    max-width: calc(100% - 25px);
  }
}
@media (max-width: 480px) {
  .systemMsg .systemMsg-actionBtn {
    float: none;
    display: inline-block;
    max-width: 100%;
    margin-top: 10px;
    margin-left: 25px;
    max-width: calc(100% - 25px);
  }
}
.systemMsg .systemMsg-text {
  overflow: hidden;
  color: #fff;
  line-height: inherit;
  padding-left: 25px;
  padding-right: 15px;
}
.systemMsg .systemMsg-text::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f05a";
  position: absolute;
  top: 0;
  left: 0;
}
.systemMsg .systemMsg-text::before.fa-pull-left {
  margin-right: .3em;
}
.systemMsg .systemMsg-text::before.fa-pull-right {
  margin-left: .3em;
}
.systemMsg.systemMsg-floated {
  position: fixed;
  z-index: 10000;
}
.systemMsg.systemMsg-floated .systemMsg-content > table {
  display: table-cell;
}
.form .systemMsg.systemMsg-floated {
  max-width: calc(100% - 72px);
}
@media (max-width: 768px) {
  .form .systemMsg.systemMsg-floated {
    max-width: 95%;
  }
}
@media (max-width: 768px) {
  .dialog-l .form .systemMsg.systemMsg-floated {
    max-width: calc(90% * 0.95);
  }
}
.systemMsg:not(.systemMsg-floated) {
  width: 95%;
  max-width: 1800px;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .systemMsg:not(.systemMsg-floated) {
    width: calc(100% - 72px);
  }
}
@media (max-width: 480px) {
  .systemMsg:not(.systemMsg-floated) {
    min-width: 0;
  }
}
.form .systemMsg:not(.systemMsg-floated) {
  width: 100%;
}
.systemMsg.systemMsg-alert {
  background-color: #ca5555;
}
.systemMsg.systemMsg-alert .systemMsg-actionBtn {
  color: #ca5555;
}
.systemMsg.systemMsg-alert .systemMsg-text::before {
  content: "\f071";
}
.systemMsg.systemMsg-success {
  background-color: #0ea84f;
}
.systemMsg.systemMsg-success .systemMsg-actionBtn {
  color: #0ea84f;
}
.systemMsg.systemMsg-success .systemMsg-text::before {
  content: "\f058";
}
.portal .systemMsg.systemMsg-floated {
  top: 80px;
}
@media (max-width: 768px) {
  .portal .systemMsg.systemMsg-floated {
    max-width: calc(100% - 30px);
  }
}
@media (min-width: 769px) {
  .portal .systemMsg.systemMsg-floated {
    max-width: calc(100vw * 0.95 - 50px);
  }
}
@media (min-width: 1894px) {
  .portal .systemMsg.systemMsg-floated {
    max-width: 1750px;
  }
}
/* Override bootstrap .alert */
.portal .alert,
.classroom .alert {
  background-color: #1976d2;
  padding: 15px 15px 15px 20px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  line-height: 26px;
}
.portal .alert::after,
.classroom .alert::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.portal .alert .systemMsg-close,
.classroom .alert .systemMsg-close {
  float: right;
  margin-left: 10px;
  cursor: pointer;
}
.portal .alert .systemMsg-close::before,
.classroom .alert .systemMsg-close::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  color: white;
  padding-top: 0;
  padding-bottom: 0;
  content: "\f00d";
}
.portal .alert .systemMsg-close::before.fa-pull-left,
.classroom .alert .systemMsg-close::before.fa-pull-left {
  margin-right: .3em;
}
.portal .alert .systemMsg-close::before.fa-pull-right,
.classroom .alert .systemMsg-close::before.fa-pull-right {
  margin-left: .3em;
}
@media (hover: none) and (pointer: coarse) {
  .portal .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover,
  .classroom .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.portal .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover,
.classroom .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .portal .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover,
  .classroom .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .portal .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover,
  .classroom .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.portal .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover,
.classroom .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .portal .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover,
  .classroom .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.portal .alert .systemMsg-content,
.classroom .alert .systemMsg-content {
  overflow: hidden;
}
@-moz-document url-prefix() /* Firefox fix */ {
  .portal .alert .systemMsg-content,
  .classroom .alert .systemMsg-content {
    margin-right: 50px;
  }
}
.portal .alert .systemMsg-content > table td:nth-child(2),
.classroom .alert .systemMsg-content > table td:nth-child(2) {
  width: 1%;
  white-space: nowrap;
}
@media (min-width: 481px) and (max-width: 768px) {
  .portal .alert .systemMsg-content > table,
  .classroom .alert .systemMsg-content > table,
  .portal .alert .systemMsg-content > table tbody,
  .classroom .alert .systemMsg-content > table tbody,
  .portal .alert .systemMsg-content > table tr,
  .classroom .alert .systemMsg-content > table tr,
  .portal .alert .systemMsg-content > table td,
  .classroom .alert .systemMsg-content > table td {
    display: block;
    width: 100% !important;
    white-space: normal !important;
  }
}
@media (max-width: 480px) {
  .portal .alert .systemMsg-content > table,
  .classroom .alert .systemMsg-content > table,
  .portal .alert .systemMsg-content > table tbody,
  .classroom .alert .systemMsg-content > table tbody,
  .portal .alert .systemMsg-content > table tr,
  .classroom .alert .systemMsg-content > table tr,
  .portal .alert .systemMsg-content > table td,
  .classroom .alert .systemMsg-content > table td {
    display: block;
    width: 100% !important;
    white-space: normal !important;
  }
}
.portal .alert .systemMsg-actionBtn,
.classroom .alert .systemMsg-actionBtn {
  float: right;
  background-color: #fff;
  border-radius: 13px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  line-height: 26px;
  font-size: 15px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #0059ae;
  font-weight: 400;
}
@media (max-width: 768px) {
  .portal .alert .systemMsg-actionBtn,
  .classroom .alert .systemMsg-actionBtn {
    font-size: 15px;
  }
}
.portal .alert .systemMsg-actionBtn:hover,
.classroom .alert .systemMsg-actionBtn:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
}
@media (min-width: 481px) and (max-width: 768px) {
  .portal .alert .systemMsg-actionBtn,
  .classroom .alert .systemMsg-actionBtn {
    float: none;
    display: inline-block;
    max-width: 100%;
    margin-top: 10px;
    margin-left: 25px;
    max-width: calc(100% - 25px);
  }
}
@media (max-width: 480px) {
  .portal .alert .systemMsg-actionBtn,
  .classroom .alert .systemMsg-actionBtn {
    float: none;
    display: inline-block;
    max-width: 100%;
    margin-top: 10px;
    margin-left: 25px;
    max-width: calc(100% - 25px);
  }
}
.portal .alert .systemMsg-text,
.classroom .alert .systemMsg-text {
  overflow: hidden;
  color: #fff;
  line-height: inherit;
  padding-left: 25px;
  padding-right: 15px;
}
.portal .alert .systemMsg-text::before,
.classroom .alert .systemMsg-text::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f05a";
  position: absolute;
  top: 0;
  left: 0;
}
.portal .alert .systemMsg-text::before.fa-pull-left,
.classroom .alert .systemMsg-text::before.fa-pull-left {
  margin-right: .3em;
}
.portal .alert .systemMsg-text::before.fa-pull-right,
.classroom .alert .systemMsg-text::before.fa-pull-right {
  margin-left: .3em;
}
.portal .alert.systemMsg-floated,
.classroom .alert.systemMsg-floated {
  position: fixed;
  z-index: 10000;
}
.portal .alert.systemMsg-floated .systemMsg-content > table,
.classroom .alert.systemMsg-floated .systemMsg-content > table {
  display: table-cell;
}
.form .portal .alert.systemMsg-floated,
.form .classroom .alert.systemMsg-floated {
  max-width: calc(100% - 72px);
}
@media (max-width: 768px) {
  .form .portal .alert.systemMsg-floated,
  .form .classroom .alert.systemMsg-floated {
    max-width: 95%;
  }
}
@media (max-width: 768px) {
  .dialog-l .form .portal .alert.systemMsg-floated,
  .dialog-l .form .classroom .alert.systemMsg-floated {
    max-width: calc(90% * 0.95);
  }
}
.portal .alert:not(.systemMsg-floated),
.classroom .alert:not(.systemMsg-floated) {
  width: 95%;
  max-width: 1800px;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .portal .alert:not(.systemMsg-floated),
  .classroom .alert:not(.systemMsg-floated) {
    width: calc(100% - 72px);
  }
}
@media (max-width: 480px) {
  .portal .alert:not(.systemMsg-floated),
  .classroom .alert:not(.systemMsg-floated) {
    min-width: 0;
  }
}
.form .portal .alert:not(.systemMsg-floated),
.form .classroom .alert:not(.systemMsg-floated) {
  width: 100%;
}
.portal .alert.systemMsg-alert,
.classroom .alert.systemMsg-alert {
  background-color: #ca5555;
}
.portal .alert.systemMsg-alert .systemMsg-actionBtn,
.classroom .alert.systemMsg-alert .systemMsg-actionBtn {
  color: #ca5555;
}
.portal .alert.systemMsg-alert .systemMsg-text::before,
.classroom .alert.systemMsg-alert .systemMsg-text::before {
  content: "\f071";
}
.portal .alert.systemMsg-success,
.classroom .alert.systemMsg-success {
  background-color: #0ea84f;
}
.portal .alert.systemMsg-success .systemMsg-actionBtn,
.classroom .alert.systemMsg-success .systemMsg-actionBtn {
  color: #0ea84f;
}
.portal .alert.systemMsg-success .systemMsg-text::before,
.classroom .alert.systemMsg-success .systemMsg-text::before {
  content: "\f058";
}
.portal .portal .alert.systemMsg-floated,
.portal .classroom .alert.systemMsg-floated {
  top: 80px;
}
@media (max-width: 768px) {
  .portal .portal .alert.systemMsg-floated,
  .portal .classroom .alert.systemMsg-floated {
    max-width: calc(100% - 30px);
  }
}
@media (min-width: 769px) {
  .portal .portal .alert.systemMsg-floated,
  .portal .classroom .alert.systemMsg-floated {
    max-width: calc(100vw * 0.95 - 50px);
  }
}
@media (min-width: 1894px) {
  .portal .portal .alert.systemMsg-floated,
  .portal .classroom .alert.systemMsg-floated {
    max-width: 1750px;
  }
}
.portal .alert::after,
.classroom .alert::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.portal .alert .systemMsg-close,
.classroom .alert .systemMsg-close {
  float: right;
  margin-left: 10px;
  cursor: pointer;
}
.portal .alert .systemMsg-close::before,
.classroom .alert .systemMsg-close::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  color: white;
  padding-top: 0;
  padding-bottom: 0;
  content: "\f00d";
}
.portal .alert .systemMsg-close::before.fa-pull-left,
.classroom .alert .systemMsg-close::before.fa-pull-left {
  margin-right: .3em;
}
.portal .alert .systemMsg-close::before.fa-pull-right,
.classroom .alert .systemMsg-close::before.fa-pull-right {
  margin-left: .3em;
}
@media (hover: none) and (pointer: coarse) {
  .portal .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover,
  .classroom .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.portal .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover,
.classroom .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .portal .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover,
  .classroom .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .portal .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover,
  .classroom .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.portal .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover,
.classroom .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .portal .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover,
  .classroom .alert .systemMsg-close::before:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.portal .alert .systemMsg-content,
.classroom .alert .systemMsg-content {
  overflow: hidden;
}
@-moz-document url-prefix() /* Firefox fix */ {
  .portal .alert .systemMsg-content,
  .classroom .alert .systemMsg-content {
    margin-right: 50px;
  }
}
.portal .alert .systemMsg-content > table td:nth-child(2),
.classroom .alert .systemMsg-content > table td:nth-child(2) {
  width: 1%;
  white-space: nowrap;
}
@media (min-width: 481px) and (max-width: 768px) {
  .portal .alert .systemMsg-content > table,
  .classroom .alert .systemMsg-content > table,
  .portal .alert .systemMsg-content > table tbody,
  .classroom .alert .systemMsg-content > table tbody,
  .portal .alert .systemMsg-content > table tr,
  .classroom .alert .systemMsg-content > table tr,
  .portal .alert .systemMsg-content > table td,
  .classroom .alert .systemMsg-content > table td {
    display: block;
    width: 100% !important;
    white-space: normal !important;
  }
}
@media (max-width: 480px) {
  .portal .alert .systemMsg-content > table,
  .classroom .alert .systemMsg-content > table,
  .portal .alert .systemMsg-content > table tbody,
  .classroom .alert .systemMsg-content > table tbody,
  .portal .alert .systemMsg-content > table tr,
  .classroom .alert .systemMsg-content > table tr,
  .portal .alert .systemMsg-content > table td,
  .classroom .alert .systemMsg-content > table td {
    display: block;
    width: 100% !important;
    white-space: normal !important;
  }
}
.portal .alert .systemMsg-actionBtn,
.classroom .alert .systemMsg-actionBtn {
  float: right;
  background-color: #fff;
  border-radius: 13px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  line-height: 26px;
  font-size: 15px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #0059ae;
  font-weight: 400;
}
@media (max-width: 768px) {
  .portal .alert .systemMsg-actionBtn,
  .classroom .alert .systemMsg-actionBtn {
    font-size: 15px;
  }
}
.portal .alert .systemMsg-actionBtn:hover,
.classroom .alert .systemMsg-actionBtn:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
}
@media (min-width: 481px) and (max-width: 768px) {
  .portal .alert .systemMsg-actionBtn,
  .classroom .alert .systemMsg-actionBtn {
    float: none;
    display: inline-block;
    max-width: 100%;
    margin-top: 10px;
    margin-left: 25px;
    max-width: calc(100% - 25px);
  }
}
@media (max-width: 480px) {
  .portal .alert .systemMsg-actionBtn,
  .classroom .alert .systemMsg-actionBtn {
    float: none;
    display: inline-block;
    max-width: 100%;
    margin-top: 10px;
    margin-left: 25px;
    max-width: calc(100% - 25px);
  }
}
.portal .alert .systemMsg-text,
.classroom .alert .systemMsg-text {
  overflow: hidden;
  color: #fff;
  line-height: inherit;
  padding-left: 25px;
  padding-right: 15px;
}
.portal .alert .systemMsg-text::before,
.classroom .alert .systemMsg-text::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f05a";
  position: absolute;
  top: 0;
  left: 0;
}
.portal .alert .systemMsg-text::before.fa-pull-left,
.classroom .alert .systemMsg-text::before.fa-pull-left {
  margin-right: .3em;
}
.portal .alert .systemMsg-text::before.fa-pull-right,
.classroom .alert .systemMsg-text::before.fa-pull-right {
  margin-left: .3em;
}
.portal .alert.systemMsg-floated,
.classroom .alert.systemMsg-floated {
  position: fixed;
  z-index: 10000;
}
.portal .alert.systemMsg-floated .systemMsg-content > table,
.classroom .alert.systemMsg-floated .systemMsg-content > table {
  display: table-cell;
}
.form .portal .alert.systemMsg-floated,
.form .classroom .alert.systemMsg-floated {
  max-width: calc(100% - 72px);
}
@media (max-width: 768px) {
  .form .portal .alert.systemMsg-floated,
  .form .classroom .alert.systemMsg-floated {
    max-width: 95%;
  }
}
@media (max-width: 768px) {
  .dialog-l .form .portal .alert.systemMsg-floated,
  .dialog-l .form .classroom .alert.systemMsg-floated {
    max-width: calc(90% * 0.95);
  }
}
.portal .alert:not(.systemMsg-floated),
.classroom .alert:not(.systemMsg-floated) {
  width: 95%;
  max-width: 1800px;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .portal .alert:not(.systemMsg-floated),
  .classroom .alert:not(.systemMsg-floated) {
    width: calc(100% - 72px);
  }
}
@media (max-width: 480px) {
  .portal .alert:not(.systemMsg-floated),
  .classroom .alert:not(.systemMsg-floated) {
    min-width: 0;
  }
}
.form .portal .alert:not(.systemMsg-floated),
.form .classroom .alert:not(.systemMsg-floated) {
  width: 100%;
}
.portal .alert.systemMsg-alert,
.classroom .alert.systemMsg-alert {
  background-color: #ca5555;
}
.portal .alert.systemMsg-alert .systemMsg-actionBtn,
.classroom .alert.systemMsg-alert .systemMsg-actionBtn {
  color: #ca5555;
}
.portal .alert.systemMsg-alert .systemMsg-text::before,
.classroom .alert.systemMsg-alert .systemMsg-text::before {
  content: "\f071";
}
.portal .alert.systemMsg-success,
.classroom .alert.systemMsg-success {
  background-color: #0ea84f;
}
.portal .alert.systemMsg-success .systemMsg-actionBtn,
.classroom .alert.systemMsg-success .systemMsg-actionBtn {
  color: #0ea84f;
}
.portal .alert.systemMsg-success .systemMsg-text::before,
.classroom .alert.systemMsg-success .systemMsg-text::before {
  content: "\f058";
}
.portal .portal .alert.systemMsg-floated,
.portal .classroom .alert.systemMsg-floated {
  top: 80px;
}
@media (max-width: 768px) {
  .portal .portal .alert.systemMsg-floated,
  .portal .classroom .alert.systemMsg-floated {
    max-width: calc(100% - 30px);
  }
}
@media (min-width: 769px) {
  .portal .portal .alert.systemMsg-floated,
  .portal .classroom .alert.systemMsg-floated {
    max-width: calc(100vw * 0.95 - 50px);
  }
}
@media (min-width: 1894px) {
  .portal .portal .alert.systemMsg-floated,
  .portal .classroom .alert.systemMsg-floated {
    max-width: 1750px;
  }
}
.portal .alert.alert-info,
.classroom .alert.alert-info,
.portal .alert.alert-danger,
.classroom .alert.alert-danger,
.portal .alert.alert-success,
.classroom .alert.alert-success {
  overflow: hidden;
  color: #fff;
  line-height: inherit;
  padding-left: 25px;
  padding-right: 15px;
  padding-left: 50px;
}
.portal .alert.alert-info::before,
.classroom .alert.alert-info::before,
.portal .alert.alert-danger::before,
.classroom .alert.alert-danger::before,
.portal .alert.alert-success::before,
.classroom .alert.alert-success::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f05a";
  position: absolute;
  top: 0;
  left: 0;
}
.portal .alert.alert-info::before.fa-pull-left,
.classroom .alert.alert-info::before.fa-pull-left,
.portal .alert.alert-danger::before.fa-pull-left,
.classroom .alert.alert-danger::before.fa-pull-left,
.portal .alert.alert-success::before.fa-pull-left,
.classroom .alert.alert-success::before.fa-pull-left {
  margin-right: .3em;
}
.portal .alert.alert-info::before.fa-pull-right,
.classroom .alert.alert-info::before.fa-pull-right,
.portal .alert.alert-danger::before.fa-pull-right,
.classroom .alert.alert-danger::before.fa-pull-right,
.portal .alert.alert-success::before.fa-pull-right,
.classroom .alert.alert-success::before.fa-pull-right {
  margin-left: .3em;
}
.portal .alert.alert-info::before,
.classroom .alert.alert-info::before,
.portal .alert.alert-danger::before,
.classroom .alert.alert-danger::before,
.portal .alert.alert-success::before,
.classroom .alert.alert-success::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f05a";
  position: absolute;
  top: 0;
  left: 0;
}
.portal .alert.alert-info::before.fa-pull-left,
.classroom .alert.alert-info::before.fa-pull-left,
.portal .alert.alert-danger::before.fa-pull-left,
.classroom .alert.alert-danger::before.fa-pull-left,
.portal .alert.alert-success::before.fa-pull-left,
.classroom .alert.alert-success::before.fa-pull-left {
  margin-right: .3em;
}
.portal .alert.alert-info::before.fa-pull-right,
.classroom .alert.alert-info::before.fa-pull-right,
.portal .alert.alert-danger::before.fa-pull-right,
.classroom .alert.alert-danger::before.fa-pull-right,
.portal .alert.alert-success::before.fa-pull-right,
.classroom .alert.alert-success::before.fa-pull-right {
  margin-left: .3em;
}
.portal .alert.alert-info::before,
.classroom .alert.alert-info::before,
.portal .alert.alert-danger::before,
.classroom .alert.alert-danger::before,
.portal .alert.alert-success::before,
.classroom .alert.alert-success::before {
  top: auto;
  left: 25px;
}
.portal .alert.alert-danger,
.classroom .alert.alert-danger {
  background-color: #ca5555;
}
.portal .alert.alert-danger::before,
.classroom .alert.alert-danger::before {
  content: "\f071";
}
.portal .alert.alert-success,
.classroom .alert.alert-success {
  background-color: #0ea84f;
}
.portal .alert.alert-success::before,
.classroom .alert.alert-success::before {
  content: "\f058";
}
/* Edit bootstrap tokenfield & jQuery UI autocomplete*/
.tag {
  line-height: 28px;
  height: 28px;
  font-weight: 500;
  color: #0059ae;
  background-color: #e1f4f9;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 14px;
  -moz-border-radius: 14px;
  -webkit-border-radius: 14px;
  border: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tag:hover {
  background-color: #ccedf4;
}
.tagSelector .vue-tags-input {
  max-width: 100% !important;
  background-color: transparent !important;
}
.tagSelector .ti-input {
  border: 0 !important;
  padding: 0 !important;
}
.tagSelector .ti-input .ti-tags {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 6px 0;
  font-size: 17px;
  line-height: 24px;
  height: 36px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .tagSelector .ti-input .ti-tags {
    font-size: 17px;
  }
}
.tagSelector .ti-input .ti-tags.focus {
  border-color: #0059ae;
}
.tagSelector .ti-input .ti-tags::before {
  color: #0059ae;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f078";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: smaller;
  text-align: center;
  padding: inherit;
}
.tagSelector .ti-input .ti-tags::before.fa-pull-left {
  margin-right: .3em;
}
.tagSelector .ti-input .ti-tags::before.fa-pull-right {
  margin-left: .3em;
}
.tagSelector .ti-input .ti-tags select {
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  padding-right: 30px;
  width: 100%;
  cursor: pointer;
  border-radius: 0;
}
.tagSelector .ti-input .ti-tags select::-ms-expand {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
@media (max-width: 768px) {
  .tagSelector .ti-input .ti-tags {
    font-size: 17px;
  }
}
.tagSelector .ti-input .ti-tags.focus {
  border-color: #0059ae;
}
.tagSelector .ti-input .ti-tags::before {
  color: #0059ae;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f078";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: smaller;
  text-align: center;
  padding: inherit;
}
.tagSelector .ti-input .ti-tags::before.fa-pull-left {
  margin-right: .3em;
}
.tagSelector .ti-input .ti-tags::before.fa-pull-right {
  margin-left: .3em;
}
.tagSelector .ti-input .ti-tags select {
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  padding-right: 30px;
  width: 100%;
  cursor: pointer;
  border-radius: 0;
}
.tagSelector .ti-input .ti-tags select::-ms-expand {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.tagSelector .ti-input .ti-tags::before {
  display: none;
}
.tagSelector .ti-input .ti-tags .ti-new-tag-input-wrapper {
  padding: 0 !important;
  margin: 0 !important;
}
.tagSelector .ti-input .ti-tags .ti-new-tag-input {
  background-color: transparent;
  height: auto;
  margin-bottom: 0;
  -webkit-transition-property: none;
  -moz-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
}
.tagSelector .ti-input .ti-tags .ti-new-tag-input::placeholder {
  color: #aaa;
  font-weight: 300;
  overflow: visible;
}
.tagSelector .ti-input .ti-tags .ti-new-tag-input:-ms-input-placeholder {
  color: #aaa;
  font-weight: 300;
  overflow: visible;
}
.tagSelector .ti-input .ti-tags .ti-new-tag-input::-ms-input-placeholder {
  color: #aaa;
  font-weight: 300;
  overflow: visible;
}
.tagSelector .ti-input .ti-tags .ti-new-tag-input,
.tagSelector .ti-input .ti-tags .ti-new-tag-input:focus,
.tagSelector .ti-input .ti-tags .ti-new-tag-input:active {
  border: 0;
}
.tagSelector .ti-tag {
  padding: 0 !important;
  line-height: 28px !important;
  height: 28px !important;
  font-weight: 500 !important;
  color: #0059ae !important;
  background-color: #e1f4f9 !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  border-radius: 14px !important;
  -moz-border-radius: 14px !important;
  -webkit-border-radius: 14px !important;
  border: 0 !important;
  -webkit-transition: all 0.3s ease !important;
  -moz-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  font-size: inherit !important;
}
.tagSelector .ti-tag:hover {
  background-color: #ccedf4 !important;
}
.tagSelector .ti-tag:hover {
  background-color: #ccedf4 !important;
}
.tagSelector .ti-tag .ti-content {
  display: inline-block !important;
  vertical-align: middle;
}
.tagSelector .ti-tag .ti-actions {
  margin-left: 5px !important;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  font-size: 21px;
  height: inherit;
  vertical-align: middle;
  display: inline-block !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
@media (hover: none) and (pointer: coarse) {
  .tagSelector .ti-tag .ti-actions:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.tagSelector .ti-tag .ti-actions:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .tagSelector .ti-tag .ti-actions:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.tagSelector .ti-tag .ti-actions,
.tagSelector .ti-tag .ti-actions:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .tagSelector .ti-tag .ti-actions:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .tagSelector .ti-tag .ti-actions:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (hover: none) and (pointer: coarse) {
  .tagSelector .ti-tag .ti-actions:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.tagSelector .ti-tag .ti-actions:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .tagSelector .ti-tag .ti-actions:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.tagSelector .ti-tag .ti-actions,
.tagSelector .ti-tag .ti-actions:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .tagSelector .ti-tag .ti-actions:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .tagSelector .ti-tag .ti-actions:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
.tagSelector .ti-tag .ti-actions.fa-pull-left {
  margin-right: .3em;
}
.tagSelector .ti-tag .ti-actions.fa-pull-right {
  margin-left: .3em;
}
.tagSelector .ti-tag .ti-actions > i {
  line-height: inherit;
}
.tagSelector .ti-autocomplete {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  border: 0;
  padding: 15px;
  font-family: inherit;
  font-size: inherit;
  border: 0 !important;
}
.tagSelector .ti-autocomplete .ti-item {
  line-height: 28px;
  height: 28px;
  font-weight: 500;
  color: #0059ae;
  background-color: #e1f4f9;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 14px;
  -moz-border-radius: 14px;
  -webkit-border-radius: 14px;
  border: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  list-style: none;
  margin: 7px 14px 7px 0;
  padding-top: 0;
  padding-bottom: 0;
}
.tagSelector .ti-autocomplete .ti-item:hover {
  background-color: #ccedf4;
}
.tagSelector .ti-autocomplete .ti-item:hover {
  background-color: #ccedf4;
}
.tagSelector .ti-autocomplete .ti-item.ti-selected-item {
  line-height: 28px !important;
  height: 28px !important;
  font-weight: 500 !important;
  color: #0059ae !important;
  background-color: #e1f4f9 !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  border-radius: 14px !important;
  -moz-border-radius: 14px !important;
  -webkit-border-radius: 14px !important;
  border: 0 !important;
  -webkit-transition: all 0.3s ease !important;
  -moz-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}
.tagSelector .ti-autocomplete .ti-item.ti-selected-item:hover {
  background-color: #ccedf4 !important;
}
.tagSelector .ti-autocomplete .ti-item.ti-selected-item:hover {
  background-color: #ccedf4 !important;
}
.tagSelector .ti-autocomplete .ti-item > div {
  padding: 0 !important;
}
/* Replace ui-autocomplete style */
.tagList {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  border: 0;
  padding: 15px;
  font-family: inherit;
  font-size: inherit;
}
.tagList .ui-menu-item {
  line-height: 28px;
  height: 28px;
  font-weight: 500;
  color: #0059ae;
  background-color: #e1f4f9;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 14px;
  -moz-border-radius: 14px;
  -webkit-border-radius: 14px;
  border: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  list-style: none;
  margin: 7px 14px 7px 0;
  padding-top: 0;
  padding-bottom: 0;
}
.tagList .ui-menu-item:hover {
  background-color: #ccedf4;
}
.tagList .ui-menu-item:hover {
  background-color: #ccedf4;
}
.tagList .ui-menu-item .ui-menu-item-wrapper {
  border: 0;
}
.tagList .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
  border: 0;
  background: none;
  color: inherit;
  font-weight: inherit;
  margin: 0;
}
.tagSelector .ti-tag,
.tagSelector .ti-autocomplete .ti-item,
.tagList .ui-menu-item {
  line-height: 28px !important;
  height: 28px !important;
  font-weight: 500 !important;
  color: #0059ae !important;
  background-color: #e1f4f9 !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  border-radius: 14px !important;
  -moz-border-radius: 14px !important;
  -webkit-border-radius: 14px !important;
  border: 0 !important;
  -webkit-transition: all 0.3s ease !important;
  -moz-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}
.tagSelector .ti-tag:hover,
.tagSelector .ti-autocomplete .ti-item:hover,
.tagList .ui-menu-item:hover {
  background-color: #ccedf4 !important;
}
.tagSelector .ti-tag:hover,
.tagSelector .ti-autocomplete .ti-item:hover,
.tagList .ui-menu-item:hover {
  background-color: #ccedf4 !important;
}
/* Donut chart */
.pie-wrapper {
  position: relative;
  width: 106px;
  height: 106px;
  margin: 0px auto;
}
.pie-wrapper .pie {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  clip: rect(0, 106px, 106px, 53px);
}
.pie-wrapper .half-circle {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 13px solid #02c0a7;
  border-radius: 50%;
  clip: rect(0em, 53px, 106px, 0em);
}
.pie-wrapper .right-side {
  transform: rotate(0deg);
}
.pie-wrapper .label {
  position: absolute;
  top: 50%;
  right: 15px;
  left: 15px;
  display: block;
  background: none;
  border-radius: 50%;
  color: #02c0a7;
  text-align: center;
  cursor: default;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pie-wrapper .label .num {
  font-size: 22px;
  font-weight: bolder;
  font-weight: 500;
}
.pie-wrapper .label .num ~ * {
  font-size: 14px;
  line-height: 1;
  font-weight: bolder;
  font-weight: 500;
}
.pie-wrapper .shadow {
  width: 100%;
  height: 100%;
  border: 13px solid #f2f2f2;
  border-radius: 50%;
  box-shadow: none !important;
}
.pie-wrapper.pie-wrapper-red .half-circle {
  border-color: #ca5555;
}
.pie-wrapper.pie-wrapper-red .label {
  color: #ca5555;
}
.pie-wrapper.pie-wrapper-grey .half-circle {
  border-color: #999;
}
.pie-wrapper.pie-wrapper-grey .label {
  color: #999;
}
.pie-title {
  color: #777;
  font-size: 14px;
  margin-top: 15px;
  width: 106px;
  text-align: center;
  word-break: break-word;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .pie-title {
    font-size: 14px;
  }
}
/* Highcharts */
.highcharts-root {
  font-family: inherit !important;
}
.highcharts-figure {
  padding: 20px;
}
.highcharts-figure .highcharts-background,
.highcharts-figure .highcharts-button-box {
  fill: transparent !important;
}
.highcharts-figure .highcharts-button-symbol {
  fill: #0059ae !important;
  stroke: #0059ae !important;
  cursor: pointer;
}
.highcharts-figure .highcharts-credits {
  display: none !important;
}
.highcharts-figure .highcharts-menu {
  border: 0 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12) !important;
}
.classroom .highcharts-figure {
  background-color: #f2fcfb;
}
@media (min-width: 1200px) {
  .classroom .highcharts-figure {
    width: 85%;
    max-width: 1024px;
  }
}
.classroom .highcharts-figure .highcharts-title {
  color: #128585 !important;
  fill: #128585 !important;
  font-size: 14px !important;
}
#blkFooter {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: right;
  width: 95%;
  max-width: 1800px;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
#blkFooter #lbleClass {
  font-size: 13px;
  line-height: 18px;
  color: #777;
}
#blkFooter #lbleClass > * {
  vertical-align: top;
}
#blkFooter #lbleClass > * + * {
  margin-left: 5px;
}
#blkFooter #lbleClass img {
  height: 18px;
}
@media (max-width: 768px) {
  #blkFooter #lbleClass {
    font-size: 12px;
  }
}
/* Portal */
#sub-menu .dropdown-toggle::after {
  color: #0059ae;
  right: -30px;
}
#sub-menu .dropdown-toggle[aria-haspopup="true"] {
  display: inline-block;
}
#pTopBar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 48px;
  background-color: #0059ae;
  z-index: 10000;
  min-width: 320px;
  font-size: 16px;
}
@media (max-width: 768px) {
  #pTopBar {
    font-size: 16px;
  }
}
#pTopBar.scrolled > #blkTitle #imgLogo {
  max-width: 140px;
  max-height: 70px;
  padding: 10px;
  border-radius: 0 0 15px 15px;
}
@media (min-width: 769px) {
  #pTopBar #btnMenu {
    display: none;
  }
}
#pTopBar > #blkTitle {
  padding-left: 10px;
  float: left;
}
#pTopBar > #blkTitle #imgLogo {
  z-index: 2;
  vertical-align: top;
  background: #fff;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 25px 25px;
  padding: 15px;
  min-height: 40px;
  min-width: 40px;
  max-width: 220px;
  max-height: 110px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.classroom #pTopBar > #blkTitle #imgLogo {
  min-height: 40px !important;
  min-width: 40px !important;
  max-width: 220px !important;
  max-height: 38px !important;
  border-radius: 0 0 9px 9px;
  -moz-border-radius: 0 0 9px 9px;
  -webkit-border-radius: 0 0 9px 9px;
  padding: 5px;
}
#pTopBar > #blkTitle > a:hover {
  -webkit-filter: brightness(1.01);
  filter: brightness(1.01);
}
#pTopBar #blkNav {
  float: left;
}
@media (min-width: 769px) {
  #pTopBar #blkNav #btnNav {
    display: none;
  }
}
#pTopBar #blkNav a:hover {
  -webkit-filter: none;
  filter: none;
}
#pTopBar #blkNav .navButtons {
  float: left;
  padding: 0 25px;
  line-height: 48px;
  color: #fff;
  font-weight: 200;
  letter-spacing: 0.5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#pTopBar #blkNav .navButtons .navSubMenu {
  display: none;
  left: 0;
  top: 100%;
  background-color: #f7f4f4;
  position: absolute;
  border-radius: 0 0 9px 9px;
  -moz-border-radius: 0 0 9px 9px;
  -webkit-border-radius: 0 0 9px 9px;
  overflow: hidden;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
#pTopBar #blkNav .navButtons .navSubMenu .navSubMenuButton {
  border-bottom: 1px solid #d2d2d2;
  display: block;
  padding: 0 25px;
  white-space: nowrap;
  color: #333;
  font-weight: 400;
  letter-spacing: 0px;
}
#pTopBar #blkNav .navButtons .navSubMenu .navSubMenuButton.navSubMenuButton-active {
  background: rgba(0, 0, 0, 0.06);
}
#pTopBar #blkNav .navButtons .navSubMenu .navSubMenuButton:last-child {
  border-bottom: 0;
}
#pTopBar #blkNav .navButtons .navSubMenu .navSubMenuButton:hover {
  background-color: #f8f9fa;
}
#pTopBar #blkNav .navButtons:hover {
  background-color: rgba(0, 0, 0, 0.09);
}
#pTopBar #blkNav .navButtons:hover .navSubMenu {
  display: block;
}
#pTopBar #blkNav .navButtons.navButtons-current {
  background-color: rgba(0, 0, 0, 0.15);
}
@media (min-width: 769px) and (max-width: 1199px) {
  #pTopBar #blkNav .navButtons {
    padding: 0 15px;
  }
}
#pTopBar > .dropdown {
  float: right;
  line-height: inherit;
  color: inherit;
  height: 100%;
}
#pTopBar > .dropdown > .button {
  height: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  line-height: 1.5;
  font-size: 14px;
  min-width: auto;
  background: transparent;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  #pTopBar > .dropdown > .button {
    font-size: 14px;
  }
}
#pTopBar > .dropdown > .button:hover {
  -webkit-filter: none;
  filter: none;
  background-color: rgba(0, 0, 0, 0.15);
}
#pTopBar > .dropdown > .button > .icon {
  font-size: 18px;
  line-height: 1.5;
  padding-left: 14px;
  padding-right: 14px;
}
@media (max-width: 768px) {
  #pTopBar > .dropdown > .button > .icon {
    font-size: 18px;
  }
}
#pTopBar > .dropdown > .button > .icon + span:not(.notification-badge) {
  margin-left: -14px;
  margin-right: 14px;
}
#pTopBar > .dropdown > .button > .notification-badge {
  position: absolute;
  top: 9px;
  right: 4px;
  background-color: #eb1111;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 12px;
  padding: 3px;
  border-radius: 9px;
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  min-width: 18px;
}
@media (max-width: 768px) {
  #pTopBar > .dropdown > .button > .notification-badge {
    font-size: 12px;
  }
}
#pTopBar > .dropdown > .button::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 0;
  vertical-align: middle;
  margin-left: -14px;
  margin-right: 14px;
}
#pTopBar > .dropdown > .dropdown-menu {
  background-color: #f7f4f4;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  overflow: hidden;
  margin-top: 1px;
  padding: 0;
}
#pTopBar > .dropdown > .dropdown-menu .dropdown-item {
  padding-left: 20px;
  padding-right: 20px;
  min-height: auto;
  font-size: 16px;
  color: inherit;
}
@media (max-width: 768px) {
  #pTopBar > .dropdown > .dropdown-menu .dropdown-item {
    font-size: 16px;
  }
}
#pTopBar > .dropdown > .dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #d2d2d2;
}
#pTopBar > .dropdown > .dropdown-menu .dropdown-item:last-child {
  border-radius: 0 0 15px 15px;
  -moz-border-radius: 0 0 15px 15px;
  -webkit-border-radius: 0 0 15px 15px;
}
#pTopBar > .dropdown > .dropdown-menu .dropdown-item:hover {
  -webkit-filter: brightness(1) !important;
  filter: brightness(1) !important;
}
#pTopBar > .dropdown:not(#blkUserMenu) > .button > .icon:not(.fa-sign-out-alt) {
  margin-right: 0;
}
#pTopBar #blkUserMenu #btnUserMenu .user-name {
  line-height: 48px;
  height: 48px;
  font-size: 14px;
}
@media (max-width: 768px) {
  #pTopBar #blkUserMenu #btnUserMenu .user-name {
    display: none;
  }
}
#pTopBar #blkUserMenu #btnUserMenu:after {
  border: none;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f078";
  display: inline-block;
  line-height: 1;
  font-size: smaller;
  width: auto;
  height: auto;
  margin-right: 14px;
}
#pTopBar #blkUserMenu #btnUserMenu:after.fa-pull-left {
  margin-right: .3em;
}
#pTopBar #blkUserMenu #btnUserMenu:after.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  #pTopBar #blkUserMenu #btnUserMenu:after {
    display: none;
  }
}
#pTopBar #blkUserMenu #btnUserMenu[aria-expanded="true"]:after {
  content: "\f077";
}
.classroom #pTopBar #blkUserMenu #btnUserMenu .user-name,
.classroom #pTopBar #blkUserMenu #btnUserMenu::after {
  display: none;
}
#pTopBar #blkUserMenu #blkUserDropdown .dropdown-item {
  width: 240px;
}
#pTopBar #blkUserMenu #blkUserDropdown .profile-box {
  line-height: 1.2em;
  color: #333;
  max-width: inherit;
  text-align: center;
  border-bottom: 2px solid #0059ae;
  background: #fff;
  cursor: default;
  padding: 10px;
}
#pTopBar #blkUserMenu #blkUserDropdown .profile-box > .name {
  font-size: 20px;
  margin: 10px 0 15px;
  font-weight: bold;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: 220px;
}
@media (max-width: 768px) {
  #pTopBar #blkUserMenu #blkUserDropdown .profile-box > .name {
    font-size: 20px;
  }
}
#pTopBar #blkUserMenu #blkUserDropdown .profile-box > .login {
  color: #666;
  font-size: 13px;
}
@media (max-width: 768px) {
  #pTopBar #blkUserMenu #blkUserDropdown .profile-box > .login {
    font-size: 13px;
  }
}
#pTopBar #blkUserMenu #blkUserDropdown .lang-box {
  width: 33.3333%;
  min-width: auto;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
  float: left;
  text-align: center;
  clear: none;
}
#pTopBar #blkUserMenu #blkUserDropdown .lang-box:not(:nth-of-type(3)) {
  border-right: 1px solid #d2d2d2;
}
#pTopBar #blkUserMenu #blkUserDropdown .lang-box.lang-box-active {
  background: #ececec;
}
#pTopBar #blkUserMenu #blkUserDropdown .lang-box.lang-box-active:before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00c";
  margin-right: 3px;
  line-height: 0;
}
#pTopBar #blkUserMenu #blkUserDropdown .lang-box.lang-box-active:before.fa-pull-left {
  margin-right: .3em;
}
#pTopBar #blkUserMenu #blkUserDropdown .lang-box.lang-box-active:before.fa-pull-right {
  margin-left: .3em;
}
#pTopBar #blkNotification #btnNotification > .icon {
  margin-right: 0;
}
#pTopBar .topBarDivider {
  float: right;
  height: 100%;
}
#pTopBar .topBarDivider:before {
  display: block;
  content: "";
  position: absolute;
  top: 28%;
  bottom: 28%;
  width: 1px;
  background-color: #fff;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
#pTopBar #blkClassroomHeader {
  overflow: hidden;
  line-height: 48px;
  color: #fff;
  font-weight: 500;
  padding-left: 15px;
}
@media (max-width: 768px) {
  #pTopBar #blkClassroomHeader {
    line-height: 40px;
    font-size: smaller;
    padding-right: 5px;
  }
}
#pTopBar #blkClassroomHeader .classroomHeader-back {
  padding: 0 13px;
  margin-left: 5px;
  margin-right: 5px;
  margin-left: -13px;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
#pTopBar #blkClassroomHeader .classroomHeader-back.fa-pull-left {
  margin-right: .3em;
}
#pTopBar #blkClassroomHeader .classroomHeader-back.fa-pull-right {
  margin-left: .3em;
}
#pTopBar #blkClassroomHeader .classroomHeader-back:after {
  content: "\f053";
}
#pTopBar #blkClassroomHeader .classroomHeader-back:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  #pTopBar #blkClassroomHeader .classroomHeader-back {
    padding: 0 8px;
  }
}
#pTopBar #blkClassroomHeader #lblClassroomHeader {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) {
  height: 40px;
  line-height: 1;
  z-index: 999992;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop).showTopMenu:before {
  position: fixed;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop).showTopMenu::before {
  z-index: 9;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop).showTopMenu #blkNav {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  color: #fff;
  font-size: 18px;
  padding: 0 14px;
  line-height: 40px;
  display: inline-block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu.fa-pull-left {
  margin-right: .3em;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu.fa-pull-right {
  margin-left: .3em;
}
@media (hover: none) and (pointer: coarse) {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu {
    font-size: 18px;
  }
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:before {
  display: inline-block;
  content: "\f0c9";
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkTitle {
  position: absolute;
  top: 100%;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkTitle #imgLogo {
  max-height: 80px;
  max-width: 145px;
  padding: 10px;
  border-radius: 0 0 15px 15px;
  -moz-border-radius: 0 0 15px 15px;
  -webkit-border-radius: 0 0 15px 15px;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
.classroom #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkTitle {
  position: relative;
  top: 0;
}
.classroom #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkTitle #imgLogo {
  min-height: 36px !important;
  max-height: 36px !important;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 250px;
  z-index: 3;
  background-color: #0059ae;
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
  overflow: auto;
  z-index: 10;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: translateX(-280px);
  -ms-transform: translateX(-280px);
  transform: translateX(-280px);
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  color: #fff;
  padding: 0 15px;
  margin-left: 10px;
  line-height: 40px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav.fa-pull-left {
  margin-right: .3em;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav.fa-pull-right {
  margin-left: .3em;
}
@media (hover: none) and (pointer: coarse) {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:before {
  display: inline-block;
  content: "\f00d";
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav .navButtons {
  width: 100%;
  padding: 14px 25px;
  line-height: 20px;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu {
  background-color: transparent;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  color: inherit;
  position: relative;
  margin-left: -25px;
  margin-right: -25px;
  margin-top: 14px;
  margin-bottom: -14px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 3px 1px -2px rgba(0, 0, 0, 0), 0 1px 5px 0 rgba(0, 0, 0, 0);
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu .navSubMenuButton {
  border-bottom: 0;
  color: inherit;
  white-space: normal;
  padding: 14px 25px 14px 45px;
  font-weight: 200;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu .navSubMenuButton:before {
  content: "";
  background: rgba(255, 255, 255, 0.3);
  display: inline-block;
  width: 9px;
  height: 5px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  position: absolute;
  left: 25px;
  top: 22px;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav ~ .dropdown {
  z-index: 2;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) ~ #pBanner {
  margin-top: -8px;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkUserMenu #btnUserMenu .user-name {
  line-height: 40px;
  height: 40px;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop).scrolled > #blkTitle #imgLogo {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}
.classroom #pTopBar.pTopBar-mobile:not(.pTopBar-desktop).scrolled > #blkTitle #imgLogo {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) {
  height: 40px;
  line-height: 1;
  z-index: 999992;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop).showTopMenu:before {
  position: fixed;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop).showTopMenu::before {
  z-index: 9;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop).showTopMenu #blkNav {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  color: #fff;
  font-size: 18px;
  padding: 0 14px;
  line-height: 40px;
  display: inline-block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu.fa-pull-left {
  margin-right: .3em;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu.fa-pull-right {
  margin-left: .3em;
}
@media (hover: none) and (pointer: coarse) {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu {
    font-size: 18px;
  }
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:before {
  display: inline-block;
  content: "\f0c9";
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkTitle {
  position: absolute;
  top: 100%;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkTitle #imgLogo {
  max-height: 80px;
  max-width: 145px;
  padding: 10px;
  border-radius: 0 0 15px 15px;
  -moz-border-radius: 0 0 15px 15px;
  -webkit-border-radius: 0 0 15px 15px;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
.classroom #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkTitle {
  position: relative;
  top: 0;
}
.classroom #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkTitle #imgLogo {
  min-height: 36px !important;
  max-height: 36px !important;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 250px;
  z-index: 3;
  background-color: #0059ae;
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
  overflow: auto;
  z-index: 10;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: translateX(-280px);
  -ms-transform: translateX(-280px);
  transform: translateX(-280px);
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  color: #fff;
  padding: 0 15px;
  margin-left: 10px;
  line-height: 40px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav.fa-pull-left {
  margin-right: .3em;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav.fa-pull-right {
  margin-left: .3em;
}
@media (hover: none) and (pointer: coarse) {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  #pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:before {
  display: inline-block;
  content: "\f00d";
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav .navButtons {
  width: 100%;
  padding: 14px 25px;
  line-height: 20px;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu {
  background-color: transparent;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  color: inherit;
  position: relative;
  margin-left: -25px;
  margin-right: -25px;
  margin-top: 14px;
  margin-bottom: -14px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 3px 1px -2px rgba(0, 0, 0, 0), 0 1px 5px 0 rgba(0, 0, 0, 0);
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu .navSubMenuButton {
  border-bottom: 0;
  color: inherit;
  white-space: normal;
  padding: 14px 25px 14px 45px;
  font-weight: 200;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu .navSubMenuButton:before {
  content: "";
  background: rgba(255, 255, 255, 0.3);
  display: inline-block;
  width: 9px;
  height: 5px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  position: absolute;
  left: 25px;
  top: 22px;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkNav ~ .dropdown {
  z-index: 2;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) ~ #pBanner {
  margin-top: -8px;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop) #blkUserMenu #btnUserMenu .user-name {
  line-height: 40px;
  height: 40px;
}
#pTopBar.pTopBar-mobile:not(.pTopBar-desktop).scrolled > #blkTitle #imgLogo {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}
.classroom #pTopBar.pTopBar-mobile:not(.pTopBar-desktop).scrolled > #blkTitle #imgLogo {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
@media (max-width: 768px) {
  #pTopBar:not(.pTopBar-desktop) {
    height: 40px;
    line-height: 1;
    z-index: 999992;
  }
  #pTopBar:not(.pTopBar-desktop).showTopMenu:before {
    position: fixed;
    display: block;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
  #pTopBar:not(.pTopBar-desktop).showTopMenu::before {
    z-index: 9;
  }
  #pTopBar:not(.pTopBar-desktop).showTopMenu #blkNav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  #pTopBar:not(.pTopBar-desktop) #btnMenu {
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: inherit;
    padding: inherit;
    color: #0059ae;
    cursor: pointer;
    padding: 3px 12px;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    color: #fff;
    font-size: 18px;
    padding: 0 14px;
    line-height: 40px;
    display: inline-block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -webkit-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
  }
  #pTopBar:not(.pTopBar-desktop) #btnMenu.fa-pull-left {
    margin-right: .3em;
  }
  #pTopBar:not(.pTopBar-desktop) #btnMenu.fa-pull-right {
    margin-left: .3em;
  }
  #pTopBar:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    #pTopBar:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  #pTopBar:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    #pTopBar:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  #pTopBar:not(.pTopBar-desktop) #btnMenu:before {
    display: inline-block;
    content: "\f0c9";
  }
  #pTopBar:not(.pTopBar-desktop) #blkTitle {
    position: absolute;
    top: 100%;
  }
  #pTopBar:not(.pTopBar-desktop) #blkTitle #imgLogo {
    max-height: 80px;
    max-width: 145px;
    padding: 10px;
    border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    -webkit-border-radius: 0 0 15px 15px;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
  }
  .classroom #pTopBar:not(.pTopBar-desktop) #blkTitle {
    position: relative;
    top: 0;
  }
  .classroom #pTopBar:not(.pTopBar-desktop) #blkTitle #imgLogo {
    min-height: 36px !important;
    max-height: 36px !important;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 250px;
    z-index: 3;
    background-color: #0059ae;
    -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
    overflow: auto;
    z-index: 10;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    -webkit-transform: translateX(-280px);
    -ms-transform: translateX(-280px);
    transform: translateX(-280px);
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav {
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: inherit;
    padding: inherit;
    color: #0059ae;
    cursor: pointer;
    padding: 3px 12px;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    color: #fff;
    padding: 0 15px;
    margin-left: 10px;
    line-height: 40px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -webkit-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav.fa-pull-left {
    margin-right: .3em;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav.fa-pull-right {
    margin-left: .3em;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:before {
    display: inline-block;
    content: "\f00d";
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav .navButtons {
    width: 100%;
    padding: 14px 25px;
    line-height: 20px;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu {
    background-color: transparent;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    color: inherit;
    position: relative;
    margin-left: -25px;
    margin-right: -25px;
    margin-top: 14px;
    margin-bottom: -14px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 3px 1px -2px rgba(0, 0, 0, 0), 0 1px 5px 0 rgba(0, 0, 0, 0);
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu .navSubMenuButton {
    border-bottom: 0;
    color: inherit;
    white-space: normal;
    padding: 14px 25px 14px 45px;
    font-weight: 200;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu .navSubMenuButton:before {
    content: "";
    background: rgba(255, 255, 255, 0.3);
    display: inline-block;
    width: 9px;
    height: 5px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    position: absolute;
    left: 25px;
    top: 22px;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav ~ .dropdown {
    z-index: 2;
  }
  #pTopBar:not(.pTopBar-desktop) ~ #pBanner {
    margin-top: -8px;
  }
  #pTopBar:not(.pTopBar-desktop) #blkUserMenu #btnUserMenu .user-name {
    line-height: 40px;
    height: 40px;
  }
  #pTopBar:not(.pTopBar-desktop).scrolled > #blkTitle #imgLogo {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
  }
  .classroom #pTopBar:not(.pTopBar-desktop).scrolled > #blkTitle #imgLogo {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }
  #pTopBar:not(.pTopBar-desktop) {
    height: 40px;
    line-height: 1;
    z-index: 999992;
  }
  #pTopBar:not(.pTopBar-desktop).showTopMenu:before {
    position: fixed;
    display: block;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
  #pTopBar:not(.pTopBar-desktop).showTopMenu::before {
    z-index: 9;
  }
  #pTopBar:not(.pTopBar-desktop).showTopMenu #blkNav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  #pTopBar:not(.pTopBar-desktop) #btnMenu {
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: inherit;
    padding: inherit;
    color: #0059ae;
    cursor: pointer;
    padding: 3px 12px;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    color: #fff;
    font-size: 18px;
    padding: 0 14px;
    line-height: 40px;
    display: inline-block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -webkit-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
  }
  #pTopBar:not(.pTopBar-desktop) #btnMenu.fa-pull-left {
    margin-right: .3em;
  }
  #pTopBar:not(.pTopBar-desktop) #btnMenu.fa-pull-right {
    margin-left: .3em;
  }
  #pTopBar:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    #pTopBar:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  #pTopBar:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    #pTopBar:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  #pTopBar:not(.pTopBar-desktop) #btnMenu:before {
    display: inline-block;
    content: "\f0c9";
  }
  #pTopBar:not(.pTopBar-desktop) #blkTitle {
    position: absolute;
    top: 100%;
  }
  #pTopBar:not(.pTopBar-desktop) #blkTitle #imgLogo {
    max-height: 80px;
    max-width: 145px;
    padding: 10px;
    border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    -webkit-border-radius: 0 0 15px 15px;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
  }
  .classroom #pTopBar:not(.pTopBar-desktop) #blkTitle {
    position: relative;
    top: 0;
  }
  .classroom #pTopBar:not(.pTopBar-desktop) #blkTitle #imgLogo {
    min-height: 36px !important;
    max-height: 36px !important;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 250px;
    z-index: 3;
    background-color: #0059ae;
    -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
    overflow: auto;
    z-index: 10;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    -webkit-transform: translateX(-280px);
    -ms-transform: translateX(-280px);
    transform: translateX(-280px);
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav {
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: inherit;
    padding: inherit;
    color: #0059ae;
    cursor: pointer;
    padding: 3px 12px;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    color: #fff;
    padding: 0 15px;
    margin-left: 10px;
    line-height: 40px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -webkit-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav.fa-pull-left {
    margin-right: .3em;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav.fa-pull-right {
    margin-left: .3em;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:before {
    display: inline-block;
    content: "\f00d";
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav .navButtons {
    width: 100%;
    padding: 14px 25px;
    line-height: 20px;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu {
    background-color: transparent;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    color: inherit;
    position: relative;
    margin-left: -25px;
    margin-right: -25px;
    margin-top: 14px;
    margin-bottom: -14px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 3px 1px -2px rgba(0, 0, 0, 0), 0 1px 5px 0 rgba(0, 0, 0, 0);
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu .navSubMenuButton {
    border-bottom: 0;
    color: inherit;
    white-space: normal;
    padding: 14px 25px 14px 45px;
    font-weight: 200;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu .navSubMenuButton:before {
    content: "";
    background: rgba(255, 255, 255, 0.3);
    display: inline-block;
    width: 9px;
    height: 5px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    position: absolute;
    left: 25px;
    top: 22px;
  }
  #pTopBar:not(.pTopBar-desktop) #blkNav ~ .dropdown {
    z-index: 2;
  }
  #pTopBar:not(.pTopBar-desktop) ~ #pBanner {
    margin-top: -8px;
  }
  #pTopBar:not(.pTopBar-desktop) #blkUserMenu #btnUserMenu .user-name {
    line-height: 40px;
    height: 40px;
  }
  #pTopBar:not(.pTopBar-desktop).scrolled > #blkTitle #imgLogo {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
  }
  .classroom #pTopBar:not(.pTopBar-desktop).scrolled > #blkTitle #imgLogo {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }
  .classroom #pTopBar {
    position: relative;
  }
}
@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
  #pTopBar:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
  #pTopBar:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #pTopBar:not(.pTopBar-desktop) #btnMenu {
    font-size: 18px;
  }
}
@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
  #pTopBar:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
  #pTopBar:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #pTopBar:not(.pTopBar-desktop) #btnMenu {
    font-size: 18px;
  }
}
@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
  #pTopBar:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
body.showTopMenu {
  overflow: hidden;
}
.pTopBar-mobile:not(.pTopBar-desktop) {
  height: 40px;
  line-height: 1;
  z-index: 999992;
}
.pTopBar-mobile:not(.pTopBar-desktop).showTopMenu:before {
  position: fixed;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.pTopBar-mobile:not(.pTopBar-desktop).showTopMenu::before {
  z-index: 9;
}
.pTopBar-mobile:not(.pTopBar-desktop).showTopMenu #blkNav {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  color: #fff;
  font-size: 18px;
  padding: 0 14px;
  line-height: 40px;
  display: inline-block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu.fa-pull-left {
  margin-right: .3em;
}
.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu.fa-pull-right {
  margin-left: .3em;
}
@media (hover: none) and (pointer: coarse) {
  .pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .pTopBar-mobile:not(.pTopBar-desktop) #btnMenu {
    font-size: 18px;
  }
}
.pTopBar-mobile:not(.pTopBar-desktop) #btnMenu:before {
  display: inline-block;
  content: "\f0c9";
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkTitle {
  position: absolute;
  top: 100%;
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkTitle #imgLogo {
  max-height: 80px;
  max-width: 145px;
  padding: 10px;
  border-radius: 0 0 15px 15px;
  -moz-border-radius: 0 0 15px 15px;
  -webkit-border-radius: 0 0 15px 15px;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
.classroom .pTopBar-mobile:not(.pTopBar-desktop) #blkTitle {
  position: relative;
  top: 0;
}
.classroom .pTopBar-mobile:not(.pTopBar-desktop) #blkTitle #imgLogo {
  min-height: 36px !important;
  max-height: 36px !important;
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkNav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 250px;
  z-index: 3;
  background-color: #0059ae;
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
  overflow: auto;
  z-index: 10;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: translateX(-280px);
  -ms-transform: translateX(-280px);
  transform: translateX(-280px);
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  color: #fff;
  padding: 0 15px;
  margin-left: 10px;
  line-height: 40px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav.fa-pull-left {
  margin-right: .3em;
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav.fa-pull-right {
  margin-left: .3em;
}
@media (hover: none) and (pointer: coarse) {
  .pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkNav #btnCloseNav:before {
  display: inline-block;
  content: "\f00d";
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkNav .navButtons {
  width: 100%;
  padding: 14px 25px;
  line-height: 20px;
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu {
  background-color: transparent;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  color: inherit;
  position: relative;
  margin-left: -25px;
  margin-right: -25px;
  margin-top: 14px;
  margin-bottom: -14px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 3px 1px -2px rgba(0, 0, 0, 0), 0 1px 5px 0 rgba(0, 0, 0, 0);
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu .navSubMenuButton {
  border-bottom: 0;
  color: inherit;
  white-space: normal;
  padding: 14px 25px 14px 45px;
  font-weight: 200;
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkNav .navButtons .navSubMenu .navSubMenuButton:before {
  content: "";
  background: rgba(255, 255, 255, 0.3);
  display: inline-block;
  width: 9px;
  height: 5px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  position: absolute;
  left: 25px;
  top: 22px;
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkNav ~ .dropdown {
  z-index: 2;
}
.pTopBar-mobile:not(.pTopBar-desktop) ~ #pBanner {
  margin-top: -8px;
}
.pTopBar-mobile:not(.pTopBar-desktop) #blkUserMenu #btnUserMenu .user-name {
  line-height: 40px;
  height: 40px;
}
.pTopBar-mobile:not(.pTopBar-desktop).scrolled > #blkTitle #imgLogo {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}
.classroom .pTopBar-mobile:not(.pTopBar-desktop).scrolled > #blkTitle #imgLogo {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
#pBanner {
  height: 180px;
  background-color: #aaa;
  background-size: cover;
  background-position: center center;
  background-image: url("/intranet/images/banner.jpg");
}
#pBanner #blkSysName {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75px;
  padding-bottom: 25px;
  text-align: center;
  background-image: url("/intranet/images/sysNameBg.png");
  background-size: 100% 100%;
  line-height: 50px;
  font-weight: bold;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #0059ae;
  text-shadow: 0px 0px 5px #fff, 0px 2px 10px #fff, 0px 2px 20px #fff, 0px 2px 40px #fff;
}
@media (max-width: 768px) {
  #pBanner #blkSysName {
    font-size: 17px;
    letter-spacing: 1px;
    background-size: 768px 100%;
    background-position: 50% 50%;
  }
}
@media (max-width: 480px) {
  #pBanner #blkSysName {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
.portalArea {
  background: #fff;
  width: 95%;
  max-width: 1800px;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px 10px 5px 5px;
  -moz-border-radius: 10px 10px 5px 5px;
  -webkit-border-radius: 10px 10px 5px 5px;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
  margin-top: -25px;
  min-height: 400px;
  padding: 25px 25px 45px;
}
@media (max-width: 768px) {
  .portalArea {
    width: 100%;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
  }
  .portalArea::before {
    display: none;
  }
  .portalArea .tableWrapper {
    width: calc((100% + 30px));
    margin-left: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.portalNavBar {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  border-bottom: 3px solid #0059ae;
  padding-bottom: 15px;
  z-index: 2;
}
@media (max-width: 768px) {
  .portalNavBar {
    font-size: 20px;
  }
}
.portalNavBar::before {
  position: absolute;
  content: "";
  left: 40px;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #0059ae;
}
.portalNavBar::after {
  position: absolute;
  content: "";
  left: 43px;
  top: 99%;
  top: calc(100% - 1px);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #fff;
}
@media (min-width: 769px) {
  .portalNavBar > .floatL {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #bfbfbf;
  }
}
@media (max-width: 768px) {
  .portalNavBar > .floatL {
    padding-right: 0;
    margin-right: 10px;
  }
}
.portalNavBar > .floatR {
  padding-left: 10px;
}
.portalNavBar > .floatR::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.portalNavBar > .floatR > a {
  display: inline-block;
  float: right;
}
.portalNavBar > .floatR > a::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.portalNavBar > .floatR > a:not(:first-child) {
  margin-right: 20px;
}
.portalNavBar .portalNavBar-title {
  overflow: hidden;
  max-height: 60px;
  min-height: 30px;
  /* Webkit only */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.portalNavBar .portalNavBar-title .icon {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
  margin-right: 10px;
  vertical-align: top;
  max-width: 20px;
}
@media (max-width: 768px) {
  .portalNavBar .portalNavBar-title .icon {
    margin-right: 5px;
    max-width: 25px;
  }
}
.portalNavBar .portalNavBar-title .icon + span {
  max-width: calc(100% - 30px);
  vertical-align: top;
}
.portalNavBar .portalNavBar-title .icon.hide-m + span {
  max-width: 100%;
}
.portalNavBar .portalNavBar-buttons {
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #0059ae !important;
  font-size: 18px;
  line-height: 30px;
  float: right;
}
@media (hover: none) and (pointer: coarse) {
  .portalNavBar .portalNavBar-buttons:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.portalNavBar .portalNavBar-buttons:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .portalNavBar .portalNavBar-buttons:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.portalNavBar .portalNavBar-buttons,
.portalNavBar .portalNavBar-buttons:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .portalNavBar .portalNavBar-buttons:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .portalNavBar .portalNavBar-buttons:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (hover: none) and (pointer: coarse) {
  .portalNavBar .portalNavBar-buttons:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.portalNavBar .portalNavBar-buttons:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .portalNavBar .portalNavBar-buttons:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.portalNavBar .portalNavBar-buttons,
.portalNavBar .portalNavBar-buttons:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .portalNavBar .portalNavBar-buttons:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .portalNavBar .portalNavBar-buttons:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (max-width: 768px) {
  .portalNavBar .portalNavBar-buttons {
    font-size: 18px;
  }
}
.portalNavBar .portalNavBar-buttons::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.portalNavBar .portalNavBar-buttons > * {
  float: left;
}
.portalNavBar .portalNavBar-buttons > .icon {
  float: left;
  margin-right: 8px;
  font-size: 19px;
  vertical-align: middle;
  display: block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  .portalNavBar .portalNavBar-buttons > .icon {
    font-size: 18px;
  }
}
.portalNavBar .portalNavBar-buttons > .icon.fa-pull-left {
  margin-right: .3em;
}
.portalNavBar .portalNavBar-buttons > .icon.fa-pull-right {
  margin-left: .3em;
}
.portalNavBar .portalNavBar-buttons::before {
  float: left;
  margin-right: 8px;
  font-size: 19px;
  vertical-align: middle;
  display: block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  .portalNavBar .portalNavBar-buttons::before {
    font-size: 18px;
  }
}
.portalNavBar .portalNavBar-buttons::before.fa-pull-left {
  margin-right: .3em;
}
.portalNavBar .portalNavBar-buttons::before.fa-pull-right {
  margin-left: .3em;
}
.portalNavBar .portalNavBar-buttons + .portalNavBar-buttons {
  margin-right: 8px;
}
.portalNavBar .portalNavBar-back::before {
  content: "\f053";
}
.portalNavBar .portalNavBar-filterToggle::before {
  content: "\f002";
}
.portalNavBar .portalNavBar-filterToggle.portalNavBar-filterToggle-search::before {
  content: "\f002";
}
.portalNavBar .portalNavBar-filterToggle.collpsePortalOptions {
  color: #999 !important;
}
.portalNavBar .portalNavBar-filterToggle.collpsePortalOptions:hover {
  color: #0059ae !important;
}
@media (max-width: 768px) {
  .role-learner .portalNavBar .portalNavBar-filterToggle {
    display: none;
  }
}
@media (min-width: 769px) {
  .portalNavBar .portalNavBar-filterToggle-m {
    display: none;
  }
}
.portalNavBar .portalNavBar-filterToggle-m::before {
  content: "\f002";
}
.portalNavBar + .table-default > thead > tr > th,
.portalNavBar + .table-responsive > .table-default > thead > tr > th,
.portalNavBar + .tableWrapper > .table-default > thead > tr > th,
.portalNavBar + form > .table-default > thead > tr > th,
.portalNavBar + form > .table-responsive > .table-default > thead > tr > th,
.portalNavBar + form > .tableWrapper > .table-default > thead > tr > th {
  padding-top: 35px;
}
.tab-filterToggle {
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #0059ae !important;
  font-size: 18px;
  line-height: 30px;
  float: right;
  margin-top: -40px;
  padding: 5px 0;
  font-weight: 400;
}
@media (hover: none) and (pointer: coarse) {
  .tab-filterToggle:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.tab-filterToggle:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .tab-filterToggle:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.tab-filterToggle,
.tab-filterToggle:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .tab-filterToggle:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .tab-filterToggle:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (hover: none) and (pointer: coarse) {
  .tab-filterToggle:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.tab-filterToggle:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .tab-filterToggle:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.tab-filterToggle,
.tab-filterToggle:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .tab-filterToggle:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .tab-filterToggle:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (max-width: 768px) {
  .tab-filterToggle {
    font-size: 18px;
  }
}
.tab-filterToggle::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.tab-filterToggle > * {
  float: left;
}
.tab-filterToggle > .icon {
  float: left;
  margin-right: 8px;
  font-size: 19px;
  vertical-align: middle;
  display: block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  .tab-filterToggle > .icon {
    font-size: 18px;
  }
}
.tab-filterToggle > .icon.fa-pull-left {
  margin-right: .3em;
}
.tab-filterToggle > .icon.fa-pull-right {
  margin-left: .3em;
}
.tab-filterToggle::before {
  float: left;
  margin-right: 8px;
  font-size: 19px;
  vertical-align: middle;
  display: block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f002";
}
@media (max-width: 768px) {
  .tab-filterToggle::before {
    font-size: 18px;
  }
}
.tab-filterToggle::before.fa-pull-left {
  margin-right: .3em;
}
.tab-filterToggle::before.fa-pull-right {
  margin-left: .3em;
}
.tab-filterToggle.tab-filterToggle-search::before {
  content: "\f002";
}
.tab-filterToggle.collpsePortalOptions {
  color: #999;
}
.tab-filterToggle.collpsePortalOptions:hover {
  color: #0059ae;
}
.tab-filterToggle + .portalOptions {
  padding-top: 25px;
}
.portalOptions {
  background-color: #f8f8f8;
  padding: 35px 30px 15px;
}
.portalOptions::after,
.portalOptions > form::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.portalOptions > form {
  display: block;
}
@media (min-width: 769px) {
  .portalOptions > .floatL,
  .portalOptions > form > .floatL,
  .portalOptions > form > left {
    width: calc(100% - 200px);
  }
  .portalOptions > .floatR,
  .portalOptions > form > .floatR,
  .portalOptions > form > right {
    width: 200px;
  }
  .portalOptions > .floatR .textbox-search,
  .portalOptions > form > .floatR .textbox-search,
  .portalOptions > form > right .textbox-search {
    width: 100%;
  }
  .portalOptions .tagSelector {
    clear: both;
  }
}
@media (max-width: 768px) {
  .portalOptions {
    padding: 30px 15px 25px;
  }
  .portalOptions > .floatL,
  .portalOptions > .floatR,
  .portalOptions > form > .floatL,
  .portalOptions > form > .floatR,
  .portalOptions > form > left,
  .portalOptions > form > right {
    width: 100%;
    float: none;
  }
  .portalOptions > .floatL + .tagSelector,
  .portalOptions > .floatR + .tagSelector,
  .portalOptions > form > .floatL + .tagSelector,
  .portalOptions > form > .floatR + .tagSelector,
  .portalOptions > form > left + .tagSelector,
  .portalOptions > form > right + .tagSelector {
    margin-top: 30px;
  }
  .portalOptions > .floatL,
  .portalOptions > form > .floatL,
  .portalOptions > form > left {
    z-index: 2;
  }
  .portalOptions > .floatR,
  .portalOptions > form > .floatR,
  .portalOptions > form > right {
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .portal.role-learner .portalOptions {
    display: none;
  }
}
#cBody > article.portalOptions:first-child {
  margin-top: -48px;
  padding-top: 20px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  #cBody > article.portalOptions:first-child {
    margin-top: 0;
  }
}
.portalOptions .form-submission {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  min-width: auto;
}
@media (max-width: 480px) {
  .portalOptions .form-submission .button,
  .portalOptions .form-submission .btn {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 15px;
  }
}
.portalOptions,
.portalOptions > * {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.portalOptions.collpsePortalOptions {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}
.portalOptions.collpsePortalOptions > * {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.portalOptions:not(.collpsePortalOptions) + .table-default::before,
.portalOptions:not(.collpsePortalOptions) + .table-responsive::before,
.portalOptions:not(.collpsePortalOptions) + .tableWrapper > .table-default::before,
.portalOptions:not(.collpsePortalOptions) + .tableWrapper > .table-responsive::before,
.portalOptions:not(.collpsePortalOptions) + form > .table-default::before,
.portalOptions:not(.collpsePortalOptions) + form > .table-responsive::before,
.portalOptions:not(.collpsePortalOptions) + form > .tableWrapper > .table-default::before,
.portalOptions:not(.collpsePortalOptions) + form > .tableWrapper > .table-responsive::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 20px;
  right: 20px;
  border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
  .portalOptions:not(.collpsePortalOptions) + .table-default::before,
  .portalOptions:not(.collpsePortalOptions) + .table-responsive::before,
  .portalOptions:not(.collpsePortalOptions) + .tableWrapper > .table-default::before,
  .portalOptions:not(.collpsePortalOptions) + .tableWrapper > .table-responsive::before,
  .portalOptions:not(.collpsePortalOptions) + form > .table-default::before,
  .portalOptions:not(.collpsePortalOptions) + form > .table-responsive::before,
  .portalOptions:not(.collpsePortalOptions) + form > .tableWrapper > .table-default::before,
  .portalOptions:not(.collpsePortalOptions) + form > .tableWrapper > .table-responsive::before {
    left: 10px;
    right: 10px;
  }
}
@media (max-width: 768px) {
  .portalOptions:not(.collpsePortalOptions) + .table-default.table-resp::before,
  .portalOptions:not(.collpsePortalOptions) + .tableWrapper > .table-default.table-resp::before,
  .portalOptions:not(.collpsePortalOptions) + form > .table-default.table-resp::before,
  .portalOptions:not(.collpsePortalOptions) + form > .tableWrapper > .table-default.table-resp::before {
    display: none;
  }
}
.portalOptions + .table-default > thead > tr > th,
.portalOptions + .table-responsive > .table-default > thead > tr > th,
.portalOptions + .tableWrapper > .table-default > thead > tr > th,
.portalOptions + form > .table-default > thead > tr > th,
.portalOptions + form > .table-responsive > .table-default > thead > tr > th,
.portalOptions + form > .tableWrapper > .table-default > thead > tr > th {
  padding-top: 35px;
}
.portalOptions .item::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
@media (min-width: 769px) {
  .portalOptions .item {
    float: left;
    margin-right: 70px;
    margin-top: -12px;
  }
  .portalOptions .item .itemLabel,
  .portalOptions .item .itemInput {
    display: inline-block;
    vertical-align: middle;
  }
  .portalOptions .item .itemLabel {
    margin-right: 20px;
    margin-bottom: 0;
    font-size: 18px;
    width: auto;
    max-width: 200px;
  }
  .portalOptions .item .itemInput {
    width: auto;
    min-width: 150px;
  }
  .portalOptions .item .itemInput .selector {
    width: 195px;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  .portalOptions .item .itemLabel {
    font-size: 18px;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .portalOptions .item .itemLabel {
    width: 200px;
    max-width: calc(100% - 200px);
  }
}
.portalOptions .item .itemLabel {
  font-weight: 500;
  color: #0059ae;
  letter-spacing: 0.3px;
}
@media (min-width: 769px) and (max-width: 1199px) {
  .portalOptions .item .itemInput-datepicker .datepicker,
  .portalOptions .item .itemInput-datepicker .datepicker ~ * {
    float: left;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .portalOptions .item .itemInput-datepicker .datepicker {
    margin-bottom: 5px;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .portalOptions .item:not(.fullW) .itemInput-datepicker .datepicker:last-of-type {
    clear: left;
    margin-top: 12px;
    margin-bottom: 5px;
  }
}
.portalOptions .item .itemInput-selector .selector button {
  color: #333;
}
.portalInfo {
  background: #f8f8f8;
  padding: 30px 36px 30px 36px;
}
.portalInfo::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.portalInfo .portalInfo-item:not(:last-child) {
  margin-bottom: 10px;
}
.portalInfo .portalInfo-left {
  float: left;
}
.portalInfo .portalInfo-left .portalInfo-item {
  padding-left: 30px;
}
.portalInfo .portalInfo-left .portalInfo-item > .icon {
  position: absolute;
  width: 20px;
  text-align: center;
  left: 0;
  color: #0059ae;
}
.portalInfo .portalInfo-right {
  text-align: right;
}
.portalInfo .portalInfo-right .portalInfo-item {
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  margin-left: 30px;
}
.portalInfo .portalInfo-right .portalInfo-item .portalInfo-itemTitle {
  font-size: 16px;
  color: #0059ae;
}
@media (max-width: 768px) {
  .portalInfo .portalInfo-right .portalInfo-item .portalInfo-itemTitle {
    font-size: 16px;
  }
}
.portalInfo .portalInfo-right .portalInfo-item .portalInfo-itemDetail {
  font-size: 22px;
  font-weight: 600;
  color: #0059ae;
}
@media (max-width: 768px) {
  .portalInfo .portalInfo-right .portalInfo-item .portalInfo-itemDetail {
    font-size: 22px;
  }
}
.portalInfo .portalInfo-right:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
@media (min-width: 769px) {
  .portalInfo .portalInfo-right {
    position: absolute;
    right: 36px;
    top: 30px;
    bottom: 30px;
    border-left: 1px solid #eee;
  }
}
@media (max-width: 768px) {
  .portalInfo {
    padding: 30px 15px 20px;
  }
  .portalInfo .portalInfo-left,
  .portalInfo .portalInfo-right {
    float: none;
  }
  .portalInfo .portalInfo-left::after,
  .portalInfo .portalInfo-right::after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
  }
  .portalInfo .portalInfo-right {
    text-align: left;
  }
  .portalInfo .portalInfo-right .portalInfo-item {
    float: left;
    text-align: left;
    margin-left: 0;
    margin-right: 30px;
  }
  .portalInfo .portalInfo-right:first-child {
    border-left: 0;
    border-bottom: 1px solid #eee;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .portalInfo .portalInfo-left + .portalInfo-right {
    border-left: 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
    padding-top: 15px;
  }
}
.portalOptionsInfo {
  background-color: #f3f3f3;
  padding: 30px 36px 20px 36px;
}
@media (min-width: 769px) {
  .portalOptionsInfo {
    display: none;
  }
}
.portalOptionsInfo::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.portalOptionsInfo .portalOptionsInfo-subject {
  font-weight: bold;
  font-weight: 600;
  overflow: hidden;
}
.portalOptionsInfo .portalOptionsInfo-right {
  float: right;
  padding-left: 15px;
}
.portalOptionsInfo .portalOptionsInfo-right .button {
  margin-top: -3px;
}
@media (max-width: 768px) {
  .portalOptionsInfo .portalOptionsInfo-right .button {
    font-size: 14px !important;
  }
}
@media (min-width: 970px) {
  .portalOptionsInfo .portalOptionsInfo-right {
    max-width: 50%;
  }
}
@media (max-width: 969px) {
  .portalOptionsInfo {
    padding: 23px 15px 20px;
  }
}
.portalOptionsInfo + .courseList {
  margin-top: 30px;
}
.portalOptionsInfo + .table-default > thead > tr > th,
.portalOptionsInfo + .table-responsive > .table-default > thead > tr > th,
.portalOptionsInfo + .tableWrapper > .table-default > thead > tr > th,
.portalOptionsInfo + form > .table-default > thead > tr > th,
.portalOptionsInfo + form > .table-responsive > .table-default > thead > tr > th,
.portalOptionsInfo + form > .tableWrapper > .table-default > thead > tr > th {
  padding-top: 35px;
}
.progressInfo {
  clear: both;
}
.progressInfo > .floatL,
.progressInfo > .floatR {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .progressInfo > .floatL,
  .progressInfo > .floatR {
    font-size: 12px;
  }
}
.progressInfo > .floatL {
  font-weight: bold;
  font-weight: 600;
}
.progressInfo > div:not(.floatL):not(.floatR) {
  clear: both;
}
.progressInfo .progress {
  height: 8px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: #eee;
}
.progressInfo .progress .progressbar-inProgress {
  background-color: #ffba00;
}
.progressInfo .progress .progressbar-finished {
  background-color: #15ba5b;
}
.progressInfo .progress .progressbar-passed {
  background-color: #5b8bee;
}
.courseBasicInfo {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
}
.courseBasicInfo::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
@media (max-width: 768px) {
  .courseBasicInfo {
    font-size: 12px;
  }
}
.courseBasicInfo > .floatL {
  margin-top: 5px;
}
.courseBasicInfo > .floatL:not(:last-child) {
  margin-right: 22px;
}
.courseBasicInfo .icon,
.courseBasicInfo .fas,
.courseBasicInfo .far,
.courseBasicInfo .fa,
.courseBasicInfo .fab {
  margin-right: 6px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .courseBasicInfo .icon,
  .courseBasicInfo .fas,
  .courseBasicInfo .far,
  .courseBasicInfo .fa,
  .courseBasicInfo .fab {
    font-size: 13px;
  }
}
.portalNavBar + .courseList,
.portalOptions + .courseList {
  margin-top: 30px;
}
.courseList .courseList-item:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}
.courseList .courseList-item .courseList-content .courseList-subject {
  font-weight: bold;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  margin-top: -0.1em;
  color: #313c8c;
}
.courseList .courseList-item .courseList-content .courseList-desc {
  overflow: hidden;
  line-height: 1.4;
  height: calc(1.4em * 2);
  color: #777;
  /* Webkit only */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}
.courseList .courseList-item .courseList-content .courseList-progress {
  clear: both;
  margin-bottom: 7px;
}
.courseList .courseList-item .courseList-content .courseList-progress > .floatL,
.courseList .courseList-item .courseList-content .courseList-progress > .floatR {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .courseList .courseList-item .courseList-content .courseList-progress > .floatL,
  .courseList .courseList-item .courseList-content .courseList-progress > .floatR {
    font-size: 12px;
  }
}
.courseList .courseList-item .courseList-content .courseList-progress > .floatL {
  font-weight: bold;
  font-weight: 600;
}
.courseList .courseList-item .courseList-content .courseList-progress > div:not(.floatL):not(.floatR) {
  clear: both;
}
.courseList .courseList-item .courseList-content .courseList-progress .progress {
  height: 8px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: #eee;
}
.courseList .courseList-item .courseList-content .courseList-progress .progress .progressbar-inProgress {
  background-color: #ffba00;
}
.courseList .courseList-item .courseList-content .courseList-progress .progress .progressbar-finished {
  background-color: #15ba5b;
}
.courseList .courseList-item .courseList-content .courseList-progress .progress .progressbar-passed {
  background-color: #5b8bee;
}
.courseList .courseList-item .courseList-content .courseList-progress > .floatL,
.courseList .courseList-item .courseList-content .courseList-progress > .floatR {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .courseList .courseList-item .courseList-content .courseList-progress > .floatL,
  .courseList .courseList-item .courseList-content .courseList-progress > .floatR {
    font-size: 12px;
  }
}
.courseList .courseList-item .courseList-content .courseList-progress > .floatL {
  font-weight: bold;
  font-weight: 600;
}
.courseList .courseList-item .courseList-content .courseList-progress > div:not(.floatL):not(.floatR) {
  clear: both;
}
.courseList .courseList-item .courseList-content .courseList-progress .progress {
  height: 8px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: #eee;
}
.courseList .courseList-item .courseList-content .courseList-progress .progress .progressbar-inProgress {
  background-color: #ffba00;
}
.courseList .courseList-item .courseList-content .courseList-progress .progress .progressbar-finished {
  background-color: #15ba5b;
}
.courseList .courseList-item .courseList-content .courseList-progress .progress .progressbar-passed {
  background-color: #5b8bee;
}
.courseList .courseList-item .courseList-content .courseList-progress + .courseList-progress {
  margin-top: 20px;
  margin-bottom: 30px;
}
.courseList .courseList-item .courseList-content .courseList-completion {
  clear: both;
  margin-bottom: 7px;
}
.courseList .courseList-item .courseList-content .courseList-completion > .floatL,
.courseList .courseList-item .courseList-content .courseList-completion > .floatR {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .courseList .courseList-item .courseList-content .courseList-completion > .floatL,
  .courseList .courseList-item .courseList-content .courseList-completion > .floatR {
    font-size: 12px;
  }
}
.courseList .courseList-item .courseList-content .courseList-completion > .floatL {
  font-weight: bold;
  font-weight: 600;
}
.courseList .courseList-item .courseList-content .courseList-completion > div:not(.floatL):not(.floatR) {
  clear: both;
}
.courseList .courseList-item .courseList-content .courseList-completion .progress {
  height: 8px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: #eee;
}
.courseList .courseList-item .courseList-content .courseList-completion .progress .progressbar-inProgress {
  background-color: #ffba00;
}
.courseList .courseList-item .courseList-content .courseList-completion .progress .progressbar-finished {
  background-color: #15ba5b;
}
.courseList .courseList-item .courseList-content .courseList-completion .progress .progressbar-passed {
  background-color: #5b8bee;
}
.courseList .courseList-item .courseList-content .courseList-completion > .floatL,
.courseList .courseList-item .courseList-content .courseList-completion > .floatR {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .courseList .courseList-item .courseList-content .courseList-completion > .floatL,
  .courseList .courseList-item .courseList-content .courseList-completion > .floatR {
    font-size: 12px;
  }
}
.courseList .courseList-item .courseList-content .courseList-completion > .floatL {
  font-weight: bold;
  font-weight: 600;
}
.courseList .courseList-item .courseList-content .courseList-completion > div:not(.floatL):not(.floatR) {
  clear: both;
}
.courseList .courseList-item .courseList-content .courseList-completion .progress {
  height: 8px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: #eee;
}
.courseList .courseList-item .courseList-content .courseList-completion .progress .progressbar-inProgress {
  background-color: #ffba00;
}
.courseList .courseList-item .courseList-content .courseList-completion .progress .progressbar-finished {
  background-color: #15ba5b;
}
.courseList .courseList-item .courseList-content .courseList-completion .progress .progressbar-passed {
  background-color: #5b8bee;
}
.courseList .courseList-item .courseList-content .courseList-completion + .courseList-progress {
  margin-top: 50px;
  margin-bottom: 30px;
}
.courseList .courseList-item .courseList-content .courseList-info {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
}
.courseList .courseList-item .courseList-content .courseList-info::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
@media (max-width: 768px) {
  .courseList .courseList-item .courseList-content .courseList-info {
    font-size: 12px;
  }
}
.courseList .courseList-item .courseList-content .courseList-info > .floatL {
  margin-top: 5px;
}
.courseList .courseList-item .courseList-content .courseList-info > .floatL:not(:last-child) {
  margin-right: 22px;
}
.courseList .courseList-item .courseList-content .courseList-info .icon,
.courseList .courseList-item .courseList-content .courseList-info .fas,
.courseList .courseList-item .courseList-content .courseList-info .far,
.courseList .courseList-item .courseList-content .courseList-info .fa,
.courseList .courseList-item .courseList-content .courseList-info .fab {
  margin-right: 6px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .courseList .courseList-item .courseList-content .courseList-info .icon,
  .courseList .courseList-item .courseList-content .courseList-info .fas,
  .courseList .courseList-item .courseList-content .courseList-info .far,
  .courseList .courseList-item .courseList-content .courseList-info .fa,
  .courseList .courseList-item .courseList-content .courseList-info .fab {
    font-size: 13px;
  }
}
.courseList .courseList-item .courseList-content .courseList-info::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
@media (max-width: 768px) {
  .courseList .courseList-item .courseList-content .courseList-info {
    font-size: 12px;
  }
}
.courseList .courseList-item .courseList-content .courseList-info > .floatL {
  margin-top: 5px;
}
.courseList .courseList-item .courseList-content .courseList-info > .floatL:not(:last-child) {
  margin-right: 22px;
}
.courseList .courseList-item .courseList-content .courseList-info .icon,
.courseList .courseList-item .courseList-content .courseList-info .fas,
.courseList .courseList-item .courseList-content .courseList-info .far,
.courseList .courseList-item .courseList-content .courseList-info .fa,
.courseList .courseList-item .courseList-content .courseList-info .fab {
  margin-right: 6px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .courseList .courseList-item .courseList-content .courseList-info .icon,
  .courseList .courseList-item .courseList-content .courseList-info .fas,
  .courseList .courseList-item .courseList-content .courseList-info .far,
  .courseList .courseList-item .courseList-content .courseList-info .fa,
  .courseList .courseList-item .courseList-content .courseList-info .fab {
    font-size: 13px;
  }
}
.courseList .courseList-item .courseList-toDo {
  position: absolute;
}
.courseList .courseList-item .courseList-toDo::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.courseList .courseList-item .courseList-toDo .courseList-toDo-item {
  float: right;
  width: 70px;
  height: 48px;
  border-bottom: 1px solid #0059ae;
  color: #0059ae;
  text-align: center;
}
.courseList .courseList-item .courseList-toDo .courseList-toDo-item > div:first-child {
  font-weight: bold;
  font-weight: 600;
  font-size: 18px;
  padding-top: 3px;
}
.courseList .courseList-item .courseList-toDo .courseList-toDo-item > div:last-child {
  font-size: 12px;
  line-height: 1;
  font-weight: 300;
}
.courseList .courseList-item .courseList-toDo .courseList-toDo-item:not(:last-child) {
  margin-left: 10px;
}
.courseList .courseList-item .courseList-toDo .courseList-toDo-cert {
  width: 70px;
  color: #777;
  text-align: center;
}
.courseList .courseList-item .courseList-toDo .courseList-toDo-cert > div:first-child {
  font-size: 20px;
  margin-bottom: 3px;
}
.courseList .courseList-item .courseList-toDo .courseList-toDo-cert > div:last-child {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 300;
}
@media (min-width: 769px) {
  .courseList .courseList-item::after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
  }
  .courseList .courseList-item .courseList-photo {
    width: 228px;
    float: left;
    margin-right: 20px;
    max-width: 25%;
  }
  .courseList .courseList-item .courseList-content {
    overflow: hidden;
    margin-right: 180px;
  }
  .courseList .courseList-item .courseList-content .courseList-subject {
    font-size: 18px;
  }
  .courseList .courseList-item .courseList-toDo {
    right: 0;
    top: 0;
    margin-top: -0.2em;
  }
  .courseList .courseList-item .courseList-btn {
    position: absolute;
    right: 0;
    bottom: 30px;
    min-width: 100px;
    max-width: 150px;
  }
  .courseList .courseList-item:last-child .courseList-btn {
    bottom: 0;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  .courseList .courseList-item .courseList-content .courseList-subject {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .courseList .courseList-item .courseList-content {
    margin-right: 230px;
  }
}
@media (max-width: 768px) {
  .courseList .courseList-item .courseList-photo {
    margin-bottom: 20px;
  }
  .courseList .courseList-item .courseList-content {
    margin-bottom: 20px;
  }
  .courseList .courseList-item .courseList-content .courseList-desc {
    font-size: 14px;
  }
  .courseList .courseList-item .courseList-content .courseList-progress {
    margin-bottom: 15px;
  }
  .courseList .courseList-item .courseList-toDo {
    right: 15px;
    top: 15px;
  }
  .courseList .courseList-item .courseList-toDo .courseList-toDo-item {
    border: 0;
    background-color: #0059ae;
    color: #fff;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
    -webkit-opacity: 0.9;
    -moz-opacity: 0.9;
    opacity: 0.9;
    height: 50px;
  }
  .courseList .courseList-item .courseList-toDo .courseList-toDo-cert {
    color: #fff;
    border: 0;
    background-color: rgba(0, 0, 0, 0.6);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
    -webkit-opacity: 0.9;
    -moz-opacity: 0.9;
    opacity: 0.9;
    padding: 8px;
    width: 90px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .courseList .courseList-item .courseList-content .courseList-desc {
    font-size: 14px;
  }
}
.courseList .courseList-item .courseList-toDo .courseList-toDo-item {
  height: 60px;
  float: left;
  color: #333;
  border-bottom: 1px solid #333;
}
.courseList .courseList-item .courseList-toDo .courseList-toDo-item:not(:last-child) {
  margin-left: 0;
  margin-right: 10px;
}
.courseList .courseList-item .courseList-toDo .courseList-toDo-item > div:last-child {
  font-weight: 400;
}
.courseList .courseList-item .courseList-toDo .courseList-toDo-cert {
  color: #333;
}
.courseList .courseList-item .courseList-toDo .courseList-toDo-cert > div:last-child {
  font-weight: 400;
}
.courseList .courseList-item .courseList-btn > a:first-child ~ a,
.courseList .courseList-item .courseList-btn > .button:first-child ~ a,
.courseList .courseList-item .courseList-btn > a:first-child ~ .button,
.courseList .courseList-item .courseList-btn > .button:first-child ~ .button {
  margin-top: 8px;
  display: block;
}
@media (min-width: 769px) {
  .courseList .courseList-item .courseList-btn {
    max-width: 180px;
  }
}
@media (max-width: 768px) {
  .courseList {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .courseList .courseList-item .courseList-photo {
    width: 40%;
    float: left;
  }
  .courseList .courseList-item .courseList-content .courseList-subject {
    display: block;
    padding-left: 15px;
    height: 3.6em;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 20px;
    line-height: 1.2;
  }
  .courseList .courseList-item .courseList-content .courseList-desc,
  .courseList .courseList-item .courseList-content .courseList-info {
    display: none;
  }
  .courseList .courseList-item .courseList-content .courseList-progress,
  .courseList .courseList-item .courseList-content .courseList-completion {
    clear: both;
  }
  .courseList .courseList-item .courseList-content .courseList-progress > .floatL,
  .courseList .courseList-item .courseList-content .courseList-completion > .floatL,
  .courseList .courseList-item .courseList-content .courseList-progress > .floatR,
  .courseList .courseList-item .courseList-content .courseList-completion > .floatR {
    font-size: 16px;
  }
  .courseList .courseList-item .courseList-toDo {
    right: 0px;
    left: calc(40% + 15px);
    top: auto;
    bottom: 139px;
  }
  .courseList .courseList-item .courseList-toDo .courseList-toDo-item,
  .courseList .courseList-item .courseList-toDo .courseList-toDo-cert {
    background-color: transparent;
    border-bottom: 1px solid #333;
    color: #333;
    float: left;
    width: calc(50% - 5px);
    text-align: center;
    height: 32px;
    padding: 0;
  }
  .courseList .courseList-item .courseList-toDo .courseList-toDo-item:not(:last-child),
  .courseList .courseList-item .courseList-toDo .courseList-toDo-cert:not(:last-child) {
    margin-left: 0;
    margin-right: 10px;
  }
  .courseList .courseList-item .courseList-toDo .courseList-toDo-item > div,
  .courseList .courseList-item .courseList-toDo .courseList-toDo-cert > div {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
  }
  .courseList .courseList-item .courseList-toDo .courseList-toDo-item > div:last-child,
  .courseList .courseList-item .courseList-toDo .courseList-toDo-cert > div:last-child {
    line-height: 1.15;
  }
  .courseList .courseList-item .courseList-toDo .courseList-toDo-cert {
    width: 100%;
  }
  .courseList .courseList-item:last-child .courseList-toDo {
    bottom: 109px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .courseList .courseList-item .courseList-content .courseList-subject {
    font-size: 20px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .courseList .courseList-item .courseList-content .courseList-progress > .floatL,
  .courseList .courseList-item .courseList-content .courseList-completion > .floatL,
  .courseList .courseList-item .courseList-content .courseList-progress > .floatR,
  .courseList .courseList-item .courseList-content .courseList-completion > .floatR {
    font-size: 16px;
  }
}
@media (max-width: 768px) and (min-width: 481px) and (max-width: 768px) {
  .courseList .courseList-item .courseList-toDo .courseList-toDo-item > div:first-child,
  .courseList .courseList-item .courseList-toDo .courseList-toDo-cert > div:first-child {
    font-size: 21px;
  }
}
@media (max-width: 768px) and (max-width: 374px) {
  .courseList .courseList-item .courseList-toDo .courseList-toDo-item > div:first-child,
  .courseList .courseList-item .courseList-toDo .courseList-toDo-cert > div:first-child {
    font-size: 17px;
  }
}
@media (max-width: 768px) and (max-width: 374px) {
  .courseList .courseList-item .courseList-toDo {
    left: calc(40% + 10px);
  }
}
@media (max-width: 480px) {
  .courseList .courseList-item .courseList-content .courseList-subject {
    height: 2.4em;
    font-size: 18px;
    line-height: 1.2;
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .courseList .courseList-item .courseList-toDo .courseList-toDo-item,
  .courseList .courseList-item .courseList-toDo .courseList-toDo-cert {
    height: 40px;
  }
  .courseList .courseList-item .courseList-toDo .courseList-toDo-item > div:first-child,
  .courseList .courseList-item .courseList-toDo .courseList-toDo-cert > div:first-child {
    font-size: 26px;
  }
  .courseList .courseList-item .courseList-toDo .courseList-toDo-item > div:last-child,
  .courseList .courseList-item .courseList-toDo .courseList-toDo-cert > div:last-child {
    font-size: 14px;
  }
}
.portalNavBar + .courseInfo {
  margin-top: 30px;
}
.courseInfo .table.table-borderless tr td:first-child,
.courseInfo .table.table-borderless tr td:last-child {
  word-break: normal;
  word-wrap: normal;
}
@media (min-width: 769px) {
  .courseInfo .courseInfo-photo {
    float: right;
    width: 228px;
    margin-left: 25px;
    margin-bottom: 25px;
  }
  .courseInfo .courseInfo-photo + * {
    margin-top: 10px !important;
  }
}
@media (max-width: 768px) {
  .courseInfo .courseInfo-photo {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .portal.portal-notification .tableWrapper {
    width: calc((100% + 30px));
    margin-left: calc(((100% + 30px) - 100%) / 2 * -1);
    padding-left: calc(((100% + 30px) - 100%) / 2);
    padding-right: calc(((100% + 30px) - 100%) / 2);
  }
}
.reportList {
  background-color: #f8f8f8;
  padding-top: 20px;
  z-index: 1;
}
.reportList::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
@media (max-width: 768px) {
  .reportList {
    padding-top: 15px;
  }
}
.reportList .reportListItem {
  font-weight: 400;
  padding: 10px 30px 0;
}
.reportList .reportListItem::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.reportList .reportListItem:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
@media (max-width: 768px) {
  .reportList .reportListItem {
    padding: 10px 15px 0;
  }
}
.reportList .reportListItem > .button {
  min-width: auto;
}
@media (max-width: 768px) {
  .reportList .reportListItem > .button {
    padding-left: 8px;
    padding-right: 8px;
  }
  .reportList .reportListItem > .button .icon {
    margin-right: 0;
  }
}
.reportList .reportListItem > .button + div {
  padding-bottom: 15px;
  padding-top: 3px;
}
.reportList .reportListItem .reportListItem-templates {
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 15px 30px 30px;
  margin-left: -30px;
  margin-right: -30px;
}
@media (max-width: 768px) {
  .reportList .reportListItem .reportListItem-templates {
    padding: 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.reportList .reportListItem .reportListItem-templates .reportListItem-template:not(:last-child) {
  margin-bottom: 15px;
}
.reportList .reportListItem .reportListItem-templates .reportListItem-template::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0c5";
  margin-right: 8px;
  float: left;
}
.reportList .reportListItem .reportListItem-templates .reportListItem-template::before.fa-pull-left {
  margin-right: .3em;
}
.reportList .reportListItem .reportListItem-templates .reportListItem-template::before.fa-pull-right {
  margin-left: .3em;
}
.reportList .reportListItem .reportListItem-templates .reportListItem-template a {
  display: block;
  overflow: hidden;
}
.reportList-table tr td .reportList-table-name::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0c5";
  margin-right: 8px;
  float: left;
}
.reportList-table tr td .reportList-table-name::before.fa-pull-left {
  margin-right: .3em;
}
.reportList-table tr td .reportList-table-name::before.fa-pull-right {
  margin-left: .3em;
}
.reportList-table tr td .reportList-table-name a {
  display: block;
  overflow: hidden;
}
@media (max-width: 768px) {
  .reportList-table.table-resp tbody > tr > td:last-child {
    padding-left: 22px !important;
  }
}
.report {
  padding-top: 40px;
}
.report > .button-secondary.floatR:first-child {
  margin-right: -14px;
}
.report header {
  font-weight: bold;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 30px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .report header {
    font-size: 16px;
  }
}
.report .reportChartList {
  margin-bottom: 30px;
}
.report .reportChartList tr td.reportChartList-container {
  padding: 10px;
  height: 400px;
}
.report .reportChartList tr td.reportChartList-container .reportChartList-item {
  border: 1px solid #ddd;
  width: 100%;
  min-height: 100%;
}
.report .reportChartList tr td.reportChartList-container .reportChartList-item .highcharts-figure {
  margin-bottom: 0px;
  padding: 10px;
}
.report .reportChartList tr td.reportChartList-container .reportChartList-item .highcharts-figure .chartContainer {
  height: 360px;
  width: 100%;
  margin: 0 auto;
}
.report .reportChartList tr td.reportChartList-container .reportChartList-item .highcharts-figure .chartContainer .pieInfo {
  font-size: 13px;
}
.report .reportChartList tr td.reportChartList-container .reportChartList-item .highcharts-figure .chartContainer .pieInfo.pieInfo-number {
  font-weight: bold;
}
.report .reportChartList tr td.reportChartList-container .reportChartList-item .highcharts-figure .chartContainer .pieInfo.pieInfo-number.big {
  font-size: 16px;
  margin-right: 5px;
}
@media (min-width: 970px) {
}
.report .reportChartList tr td.reportChartList-container.large-item {
  width: 100%;
}
.report .reportChartList tr td.reportChartList-container.middle-item {
  width: 50%;
}
.report .reportChartList tr td.reportChartList-container.small-item {
  width: 25%;
}
.report .reportChartList tr td.reportChartList-container:first-child {
  padding-left: 0px;
}
.report .reportChartList tr td.reportChartList-container:last-child {
  padding-right: 0px;
}
.report .reportChartList tr td.reportChartList-container.with-info .highcharts-figure .chartContainer {
  height: 280px;
}
.report .reportChartList tr td.reportChartList-container.with-info .chartInfo {
  text-align: center;
  padding: 20px 0px 20px 0px;
  margin: 0 20px;
  border-top: 1px solid #ddd;
}
.report .reportChartList tr td.reportChartList-container.with-info .chartInfo .chartInfo-item {
  vertical-align: top;
  margin-right: 10px;
  width: calc(33% - 10px);
}
.report .reportChartList tr td.reportChartList-container.with-info .chartInfo .chartInfo-item .chartInfo-number {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .report .reportChartList tr td.reportChartList-container.with-info .chartInfo .chartInfo-item .chartInfo-number {
    font-size: 22px;
  }
}
.report .reportChartList tr td.reportChartList-container.with-info .chartInfo .chartInfo-item .chartInfo-text {
  font-size: 13px;
}
@media (max-width: 768px) {
  .report .reportChartList tr td.reportChartList-container.with-info .chartInfo .chartInfo-item .chartInfo-text {
    font-size: 13px;
  }
}
.report .reportChartList tr td.reportChartList-container.with-info .chartInfo .chartInfo-item:last-child {
  margin-right: 0px;
}
.report .reportChartList tr td.reportChartList-container.reportChartList-container-3row {
  height: 400px;
}
.report .reportChartList tr td.reportChartList-container.reportChartList-container-3row .reportChartList-item .highcharts-figure .chartContainer {
  height: 360px;
}
.report .reportChartList tr td.reportChartList-container.reportChartList-container-3row.with-info .reportChartList-item .highcharts-figure .chartContainer {
  height: 267px;
}
.report .reportChartList tr td.reportChartList-container.reportChartList-container-2row {
  height: 266.66666667px;
}
.report .reportChartList tr td.reportChartList-container.reportChartList-container-2row .reportChartList-item .highcharts-figure .chartContainer {
  height: 226.66666667px;
}
.report .reportChartList tr td.reportChartList-container.reportChartList-container-2row.with-info .reportChartList-item .highcharts-figure .chartContainer {
  height: 133.66666667px;
}
.report .reportChartList tr td.reportChartList-container.reportChartList-container-1row {
  height: 133.33333333px;
}
.report .reportChartList tr td.reportChartList-container.reportChartList-container-1row .reportChartList-item .highcharts-figure .chartContainer {
  height: 93.33333333px;
}
.report .reportChartList tr td.reportChartList-container.reportChartList-container-1row.with-info .reportChartList-item .highcharts-figure .chartContainer {
  height: 0.33333333px;
}
@media (min-width: 769px) {
  .report .reportChartList tr td.reportChartList-container.small-item-in3 {
    width: 33.3%;
  }
}
.report .reportChartList tr td.reportChartList-container .chartInfo {
  text-align: center;
  padding: 34px 0px 8px 0px;
  margin: 0 20px;
  border-top: 1px solid #ddd;
}
.report .reportChartList tr td.reportChartList-container .chartInfo:first-child {
  border-top: 0;
}
.report .reportChartList tr td.reportChartList-container .chartInfo:first-child ~ .chartInfo {
  margin-top: 15px;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-subject {
  font-weight: bold;
  font-weight: 600;
  text-align: left;
  font-size: 16px;
  position: absolute;
  left: 0px;
  top: 8px;
  width: 100%;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item {
  vertical-align: top;
  margin-right: 8px;
  width: calc(25% - 10px);
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item .chartInfo-number {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item .chartInfo-number {
    font-size: 22px;
  }
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item .chartInfo-text {
  font-size: 13px;
}
@media (max-width: 768px) {
  .report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item .chartInfo-text {
    font-size: 13px;
  }
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure {
  display: block;
  margin-left: auto;
  margin-right: auto !important;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 80%;
  min-width: 205px;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure .chartInfo-number {
  font-size: 13px;
  margin-bottom: 0;
  margin-left: 10px;
  float: right;
}
@media (max-width: 768px) {
  .report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure .chartInfo-number {
    font-size: 13px;
  }
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure .chartInfo-text {
  display: block;
  overflow: hidden;
  text-align: left;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure .chartInfo-item-figure-box {
  float: left;
  margin-right: 10px;
  width: 13px;
  height: 13px;
  margin-top: 2.6px;
  background-color: grey;
}
@media (max-width: 768px) {
  .report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure .chartInfo-item-figure-box {
    width: 13px;
    height: 13px;
    margin-top: 2.6px;
  }
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:first-of-type .chartInfo-item-figure-box,
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(10n + 1) .chartInfo-item-figure-box {
  background-color: #6590e7;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(2) .chartInfo-item-figure-box,
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(10n + 2) .chartInfo-item-figure-box {
  background-color: #f45e64;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(3) .chartInfo-item-figure-box,
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(10n + 3) .chartInfo-item-figure-box {
  background-color: #02cab9;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(4) .chartInfo-item-figure-box,
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(10n + 4) .chartInfo-item-figure-box {
  background-color: #ffbb30;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(5) .chartInfo-item-figure-box,
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(10n + 5) .chartInfo-item-figure-box {
  background-color: #2dcb6d;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(6) .chartInfo-item-figure-box,
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(10n + 6) .chartInfo-item-figure-box {
  background-color: #8361ec;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(7) .chartInfo-item-figure-box,
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(10n + 7) .chartInfo-item-figure-box {
  background-color: #bf851c;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(8) .chartInfo-item-figure-box,
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(10n + 8) .chartInfo-item-figure-box {
  background-color: #28dae2;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(9) .chartInfo-item-figure-box,
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(10n + 9) .chartInfo-item-figure-box {
  background-color: #f78686;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(10) .chartInfo-item-figure-box,
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item.chartInfo-item-figure:nth-of-type(10n + 10) .chartInfo-item-figure-box {
  background-color: #60b314;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item:last-child {
  margin-right: 0px;
}
.report .reportChartList tr td.reportChartList-container .chartInfo .chartInfo-item-br {
  padding-bottom: 58px;
}
@media (max-width: 768px) {
  .report .reportChartList tr td.reportChartList-container {
    display: block;
    padding: 10px 0px;
    height: auto;
  }
  .report .reportChartList tr td.reportChartList-container.large-item {
    width: 100%;
  }
  .report .reportChartList tr td.reportChartList-container.middle-item {
    width: 100%;
  }
  .report .reportChartList tr td.reportChartList-container.small-item {
    width: 100%;
  }
}
.reportInfo {
  background: #f8f8f8;
  padding: 30px 36px 20px 36px;
}
.reportInfo::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.reportInfo .reportInfo-item {
  vertical-align: top;
  font-size: 13px;
  margin-right: 50px;
  max-width: 250px;
}
@media (max-width: 768px) {
  .reportInfo .reportInfo-item {
    font-size: 13px;
  }
}
.reportInfo .reportInfo-item .reportInfo-itemTitle {
  color: #0059ae;
  font-weight: 400;
}
.reportInfo .reportInfo-item .reportInfo-itemDetail {
  color: #999;
  word-break: break-word;
  word-wrap: break-word;
}
.reportInfo .reportInfo-item:not(:last-child) {
  margin-bottom: 10px;
}
.reportInfo .reportInfo-right {
  float: right;
  border-left: 1px solid #eee;
}
.reportInfo .reportInfo-right .reportInfo-item {
  float: right;
  margin-left: 30px;
  max-width: 100%;
}
.reportInfo .reportInfo-right .reportInfo-item .reportInfo-itemTitle {
  color: #333;
}
.reportInfo .reportInfo-right .reportInfo-item .reportInfo-itemDetail {
  font-size: 15px;
  font-weight: 400;
  color: #333;
}
@media (max-width: 768px) {
  .reportInfo .reportInfo-right .reportInfo-item .reportInfo-itemDetail {
    font-size: 15px;
  }
}
@media (min-width: 970px) {
  .reportInfo .reportInfo-right {
    max-width: 50%;
  }
}
@media (max-width: 969px) {
  .reportInfo {
    padding: 30px 15px 20px;
  }
  .reportInfo .reportInfo-right {
    float: none;
  }
  .reportInfo .reportInfo-right::after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
  }
  .reportInfo .reportInfo-right .reportInfo-item {
    text-align: left;
    float: left;
    margin-left: 0;
    margin-right: 30px;
  }
  .reportInfo .reportInfo-right:first-child {
    border-left: 0;
    border-bottom: 1px solid #eee;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .reportInfo * ~ .reportInfo-right {
    border-left: 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
    padding-top: 15px;
  }
}
.page {
  width: 95%;
  max-width: 1800px;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
}
.page .pageSubject .pageSubject-icon {
  float: left;
  height: 30px;
  margin-right: 8px;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #777;
  font-size: 22px;
  margin-right: 10px;
}
.page .pageSubject .pageSubject-icon.fa-pull-left {
  margin-right: .3em;
}
.page .pageSubject .pageSubject-icon.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  .page .pageSubject .pageSubject-icon {
    font-size: 22px;
  }
}
.page .pageSubject .pageSubject-icon::before {
  content: "\f15c";
}
.page .pageSubject .pageSubject-text {
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page .pageSubject .pageSubject-text {
    font-size: 20px;
  }
}
.page .pageArticle {
  line-height: 1.5;
}
.page .pageArticle * {
  line-height: inherit;
}
.page .pageArticle p {
  margin-top: 15px;
  margin-bottom: 25px;
  text-align: justify;
}
.page .pageArticle h1,
.page .pageArticle h2,
.page .pageArticle h3,
.page .pageArticle h4,
.page .pageArticle h5,
.page .pageArticle h6 {
  margin-bottom: 15px;
  font-weight: bold;
  font-weight: 600;
}
.page .pageArticle ul,
.page .pageArticle ol {
  padding-left: 20px;
}
.page .pageArticle li {
  margin-top: 20px;
  text-align: justify;
}
.page-noBanner {
  padding-top: 90px;
}
#pSettings {
  width: 95%;
  max-width: 1800px;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-top: 90px;
}
#pSettings .pageSubject .pageSubject-icon {
  float: left;
  height: 30px;
  margin-right: 8px;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #777;
  font-size: 22px;
  margin-right: 10px;
}
#pSettings .pageSubject .pageSubject-icon.fa-pull-left {
  margin-right: .3em;
}
#pSettings .pageSubject .pageSubject-icon.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  #pSettings .pageSubject .pageSubject-icon {
    font-size: 22px;
  }
}
#pSettings .pageSubject .pageSubject-icon::before {
  content: "\f15c";
}
#pSettings .pageSubject .pageSubject-text {
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #pSettings .pageSubject .pageSubject-text {
    font-size: 20px;
  }
}
#pSettings .pageArticle {
  line-height: 1.5;
}
#pSettings .pageArticle * {
  line-height: inherit;
}
#pSettings .pageArticle p {
  margin-top: 15px;
  margin-bottom: 25px;
  text-align: justify;
}
#pSettings .pageArticle h1,
#pSettings .pageArticle h2,
#pSettings .pageArticle h3,
#pSettings .pageArticle h4,
#pSettings .pageArticle h5,
#pSettings .pageArticle h6 {
  margin-bottom: 15px;
  font-weight: bold;
  font-weight: 600;
}
#pSettings .pageArticle ul,
#pSettings .pageArticle ol {
  padding-left: 20px;
}
#pSettings .pageArticle li {
  margin-top: 20px;
  text-align: justify;
}
#pSettings .pageSubject .pageSubject-icon {
  float: left;
  height: 30px;
  margin-right: 8px;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #777;
  font-size: 22px;
  margin-right: 10px;
}
#pSettings .pageSubject .pageSubject-icon.fa-pull-left {
  margin-right: .3em;
}
#pSettings .pageSubject .pageSubject-icon.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  #pSettings .pageSubject .pageSubject-icon {
    font-size: 22px;
  }
}
#pSettings .pageSubject .pageSubject-icon::before {
  content: "\f15c";
}
#pSettings .pageSubject .pageSubject-text {
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #pSettings .pageSubject .pageSubject-text {
    font-size: 20px;
  }
}
#pSettings .pageArticle {
  line-height: 1.5;
}
#pSettings .pageArticle * {
  line-height: inherit;
}
#pSettings .pageArticle p {
  margin-top: 15px;
  margin-bottom: 25px;
  text-align: justify;
}
#pSettings .pageArticle h1,
#pSettings .pageArticle h2,
#pSettings .pageArticle h3,
#pSettings .pageArticle h4,
#pSettings .pageArticle h5,
#pSettings .pageArticle h6 {
  margin-bottom: 15px;
  font-weight: bold;
  font-weight: 600;
}
#pSettings .pageArticle ul,
#pSettings .pageArticle ol {
  padding-left: 20px;
}
#pSettings .pageArticle li {
  margin-top: 20px;
  text-align: justify;
}
#pBanner ~ #pSettings {
  width: 95%;
  max-width: 1800px;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
}
#pBanner ~ #pSettings .pageSubject .pageSubject-icon {
  float: left;
  height: 30px;
  margin-right: 8px;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #777;
  font-size: 22px;
  margin-right: 10px;
}
#pBanner ~ #pSettings .pageSubject .pageSubject-icon.fa-pull-left {
  margin-right: .3em;
}
#pBanner ~ #pSettings .pageSubject .pageSubject-icon.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  #pBanner ~ #pSettings .pageSubject .pageSubject-icon {
    font-size: 22px;
  }
}
#pBanner ~ #pSettings .pageSubject .pageSubject-icon::before {
  content: "\f15c";
}
#pBanner ~ #pSettings .pageSubject .pageSubject-text {
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #pBanner ~ #pSettings .pageSubject .pageSubject-text {
    font-size: 20px;
  }
}
#pBanner ~ #pSettings .pageArticle {
  line-height: 1.5;
}
#pBanner ~ #pSettings .pageArticle * {
  line-height: inherit;
}
#pBanner ~ #pSettings .pageArticle p {
  margin-top: 15px;
  margin-bottom: 25px;
  text-align: justify;
}
#pBanner ~ #pSettings .pageArticle h1,
#pBanner ~ #pSettings .pageArticle h2,
#pBanner ~ #pSettings .pageArticle h3,
#pBanner ~ #pSettings .pageArticle h4,
#pBanner ~ #pSettings .pageArticle h5,
#pBanner ~ #pSettings .pageArticle h6 {
  margin-bottom: 15px;
  font-weight: bold;
  font-weight: 600;
}
#pBanner ~ #pSettings .pageArticle ul,
#pBanner ~ #pSettings .pageArticle ol {
  padding-left: 20px;
}
#pBanner ~ #pSettings .pageArticle li {
  margin-top: 20px;
  text-align: justify;
}
#pBanner ~ #pSettings .pageSubject .pageSubject-icon {
  float: left;
  height: 30px;
  margin-right: 8px;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #777;
  font-size: 22px;
  margin-right: 10px;
}
#pBanner ~ #pSettings .pageSubject .pageSubject-icon.fa-pull-left {
  margin-right: .3em;
}
#pBanner ~ #pSettings .pageSubject .pageSubject-icon.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  #pBanner ~ #pSettings .pageSubject .pageSubject-icon {
    font-size: 22px;
  }
}
#pBanner ~ #pSettings .pageSubject .pageSubject-icon::before {
  content: "\f15c";
}
#pBanner ~ #pSettings .pageSubject .pageSubject-text {
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #pBanner ~ #pSettings .pageSubject .pageSubject-text {
    font-size: 20px;
  }
}
#pBanner ~ #pSettings .pageArticle {
  line-height: 1.5;
}
#pBanner ~ #pSettings .pageArticle * {
  line-height: inherit;
}
#pBanner ~ #pSettings .pageArticle p {
  margin-top: 15px;
  margin-bottom: 25px;
  text-align: justify;
}
#pBanner ~ #pSettings .pageArticle h1,
#pBanner ~ #pSettings .pageArticle h2,
#pBanner ~ #pSettings .pageArticle h3,
#pBanner ~ #pSettings .pageArticle h4,
#pBanner ~ #pSettings .pageArticle h5,
#pBanner ~ #pSettings .pageArticle h6 {
  margin-bottom: 15px;
  font-weight: bold;
  font-weight: 600;
}
#pBanner ~ #pSettings .pageArticle ul,
#pBanner ~ #pSettings .pageArticle ol {
  padding-left: 20px;
}
#pBanner ~ #pSettings .pageArticle li {
  margin-top: 20px;
  text-align: justify;
}
#pSettings .pageSubject .pageSubject-icon::before {
  content: "\f013";
}
#pSettings .settingItem {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1);
  font-weight: 400;
  color: #000;
}
#pSettings .settingItem > .floatR + div {
  overflow: hidden;
}
#pSettings .settingItem:not(:last-child) {
  margin-bottom: 15px;
}
#pSettings > a:not(:last-child) > .settingItem {
  margin-bottom: 15px;
}
#pNotification {
  width: 95%;
  max-width: 1800px;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
}
@media (max-width: 768px) {
  #pNotification {
    width: 100%;
  }
}
#pNotification .portalNavBar + .notification {
  margin-top: 20px;
}
#pNotification .notificationSubject .notificationSubject-icon {
  float: left;
  height: 30px;
  margin-right: 8px;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #777;
  font-size: 22px;
  margin-right: 10px;
}
#pNotification .notificationSubject .notificationSubject-icon.fa-pull-left {
  margin-right: .3em;
}
#pNotification .notificationSubject .notificationSubject-icon.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  #pNotification .notificationSubject .notificationSubject-icon {
    font-size: 22px;
  }
}
#pNotification .notificationSubject .notificationSubject-icon::before {
  content: "\f0f3";
}
#pNotification .notificationSubject .notificationSubject-text {
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #pNotification .notificationSubject .notificationSubject-text {
    font-size: 20px;
  }
}
.notification {
  background: #fff;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.15);
}
.notification > *:not(:last-child) {
  margin-bottom: 10px;
}
.notification a {
  display: inline-block;
}
.notification .notification-title {
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}
.notification .notification-title .notification-new {
  background: #f96c6c;
  color: #fff;
  font-size: 13px;
  padding: 2px 5px 3px 5px;
  line-height: 16px;
  top: 2px;
  border-radius: 2px;
  vertical-align: top;
  margin-left: 8px;
  float: right;
}
@media (max-width: 768px) {
  .notification .notification-title .notification-new {
    font-size: 13px;
  }
}
.notification .notification-content {
  color: #666;
}
.notification .notification-date {
  color: #999;
  font-size: 13px;
  padding: 8px 15px;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 5px;
  margin-bottom: -15px;
  border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
  .notification .notification-date {
    font-size: 13px;
  }
}
.notification .notification-date:before {
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f017";
  margin-right: 8px;
}
.notification .notification-date:before.fa-pull-left {
  margin-right: .3em;
}
.notification .notification-date:before.fa-pull-right {
  margin-left: .3em;
}
.notification .notification-date:before.fa-pull-left {
  margin-right: .3em;
}
.notification .notification-date:before.fa-pull-right {
  margin-left: .3em;
}
.notification .notification-content > div {
  margin-bottom: 30px;
}
.notification .notification-content + .notification-content {
  border-top: 1px dashed #aaa;
  padding-top: 30px;
}
.fullPageMsg {
  text-align: center;
  height: calc(100vh - 48px - 180px - 60px - 50px - 210px);
  min-height: 400px;
}
.fullPageMsg .icon {
  font-size: 110px;
  margin-top: 50px;
  color: #0059ae;
  line-height: 1;
  filter: drop-shadow(5px 13px 0px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(5px 13px 0px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(5px 13px 0px rgba(0, 0, 0, 0.1));
}
.fullPageMsg .subtitle {
  font-size: 30px;
  color: #0059ae;
}
.fullPageMsg .subtitle ~ div {
  font-weight: 500;
  color: #777;
}
.fullPageMsg .subtitle ~ div.itemInput {
  float: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
.fullPageMsg .subtitle ~ div.itemInput input {
  text-align: center;
}
.fullPageMsg > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.fullPageMsg > div > span {
  max-width: 95%;
  vertical-align: middle;
}
.fullPageMsg > div:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.fullPageMsg + .form-submission {
  margin-top: 30px;
  margin-bottom: 90px;
}
@media (max-height: 900px) {
  .fullPageMsg {
    min-height: 300px;
  }
  .fullPageMsg .icon {
    margin-top: 0;
  }
  .fullPageMsg .icon + .subtitle {
    margin: 20px 0 10px;
  }
  .fullPageMsg + .form-submission {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
#blkAccessDenied {
  text-align: center;
  height: calc(100vh - 48px - 180px - 60px - 50px - 210px);
  min-height: 400px;
}
#blkAccessDenied .icon {
  font-size: 110px;
  margin-top: 50px;
  color: #0059ae;
  line-height: 1;
  filter: drop-shadow(5px 13px 0px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(5px 13px 0px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(5px 13px 0px rgba(0, 0, 0, 0.1));
}
#blkAccessDenied .subtitle {
  font-size: 30px;
  color: #0059ae;
}
#blkAccessDenied .subtitle ~ div {
  font-weight: 500;
  color: #777;
}
#blkAccessDenied .subtitle ~ div.itemInput {
  float: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
#blkAccessDenied .subtitle ~ div.itemInput input {
  text-align: center;
}
#blkAccessDenied > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#blkAccessDenied > div > span {
  max-width: 95%;
  vertical-align: middle;
}
#blkAccessDenied > div:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#blkAccessDenied + .form-submission {
  margin-top: 30px;
  margin-bottom: 90px;
}
@media (max-height: 900px) {
  #blkAccessDenied {
    min-height: 300px;
  }
  #blkAccessDenied .icon {
    margin-top: 0;
  }
  #blkAccessDenied .icon + .subtitle {
    margin: 20px 0 10px;
  }
  #blkAccessDenied + .form-submission {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
#blkAccessDenied .icon {
  font-size: 110px;
  margin-top: 50px;
  color: #0059ae;
  line-height: 1;
  filter: drop-shadow(5px 13px 0px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(5px 13px 0px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(5px 13px 0px rgba(0, 0, 0, 0.1));
}
#blkAccessDenied .subtitle {
  font-size: 30px;
  color: #0059ae;
}
#blkAccessDenied .subtitle ~ div {
  font-weight: 500;
  color: #777;
}
#blkAccessDenied .subtitle ~ div.itemInput {
  float: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
#blkAccessDenied .subtitle ~ div.itemInput input {
  text-align: center;
}
#blkAccessDenied > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#blkAccessDenied > div > span {
  max-width: 95%;
  vertical-align: middle;
}
#blkAccessDenied > div:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#blkAccessDenied + .form-submission {
  margin-top: 30px;
  margin-bottom: 90px;
}
@media (max-height: 900px) {
  #blkAccessDenied {
    min-height: 300px;
  }
  #blkAccessDenied .icon {
    margin-top: 0;
  }
  #blkAccessDenied .icon + .subtitle {
    margin: 20px 0 10px;
  }
  #blkAccessDenied + .form-submission {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
#blkAccessDenied .icon {
  color: #ca5555;
}
.announcement .announcement-subject {
  font-weight: bold;
  font-weight: 600;
  margin-bottom: 10px;
}
.announcement .announcement-date,
.announcement .announcement-source,
.announcement .announcement-pinned {
  font-size: 14px;
  color: #aaa;
  margin-top: 0;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .announcement .announcement-date,
  .announcement .announcement-source,
  .announcement .announcement-pinned {
    font-size: 14px;
  }
}
.announcement .announcement-date .icon,
.announcement .announcement-source .icon,
.announcement .announcement-pinned .icon {
  margin-right: 5px;
}
.announcement .announcement-content {
  margin-top: 30px;
}
#tblMyRecord tr {
  padding: 15px 0 20px !important;
}
#tblMyRecord td.bolder {
  font-weight: bold;
  font-weight: 600;
}
#tblMyRecord .myRecord-completed {
  padding-left: 22px;
}
@media (max-width: 768px) {
  #tblMyRecord .myRecord-completed {
    padding-left: 22px;
  }
}
#tblMyRecord .myRecord-completed::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline;
  position: absolute;
  left: 0;
  top: 0;
  content: "\f058";
  color: #0ea84f;
  font-size: inherit;
  z-index: 1;
}
#tblMyRecord .myRecord-completed::before.fa-pull-left {
  margin-right: .3em;
}
#tblMyRecord .myRecord-completed::before.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  #tblMyRecord tbody > tr:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  #tblMyRecord tbody tr td:first-child {
    padding-right: 20px !important;
  }
  #tblMyRecord tbody tr td:first-child > span:nth-child(2) {
    font-size: 14px;
  }
  #tblMyRecord tbody tr td:first-child:after {
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f078";
    position: absolute;
    right: 0;
    top: 10px;
  }
  #tblMyRecord tbody tr td:first-child:after.fa-pull-left {
    margin-right: .3em;
  }
  #tblMyRecord tbody tr td:first-child:after.fa-pull-right {
    margin-left: .3em;
  }
  #tblMyRecord tbody tr td:first-child + td + td + td ~ td {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
  }
  #tblMyRecord tbody tr td:first-child.showDetails:after {
    content: "\f077";
  }
  #tblMyRecord tbody tr td:first-child.showDetails + td + td ~ td:not(.hide-m) {
    height: auto;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  #tblMyRecord .th-m {
    color: #333;
  }
  #tblMyRecord .button.button-secondary {
    display: inline-block;
    font-size: 14px;
  }
}
#blkChangeLang-m > form > div {
  margin-bottom: 25px;
}
@media (min-width: 970px) {
  #sltCourseCat {
    width: 320px;
  }
}
#blkPortalOptions-m .dialog-content {
  padding-bottom: 80px;
  min-height: 320px;
}
#blkPortalOptions-m #sltCourseCat .bootstrap-select .dropdown-menu[role="combobox"],
#blkPortalOptions-m .portalOptions-selector-long .bootstrap-select .dropdown-menu[role="combobox"] {
  max-height: 345px;
  overflow: auto;
}
/* Import in portal */
.portal .import-steps {
  width: 80%;
  margin: 0 auto;
  height: 120px;
  margin-top: 20px;
}
.portal .import-steps ul li {
  display: inline-block;
}
.portal .import-steps ul li:nth-child(n+2) {
  width: 32%;
}
@media (max-width: 767px) {
  .portal .import-steps ul li:nth-child(n+2) {
    width: 30%;
  }
}
.portal .import-steps ul li:first-child,
.portal .import-steps ul li:last-child {
  width: 16%;
}
.portal .import-steps .step-line {
  margin-top: 30px;
  border-top: 3px solid #ddd;
  position: relative;
}
.portal .import-steps .step-line.current,
.portal .import-steps .step-line.passed {
  border-color: #0059ae;
}
.portal .import-steps .step-status {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  z-index: 1;
}
.portal .import-steps .step-txt {
  color: #d0d0d0;
  margin-top: 0.5em;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.portal .import-steps .step-line.passed .step-txt {
  color: #0059ae;
}
.portal .import-steps .step-line.current .step-txt {
  color: #0059ae;
}
.portal .import-steps .step-no {
  background: #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 1.05rem;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}
.portal .import-steps .step-line.passed .step-no {
  background: #fff;
  border: 1px solid #0059ae;
  color: #0059ae;
}
.portal .import-steps .step-line.current .step-no {
  background: #0059ae;
  border: 1px solid #0059ae;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .portal .import-steps .step-txt {
    display: none;
  }
  .portal .import-steps {
    width: 100%;
  }
}
.portal .form.import-content .item {
  width: 180px;
  margin: 0 auto;
}
.portal .form.import-content .item .itemLabel {
  float: left;
  width: auto;
}
.portal .form.import-content .item .itemInput {
  float: right;
  width: auto;
}
@media (max-width: 768px) {
  .portal .form.import-content .item .itemInput {
    padding-top: 0px;
  }
}
.portal .form.import-content .import-warn {
  color: #ca5555 !important;
  font-weight: bold;
}
.portal .portalArea .import-steps ~ .form:not(.form-style1):not(.form-style2) {
  padding-left: 36px;
  padding-right: 36px;
}
/* Override BS */
.portal input[type="text"].form-control input[type="number"].form-control {
  border-width: 0;
}
.portal input[type="text"].form-control input[type="number"].form-control,
.portal input[type="text"].form-control input[type="number"].form-control:focus {
  background-image: linear-gradient(0deg, #0059ae 1px, rgba(0, 89, 174, 0) 0), linear-gradient(0deg, rgba(0, 0, 0, 0.26) 1px, transparent 0);
}
.portal .input-group + .text-danger {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  margin-bottom: 20px;
  color: #dd2c00;
}
.portal .input-group + .text-danger + .remark {
  margin-top: -15px !important;
}
.itemInput .portal .input-group + .text-danger {
  margin-bottom: 0;
}
.itemInput .portal .input-group + .text-danger + .remark {
  margin-top: 0 !important;
}
.portal .input-group + .text-danger.remark-warn {
  color: #dd2c00;
}
.portal .input-group + .text-danger.remark-warn + .remark {
  overflow: hidden;
}
.portal .input-group + .text-danger > .icon {
  float: left;
  margin-right: 5px;
}
.portal .input-group + .text-danger > .icon + * {
  display: block;
  overflow: hidden;
}
.portal .input-group + .text-danger img {
  height: 18.2px;
  padding-top: 1px;
  padding-bottom: 1px;
  vertical-align: top;
}
.portal .input-group + .text-danger + .remark {
  margin-top: -15px !important;
}
.itemInput .portal .input-group + .text-danger {
  margin-bottom: 0;
}
.itemInput .portal .input-group + .text-danger + .remark {
  margin-top: 0 !important;
}
.portal .input-group + .text-danger.remark-warn {
  color: #dd2c00;
}
.portal .input-group + .text-danger.remark-warn + .remark {
  overflow: hidden;
}
.portal .input-group + .text-danger > .icon {
  float: left;
  margin-right: 5px;
}
.portal .input-group + .text-danger > .icon + * {
  display: block;
  overflow: hidden;
}
.portal .input-group + .text-danger img {
  height: 18.2px;
  padding-top: 1px;
  padding-bottom: 1px;
  vertical-align: top;
}
.portal .input-group + .text-danger + .remark {
  overflow: hidden;
}
.portal .input-group + .text-danger + .remark {
  overflow: hidden;
}
/* End of Portal */
/* Classroom */
#pClassroom {
  width: 95%;
  max-width: 1800px;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
}
@media (max-width: 768px) {
  #pClassroom {
    padding-top: 15px;
  }
}
@media (max-width: 480px) {
  #pClassroom .classroom-header .classroom-subject {
    margin-bottom: 20px;
  }
  #pClassroom .classroom-header + .divider {
    margin-top: 15px;
    margin-bottom: 10px;
  }
  #pClassroom .classroom-charts {
    margin-bottom: 10px;
    padding-bottom: 0;
  }
}
.classroom-header .classroom-subject {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 25px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .classroom-header .classroom-subject {
    font-size: 20px;
  }
}
@media (min-width: 769px) {
  .classroom-header .classroom-subject {
    padding-right: 30%;
  }
}
.classroom-header .classroom-progressBars {
  margin-top: 50px;
  margin-bottom: 50px;
}
.classroom-header .classroom-progress {
  clear: both;
  margin-bottom: 18px;
  overflow: hidden;
}
.classroom-header .classroom-progress > .floatL,
.classroom-header .classroom-progress > .floatR {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .classroom-header .classroom-progress > .floatL,
  .classroom-header .classroom-progress > .floatR {
    font-size: 12px;
  }
}
.classroom-header .classroom-progress > .floatL {
  font-weight: bold;
  font-weight: 600;
}
.classroom-header .classroom-progress > div:not(.floatL):not(.floatR) {
  clear: both;
}
.classroom-header .classroom-progress .progress {
  height: 8px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: #eee;
}
.classroom-header .classroom-progress .progress .progressbar-inProgress {
  background-color: #ffba00;
}
.classroom-header .classroom-progress .progress .progressbar-finished {
  background-color: #15ba5b;
}
.classroom-header .classroom-progress .progress .progressbar-passed {
  background-color: #5b8bee;
}
.classroom-header .classroom-progress > .floatL,
.classroom-header .classroom-progress > .floatR {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .classroom-header .classroom-progress > .floatL,
  .classroom-header .classroom-progress > .floatR {
    font-size: 12px;
  }
}
.classroom-header .classroom-progress > .floatL {
  font-weight: bold;
  font-weight: 600;
}
.classroom-header .classroom-progress > div:not(.floatL):not(.floatR) {
  clear: both;
}
.classroom-header .classroom-progress .progress {
  height: 8px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: #eee;
}
.classroom-header .classroom-progress .progress .progressbar-inProgress {
  background-color: #ffba00;
}
.classroom-header .classroom-progress .progress .progressbar-finished {
  background-color: #15ba5b;
}
.classroom-header .classroom-progress .progress .progressbar-passed {
  background-color: #5b8bee;
}
@media (min-width: 769px) {
  .classroom-header .classroom-progress {
    padding-right: 15%;
  }
}
.classroom-header .classroom-progress-wrapper {
  overflow: hidden;
}
.classroom-header .classroom-progress-wrapper .classroom-progress,
.classroom-header .classroom-progress-wrapper .classroom-progress .progress,
.classroom-header .classroom-progress-wrapper .classroom-progress .floatL,
.classroom-header .classroom-progress-wrapper .classroom-progress .floatR {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.classroom-header .classroom-progress-wrapper.showClassroomProgressWrapper {
  height: auto;
}
.classroom-header .classroom-progress-wrapper:not(.showClassroomProgressWrapper) .classroom-progress {
  overflow: hidden;
}
.classroom-header .classroom-progress-wrapper:not(.showClassroomProgressWrapper) .classroom-progress,
.classroom-header .classroom-progress-wrapper:not(.showClassroomProgressWrapper) .classroom-progress .floatL,
.classroom-header .classroom-progress-wrapper:not(.showClassroomProgressWrapper) .classroom-progress .floatR {
  margin-bottom: 0;
}
.classroom-header .classroom-progress-wrapper:not(.showClassroomProgressWrapper) .classroom-progress,
.classroom-header .classroom-progress-wrapper:not(.showClassroomProgressWrapper) .classroom-progress .progress {
  height: 0;
}
.classroom-header .classroom-progress-toggle {
  text-align: center;
}
@media (min-width: 769px) {
  .classroom-header .classroom-progress-toggle {
    padding-right: 15%;
  }
}
.classroom-header .classroom-progress-toggle .button .icon + span + span {
  display: none;
}
.classroom-header .classroom-progress-toggle .button.showClassroomProgressWrapper .icon::before {
  content: "\f077";
}
.classroom-header .classroom-progress-toggle .button.showClassroomProgressWrapper .icon + span {
  display: none;
}
.classroom-header .classroom-progress-toggle .button.showClassroomProgressWrapper .icon + span + span {
  display: inline-block;
}
.classroom-header .classroom-info {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
  overflow: hidden;
}
.classroom-header .classroom-info::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
@media (max-width: 768px) {
  .classroom-header .classroom-info {
    font-size: 12px;
  }
}
.classroom-header .classroom-info > .floatL {
  margin-top: 5px;
}
.classroom-header .classroom-info > .floatL:not(:last-child) {
  margin-right: 22px;
}
.classroom-header .classroom-info .icon,
.classroom-header .classroom-info .fas,
.classroom-header .classroom-info .far,
.classroom-header .classroom-info .fa,
.classroom-header .classroom-info .fab {
  margin-right: 6px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .classroom-header .classroom-info .icon,
  .classroom-header .classroom-info .fas,
  .classroom-header .classroom-info .far,
  .classroom-header .classroom-info .fa,
  .classroom-header .classroom-info .fab {
    font-size: 13px;
  }
}
.classroom-header .classroom-info::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
@media (max-width: 768px) {
  .classroom-header .classroom-info {
    font-size: 12px;
  }
}
.classroom-header .classroom-info > .floatL {
  margin-top: 5px;
}
.classroom-header .classroom-info > .floatL:not(:last-child) {
  margin-right: 22px;
}
.classroom-header .classroom-info .icon,
.classroom-header .classroom-info .fas,
.classroom-header .classroom-info .far,
.classroom-header .classroom-info .fa,
.classroom-header .classroom-info .fab {
  margin-right: 6px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .classroom-header .classroom-info .icon,
  .classroom-header .classroom-info .fas,
  .classroom-header .classroom-info .far,
  .classroom-header .classroom-info .fa,
  .classroom-header .classroom-info .fab {
    font-size: 13px;
  }
}
.classroom-courseList {
  border-top: 3px solid #0059ae;
  background-color: #f8f8f8;
  padding: 25px 30px 15px;
}
@media (max-width: 768px) {
  .classroom-courseList {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.classroom-courseList::before {
  position: absolute;
  content: "";
  left: 40px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #0059ae;
}
.classroom-courseList::after {
  position: absolute;
  content: "";
  left: 44px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}
@media (max-width: 768px) {
  .classroom-courseList table thead {
    display: none;
  }
}
.classroom-courseList table thead th {
  font-size: 14px;
  padding-right: 10px;
  vertical-align: top;
}
@media (max-width: 768px) {
  .classroom-courseList table thead th {
    font-size: 14px;
  }
}
@media (min-width: 769px) {
  .classroom-courseList table thead + tbody tr:first-child td {
    padding-top: 15px;
  }
  .classroom-courseList table thead + tbody tr:first-child td:not(:first-child):not(:last-child):not(:nth-child(2)) {
    padding-top: 17px;
  }
  .classroom-courseList table thead + tbody tr:first-child.classroom-courseList-finished > td:first-child:before {
    top: 15px;
  }
}
.classroom-courseList table tbody:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.classroom-courseList table tbody tr:first-child td:nth-child(2) {
  font-weight: 500;
}
.classroom-courseList table tbody tr td:first-child:last-child {
  font-weight: 500;
}
.classroom-courseList table .classroom-courseList-inactive * {
  color: #bbb !important;
  pointer-events: none;
}
@media (min-width: 769px) {
  .classroom-courseList table .classroom-courseList-finished > td:first-child::before {
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    position: absolute;
    left: -10px;
    top: 0;
    content: "\f058";
    color: #0ea84f;
    font-size: 18px;
    z-index: 1;
  }
  .classroom-courseList table .classroom-courseList-finished > td:first-child::before.fa-pull-left {
    margin-right: .3em;
  }
  .classroom-courseList table .classroom-courseList-finished > td:first-child::before.fa-pull-right {
    margin-left: .3em;
  }
  .classroom-courseList table tbody:not(:last-child) tr:last-child td {
    padding-bottom: 30px;
  }
  .classroom-courseList table tbody:not(:last-child) + tbody tr:first-child td {
    padding-top: 30px;
  }
  .classroom-courseList table tbody:not(:last-child) + tbody tr:first-child td:not(:first-child):not(:last-child):not(:nth-child(2)) {
    padding-top: 32px;
  }
  .classroom-courseList table tbody:not(:last-child) + tbody tr:first-child td:first-child:before {
    top: 30px;
  }
  .classroom-courseList table tr td {
    padding: 0 15px 15px 0;
  }
  .classroom-courseList table tr td .button {
    margin-top: -3px;
  }
  .classroom-courseList table tr td:first-child {
    padding-left: 20px;
  }
  .classroom-courseList table tr td:not(:first-child):not(:last-child):not(:nth-child(2)) {
    font-size: 14px;
    padding-top: 2px;
    min-width: 110px;
  }
  .classroom-courseList table tr td:not(:first-child):last-child {
    width: 1%;
    text-align: right;
  }
  .classroom-courseList table tr td:not(:first-child):last-child .icon-button {
    margin-top: -3px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .classroom-courseList table tr td:nth-child(3) {
    display: inline-block;
    border-right: 1px solid #ddd;
    padding-right: 10px;
    margin-right: 7px;
  }
  .classroom-courseList table tr td:nth-child(4) {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .classroom-courseList table {
    font-size: 14px;
  }
  .classroom-courseList table .classroom-courseList-finished::before {
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    position: absolute;
    left: -30px;
    top: 10px;
    margin-top: -3px;
    content: "\f058";
    color: #0ea84f;
    font-size: 18px;
    z-index: 1;
  }
  .classroom-courseList table .classroom-courseList-finished::before.fa-pull-left {
    margin-right: .3em;
  }
  .classroom-courseList table .classroom-courseList-finished::before.fa-pull-right {
    margin-left: .3em;
  }
  .classroom-courseList table .classroom-courseList-finished > td:first-child::before {
    font-size: 18px;
  }
  .classroom-courseList table,
  .classroom-courseList table tbody,
  .classroom-courseList table tr,
  .classroom-courseList table td {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }
  .role-learner .classroom-courseList table tbody {
    padding-left: 30px;
  }
  .classroom-courseList table tbody + tbody tr:first-child {
    padding-top: 40px;
  }
  .classroom-courseList table tbody + tbody tr:first-child.classroom-courseList-finished::before,
  .classroom-courseList table tbody + tbody tr:first-child td:not(:first-child):last-child {
    top: 40px;
  }
  .classroom-courseList table tr {
    clear: both;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .role-learner .classroom-courseList table tr {
    padding-right: 55px;
  }
  .classroom-courseList table tr:last-child {
    padding-bottom: 25px;
  }
  .classroom-courseList table tr td:first-child:not(:last-child) {
    float: left;
    padding-right: 10px;
    min-width: 3em;
  }
  .classroom-courseList table tr td:first-child:not(:last-child) ~ td {
    overflow: hidden;
  }
  .classroom-courseList table tr td:nth-child(2) {
    margin-bottom: 8px;
  }
  .classroom-courseList table tr td:nth-child(2) ~ td {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .classroom-courseList table tr td:not(:first-child):last-child {
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 0;
  }
  .classroom-courseList table tr td:not(:first-child):last-child .button {
    vertical-align: middle;
    font-size: 22px;
    min-width: auto;
    padding-left: 7px;
    padding-right: 7px;
  }
  .classroom-courseList table tr td:not(:first-child):last-child .button span:not(.icon) {
    display: none;
  }
  .classroom-courseList table tr td:not(:first-child):last-child .button .icon {
    margin-left: 0;
  }
  .classroom-courseList table tr td:not(:first-child):last-child .icon-button {
    font-size: 22px;
  }
  .classroom-courseList table tr td:not(:first-child):not(:last-child):not(:nth-child(2)) {
    font-size: 14px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .classroom-courseList table tr td:not(:first-child):last-child .button {
    font-size: 22px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .classroom-courseList table tr td:not(:first-child):last-child .icon-button {
    font-size: 22px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .classroom-courseList table {
    table-layout: fixed;
    /* For word wrap in IE */
  }
}
@supports (-ms-ime-align:auto) {
  .classroom-courseList table {
    table-layout: fixed;
    /* For word wrap in Edge */
  }
}
@media (max-width: 768px) {
  .classroom-courseList table tbody tr td:not(:first-child):not(:last-child):not(:nth-child(2)) {
    font-size: 13px;
  }
}
.classroom-courseList table tbody tr:not(.classroom-courseList-inactive) td:not(:last-child) .hide-d {
  color: #333;
}
.classroom-courseList table tbody tr:not(.classroom-courseList-inactive) td:not(:last-child) a:not(:hover) {
  color: #333 !important;
}
.classroom-courseList table tbody tr td:nth-child(2) {
  word-break: break-word;
  word-wrap: break-word;
}
.classroom-courseList table tbody tr:first-child td:nth-child(2) {
  font-weight: 600;
}
@media (max-width: 768px) {
  .classroom-courseList table tr {
    padding-right: 50px;
  }
  .role-learner .classroom-courseList table tr {
    padding-right: 50px;
  }
}
.classroom-charts {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.classroom-charts::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.classroom-charts .donut-size {
  margin-right: 50px;
}
@media (min-width: 769px) {
  .classroom-charts .donut-size {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .classroom-charts {
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .classroom-charts::-webkit-scrollbar {
    display: none;
  }
  .classroom-charts .donut-size {
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    margin-right: 5px;
  }
  .classroom-charts .donut-size:first-child {
    margin-left: 5px;
  }
  .classroom-charts .donut-size .pie-title {
    font-size: 16px;
  }
}
#pClassroomInnerNav {
  background-color: #666666;
  position: fixed;
  width: 100%;
  line-height: 40px;
  color: #fff;
  z-index: 2;
}
#pClassroomInnerNav::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
#pClassroomInnerNav + * {
  margin-top: 40px;
  z-index: 1;
}
#pClassroomInnerNav + article {
  margin-top: 0;
  padding-top: 40px;
}
@media (min-width: 769px) {
  #pClassroomInnerNav {
    top: 48px;
  }
  #pClassroomInnerNav > .floatL ~ .classroomInnerNav-title:before {
    content: "";
    display: inline-block;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    height: 20px;
    position: absolute;
    top: 10px;
    left: 0;
  }
}
@media (max-width: 768px) {
  #pClassroomInnerNav {
    position: relative;
  }
  #pClassroomInnerNav > .floatL ~ .classroomInnerNav-title {
    padding-left: 0;
  }
  #pClassroomInnerNav > .floatR ~ .classroomInnerNav-title {
    padding-right: 0;
  }
  #pClassroomInnerNav + * {
    margin-top: 0px;
  }
  #pClassroomInnerNav + article {
    padding-top: 0;
  }
  #pClassroomInnerNav.scrollTopFix-fixed + * {
    padding-top: 40px;
  }
}
#pClassroomInnerNav .classroomInnerNav-back {
  background: #666666;
  padding: 0 20px;
  color: inherit;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#pClassroomInnerNav .classroomInnerNav-back::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
#pClassroomInnerNav .classroomInnerNav-back:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
#pClassroomInnerNav .classroomInnerNav-back:before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f053";
  margin-right: 8px;
  font-size: 19px;
  float: left;
}
#pClassroomInnerNav .classroomInnerNav-back:before.fa-pull-left {
  margin-right: .3em;
}
#pClassroomInnerNav .classroomInnerNav-back:before.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  #pClassroomInnerNav .classroomInnerNav-back:before {
    font-size: 18px;
  }
}
#pClassroomInnerNav .classroomInnerNav-back > * {
  float: left;
}
#pClassroomInnerNav .classroomInnerNav-close {
  background: #666666;
  padding: 0 20px;
  color: inherit;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#pClassroomInnerNav .classroomInnerNav-close:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
#pClassroomInnerNav .classroomInnerNav-close:before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00d";
  font-size: 19px;
}
#pClassroomInnerNav .classroomInnerNav-close:before.fa-pull-left {
  margin-right: .3em;
}
#pClassroomInnerNav .classroomInnerNav-close:before.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  #pClassroomInnerNav .classroomInnerNav-close:before {
    font-size: 18px;
  }
}
#pClassroomInnerNav .classroomInnerNav-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 20px;
}
@media (min-width: 769px) {
  .addEContentItems .itemLabel,
  .addQuizQues .itemLabel {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .addEContentItems .itemLabel,
  .addQuizQues .itemLabel {
    margin: 15px;
  }
}
.eContentIcons::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.eContentIcons .eContentIcon {
  text-align: center;
  float: left;
  min-width: 80px;
  margin: 15px 46px 15px 0;
  cursor: pointer;
}
.eContentIcons .eContentIcon > div:not(.eContentIcon-more) {
  font-size: 13px;
  color: #777;
  font-weight: 500;
  max-width: 80px;
}
@media (max-width: 768px) {
  .eContentIcons .eContentIcon > div:not(.eContentIcon-more) {
    font-size: 13px;
  }
}
.eContentIcons .eContentIcon .eContentIcon-more {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 150px;
  max-width: 280px;
  width: auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
}
.eContentIcons .eContentIcon .eContentIcon-more:before {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -9px;
  top: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 9px 10px 9px;
  border-color: transparent transparent rgba(0, 89, 174, 0.8) transparent;
}
.eContentIcons .eContentIcon .eContentIcon-more:after {
  display: block;
  position: absolute;
  content: "";
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.eContentIcons .eContentIcon .eContentIcon-more > a {
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (hover: none) and (pointer: coarse) {
  .eContentIcons .eContentIcon .eContentIcon-more > a:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.eContentIcons .eContentIcon .eContentIcon-more > a:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .eContentIcons .eContentIcon .eContentIcon-more > a:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.eContentIcons .eContentIcon .eContentIcon-more > a,
.eContentIcons .eContentIcon .eContentIcon-more > a:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .eContentIcons .eContentIcon .eContentIcon-more > a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .eContentIcons .eContentIcon .eContentIcon-more > a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (hover: none) and (pointer: coarse) {
  .eContentIcons .eContentIcon .eContentIcon-more > a:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.eContentIcons .eContentIcon .eContentIcon-more > a:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .eContentIcons .eContentIcon .eContentIcon-more > a:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.eContentIcons .eContentIcon .eContentIcon-more > a,
.eContentIcons .eContentIcon .eContentIcon-more > a:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .eContentIcons .eContentIcon .eContentIcon-more > a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .eContentIcons .eContentIcon .eContentIcon-more > a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
.eContentIcons .eContentIcon .eContentIcon-more > a + a {
  margin-top: 10px;
}
.eContentIcons .eContentIcon:hover {
  z-index: 2;
}
.eContentIcons .eContentIcon:hover .eContentIcon-more {
  display: block;
}
.eContentIcons .eContentIcon:hover ~ * {
  z-index: 1;
}
.eContentIcons .eContentIcon:hover::before {
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
}
.eContentIcons .eContentIcon::before {
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
  display: inline-block;
  content: "";
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.eContentIcons .eContentIcon.eContentIcon-webpage::before {
  background-image: url("/intranet/images/icon-eContent-web.png");
}
.eContentIcons .eContentIcon.eContentIcon-video::before {
  background-image: url("/intranet/images/icon-eContent-video.png");
}
.eContentIcons .eContentIcon.eContentIcon-sound::before {
  background-image: url("/intranet/images/icon-eContent-sound.png");
}
.eContentIcons .eContentIcon.eContentIcon-file::before {
  background-image: url("/intranet/images/icon-eContent-file.png");
}
.eContentIcons .eContentIcon.eContentIcon-courseware::before {
  background-image: url("/intranet/images/icon-eContent-courseware.png");
}
.eContentIcons .eContentIcon.eContentIcon-quiz::before {
  background-image: url("/intranet/images/icon-eContent-quiz.png");
}
.eContentIcons .eContentIcon.eContentIcon-quiz-qb::before {
  background-image: url("/intranet/images/icon-quiz-qb.png");
}
.eContentIcons .eContentIcon.eContentIcon-quiz-random::before {
  background-image: url("/intranet/images/icon-quiz-random.png");
}
.eContentIcons .eContentIcon.eContentIcon-quiz-newQues::before {
  background-image: url("/intranet/images/icon-quiz-newQues.png");
}
.eContentIcons .eContentIcon.eContentIcon-evaluation::before {
  background-image: url("/intranet/images/icon-eContent-evaluation.png");
}
.eContentIcons .addEContentItems-divider {
  float: left;
  height: 88px;
  width: 0;
  border-right: 1px solid #ddd;
  margin: 15px 46px 15px 0;
}
@media (min-width: 769px) {
  .eContentIcons .eContentIcon:last-child {
    margin-right: 0;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .eContentIcons .eContentIcon::before {
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
  }
}
@media (min-width: 769px) and (max-width: 1350px) {
  .eContentIcons .addEContentItems-divider {
    clear: left;
    margin-right: 0;
    visibility: hidden;
  }
  .eContentIcons .addEContentItems-divider ~ .addEContentItems-divider {
    clear: none;
    visibility: visible;
    margin-right: 22px;
    margin-left: -24px;
  }
}
@media (max-width: 768px) {
  .eContentIcons {
    margin-left: auto;
    margin-right: auto;
    width: 420px;
  }
  .eContentIcons .eContentIcon {
    margin-left: 30px;
    margin-right: 30px;
  }
  .eContentIcons .addEContentItems-divider {
    margin-right: -1px;
  }
  .eContentIcons .addEContentItems-divider ~ .addEContentItems-divider {
    visibility: hidden;
  }
}
@media (max-width: 480px) {
  .eContentIcons {
    width: 280px;
  }
  .eContentIcons .addEContentItems-divider {
    margin-right: 0;
    clear: left;
    height: 1px;
    width: 100%;
    border-top: 1px solid #ddd;
    border-right: 0;
  }
  .eContentIcons .addEContentItems-divider ~ .addEContentItems-divider {
    display: none;
  }
}
.quizIcons::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.quizIcons .quizIcon {
  text-align: center;
  float: left;
  min-width: 80px;
  margin: 15px 46px 15px 0;
  cursor: pointer;
}
.quizIcons .quizIcon > div:not(.quizIcon-more) {
  font-size: 13px;
  color: #777;
  font-weight: 500;
  max-width: 125px;
}
@media (max-width: 768px) {
  .quizIcons .quizIcon > div:not(.quizIcon-more) {
    font-size: 13px;
  }
}
.quizIcons .quizIcon .quizIcon-more {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 150px;
  max-width: 280px;
  width: auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
}
.quizIcons .quizIcon .quizIcon-more:before {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -9px;
  top: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 9px 10px 9px;
  border-color: transparent transparent rgba(0, 89, 174, 0.8) transparent;
}
.quizIcons .quizIcon .quizIcon-more:after {
  display: block;
  position: absolute;
  content: "";
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.quizIcons .quizIcon .quizIcon-more > a {
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (hover: none) and (pointer: coarse) {
  .quizIcons .quizIcon .quizIcon-more > a:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.quizIcons .quizIcon .quizIcon-more > a:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .quizIcons .quizIcon .quizIcon-more > a:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.quizIcons .quizIcon .quizIcon-more > a,
.quizIcons .quizIcon .quizIcon-more > a:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .quizIcons .quizIcon .quizIcon-more > a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .quizIcons .quizIcon .quizIcon-more > a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (hover: none) and (pointer: coarse) {
  .quizIcons .quizIcon .quizIcon-more > a:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.quizIcons .quizIcon .quizIcon-more > a:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .quizIcons .quizIcon .quizIcon-more > a:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.quizIcons .quizIcon .quizIcon-more > a,
.quizIcons .quizIcon .quizIcon-more > a:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .quizIcons .quizIcon .quizIcon-more > a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .quizIcons .quizIcon .quizIcon-more > a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
.quizIcons .quizIcon .quizIcon-more > a + a {
  margin-top: 10px;
}
.quizIcons .quizIcon:hover {
  z-index: 2;
}
.quizIcons .quizIcon:hover .quizIcon-more {
  display: block;
}
.quizIcons .quizIcon:hover ~ * {
  z-index: 1;
}
.quizIcons .quizIcon:hover::before {
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
}
.quizIcons .quizIcon::before {
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
  display: inline-block;
  content: "";
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.quizIcons .quizIcon.quizIcon-qb::before {
  background-image: url("/intranet/images/icon-quiz-qb.png");
}
.quizIcons .quizIcon.quizIcon-random::before {
  background-image: url("/intranet/images/icon-quiz-random.png");
}
.quizIcons .quizIcon.quizIcon-newQues::before {
  background-image: url("/intranet/images/icon-quiz-newQues.png");
}
.quizIcons .quizIcon-divider {
  float: left;
  height: 88px;
  width: 0;
  border-right: 1px solid #ddd;
  margin: 15px 46px 15px 0;
}
@media (min-width: 769px) {
  .quizIcons .quizIcon:last-child {
    margin-right: 0;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .quizIcons .quizIcon,
  .quizIcons .quizIcon-divider {
    margin: 15px 30px 15px 0;
  }
  .quizIcons .quizIcon {
    min-width: 60px;
  }
  .quizIcons .quizIcon::before {
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
  }
}
@media (max-width: 768px) {
  .quizIcons {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
  }
  .quizIcons .quizIcon {
    margin-left: 10px;
    margin-right: 10px;
    float: none;
  }
  .quizIcons .quizIcon-divider {
    display: none;
  }
}
.attachedItemsHeader.form-header {
  font-weight: 300;
  color: inherit;
}
.attachedItemsHeader.form-header > *:not(.icon) {
  font-size: 17px;
}
@media (max-width: 768px) {
  .attachedItemsHeader.form-header > *:not(.icon) {
    font-size: 17px;
  }
}
.attachedItemsHeader.form-header .attachedItemsHeader-figure {
  font-weight: 400;
  color: #777;
}
.attachedItemsHeader.form-header .attachedItemsHeader-questions .score-input {
  margin-right: 20px;
  margin-bottom: 2px;
}
.attachedItemsHeader.form-header .attachedItemsHeader-questions .score-input .textbox {
  margin-top: -7px;
  padding-top: 0;
}
.attachedItemsHeader.form-header .attachedItemsHeader-questions .score-input input {
  width: 50px;
}
.attachedItemsHeader.form-header .attachedItemsHeader-questions .score-input .icon-button {
  float: inherit;
}
@media (min-width: 769px) {
  .attachedItemsHeader.form-header .attachedItemsHeader-questions {
    width: 155px;
    float: right;
  }
  .attachedItemsHeader.form-header .attachedItemsHeader-questions.score {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .attachedItemsHeader.form-header .attachedItemsHeader-questions {
    clear: both;
    display: block;
    margin-top: 10px;
    font-size: 15px;
  }
  .attachedItemsHeader.form-header .attachedItemsHeader-questions .score-input {
    display: block;
  }
}
.attachedItemsHeader.form-header .attachedItemsHeader-score {
  /* eCCT */
}
@media (min-width: 769px) {
  .attachedItemsHeader.form-header .attachedItemsHeader-score {
    width: 155px;
    float: right;
  }
}
@media (max-width: 768px) {
  .attachedItemsHeader.form-header .attachedItemsHeader-score {
    clear: both;
    display: block;
    margin-top: 10px;
    font-size: 15px;
  }
}
.attachedItems .attachedItem-wrapper:not(:first-child) .attachedItem {
  padding-top: 15px;
}
.attachedItems .attachedItem {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  z-index: 1;
}
.attachedItems .attachedItem::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.attachedItems .attachedItem > .floatL {
  padding-top: 3px;
  padding-bottom: 3px;
  max-width: calc(100% - 80px);
}
.attachedItems .attachedItem .attachedItem-title {
  font-weight: 500;
  font-size: 13px;
  line-height: 30px;
  color: #aaa;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .attachedItems .attachedItem .attachedItem-title {
    font-size: 13px;
  }
}
.attachedItems .attachedItem .attachedItem-link {
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #2e93d7;
}
@media (hover: none) and (pointer: coarse) {
  .attachedItems .attachedItem .attachedItem-link:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.attachedItems .attachedItem .attachedItem-link:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .attachedItems .attachedItem .attachedItem-link:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.attachedItems .attachedItem .attachedItem-link,
.attachedItems .attachedItem .attachedItem-link:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .attachedItems .attachedItem .attachedItem-link:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .attachedItems .attachedItem .attachedItem-link:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (hover: none) and (pointer: coarse) {
  .attachedItems .attachedItem .attachedItem-link:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.attachedItems .attachedItem .attachedItem-link:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .attachedItems .attachedItem .attachedItem-link:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.attachedItems .attachedItem .attachedItem-link,
.attachedItems .attachedItem .attachedItem-link:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .attachedItems .attachedItem .attachedItem-link:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .attachedItems .attachedItem .attachedItem-link:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
.attachedItems .attachedItem .attachedItem-link .floatL {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  margin-right: 6px;
}
.attachedItems .attachedItem .attachedItem-link .floatL img {
  width: 100px;
}
.attachedItems .attachedItem .attachedItem-link .floatL + * {
  overflow: hidden;
}
.attachedItems .attachedItem .attachedItem-link a {
  display: inline-block;
  color: inherit;
  word-break: break-all;
}
.attachedItems .attachedItem .attachedItem-options {
  float: right;
  margin-right: -12px;
}
.attachedItems .attachedItem .attachedItem-options > * {
  float: right;
}
.attachedItems .attachedItem .attachedItem-options .fa-bars {
  line-height: 30px;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 5px;
  color: #aaa;
  cursor: pointer;
  cursor: grab;
}
.attachedItems .attachedItem .attachedItem-options .fa-bars + * {
  clear: right;
}
.attachedItems .attachedItem .attachedItem-options .fa-bars ~ * {
  font-size: smaller;
}
@media (min-width: 769px) {
  .attachedItems .attachedItem .attachedItem-quiz-mark {
    float: right;
    margin-top: 18px;
    width: 150px;
  }
}
@media (max-width: 768px) {
  .attachedItems .attachedItem .attachedItem-quiz-mark {
    clear: both;
    padding-top: 15px;
  }
}
.attachedItems .attachedItem .attachedItem-quiz-mark::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.attachedItems .attachedItem .attachedItem-quiz-mark > * {
  float: left;
}
.attachedItems .attachedItem .attachedItem-quiz-mark .attachedItem-quiz-mark-label {
  margin-right: 10px;
  color: #aaa;
  font-weight: 400;
}
.attachedItems .attachedItem .attachedItem-quiz-mark .itemInput {
  margin-top: -18px;
  width: 50px;
}
.attachedItems .attachedItem .attachedItem-quiz-mark .itemInput input {
  text-align: center;
}
.attachedItems .attachedItem.attachedItem-dragging {
  padding-left: 15px;
  padding-right: 15px;
  position: fixed;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  width: inherit;
  z-index: 2;
  cursor: grabbing;
}
@media (min-width: 769px) {
  .attachedItems.attachedItems-questions .attachedItem > .floatL {
    max-width: calc(100% - 80px - 150px);
  }
}
.attachedItems .button {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 769px) {
  .attachedItems .button {
    margin-left: -14px;
  }
}
/* End of Classroom */
/* eContent */
#pClassroomNav {
  background-color: #666666;
  position: fixed;
  width: 100%;
  z-index: 2;
}
#pClassroomNav::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
#pClassroomNav a:hover {
  -webkit-filter: brightness(0.96) contrast(1);
}
@-moz-document url-prefix() /* Firefox fix */ {
  #pClassroomNav a:hover {
    -webkit-filter: none;
    filter: none;
  }
}
#pClassroomNav .classroomNavBtn {
  float: left;
  line-height: 40px;
  color: #fff;
  background: #666666;
  padding: 0 25px;
}
#pClassroomNav .classroomNavBtn.classroomNavBtn-active {
  background-color: #4e769d;
  font-weight: 500;
}
#pClassroomNav .classroomNavBtn > span {
  vertical-align: middle;
}
#pClassroomNav .classroomNavBtn > span.icon {
  margin-right: 10px;
}
#pClassroomNav .classroomNavBtn > img {
  vertical-align: middle;
  width: 17px;
  margin-right: 10px;
}
@media (max-width: 480px) {
  #pClassroomNav .classroomNavBtn {
    width: 50%;
    padding: 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  #pClassroomNav {
    position: relative;
  }
  #pClassroomNav.scrollTopFix-fixed + #pClassroom-eContent #blkEContentMain {
    padding-top: 40px;
  }
  #pClassroomNav.scrollTopFix-fixed + #pClassroom-eContent #blkEContentMain .content-header {
    position: fixed;
    top: 40px !important;
  }
  #pClassroomNav.scrollTopFix-fixed + #pClassroom-QB,
  #pClassroomNav.scrollTopFix-fixed + #pClassroom-Evaluation {
    margin-top: 40px;
  }
}
#pClassroom-eContent {
  z-index: 1;
}
#pClassroom-eContent .eContentMgmtBtn {
  width: 30px;
  height: 30px;
  line-height: 28px;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border: 1px solid #0073e1;
  color: #0073e1;
  padding: 0;
  text-align: center;
  margin-right: 8px;
}
#pClassroom-eContent #blkEContentList {
  background-color: #f3f3f3;
  overflow-y: auto;
  padding-bottom: 70px;
  padding-top: 60px;
}
#pClassroom-eContent #blkEContentList #blkEContentList-Options {
  position: fixed;
  width: inherit;
  max-width: inherit;
  margin-top: -60px;
  z-index: 3;
  padding: 15px 23px;
  background-color: #f3f3f3e8;
}
#pClassroom-eContent #blkEContentList #blkEContentList-Options::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
#pClassroom-eContent #blkEContentList #blkEContentList-Options > * {
  float: left;
}
@-moz-document url-prefix() /* Firefox fix */ {
  #pClassroom-eContent #blkEContentList #blkEContentList-Tree {
    margin-bottom: 70px;
  }
}
#pClassroom-eContent #blkEContentList #blkEContentList-QA {
  position: fixed;
  width: inherit;
  max-width: inherit;
  bottom: 0;
  height: 50px;
  border-top: 1px solid #ddd;
  padding: 3px 15px;
  background-color: #f3f3f3;
  z-index: 2;
}
#pClassroom-eContent #blkEContentList #blkEContentList-QA img {
  height: 100%;
}
#pClassroom-eContent #btnOpenEContentList,
#pClassroom-eContent #btnCloseEContentList {
  display: none;
}
#pClassroom-eContent ~ #blkFooter {
  width: 100%;
  max-width: 100%;
  padding-right: 20px;
}
@media (min-width: 769px) {
  .role-trainer #pClassroom-eContent {
    padding-top: 40px;
  }
}
@media (min-width: 970px) {
  #pClassroom-eContent {
    text-align: right;
  }
  #pClassroom-eContent #blkEContentList {
    width: 25%;
    min-width: 200px;
    position: fixed;
    top: 88px;
    left: 0;
    bottom: 0;
    text-align: left;
  }
  .role-learner #pClassroom-eContent #blkEContentList {
    top: 48px;
    padding-top: 17px;
  }
  #pClassroom-eContent #blkEContentMain {
    width: 75%;
    max-width: calc(100% - 200px);
    display: inline-block;
    text-align: left;
  }
  .role-trainer #pClassroom-eContent #blkEContentMain {
    min-height: calc(100vh - 48px - 40px - 90px + 1px);
    /* maintain min-height to keep scroll bar */
  }
  .role-learner #pClassroom-eContent #blkEContentMain {
    min-height: calc(100vh - 48px - 90px + 1px);
    /* maintain min-height to keep scroll bar */
  }
}
@media (max-width: 969px) {
  #pClassroom-eContent #blkEContentList {
    position: fixed;
    top: 88px;
    left: 0;
    bottom: 0;
    width: 350px;
    z-index: 2;
    -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    margin-left: -380px;
    padding-top: 60px;
    text-align: right;
  }
  #pClassroom-eContent #blkEContentList > * {
    text-align: left;
  }
  #pClassroom-eContent #blkEContentList #btnCloseEContentList {
    position: fixed;
    margin-top: -60px;
    margin-left: -45px;
    width: 45px;
    height: 60px;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 60px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    z-index: 4;
  }
  #pClassroom-eContent #blkEContentList #btnCloseEContentList.fa-pull-left {
    margin-right: .3em;
  }
  #pClassroom-eContent #blkEContentList #btnCloseEContentList.fa-pull-right {
    margin-left: .3em;
  }
  #pClassroom-eContent #blkEContentList #btnCloseEContentList::after {
    content: "\f053";
  }
  #pClassroom-eContent #blkEContentList #btnCloseEContentList::before {
    display: block;
    content: "";
    position: fixed;
    right: 0;
    bottom: 0;
    left: 350px;
    top: 0;
    display: none;
  }
  .role-learner #pClassroom-eContent #blkEContentList {
    top: 48px;
  }
  .role-learner #pClassroom-eContent #blkEContentList:before {
    position: fixed;
    display: block;
    content: "";
    width: inherit;
    height: 60px;
    margin-top: -60px;
    background-color: #f3f3f3e8;
    z-index: 3;
  }
  #pClassroom-eContent #blkEContentMain {
    z-index: 1;
  }
  #pClassroom-eContent #blkEContentMain .content-header {
    padding-left: 60px;
  }
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 60px;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    line-height: 60px;
    font-size: 18px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 3;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList.fa-pull-left {
    margin-right: .3em;
  }
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList.fa-pull-right {
    margin-left: .3em;
  }
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList,
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList:hover {
    color: #0059ae;
  }
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList,
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList:hover {
    color: #0059ae;
  }
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList::after {
    content: "\f022";
  }
  #pClassroom-eContent.showEContentList #blkEContentList {
    margin-left: 0;
  }
  #pClassroom-eContent.showEContentList #blkEContentList #btnCloseEContentList::before {
    display: block;
  }
}
@media (max-width: 969px) and (max-width: 768px) {
  #pClassroom-eContent #blkEContentList #btnCloseEContentList {
    font-size: 18px;
  }
}
@media (max-width: 969px) and (max-width: 768px) {
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList {
    font-size: 18px;
  }
}
@media (max-width: 969px) and (hover: none) and (pointer: coarse) {
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 969px) and (hover: hover) {
  .eContent-main #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (max-width: 969px) and (hover: none) and (pointer: coarse) {
  #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 969px) and (hover: hover) {
  .eContent-main #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main #pClassroom-eContent #blkEContentMain .content-header #btnOpenEContentList:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (max-width: 768px) {
  #pClassroom-eContent #blkEContentList {
    top: 80px;
  }
  .role-learner #pClassroom-eContent #blkEContentList {
    top: 40px;
  }
  #pClassroomNav.scrollTopFix-fixed + #pClassroom-eContent #blkEContentList {
    top: 40px;
  }
  .role-learner #pClassroomNav.scrollTopFix-fixed + #pClassroom-eContent #blkEContentList {
    top: 0;
    /* If no #pClassroomNav, define in effect.js */
  }
  #pClassroom-eContent .content-header.scrollTopFix-fixed {
    -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  }
  #pClassroom-eContent .content-header.scrollTopFix-fixed + .list-group {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  #pClassroom-eContent #blkEContentList {
    width: 320px;
  }
  #pClassroom-eContent #blkEContentList #btnCloseEContentList::before {
    left: 320px;
  }
}
.eContentTree .eContentTree-item {
  clear: both;
  font-size: 15px;
}
@media (max-width: 768px) {
  .eContentTree .eContentTree-item {
    font-size: 15px;
  }
}
.eContentTree .eContentTree-item::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.eContentTree .eContentTree-item > a {
  display: block;
  color: #333 !important;
  padding-right: 30px;
}
.eContentTree .eContentTree-item > a::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.eContentTree .eContentTree-item > a:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #333 !important;
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
.eContentTree .eContentTree-item > a.eContentTree-item-sectionHeader {
  pointer-events: none;
}
.eContentTree .eContentTree-item > a.eContentTree-item-sectionHeader:hover {
  background-color: rgba(0, 0, 0, 0);
  color: inherit !important;
  -webkit-filter: none;
  filter: none;
}
.eContentTree .eContentTree-item .floatR {
  z-index: 2;
}
.eContentTree .eContentTree-item .floatR[data-toggle="collapse"] {
  line-height: inherit;
  color: #333;
  cursor: pointer;
  padding: 5px 10px 5px 5px;
  width: 30px;
}
.eContentTree .eContentTree-item .floatR[data-toggle="collapse"][aria-expanded="true"]:before {
  content: "\f106";
}
.eContentTree .eContentTree-item .floatR[data-toggle="collapse"]:hover {
  color: #0059ae;
}
.eContentTree .eContentTree-item .floatL {
  padding: 5px 5px 5px 0;
  margin-left: 30px;
  min-width: 50px;
}
.eContentTree .eContentTree-item .floatL + div {
  overflow: hidden;
  padding: 5px 5px 5px 5px;
}
@media (min-width: 1200px) {
  .role-learner .eContentTree .eContentTree-item .floatL {
    margin-left: 55px;
  }
}
.eContentTree .eContentTree-item.eContentTree-item-active a {
  background-color: #48a6ff;
  color: #fff !important;
}
.eContentTree .eContentTree-item.eContentTree-item-active .floatR {
  color: #fff;
}
.eContentTree .eContentTree-item.eContentTree-item-active .floatR:hover {
  color: #fff;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.eContentTree .eContentTree-item.eContentTree-item-active.eContentTree-item-finished::before {
  color: white;
}
.eContentTree .eContentTree-item.eContentTree-item-finished::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  left: 5px;
  top: 4px;
  content: "\f058";
  color: #0ea84f;
  font-size: 18px;
  z-index: 1;
}
.eContentTree .eContentTree-item.eContentTree-item-finished::before.fa-pull-left {
  margin-right: .3em;
}
.eContentTree .eContentTree-item.eContentTree-item-finished::before.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  .eContentTree .eContentTree-item.eContentTree-item-finished::before {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .role-learner .eContentTree .eContentTree-item.eContentTree-item-finished::before {
    left: 17px;
  }
}
.eContentTree .eContentTree-item.eContentTree-item-inactive a {
  pointer-events: none;
  cursor: default;
  opacity: 0.4;
}
.eContentTree .eContentTree-item + .eContentTree-subMenu > .eContentTree-subMenu {
  margin-left: 0;
}
.eContentTree > .eContentTree-section:not(:first-child) {
  border-top: 1px solid #ddd;
  margin-top: 10px;
  padding-top: 10px;
}
@media (min-width: 1200px) {
  .role-learner .eContentTree > .eContentTree-section > .eContentTree-item + .eContentTree-subMenu > .eContentTree-subMenu .floatL {
    margin-left: 50px;
  }
}
@media (min-width: 769px) {
  #blkEContentMain {
    padding-top: 60px;
  }
}
#blkEContentMain .content-header {
  background: #dcdcdc;
  padding: 15px 10px 5px 15px;
  height: 60px;
  width: inherit;
  z-index: 9;
}
@media (min-width: 769px) {
  #blkEContentMain .content-header {
    position: fixed;
    margin-top: -60px;
  }
}
@media (max-width: 969px) {
  #blkEContentMain .content-header {
    width: 100%;
  }
}
#blkEContentMain .content-header .fa-caret-left,
#blkEContentMain .content-header .fa-caret-right {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.3);
  margin-top: -3px;
}
@media (max-width: 768px) {
  #blkEContentMain .content-header .fa-caret-left,
  #blkEContentMain .content-header .fa-caret-right {
    font-size: 22px;
  }
}
#blkEContentMain .content-header .fa-caret-left:not(.opacity30):hover,
#blkEContentMain .content-header .fa-caret-right:not(.opacity30):hover {
  color: #0059ae;
}
#blkEContentMain .content-header .fa-caret-left.opacity30,
#blkEContentMain .content-header .fa-caret-right.opacity30 {
  pointer-events: none;
  cursor: default;
}
#blkEContentMain .content-header .content-title {
  overflow: hidden;
  top: -8px;
  /* Do not use margin-top, for Edge limitation */
  margin-bottom: -9px;
}
#blkEContentMain .content-header .content-title .eContent-info {
  font-size: 14px;
  color: #888;
  font-weight: 400;
  margin-top: 5px;
  height: 20px;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 768px) {
  #blkEContentMain .content-header .content-title .eContent-info {
    font-size: 14px;
  }
}
#blkEContentMain .content-header .content-title .eContent-info::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
#blkEContentMain .content-header .content-title .eContent-info > .floatL {
  white-space: nowrap;
}
#blkEContentMain .content-header .content-title .eContent-info > .floatL:not(:last-child) {
  margin-right: 20px;
}
#blkEContentMain .content-header .content-title .eContent-info .far,
#blkEContentMain .content-header .content-title .eContent-info .fa,
#blkEContentMain .content-header .content-title .eContent-info .icon {
  margin-right: 8px;
  font-size: 13px;
}
@media (max-width: 768px) {
  #blkEContentMain .content-header .content-title .eContent-info .far,
  #blkEContentMain .content-header .content-title .eContent-info .fa,
  #blkEContentMain .content-header .content-title .eContent-info .icon {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .role-learner #blkEContentMain .content-header .content-title .eContent-info .floatL .fa-clock {
    display: none !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  #blkEContentMain .content-header .content-title .eContent-info {
    font-size: 14px;
    margin-top: 2px;
  }
}
@media (max-width: 480px) {
  #blkEContentMain .content-header .content-title .eContent-info {
    font-size: 13px;
    margin-top: 2px;
  }
}
@media (max-width: 374px) {
  #blkEContentMain .content-header .content-title .eContent-info {
    font-size: 12px;
    margin-top: 2px;
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    width: 118%;
  }
}
#blkEContentMain .content-header .content-title .eContent-info .floatL {
  font-size: inherit !important;
}
.role-trainer #blkEContentMain .content-header .content-title .eContent-info.eContent-info-overflowed > .floatL {
  position: absolute;
  top: 0;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  animation: swap 20s ease infinite 0s;
}
@media (max-width: 480px) {
  .role-trainer #blkEContentMain .content-header .content-title .eContent-info.eContent-info-overflowed > .floatL {
    font-size: 12px;
  }
}
.role-trainer #blkEContentMain .content-header .content-title .eContent-info.eContent-info-overflowed > .floatL:nth-child(2) {
  animation-delay: 5s;
}
.role-trainer #blkEContentMain .content-header .content-title .eContent-info.eContent-info-overflowed > .floatL:nth-child(3) {
  animation-delay: 10s;
}
.role-trainer #blkEContentMain .content-header .content-title .eContent-info.eContent-info-overflowed > .floatL:nth-child(4) {
  animation-delay: 15s;
}
@keyframes swap {
  0% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  3%,
  24% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  27%,
  100% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}
#blkEContentMain .content-header .content-title .eContent-subject {
  top: 3px;
  color: #333;
}
@media (max-width: 969px) {
  #blkEContentMain .content-header .content-title .eContent-subject.eContent-subject-finished {
    padding-left: 23px;
  }
  #blkEContentMain .content-header .content-title .eContent-subject.eContent-subject-finished::before {
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    content: "\f058";
    color: #0ea84f;
    font-size: inherit;
    z-index: 1;
  }
  #blkEContentMain .content-header .content-title .eContent-subject.eContent-subject-finished::before.fa-pull-left {
    margin-right: .3em;
  }
  #blkEContentMain .content-header .content-title .eContent-subject.eContent-subject-finished::before.fa-pull-right {
    margin-left: .3em;
  }
}
#blkEContentMain .content-header #blkEContentMain-Options {
  float: right;
  padding-left: 10px;
}
#blkEContentMain .content-header #blkEContentMain-Options > * {
  float: right;
}
#blkEContentMain .systemMsg-floated {
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
}
.eContent-main .list-group {
  padding: 0 20px;
}
.eContent-main .list-group .list-group-item {
  border: 0;
  padding: 15px 0px;
  display: block;
  line-height: 1.4;
}
.eContent-main .list-group .list-group-item *:not(.icon):not(.fa):not(.far):not(.fab):first-child {
  margin-right: 0;
}
.eContent-main .list-group .list-group-item *:not(.icon):not(.fa):not(.far):not(.fab):first-child.marginR10 {
  margin-right: 10px;
}
.eContent-main .list-group .list-group-item *:not(.icon):not(.fa):not(.far):not(.fab):first-child.marginR20 {
  margin-right: 20px;
}
.eContent-main .list-group .list-group-item + .list-group-item {
  border-top: 1px #CCC solid;
}
.eContent-main .list-group .list-group-item .item-title {
  margin-right: 0;
}
.eContent-main .list-group .list-group-item ul {
  list-style-type: disc;
}
.eContent-main .list-group .list-group-item li {
  list-style-position: inside;
}
.eContent-main .list-group .list-group-item:hover .collapseBtn {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.eContent-main .item-title > .item-fileType {
  display: block;
  overflow: hidden;
  font-weight: bold;
  color: #aaa;
  font-size: 14px;
  padding: 5px 0;
}
@media (max-width: 768px) {
  .eContent-main .item-title > .item-fileType {
    font-size: 14px;
  }
}
.eContent-main .item-title > .item-fileType + a {
  margin-top: 5px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 21px;
}
.eContent-main .item-title > .item-fileType + a img {
  position: absolute;
  margin-right: 0;
  width: 16px;
  top: 3.9px;
  left: 0;
}
@media (max-width: 768px) {
  .eContent-main .item-title > .item-fileType + a img {
    top: 3.9px;
  }
}
.eContent-main .collapseBtn {
  display: inline-block;
  float: right;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  display: none;
  /* Hide the button */
}
.eContent-main .collapseBtn > div {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 16px;
  height: 16px;
  background: url(../images/icon-show-hide-drag.png) left top no-repeat;
}
.eContent-main .collapseBtn.collapsed {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.eContent-main .collapseBtn.collapsed > div {
  background-position: left -16px;
}
.eContent-main .collapseTarget.collapsed {
  display: none;
}
.eContent-main .item-content {
  margin-top: 15px;
}
.eContent-main .item-content .screen-size {
  width: 100%;
}
.eContent-main .item-content iframe {
  border: 0;
}
.eContent-main .item-content iframe.no-wrapper {
  border: 1px #CCC solid;
  width: 100%;
  height: 450px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.eContent-main .item-content .iframe-wrapper {
  border: 1px #CCC solid;
  width: 100%;
  min-height: 450px;
  height: calc(100vh - 245px);
}
.role-learner .eContent-main .item-content .iframe-wrapper {
  height: calc(100vh - 205px);
}
.eContent-main .item-content .iframe-wrapper iframe {
  height: 100%;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.eContent-main .item-content .video-container {
  display: inline-block;
  width: auto;
  width: 700px;
  max-width: 100%;
}
.eContent-main .item-content .video-container.screen-size {
  width: 100%;
}
.eContent-main .item-content .video-container .videoPlayer {
  width: 100%;
}
.eContent-main .item-content figure.table td,
.eContent-main .item-content figure.table th {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.eContent-main .item-content mark {
  padding-top: 0;
  padding-bottom: 0;
}
.eContent-main .item-content p {
  word-break: break-word;
  word-wrap: break-word;
}
.eContent-main .item-content p a {
  word-break: break-all;
  word-wrap: break-all;
}
.eContent-main .item-content p span {
  display: inline;
}
.eContent-main .item-content .form-submission {
  margin-top: 40px;
  margin-bottom: 20px;
}
.eContent-main .eContent-ref {
  overflow-y: auto;
  padding: 0;
  height: 100%;
}
.eContent-main .eContent-ref .panel {
  margin: 0;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.eContent-main .eContent-ref .panel + .panel {
  border-top: 5px #CCC solid;
}
.eContent-main .eContent-ref .panel .panel-heading {
  display: block;
  padding: 20px;
  border: 0;
  border-radius: 0;
  background-image: none;
  background: #E9E9E9;
  color: #666;
  border-bottom: 2px #CCC solid;
}
.eContent-main .eContent-ref .panel .panel-body {
  padding: 0;
  border: 0;
}
.eContent-main .eContent-ref .panel .panel-body .list-group {
  margin: 0;
  box-shadow: none;
}
.eContent-main .eContent-ref .panel .panel-body .list-group-item {
  border: 0;
  padding: 20px;
  border-radius: 0;
}
.eContent-main .eContent-ref .panel .panel-body .list-group-item + .list-group-item {
  border-top: 2px #CCC solid;
}
.eContent-main .eContent-ref .panel .panel-body .list-group-item .list-group-item-heading {
  padding: 0;
  margin-bottom: 13px;
}
.eContent-main .eContent-ref .panel .panel-body .list-group-item .list-group-item-text {
  padding: 0;
  font-size: 0.9em;
}
.eContent-main .eContent-ref p {
  padding: 0;
  margin: 0;
}
.eContent-main .eContent-ref .post {
  margin: 15px 20px;
  line-height: 1.3em;
}
.eContent-main .eContent-ref .blog-msg {
  margin: 20px 20px 0;
  line-height: 1.3em;
}
.eContent-main .eContent-ref .post date {
  line-height: 2em;
}
.eContent-main .eContent-ref textarea {
  width: calc(100% - 40px);
  margin: 20px 20px 12px;
}
.eContent-main .eContent-ref .btn {
  width: calc(100% - 40px);
  margin: 0 20px 10px;
  font-size: 1em;
  background: #8acd38;
  color: #fff;
}
.eContent-main .eContent-ref .btn:active {
  background: #82bf37;
}
.eContent-main .eContent-ref .goto-blog {
  margin: 15px 20px 20px;
}
@media (hover: hover) {
  .eContent-main .link:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
  .eContent-main a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
  .eContent-main a:not([href]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .link:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
    .eContent-main a:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover,
    .eContent-main a:not([href]):not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
.eContent-quiz .eContent-quiz-title {
  font-weight: 500;
  margin-bottom: 20px;
}
.eContent-quiz .eContent-quiz-intro {
  margin-bottom: 30px;
}
.eContent-quiz .eContent-quiz-result {
  padding-bottom: 10px;
}
.eContent-quiz .eContent-quiz-result > span:not(.text-passed):not(.text-failed) {
  margin-right: 30px !important;
  margin-bottom: 5px;
}
.eContent-quiz .eContent-quiz-result > span:not(.text-passed):not(.text-failed) > span:first-child {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  font-weight: 400;
  margin-right: 10px !important;
}
@media (max-width: 768px) {
  .eContent-quiz .eContent-quiz-result > span {
    display: block;
  }
}
.eContent-quiz .eContent-quiz-result .text-passed,
.eContent-quiz .eContent-quiz-result .text-failed {
  font-weight: 400;
}
.eContent-scorm .eContent-scorm-title {
  font-weight: 500;
  margin-bottom: 20px;
}
.eContent-scorm .eContent-scorm-infos {
  padding-bottom: 10px;
}
.eContent-scorm .eContent-scorm-infos .eContent-scorm-info {
  margin-bottom: 5px;
}
.eContent-scorm .eContent-scorm-infos .eContent-scorm-info > span:first-child {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  font-weight: 400;
  margin-right: 10px !important;
}
@media (min-width: 769px) {
  .eContent-scorm .eContent-scorm-infos .eContent-scorm-info {
    display: inline-block;
  }
  .eContent-scorm .eContent-scorm-infos .eContent-scorm-info:not(:last-child) {
    margin-right: 30px !important;
  }
}
.eContent-scorm .eContent-scorm-buttons::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.eContent-scorm .eContent-scorm-buttons > *:not(:first-child) .button {
  margin-right: 10px !important;
}
.eContent-evaluation .eContent-evaluation-title {
  font-weight: 500;
  margin-bottom: 20px;
}
.eContent-evaluation .eContent-evaluation-intro {
  margin-bottom: 30px;
}
.eContent-evaluation .eContent-evaluation-infos {
  padding-bottom: 10px;
}
.eContent-evaluation .eContent-evaluation-infos .eContent-evaluation-info {
  margin-bottom: 5px;
}
.eContent-evaluation .eContent-evaluation-infos .eContent-evaluation-info > span:first-child {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  font-weight: 400;
  margin-right: 10px !important;
}
@media (min-width: 769px) {
  .eContent-evaluation .eContent-evaluation-infos .eContent-evaluation-info {
    display: inline-block;
  }
  .eContent-evaluation .eContent-evaluation-infos .eContent-evaluation-info:not(:last-child) {
    margin-right: 30px !important;
  }
}
#blkEContent-ManageIndex {
  background-color: #f3f3f3;
  padding-bottom: 90px;
  margin-bottom: -90px;
  min-height: calc(100vh - 48px);
}
@media (min-width: 769px) {
  #blkEContent-ManageIndex {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  #blkEContent-ManageIndex {
    min-height: calc(100vh - 40px);
  }
}
#blkEContent-ManageIndex #blkEContent-ManageIndexHeader {
  font-weight: bold;
  font-weight: 600;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  #blkEContent-ManageIndex #blkEContent-ManageIndexHeader {
    font-size: 14px;
  }
}
#blkEContent-ManageIndex #blkEContent-ManageIndexHeader > div {
  float: left;
}
#blkEContent-ManageIndex #blkEContent-ManageIndexHeader > div:first-child {
  width: 40%;
  padding-left: 5px;
  margin-left: 133px;
}
#blkEContent-ManageIndex #blkEContent-ManageIndexHeader > div:first-child + div {
  width: 100px;
  margin-left: 5px;
  margin-right: 5px;
}
@media (max-width: 768px) {
  #blkEContent-ManageIndex #blkEContent-ManageIndexHeader {
    display: none;
  }
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Options {
  padding-top: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #bcbcbc;
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Options::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Options > .eContentTree-checkbox {
  margin-left: 30px;
  padding: 2px 0;
  float: left;
}
@media (max-width: 768px) {
  #blkEContent-ManageIndex #blkEContent-ManageIndex-Options > .eContentTree-checkbox {
    margin-left: 15px;
  }
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Options > .floatR {
  cursor: pointer;
  padding: 5px 10px 5px 5px;
  width: 30px;
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Options > div:not(.eContentTree-checkbox):not(.floatR) {
  overflow: hidden;
  padding-left: 20px;
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Options > div:not(.eContentTree-checkbox):not(.floatR) .button {
  float: left;
  margin-right: 5px;
}
@media (max-width: 480px) {
  #blkEContent-ManageIndex #blkEContent-ManageIndex-Options > div:not(.eContentTree-checkbox):not(.floatR) .button {
    width: 40%;
    margin: 0px 3% 5px;
    text-align: left;
  }
  #blkEContent-ManageIndex #blkEContent-ManageIndex-Options > div:not(.eContentTree-checkbox):not(.floatR) .button > span {
    white-space: normal;
  }
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Tree {
  margin-top: 10px;
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item + .eContentTree-subMenu > .eContentTree-subMenu {
  margin-left: 0;
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item + .eContentTree-subMenu > .eContentTree-subMenu .eContentTree-checkbox {
  margin-left: 30px;
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item .eContentTree-checkbox {
  float: left;
  font-size: 17px;
  padding: 3px 0;
  margin-left: 30px;
  min-width: auto;
}
@media (max-width: 768px) {
  #blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item .eContentTree-checkbox {
    font-size: 17px;
  }
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item .eContentTree-itemEdit {
  float: right;
  margin-right: 40px;
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item > div[data-toggle="collapse"] + .eContentTree-itemEdit {
  margin-right: 10px;
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item .eContentTree-itemInfo {
  overflow: hidden;
}
#blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item .eContentTree-itemInfo > .floatL {
  padding-right: 50px;
  margin-left: 5px !important;
  min-width: 100px;
}
@media (min-width: 769px) {
  #blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item .floatL + div {
    float: left;
    width: 40%;
  }
}
@media (max-width: 768px) {
  #blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item .eContentTree-checkbox {
    margin-left: 15px !important;
  }
  #blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item .eContentTree-itemInfo {
    font-size: 14px;
    color: #888;
    line-height: 1;
  }
  #blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item .eContentTree-itemInfo > * {
    padding-top: 0;
    padding-bottom: 0;
  }
  #blkEContent-ManageIndex #blkEContent-ManageIndex-Tree .eContentTree-item .eContentTree-itemInfo > .floatL {
    padding-right: 10px;
    border-right: 1px solid #aaa;
    margin-right: 5px;
    min-width: auto;
  }
}
/* Drag & Drop Tree */
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag {
  /* Default button style */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  padding: 3px 14px !important;
  text-align: center !important;
  border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  font-weight: 400 !important;
  font-size: inherit !important;
  border: 0 !important;
  transition: 0.3s ease all !important;
  -webkit-transition: 0.3s ease all !important;
  -moz-transition: 0.3s ease all !important;
  cursor: pointer !important;
  font-size: 16px !important;
  line-height: 23px !important;
  min-width: 80px !important;
  white-space: nowrap !important;
  background-color: #0059ae !important;
  /* Default button style */
  background: -moz-linear-gradient(left, #0059ae 0%, #313c8c 100%) !important;
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0059ae 0%, #313c8c 100%) !important;
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0059ae 0%, #313c8c 100%) !important;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn1', endColorstr='@ColorBtn1a', GradientType=1) !important;
  /* IE6-9 */
}
@media (max-width: 768px) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag {
    font-size: 16px;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:focus,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:focus,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:focus,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:focus,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:hover,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:hover,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:hover,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:hover {
  color: #fff !important;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle.fullW,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle.fullW,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag.fullW,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag.fullW {
  white-space: normal !important;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.icon,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.icon,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.icon,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.icon,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fa,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fa,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.fa,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.fa,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.far,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.far,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.far,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.far,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fab,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fab,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.fab,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.fab,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fas,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fas,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.fas,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.fas {
  margin-right: 5px !important;
  margin-left: 0 !important;
  top: 1px !important;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.icon,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.icon,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.icon,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.icon,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fa,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fa,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.fa,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.fa,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.far,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.far,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.far,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.far,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fab,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fab,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.fab,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.fab,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fas,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fas,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.fas,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.fas {
  margin-right: 0 !important;
  margin-left: 5px !important;
  top: 1px !important;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > *:not(.middle):not(.bottom),
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > *:not(.middle):not(.bottom),
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > *:not(.middle):not(.bottom),
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > *:not(.middle):not(.bottom) {
  vertical-align: top !important;
}
@media (hover: none) and (pointer: coarse) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover,
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9) !important;
  filter: brightness(1.2) contrast(0.9) !important;
}
@-moz-document url-prefix() /* Firefox fix */ {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover,
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img {
  height: 23.8px !important;
  padding-top: 3.4px !important;
  padding-bottom: 3.4px !important;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img + span,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img + span,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img + span,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img + span {
  margin-left: 5px !important;
}
@media (max-width: 768px) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img {
  height: 23.8px !important;
  padding-top: 3.4px !important;
  padding-bottom: 3.4px !important;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img + span,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img + span,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img + span,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img + span {
  margin-left: 5px !important;
}
@media (max-width: 768px) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag {
    font-size: 16px;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:focus,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:focus,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:focus,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:focus,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:hover,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:hover,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:hover,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:hover {
  color: #fff !important;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle.fullW,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle.fullW,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag.fullW,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag.fullW {
  white-space: normal !important;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.icon,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.icon,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.icon,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.icon,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fa,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fa,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.fa,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.fa,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.far,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.far,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.far,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.far,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fab,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fab,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.fab,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.fab,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fas,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fas,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.fas,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > span:first-child.fas {
  margin-right: 5px !important;
  margin-left: 0 !important;
  top: 1px !important;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.icon,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.icon,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.icon,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.icon,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fa,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fa,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.fa,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.fa,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.far,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.far,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.far,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.far,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fab,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fab,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.fab,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.fab,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fas,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fas,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.fas,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > * + span.fas {
  margin-right: 0 !important;
  margin-left: 5px !important;
  top: 1px !important;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > *:not(.middle):not(.bottom),
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > *:not(.middle):not(.bottom),
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > *:not(.middle):not(.bottom),
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > *:not(.middle):not(.bottom) {
  vertical-align: top !important;
}
@media (hover: none) and (pointer: coarse) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover,
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9) !important;
  filter: brightness(1.2) contrast(0.9) !important;
}
@-moz-document url-prefix() /* Firefox fix */ {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover,
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img {
  height: 23.8px !important;
  padding-top: 3.4px !important;
  padding-bottom: 3.4px !important;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img + span,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img + span,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img + span,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img + span {
  margin-left: 5px !important;
}
@media (max-width: 768px) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag,
  #blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img {
  height: 23.8px !important;
  padding-top: 3.4px !important;
  padding-bottom: 3.4px !important;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img + span,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img + span,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img + span,
#blkOrderEContent .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .eContentTree-item.eContentTree-item-toDrag > img + span {
  margin-left: 5px !important;
}
.nestable .nestable-item.green-text-color .nestable-handle,
#blkOrderEContent .nestable-item.green-text-color .nestable-handle {
  color: #0059ae;
}
.nestable .nestable-item.green-text-color .nestable-handle:hover,
#blkOrderEContent .nestable-item.green-text-color .nestable-handle:hover {
  background-color: #0059ae !important;
  color: #fff !important;
}
#blkOrderEContent {
  padding-top: 30px;
  padding-bottom: 50px;
}
@media (min-width: 769px) {
  #blkOrderEContent {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  #blkOrderEContent {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item .floatL {
  margin-left: 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item .floatL + div {
  display: block;
  overflow: hidden;
  padding: 5px 5px 5px 5px;
  white-space: normal;
  word-break: break-word;
  word-wrap: break-word;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item + .eContentTree-subMenu {
  margin-left: 55px;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag {
  /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  display: inline-block;
  padding-right: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Default button style */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  padding: 3px 14px;
  text-align: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font-weight: 400;
  font-size: inherit;
  border: 0;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  cursor: pointer;
  font-size: 16px;
  line-height: 23px;
  min-width: 80px;
  white-space: nowrap;
  background-color: #0059ae;
  /* Default button style */
  background: -moz-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0059ae 0%, #313c8c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn1', endColorstr='@ColorBtn1a', GradientType=1);
  /* IE6-9 */
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 5px !important;
  padding-right: 20px !important;
  margin-left: -5px;
  float: left;
}
@media (max-width: 768px) {
  #blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag {
    font-size: 16px;
  }
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:focus,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:hover {
  color: #fff;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag.fullW {
  white-space: normal;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > span:first-child.icon,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > span:first-child.fa,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > span:first-child.far,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > span:first-child.fab,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > * + span.icon,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > * + span.fa,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > * + span.far,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > * + span.fab,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  #blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  #blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  #blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  #blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  #blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag {
    font-size: 16px;
  }
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:focus,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:hover {
  color: #fff;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag.fullW {
  white-space: normal;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > span:first-child.icon,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > span:first-child.fa,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > span:first-child.far,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > span:first-child.fab,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > * + span.icon,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > * + span.fa,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > * + span.far,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > * + span.fab,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  #blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  #blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  #blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  #blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > img + span {
  margin-left: 5px;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:hover,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:focus {
  color: #0059ae;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag.button-disabled {
  background: transparent !important;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:hover,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:focus {
  background: rgba(0, 0, 0, 0.05) !important;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > img {
  -webkit-filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
  filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:hover,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:focus {
  color: #0059ae;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag.button-disabled {
  background: transparent !important;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:hover,
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:focus {
  background: rgba(0, 0, 0, 0.05) !important;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > img {
  -webkit-filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
  filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
}
@-moz-document url-prefix() /* Firefox fix */ {
  #blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag {
    width: 100%;
  }
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag > * {
  text-align: left;
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-toDrag:hover {
  /* Default button style */
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  /* Default button style */
  background-color: #1fa686;
  /* Old browsers */
  background: -moz-linear-gradient(left, #1fa686 0%, #189d7e 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #1fa686 0%, #189d7e 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #1fa686 0%, #189d7e 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn2', endColorstr='@ColorBtn2a', GradientType=1);
  /* IE6-9 */
}
#blkOrderEContent .eContentTree > .nestable-list .eContentTree-item.eContentTree-item-dragging > .floatL {
  min-width: 0;
  width: 0;
  overflow: hidden;
}
#blkOrderEContent .nestable-item:not(.black-text-color) .nestable-handle {
  color: #0059ae;
}
#blkOrderEContent .nestable-item:not(.black-text-color) .nestable-handle:hover {
  background-color: #0059ae !important;
  color: #fff !important;
}
/* Drag & Drop Tree */
.nestable .nestable-list {
  list-style: none;
}
.nestable .nestable-list .nestable-item-content::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.nestable .nestable-list .nestable-item,
.nestable .nestable-list .nestable-item-copy {
  clear: both;
  font-size: 15px;
}
@media (max-width: 768px) {
  .nestable .nestable-list .nestable-item,
  .nestable .nestable-list .nestable-item-copy {
    font-size: 15px;
  }
}
.nestable .nestable-list .nestable-item::after,
.nestable .nestable-list .nestable-item-copy::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.nestable .nestable-list .nestable-item .nestable-item-content .floatL,
.nestable .nestable-list .nestable-item-copy .nestable-item-content .floatL {
  padding: 5px 5px 5px 0;
  margin-left: 15px;
  min-width: 50px;
  display: table-cell;
  /* Firefox fix */
}
.nestable .nestable-list .nestable-item .nestable-item-content .floatL + .nestable-item-content-title,
.nestable .nestable-list .nestable-item-copy .nestable-item-content .floatL + .nestable-item-content-title {
  display: block;
  overflow: hidden;
  padding: 5px 5px 5px 5px;
  white-space: normal;
  word-break: break-word;
  word-wrap: break-word;
  display: table-cell;
  /* Firefox fix */
}
@media (min-width: 1200px) {
  .role-learner .nestable .nestable-list .nestable-item .nestable-item-content .floatL,
  .role-learner .nestable .nestable-list .nestable-item-copy .nestable-item-content .floatL {
    margin-left: 55px;
  }
}
.nestable .nestable-list .nestable-item.is-dragging *,
.nestable .nestable-list .nestable-item-copy.is-dragging * {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.nestable .nestable-list .nestable-item.is-dragging .nestable-list,
.nestable .nestable-list .nestable-item-copy.is-dragging .nestable-list {
  pointer-events: none;
}
.nestable .nestable-list .nestable-item.is-dragging:before,
.nestable .nestable-list .nestable-item-copy.is-dragging:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e5e5e5;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: calc(1em * 1.4 + 6px);
  min-width: 100px;
  border: 0;
}
.nestable .nestable-list .nestable-list {
  margin-left: 55px;
}
.nestable .nestable-drag-layer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}
.nestable .nestable-drag-layer > .nestable-list {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle {
  /* Default button style */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  padding: 3px 14px;
  text-align: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font-weight: 400;
  font-size: inherit;
  border: 0;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  font-size: 16px;
  line-height: 23px;
  min-width: 80px;
  white-space: nowrap;
  background-color: #0059ae;
  /* Default button style */
  background: -moz-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0059ae 0%, #313c8c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn1', endColorstr='@ColorBtn1a', GradientType=1);
  /* IE6-9 */
  /* Default button style */
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  /* Default button style */
  background-color: #1fa686;
  /* Old browsers */
  background: -moz-linear-gradient(left, #1fa686 0%, #189d7e 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #1fa686 0%, #189d7e 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #1fa686 0%, #189d7e 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn2', endColorstr='@ColorBtn2a', GradientType=1);
  /* IE6-9 */
  white-space: normal;
  text-align: left;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  transform: scale(1.15);
  cursor: pointer;
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
  width: auto;
  display: inline-block;
}
@media (max-width: 768px) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle {
    font-size: 16px;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:focus,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:hover {
  color: #fff;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle.fullW {
  white-space: normal;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.icon,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fa,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.far,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fab,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.icon,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fa,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.far,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fab,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle {
    font-size: 16px;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:focus,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:hover {
  color: #fff;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle.fullW {
  white-space: normal;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.icon,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fa,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.far,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fab,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.icon,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fa,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.far,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fab,
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle > img + span {
  margin-left: 5px;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-item-content .nestable-handle .floatL {
  min-width: 0;
  width: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy.black-text-color > .nestable-item-content .nestable-handle {
  cursor: default !important;
  background: #eee !important;
  color: #aaa !important;
  pointer-events: none;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-list {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.nestable .nestable-drag-layer > .nestable-list > .nestable-item-copy > .nestable-list .nestable-item-content .floatL {
  display: none;
}
.nestable [draggable="true"] {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  cursor: pointer;
  /* fallback if grab cursor is unsupported */
}
.nestable .nestable-item.green-text-color .nestable-handle {
  display: inline-table;
  /* Firefox fix */
  padding-right: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Default button style */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  padding: 3px 14px;
  text-align: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font-weight: 400;
  font-size: inherit;
  border: 0;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  cursor: pointer;
  font-size: 16px;
  line-height: 23px;
  min-width: 80px;
  white-space: nowrap;
  background-color: #0059ae;
  /* Default button style */
  background: -moz-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0059ae 0%, #313c8c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0059ae 0%, #313c8c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn1', endColorstr='@ColorBtn1a', GradientType=1);
  /* IE6-9 */
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 5px !important;
  padding-right: 20px !important;
  margin-left: -5px;
  float: left;
}
@media (max-width: 768px) {
  .nestable .nestable-item.green-text-color .nestable-handle {
    font-size: 16px;
  }
}
.nestable .nestable-item.green-text-color .nestable-handle,
.nestable .nestable-item.green-text-color .nestable-handle:focus,
.nestable .nestable-item.green-text-color .nestable-handle:hover {
  color: #fff;
}
.nestable .nestable-item.green-text-color .nestable-handle.fullW {
  white-space: normal;
}
.nestable .nestable-item.green-text-color .nestable-handle > span:first-child.icon,
.nestable .nestable-item.green-text-color .nestable-handle > span:first-child.fa,
.nestable .nestable-item.green-text-color .nestable-handle > span:first-child.far,
.nestable .nestable-item.green-text-color .nestable-handle > span:first-child.fab,
.nestable .nestable-item.green-text-color .nestable-handle > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
.nestable .nestable-item.green-text-color .nestable-handle > * + span.icon,
.nestable .nestable-item.green-text-color .nestable-handle > * + span.fa,
.nestable .nestable-item.green-text-color .nestable-handle > * + span.far,
.nestable .nestable-item.green-text-color .nestable-handle > * + span.fab,
.nestable .nestable-item.green-text-color .nestable-handle > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
.nestable .nestable-item.green-text-color .nestable-handle > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  .nestable .nestable-item.green-text-color .nestable-handle:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.nestable .nestable-item.green-text-color .nestable-handle:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .nestable .nestable-item.green-text-color .nestable-handle:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .nestable .nestable-item.green-text-color .nestable-handle {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.nestable .nestable-item.green-text-color .nestable-handle > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.nestable .nestable-item.green-text-color .nestable-handle > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .nestable .nestable-item.green-text-color .nestable-handle {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.nestable .nestable-item.green-text-color .nestable-handle > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.nestable .nestable-item.green-text-color .nestable-handle > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .nestable .nestable-item.green-text-color .nestable-handle {
    font-size: 16px;
  }
}
.nestable .nestable-item.green-text-color .nestable-handle,
.nestable .nestable-item.green-text-color .nestable-handle:focus,
.nestable .nestable-item.green-text-color .nestable-handle:hover {
  color: #fff;
}
.nestable .nestable-item.green-text-color .nestable-handle.fullW {
  white-space: normal;
}
.nestable .nestable-item.green-text-color .nestable-handle > span:first-child.icon,
.nestable .nestable-item.green-text-color .nestable-handle > span:first-child.fa,
.nestable .nestable-item.green-text-color .nestable-handle > span:first-child.far,
.nestable .nestable-item.green-text-color .nestable-handle > span:first-child.fab,
.nestable .nestable-item.green-text-color .nestable-handle > span:first-child.fas {
  margin-right: 5px;
  margin-left: 0;
  top: 1px;
}
.nestable .nestable-item.green-text-color .nestable-handle > * + span.icon,
.nestable .nestable-item.green-text-color .nestable-handle > * + span.fa,
.nestable .nestable-item.green-text-color .nestable-handle > * + span.far,
.nestable .nestable-item.green-text-color .nestable-handle > * + span.fab,
.nestable .nestable-item.green-text-color .nestable-handle > * + span.fas {
  margin-right: 0;
  margin-left: 5px;
  top: 1px;
}
.nestable .nestable-item.green-text-color .nestable-handle > *:not(.middle):not(.bottom) {
  vertical-align: top;
}
@media (hover: none) and (pointer: coarse) {
  .nestable .nestable-item.green-text-color .nestable-handle:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.nestable .nestable-item.green-text-color .nestable-handle:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .nestable .nestable-item.green-text-color .nestable-handle:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (max-width: 768px) {
  .nestable .nestable-item.green-text-color .nestable-handle {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.nestable .nestable-item.green-text-color .nestable-handle > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.nestable .nestable-item.green-text-color .nestable-handle > img + span {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .nestable .nestable-item.green-text-color .nestable-handle {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.nestable .nestable-item.green-text-color .nestable-handle > img {
  height: 23.8px;
  padding-top: 3.4px;
  padding-bottom: 3.4px;
}
.nestable .nestable-item.green-text-color .nestable-handle > img + span {
  margin-left: 5px;
}
.nestable .nestable-item.green-text-color .nestable-handle,
.nestable .nestable-item.green-text-color .nestable-handle:hover,
.nestable .nestable-item.green-text-color .nestable-handle:focus {
  color: #0059ae;
}
.nestable .nestable-item.green-text-color .nestable-handle,
.nestable .nestable-item.green-text-color .nestable-handle.button-disabled {
  background: transparent !important;
}
.nestable .nestable-item.green-text-color .nestable-handle:hover,
.nestable .nestable-item.green-text-color .nestable-handle:focus {
  background: rgba(0, 0, 0, 0.05) !important;
}
.nestable .nestable-item.green-text-color .nestable-handle > img {
  -webkit-filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
  filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
}
.nestable .nestable-item.green-text-color .nestable-handle,
.nestable .nestable-item.green-text-color .nestable-handle:hover,
.nestable .nestable-item.green-text-color .nestable-handle:focus {
  color: #0059ae;
}
.nestable .nestable-item.green-text-color .nestable-handle,
.nestable .nestable-item.green-text-color .nestable-handle.button-disabled {
  background: transparent !important;
}
.nestable .nestable-item.green-text-color .nestable-handle:hover,
.nestable .nestable-item.green-text-color .nestable-handle:focus {
  background: rgba(0, 0, 0, 0.05) !important;
}
.nestable .nestable-item.green-text-color .nestable-handle > img {
  -webkit-filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
  filter: invert(19%) sepia(50%) saturate(10000%) hue-rotate(197deg) brightness(70%) contrast(100%);
}
.nestable .nestable-item.green-text-color .nestable-handle > * {
  text-align: left;
}
.nestable .nestable-item.green-text-color .nestable-handle:hover {
  /* Default button style */
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* IE6-9 */
  /* Default button style */
  background-color: #1fa686;
  /* Old browsers */
  background: -moz-linear-gradient(left, #1fa686 0%, #189d7e 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #1fa686 0%, #189d7e 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #1fa686 0%, #189d7e 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@ColorBtn2', endColorstr='@ColorBtn2a', GradientType=1);
  /* IE6-9 */
}
.nestable .black-text-color,
.nestable .black-text-color > .nestable-item-content * {
  cursor: not-allowed;
}
/* SCORM content */
.scorm .scorm-header {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.scormContent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.scormContent .scormContent-header {
  background-color: #dcdcdc;
  padding: 15px 36px;
  height: 54px;
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.scormContent .scormContent-header .icon-button {
  color: rgba(0, 0, 0, 0.3);
  float: right;
  margin-top: -3px;
  margin-right: -14px;
  margin-left: 10px;
}
.scormContent .scormContent-pageHeader {
  height: 60px;
  padding-left: 3px;
  padding-right: 12px;
  border-bottom: 1px solid #ddd;
}
.scormContent .scormContent-pageHeader .scormContent-pageHeader-nav {
  float: right;
  height: inherit;
}
.scormContent .scormContent-pageHeader .scormContent-pageHeader-nav span {
  vertical-align: middle;
}
.scormContent .scormContent-pageHeader .scormContent-pageHeader-nav:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  visibility: hidden;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .scormContent .scormContent-pageHeader .scormContent-pageHeader-nav .button {
    min-width: auto;
    width: auto;
    padding-left: 8px;
    padding-right: 8px;
  }
  .scormContent .scormContent-pageHeader .scormContent-pageHeader-nav .button .icon {
    margin: 0;
  }
}
.scormContent .scormContent-pageHeader .scormContent-pageHeader-info {
  overflow: hidden;
  margin-top: 7px;
}
.scormContent .scormContent-pageHeader .scormContent-pageHeader-time {
  font-size: 14px;
  color: #888;
  font-weight: 400;
  height: 20px;
  padding-left: 14px;
}
@media (max-width: 768px) {
  .scormContent .scormContent-pageHeader .scormContent-pageHeader-time {
    font-size: 14px;
  }
}
.scormContent .scormContent-pageHeader .scormContent-pageHeader-time span:first-child {
  margin-right: 5px;
}
.scormContent .scormContent-pageHeader .scormContent-pageHeader-buttons .button {
  vertical-align: top;
}
.scormContent .scormContent-pageHeader .scormContent-pageHeader-buttons:first-child {
  margin-top: 10px;
}
.scormContent .scormContent-list {
  background-color: #f3f3f3;
  overflow-y: auto;
  padding-top: 17px;
}
.scormContent .scormContent-main {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.scormContent .scormContent-main .scormContent-main-controller {
  display: none;
}
.scormContent .scormContent-main.scormContent-main-enlarged {
  position: fixed;
  top: 0 !important;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  max-width: 100% !important;
  background: white;
  z-index: 4;
}
.scormContent .scormContent-main.scormContent-main-enlarged .scormContent-main-controller {
  display: block;
  height: 30px;
  background: #555;
}
.scormContent .scormContent-main.scormContent-main-enlarged .scormContent-main-controller > * {
  color: white;
}
.scormContent .scormContent-main.scormContent-main-enlarged .scormContent-iframe {
  height: calc(100% - 30px);
}
.scormContent .scormContent-iframe {
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 970px) {
  .scormContent .scormContent-list {
    width: 25%;
    min-width: 200px;
    position: fixed;
    top: 54px;
    left: 0;
    bottom: 0;
  }
  .scormContent .scormContent-list #btnCloseScormContentList {
    display: none;
  }
  .scormContent .scormContent-list ~ .scormContent-main,
  .scormContent .scormContent-list ~ .scormContent-pageHeader {
    width: 75%;
    max-width: calc(100% - 200px);
  }
  .scormContent .scormContent-pageHeader {
    width: 100%;
    position: fixed;
    right: 0;
    top: 54px;
  }
  .scormContent .scormContent-pageHeader #btnOpenScormContentList {
    display: none;
  }
  .scormContent .scormContent-pageHeader ~ .scormContent-main {
    top: 114px;
  }
  .scormContent .scormContent-main {
    width: 100%;
    position: fixed;
    right: 0;
    top: 54px;
    bottom: 48px;
  }
}
@media (max-width: 969px) {
  .scormContent .scormContent-header {
    z-index: 3;
    padding-left: 18px;
    padding-right: 18px;
  }
  .scormContent .scormContent-list {
    position: fixed;
    top: 54px;
    left: 0;
    bottom: 0;
    width: 350px;
    z-index: 2;
    -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    margin-left: -380px;
    padding-top: 60px;
    text-align: right;
  }
  .scormContent .scormContent-list > * {
    text-align: left;
  }
  .scormContent .scormContent-list #btnCloseScormContentList {
    position: fixed;
    margin-top: -60px;
    margin-left: -45px;
    width: 45px;
    height: 60px;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 60px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 4;
  }
  .scormContent .scormContent-list #btnCloseScormContentList.fa-pull-left {
    margin-right: .3em;
  }
  .scormContent .scormContent-list #btnCloseScormContentList.fa-pull-right {
    margin-left: .3em;
  }
  .scormContent .scormContent-list #btnCloseScormContentList:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .scormContent .scormContent-list #btnCloseScormContentList:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  .scormContent .scormContent-list #btnCloseScormContentList,
  .scormContent .scormContent-list #btnCloseScormContentList:hover {
    color: #0059ae;
  }
  .scormContent .scormContent-list #btnCloseScormContentList:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .scormContent .scormContent-list #btnCloseScormContentList:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  .scormContent .scormContent-list #btnCloseScormContentList,
  .scormContent .scormContent-list #btnCloseScormContentList:hover {
    color: #0059ae;
  }
  .scormContent .scormContent-list #btnCloseScormContentList::after {
    content: "\f053";
  }
  .scormContent .scormContent-list ~ .scormContent-pageHeader {
    padding-left: 50px;
  }
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 60px;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    line-height: 60px;
    font-size: 18px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.03);
    z-index: 3;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList.fa-pull-left {
    margin-right: .3em;
  }
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList.fa-pull-right {
    margin-left: .3em;
  }
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList,
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList:hover {
    color: #0059ae;
  }
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList,
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList:hover {
    color: #0059ae;
  }
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList::after {
    content: "\f022";
  }
  .scormContent .scormContent-pageHeader {
    z-index: 1;
    width: 75%;
    position: fixed;
    right: 0;
    top: 54px;
    width: 100%;
  }
  .scormContent .scormContent-pageHeader #btnOpenScormContentList {
    display: none;
  }
  .scormContent .scormContent-pageHeader ~ .scormContent-main {
    top: 114px;
  }
  .scormContent .scormContent-main {
    z-index: 1;
    position: fixed;
    top: 54px;
    right: 0;
    width: 100%;
    bottom: 48px;
  }
  .scormContent.showScormContentList .scormContent-list {
    margin-left: 0;
  }
}
@media (max-width: 969px) and (max-width: 768px) {
  .scormContent .scormContent-list #btnCloseScormContentList {
    font-size: 18px;
  }
}
@media (max-width: 969px) and (hover: none) and (pointer: coarse) {
  .scormContent .scormContent-list #btnCloseScormContentList:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 969px) and (hover: hover) {
  .eContent-main .scormContent .scormContent-list #btnCloseScormContentList:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .scormContent .scormContent-list #btnCloseScormContentList:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (max-width: 969px) and (hover: none) and (pointer: coarse) {
  .scormContent .scormContent-list #btnCloseScormContentList:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 969px) and (hover: hover) {
  .eContent-main .scormContent .scormContent-list #btnCloseScormContentList:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .scormContent .scormContent-list #btnCloseScormContentList:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (max-width: 969px) and (max-width: 768px) {
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList {
    font-size: 18px;
  }
}
@media (max-width: 969px) and (hover: none) and (pointer: coarse) {
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 969px) and (hover: hover) {
  .eContent-main .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (max-width: 969px) and (hover: none) and (pointer: coarse) {
  .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 969px) and (hover: hover) {
  .eContent-main .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .scormContent .scormContent-list ~ .scormContent-pageHeader #btnOpenScormContentList:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (max-width: 768px) {
  .scormContent .scormContent-pageHeader .scormContent-pageHeader-time {
    padding-left: 8px;
  }
  .scormContent .scormContent-pageHeader .scormContent-pageHeader-buttons .button {
    padding-left: 8px;
    padding-right: 8px;
    min-width: auto;
  }
}
@media (max-width: 480px) {
  .scormContent .scormContent-list {
    width: 320px;
  }
  .scormContent .scormContent-pageHeader {
    padding-right: 8px;
  }
  .scormContent .scormContent-pageHeader .scormContent-pageHeader-buttons .button .icon,
  .scormContent .scormContent-pageHeader .scormContent-pageHeader-buttons .button .fa,
  .scormContent .scormContent-pageHeader .scormContent-pageHeader-buttons .button .far,
  .scormContent .scormContent-pageHeader .scormContent-pageHeader-buttons .button .fab,
  .scormContent .scormContent-pageHeader .scormContent-pageHeader-buttons .button .fas {
    display: none;
  }
}
.eContentTree.eContentTree-scorm .eContentTree-item div:not(.icon) {
  padding: 5px 5px 5px 0;
  margin-left: 30px;
}
@media (min-width: 1200px) {
  .eContentTree.eContentTree-scorm .eContentTree-item div:not(.icon) {
    margin-left: 55px;
  }
}
.eContentTree.eContentTree-scorm .eContentTree-item.eContentTree-scormItem-viewed::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  left: 5px;
  top: 4px;
  content: "\f058";
  color: #aaa;
  font-size: 18px;
  z-index: 1;
}
.eContentTree.eContentTree-scorm .eContentTree-item.eContentTree-scormItem-viewed::before.fa-pull-left {
  margin-right: .3em;
}
.eContentTree.eContentTree-scorm .eContentTree-item.eContentTree-scormItem-viewed::before.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  .eContentTree.eContentTree-scorm .eContentTree-item.eContentTree-scormItem-viewed::before {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .eContentTree.eContentTree-scorm .eContentTree-item.eContentTree-scormItem-viewed::before {
    left: 17px;
  }
}
.eContentTree.eContentTree-scorm .eContentTree-item.eContentTree-scormItem-passed::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  left: 5px;
  top: 4px;
  content: "\f058";
  color: #0ea84f;
  font-size: 18px;
  z-index: 1;
}
.eContentTree.eContentTree-scorm .eContentTree-item.eContentTree-scormItem-passed::before.fa-pull-left {
  margin-right: .3em;
}
.eContentTree.eContentTree-scorm .eContentTree-item.eContentTree-scormItem-passed::before.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  .eContentTree.eContentTree-scorm .eContentTree-item.eContentTree-scormItem-passed::before {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .eContentTree.eContentTree-scorm .eContentTree-item.eContentTree-scormItem-passed::before {
    left: 17px;
  }
}
.eContentTree.eContentTree-scorm .eContentTree-item.eContentTree-item-active.eContentTree-scormItem-viewed::before {
  color: #fff;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.eContentTree.eContentTree-scorm .eContentTree-item.eContentTree-item-active.eContentTree-scormItem-passed::before {
  color: #fff;
  opacity: 1;
}
.eContentTree#blkEContentList-Tree > .eContentTree-section > .eContentTree-item div:not([data-toggle="collapse"]),
.eContentTree.eContentTree-scorm > .eContentTree-section > .eContentTree-item div:not([data-toggle="collapse"]) {
  font-weight: bolder;
  font-weight: 500;
}
/* End of eContent */
/* QB */
#pClassroom-QB {
  z-index: 1;
}
#pClassroom-QB #blkQBMenu {
  background-color: #f3f3f3;
  overflow-y: auto;
  padding-top: 20px;
}
#pClassroom-QB #blkQBMenu #blkQBMenuButtons a {
  color: inherit;
}
#pClassroom-QB #blkQBMenu #blkQBMenuButtons a:not(:first-child) .qbMenuButton {
  border-top: 1px solid #ddd;
}
#pClassroom-QB #blkQBMenu #blkQBMenuButtons .qbMenuButton {
  padding: 10px 30px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#pClassroom-QB #blkQBMenu #blkQBMenuButtons .qbMenuButton.qbMenuButton-active {
  background-color: #29acf3;
  color: #fff;
}
#pClassroom-QB #blkQBMenu #blkQBMenuButtons .qbMenuButton:not(.qbMenuButton-active):hover {
  background-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  #pClassroomNav.scrollTopFix-fixed + #pClassroom-QB #blkQBMenu {
    top: 40px;
  }
}
#pClassroom-QB #btnOpenQBMenu,
#pClassroom-QB #btnCloseQBMenu {
  display: none;
}
#pClassroom-QB #blkQBMain .portalArea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0);
  margin-top: 0;
}
#pClassroom-QB #blkQBMain .portalArea .systemMsg-floated {
  margin-right: 25px;
}
@media (max-width: 768px) {
  #pClassroom-QB #blkQBMain .portalArea .systemMsg-floated {
    margin-right: 15px;
  }
}
#pClassroom-QB ~ #blkFooter {
  width: 100%;
  max-width: 100%;
  padding-right: 20px;
}
@media (min-width: 769px) {
  .role-trainer #pClassroom-QB {
    padding-top: 40px;
  }
}
@media (min-width: 970px) {
  #pClassroom-QB {
    text-align: right;
  }
  #pClassroom-QB #blkQBMenu {
    width: 25%;
    min-width: 200px;
    max-width: 280px;
    position: fixed;
    top: 88px;
    left: 0;
    bottom: 0;
    text-align: left;
  }
  .role-learner #pClassroom-QB #blkQBMenu {
    top: 48px;
    padding-top: 17px;
  }
  #pClassroom-QB #blkQBMain {
    width: 75%;
    min-width: calc(100% - 280px);
    max-width: calc(100% - 200px);
    display: inline-block;
    text-align: left;
  }
  .role-trainer #pClassroom-QB #blkQBMain {
    min-height: calc(100vh - 48px - 40px - 90px + 1px);
    /* maintain min-height to keep scroll bar */
  }
  .role-learner #pClassroom-QB #blkQBMain {
    min-height: calc(100vh - 48px - 90px + 1px);
    /* maintain min-height to keep scroll bar */
  }
}
@media (max-width: 969px) {
  #pClassroom-QB #blkQBMenu {
    position: fixed;
    top: 88px;
    left: 0;
    bottom: 0;
    width: 350px;
    z-index: 2;
    -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    margin-left: -380px;
    padding-top: 60px;
    text-align: right;
  }
  #pClassroom-QB #blkQBMenu > * {
    text-align: left;
  }
  #pClassroom-QB #blkQBMenu #btnCloseQBMenu {
    position: fixed;
    margin-top: -60px;
    margin-left: -45px;
    width: 45px;
    height: 60px;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 60px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 4;
  }
  #pClassroom-QB #blkQBMenu #btnCloseQBMenu.fa-pull-left {
    margin-right: .3em;
  }
  #pClassroom-QB #blkQBMenu #btnCloseQBMenu.fa-pull-right {
    margin-left: .3em;
  }
  #pClassroom-QB #blkQBMenu #btnCloseQBMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    #pClassroom-QB #blkQBMenu #btnCloseQBMenu:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  #pClassroom-QB #blkQBMenu #btnCloseQBMenu,
  #pClassroom-QB #blkQBMenu #btnCloseQBMenu:hover {
    color: #0059ae;
  }
  #pClassroom-QB #blkQBMenu #btnCloseQBMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(0.9);
    filter: brightness(1.2) contrast(0.9);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    #pClassroom-QB #blkQBMenu #btnCloseQBMenu:not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
  #pClassroom-QB #blkQBMenu #btnCloseQBMenu,
  #pClassroom-QB #blkQBMenu #btnCloseQBMenu:hover {
    color: #0059ae;
  }
  #pClassroom-QB #blkQBMenu #btnCloseQBMenu::after {
    content: "\f053";
  }
  #pClassroom-QB #blkQBMain {
    z-index: 1;
  }
  #pClassroom-QB #blkQBMain .portalNavBar-back {
    margin-left: 10px;
  }
  #pClassroom-QB #blkQBMain #btnOpenQBMenu {
    display: block;
  }
  #pClassroom-QB #blkQBMain #btnOpenQBMenu::before {
    content: "\f022";
  }
  #pClassroom-QB.showQBMenu #blkQBMenu {
    margin-left: 0;
  }
}
@media (max-width: 969px) and (hover: none) and (pointer: coarse) {
  #pClassroom-QB #blkQBMenu #btnCloseQBMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 969px) and (hover: hover) {
  .eContent-main #pClassroom-QB #blkQBMenu #btnCloseQBMenu:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main #pClassroom-QB #blkQBMenu #btnCloseQBMenu:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (max-width: 969px) and (hover: none) and (pointer: coarse) {
  #pClassroom-QB #blkQBMenu #btnCloseQBMenu:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
@media (max-width: 969px) and (hover: hover) {
  .eContent-main #pClassroom-QB #blkQBMenu #btnCloseQBMenu:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main #pClassroom-QB #blkQBMenu #btnCloseQBMenu:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (max-width: 768px) {
  #pClassroom-QB #blkQBMenu {
    top: 80px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  #pClassroom-QB #blkQBMenu {
    width: 320px;
  }
}
.classroom #blkQBMain .table th:first-child .dropdownMenuButton:before,
.classroom #blkQBMain .table th:first-child .dropdownMenuButton[aria-expanded="true"]:before {
  content: "\f142";
}
.addMc-options .addMc-option {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
.addMc-options .addMc-option:not(:first-child) {
  padding-top: 15px;
}
.addMc-options .addMc-option .itemLabel::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.addMc-options .addMc-option .itemLabel > span {
  float: left;
  text-align: center;
}
@media (min-width: 769px) {
  .addMc-options .addMc-option .itemLabel > span {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .addMc-options .addMc-option .itemLabel > span {
    padding-right: 15px;
  }
}
@media (min-width: 769px) {
  .addMc-options .addMc-option .itemInput {
    width: calc(80% + 13px);
    min-width: calc(100% - 300px + 13px);
  }
}
.addMc-options .addMc-option .itemInput .icon {
  float: right;
}
.addMc-options .addMc-option .itemInput .icon + div {
  overflow: hidden;
}
@media (max-width: 768px) {
  .addMc-options .addMc-option .item {
    margin-bottom: 12px;
  }
}
.addMc-options .button {
  margin-top: 15px;
}
@media (min-width: 769px) {
  .addMc-options .button {
    margin-left: -14px;
  }
}
.addQuestion-HER::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.addQuestion-HER > * {
  float: left;
  line-height: 24px;
}
.addQuestion-HER .itemLabel {
  padding-top: 0;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .addQuestion-HER .itemLabel {
    font-size: 16px;
  }
}
@media (min-width: 769px) {
  .addQuestion-HER .itemLabel {
    width: auto;
  }
}
@media (max-width: 768px) {
  .addQuestion-HER .itemLabel {
    height: 32px;
  }
}
@media (max-width: 480px) {
  .addQuestion-HER .itemLabel {
    width: 100%;
  }
}
.addQuestion-HER .itemLabel > .icon {
  margin-right: 5px;
  vertical-align: top;
}
.addQuestion-HER .itemLabel ~ * {
  padding-left: 20px;
  padding-right: 20px;
  font-size: smaller;
}
.addQuestion-HER .itemLabel ~ *:not(:last-of-type) {
  border-right: 1px solid #ddd;
}
@media (max-width: 768px) {
  .addQuestion-HER .itemLabel ~ * {
    margin-bottom: 10px;
  }
}
.qbInfo {
  background: #f8f8f8;
  padding: 30px 36px 20px 36px;
}
.qbInfo::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.qbInfo .qbInfo-item {
  vertical-align: top;
  font-size: 13px;
  margin-right: 50px;
  max-width: 250px;
}
@media (max-width: 768px) {
  .qbInfo .qbInfo-item {
    font-size: 13px;
  }
}
.qbInfo .qbInfo-item .qbInfo-itemTitle {
  color: #0059ae;
  font-weight: 400;
}
.qbInfo .qbInfo-item .qbInfo-itemDetail {
  color: #999;
  word-break: break-word;
  word-wrap: break-word;
}
.qbInfo .qbInfo-item:not(:last-child) {
  margin-bottom: 10px;
}
.qbInfo .qbInfo-right {
  float: right;
  border-left: 1px solid #eee;
  margin-top: -5px;
}
.qbInfo .qbInfo-right .qbInfo-item {
  float: right;
  text-align: right;
  margin-left: 30px;
}
.qbInfo .qbInfo-right .qbInfo-item .qbInfo-itemTitle {
  font-size: 16px;
  color: #0059ae;
}
@media (max-width: 768px) {
  .qbInfo .qbInfo-right .qbInfo-item .qbInfo-itemTitle {
    font-size: 16px;
  }
}
.qbInfo .qbInfo-right .qbInfo-item .qbInfo-itemDetail {
  font-size: 22px;
  font-weight: 600;
  color: #0059ae;
}
@media (max-width: 768px) {
  .qbInfo .qbInfo-right .qbInfo-item .qbInfo-itemDetail {
    font-size: 22px;
  }
}
.qbInfo .qbInfo-rightNoStyle {
  float: right;
  border-left: 1px solid #eee;
}
.qbInfo .qbInfo-rightNoStyle .qbInfo-item {
  float: right;
  margin-left: 25px;
}
@media (max-width: 969px) {
  .qbInfo {
    padding: 30px 15px 20px;
  }
  .qbInfo .qbInfo-right,
  .qbInfo .qbInfo-rightNoStyle {
    float: none;
  }
  .qbInfo .qbInfo-right::after,
  .qbInfo .qbInfo-rightNoStyle::after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
  }
  .qbInfo .qbInfo-right .qbInfo-item,
  .qbInfo .qbInfo-rightNoStyle .qbInfo-item {
    text-align: left;
    float: left;
    margin-left: 0;
    margin-right: 30px;
  }
  .qbInfo .qbInfo-right:first-child,
  .qbInfo .qbInfo-rightNoStyle:first-child {
    border-left: 0;
    border-bottom: 1px solid #eee;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .qbInfo * ~ .qbInfo-right,
  .qbInfo * ~ .qbInfo-rightNoStyle {
    border-left: 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
    padding-top: 15px;
  }
}
#tblImportFormat td {
  vertical-align: middle;
  padding-bottom: 10px;
}
#tblImportFormat td:first-child {
  width: 1%;
  white-space: nowrap;
  padding-right: 20px;
}
/* End of QB */
/* Evaluation */
#pClassroom-Evaluation {
  z-index: 1;
}
#pClassroom-Evaluation #blkEvaluationMain .portalArea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0);
  margin-top: 0;
}
#pClassroom-Evaluation #blkEvaluationMain .portalArea .systemMsg-floated {
  margin-right: 25px;
}
@media (max-width: 768px) {
  #pClassroom-Evaluation #blkEvaluationMain .portalArea .systemMsg-floated {
    margin-right: 15px;
  }
}
#pClassroom-Evaluation ~ #blkFooter {
  width: 100%;
  max-width: 100%;
  padding-right: 20px;
}
@media (min-width: 769px) {
  .role-trainer #pClassroom-Evaluation {
    padding-top: 40px;
  }
}
@media (min-width: 970px) {
  .role-trainer #pClassroom-Evaluation #blkQBMain {
    min-height: calc(100vh - 48px - 40px - 90px + 1px);
    /* maintain min-height to keep scroll bar */
  }
  .role-learner #pClassroom-Evaluation #blkQBMain {
    min-height: calc(100vh - 48px - 90px + 1px);
    /* maintain min-height to keep scroll bar */
  }
}
.evaluation {
  background: #fff;
  padding-left: 36px;
  padding-right: 36px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.evaluation::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
@media (max-width: 768px) {
  .evaluation {
    padding-left: 2.5%;
    padding-right: 2.5%;
  }
}
.dialog-m .evaluation {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}
#cBody > article.evaluation:first-child {
  margin-top: -48px;
}
@media (max-width: 768px) {
  #cBody > article.evaluation:first-child {
    margin-top: 0;
  }
}
.evaluation .evaluation-header {
  background-color: #dcdcdc;
  padding: 15px 36px;
  margin: -30px -36px 40px -36px;
}
@media (max-width: 768px) {
  .evaluation .evaluation-header {
    padding-left: 18px;
    padding-right: 18px;
    margin: -30px -2.63157895% 0 -2.63157895%;
  }
}
.dialog-m .evaluation .evaluation-header {
  display: none;
}
.evaluation .q-list {
  display: block;
}
.evaluation .q-list .q-list-item {
  border: 1px solid #dddddd;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  margin-bottom: 20px;
  display: block;
}
.evaluation .q-list .q-list-item.required .q-header .q-title::after {
  content: "*";
  display: inline-block;
  margin-left: 2px;
}
.evaluation .q-list .q-list-item .q-header {
  padding: 10px 15px;
  background: #f8f8f8;
}
.evaluation .q-list .q-list-item .q-header::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.evaluation .q-list .q-list-item .q-header .q-no {
  float: left;
  margin-right: 10px;
}
.evaluation .q-list .q-list-item .q-header .q-no + .q-title {
  overflow: hidden;
}
.evaluation .q-list .q-list-item .q-body {
  padding: 15px 10px 15px 45px;
}
.evaluation .q-list .q-list-item .q-body::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.evaluation .q-list .q-list-item .q-body .itemInput {
  margin-top: -18px;
}
.evaluation .q-list .q-list-item .q-body .itemInput,
.evaluation .q-list .q-list-item .q-body .itemInput > .textbox,
.evaluation .q-list .q-list-item .q-body .itemInput > .textarea,
.evaluation .q-list .q-list-item .q-body .itemInput > #cke_ckeditor {
  float: none;
  width: 100%;
  max-width: 100%;
}
.evaluation .q-list .q-list-item .q-body .itemInput + .remark {
  margin-top: 10px;
  margin-bottom: 0;
}
.evaluation .q-list .q-list-item .q-body .itemInput-choice span:not(.remark),
.evaluation .q-list .q-list-item .q-body .itemInput-choice div:not(.remark) {
  width: 100%;
  margin-right: 0;
  padding-bottom: 8px;
}
.evaluation .opt-list {
  display: block;
}
.evaluation .opt-list .opt-list-item {
  display: block;
  padding: 8px;
  margin-bottom: 5px;
}
.evaluation .opt-list .opt-list-item .drag-handle {
  float: left;
  display: block;
}
.evaluation .opt-list .opt-list-item .drag-handle .icon {
  line-height: inherit;
  padding: inherit;
  color: #0059ae;
  cursor: pointer;
  padding: 3px 12px;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  color: #aaa;
  cursor: grab;
}
@media (hover: none) and (pointer: coarse) {
  .evaluation .opt-list .opt-list-item .drag-handle .icon:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.evaluation .opt-list .opt-list-item .drag-handle .icon:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .evaluation .opt-list .opt-list-item .drag-handle .icon:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .evaluation .opt-list .opt-list-item .drag-handle .icon:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.evaluation .opt-list .opt-list-item .drag-handle .icon:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .evaluation .opt-list .opt-list-item .drag-handle .icon:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.evaluation .opt-list .opt-list-item .drag-handle .icon :focus {
  cursor: grabbing;
}
.evaluation .opt-list .opt-list-item .drag-handle + .opt-text {
  overflow: hidden;
  display: block;
}
.evaluation .form-submission {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 2;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  max-width: 100%;
  padding-bottom: 40px;
}
.evaluation .form-submission::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
@media (min-width: 769px) {
  .evaluation .form-submission .button {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 768px) {
  .evaluation .form-submission {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 480px) {
  .evaluation .form-submission .button.floatR.button-secondary {
    margin-right: 0;
  }
}
.likertScale::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
@media (min-width: 769px) {
  .likertScale > div {
    float: left;
  }
  .likertScale > div:first-child {
    width: 25%;
    text-align: right;
    padding-right: 20px;
    font-weight: bolder;
    font-weight: 500;
    color: #aaa;
  }
  .likertScale > div:first-child + div {
    width: 50%;
    text-align: center;
  }
  .likertScale > div:nth-child(2)::after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
  }
  .likertScale > div:nth-child(2) table td label {
    margin-bottom: 0;
    cursor: pointer;
  }
  .likertScale > div:last-child {
    width: 25%;
    padding-left: 20px;
    font-weight: bolder;
    font-weight: 500;
    color: #aaa;
  }
}
@media (max-width: 768px) {
  .likertScale > div:first-child,
  .likertScale > div:last-child {
    font-weight: bolder;
    font-weight: 500;
    color: #aaa;
    line-height: 2;
  }
  .likertScale > div > table,
  .likertScale > div > table > tbody,
  .likertScale > div > table tr,
  .likertScale > div > table td {
    display: block;
  }
  .likertScale > div > table tr:first-child {
    float: left;
    padding-right: 10px;
  }
  .likertScale > div > table tr:first-child + tr {
    overflow: hidden;
  }
  .likertScale > div > table td {
    padding-bottom: 8px;
  }
}
.evaluation-graph {
  margin-bottom: 20px;
}
.evaluation-graph .card {
  background: #f8f8f8;
  border: none;
  box-shadow: none;
}
.evaluation-graph .card .card-header {
  cursor: pointer;
  background: inherit;
  border: none;
}
.evaluation-graph .card .card-header .graph-title {
  position: relative;
  text-align: left;
  font-weight: normal;
  font-size: 16px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .evaluation-graph .card .card-header .graph-title {
    font-size: 16px;
  }
}
.evaluation-graph .card .card-header .graph-title .average {
  color: #0ea84f;
}
.evaluation-graph .card .card-header .graph-title:after {
  position: absolute;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f077";
  right: 0;
  top: 0;
  color: #666;
}
.evaluation-graph .card .card-header .graph-title:after.fa-pull-left {
  margin-right: .3em;
}
.evaluation-graph .card .card-header .graph-title:after.fa-pull-right {
  margin-left: .3em;
}
.evaluation-graph .card .card-header .graph-title.collapsed:after {
  content: "\f078";
}
.evaluation-graph .card .card-block {
  padding: 1rem 2rem;
}
.evaluation-graph .bar-chart {
  width: 100%;
  margin-bottom: 1rem;
}
.evaluation-graph .bar-chart tr:not(:last-child) td:nth-child(2) {
  width: 70%;
  border-left: 1px solid #999;
  padding: 0;
}
.evaluation-graph .bar-chart tr:last-child td:nth-child(2) {
  border-top: 1px solid #999;
}
.evaluation-graph .bar-chart tr:not(:last-child) td:first-child {
  padding-right: 5px;
}
.evaluation-graph .bar-chart .progress {
  border-radius: 0;
}
.evaluation-graph .bar-chart .progress-bar {
  height: 17px;
  background-color: #69be45;
}
.evaluation-graph .bar-chart .x-axis {
  position: relative;
}
.evaluation-graph .bar-chart .x-axis .x-mark.mark0 {
  position: absolute;
  left: 0;
  top: 0;
}
.evaluation-graph .bar-chart .x-axis .x-mark.mark0:after {
  content: '0';
}
.evaluation-graph .bar-chart .x-axis .x-mark.mark5 {
  position: absolute;
  left: 50%;
  top: 0;
}
.evaluation-graph .bar-chart .x-axis .x-mark.mark5:after {
  content: '5';
}
.evaluation-graph .bar-chart .x-axis .x-mark.mark10 {
  position: absolute;
  right: 1px;
  top: 0;
}
.evaluation-graph .bar-chart .x-axis .x-mark.mark10:after {
  content: '10';
}
.evaluation-graph .bar-chart .x-axis .x-mark:before {
  content: '';
  width: 1px;
  height: 5px;
  background: #999;
  position: absolute;
  left: 0;
}
.evaluation-graph .bar-chart .x-axis .x-mark:after {
  content: '0';
  font-size: 0.8em;
  position: absolute;
  left: -0.25em;
  top: 5px;
}
.evaluation-graph .percentage {
  width: 90%;
  margin-left: 10%;
  table-layout: fixed;
}
.evaluation-graph .percentage td:not(:first-child) {
  text-align: center;
}
.evaluation-graph .percentage td:nth-child(2) {
  font-weight: bold;
  font-weight: 600;
}
@media (max-width: 768px) {
  .evaluation-graph .percentage {
    width: 100%;
    margin-left: 0;
  }
}
/* End of Evaluation */
/* Quiz */
.question {
  padding: 30px 36px;
}
@media (max-width: 768px) {
  .question {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.question .question-quesNum {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  color: #aaa;
  font-size: 20px;
  letter-spacing: 0.5px;
}
.question .question-quesNum .question-quesNum-flag {
  float: right;
  margin-left: 7px;
  cursor: pointer;
  padding-left: 3px;
  padding-right: 5px;
}
.question .question-quesNum .question-quesNum-flag:after {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f02e";
  font-size: 16px !important;
  line-height: 28px !important;
}
.question .question-quesNum .question-quesNum-flag:after.fa-pull-left {
  margin-right: .3em;
}
.question .question-quesNum .question-quesNum-flag:after.fa-pull-right {
  margin-left: .3em;
}
.question .question-quesNum .question-quesNum-flag:hover {
  color: #ffba00;
}
.question .question-quesNum .question-quesNum-flag.question-quesNum-flagged {
  color: #ffba00;
}
.question .question-quesNum .question-quesNum-flag.question-quesNum-flagged:after {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.question .question-quesNum .question-quesNum-flag.question-quesNum-flagged:after.fa-pull-left {
  margin-right: .3em;
}
.question .question-quesNum .question-quesNum-flag.question-quesNum-flagged:after.fa-pull-right {
  margin-left: .3em;
}
.question .question-quesNum .question-quesNum-flag:not(.question-quesNum-flagged):after {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.question .question-quesNum .question-quesNum-flag:not(.question-quesNum-flagged):after.fa-pull-left {
  margin-right: .3em;
}
.question .question-quesNum .question-quesNum-flag:not(.question-quesNum-flagged):after.fa-pull-right {
  margin-left: .3em;
}
.question .question-quesNum .question-quesNum-flag + div {
  overflow: hidden;
}
@-moz-document url-prefix() /* Firefox fix */ {
  .question .question-quesNum .question-quesNum-flag + div {
    margin-right: 35px;
  }
}
.question .question-quesNum .question-quesNum-score {
  float: right;
  margin-left: 20px;
  font-size: 17px;
  line-height: 28px;
  font-weight: normal;
  letter-spacing: normal;
}
@media (max-width: 768px) {
  .question .question-quesNum .question-quesNum-score {
    font-size: 17px;
  }
}
.question .question-quesNum .question-quesNum-score:before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
  font-size: 20px;
}
.question .question-quesNum .question-quesNum-score:before.fa-pull-left {
  margin-right: .3em;
}
.question .question-quesNum .question-quesNum-score:before.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  .question .question-quesNum .question-quesNum-score:before {
    font-size: 20px;
  }
}
.question .question-quesNum .question-quesNum-score.question-quesNum-score-correct:before {
  content: "\f00c";
  color: #0ea84f;
}
.question .question-quesNum .question-quesNum-score.question-quesNum-score-wrong:before {
  content: "\f00d";
  color: #ca5555;
}
.question .question-quesNum .question-quesNum-score > * {
  vertical-align: top;
}
.question .question-quesNum .question-quesNum-score + div {
  overflow: hidden;
}
@-moz-document url-prefix() /* Firefox fix */ {
  .question .question-quesNum .question-quesNum-score + div {
    margin-right: 150px;
  }
}
.question .question-title {
  font-weight: 600;
  margin-bottom: 20px;
}
.question .question-title span {
  display: inline;
}
.question li {
  list-style-position: inside;
}
.question figure.table td,
.question figure.table th {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.question .question-content {
  margin-bottom: 20px;
}
.question .question-content .question-img {
  display: inline-block;
}
.question .question-content .question-img:not(.fullW) {
  max-width: 600px;
}
.question .question-content .question-img img {
  width: 100%;
}
.question .question-content .question-img .icon-button {
  position: absolute;
  right: 10px;
  top: 10px;
  color: white;
  font-size: 28px;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
  -webkit-filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
}
.question .question-content .question-img .icon-button:before {
  content: "\f424";
}
.question .question-content .question-img.fullW .icon-button:before {
  content: "\f422";
}
.question .question-content span {
  display: inline;
}
.question .question-ans-mc {
  margin-bottom: 80px;
}
.question .question-ans-mc .question-ans-mc-choice {
  margin-bottom: 15px;
}
.question .question-ans-mc .question-ans-mc-choice .question-ans-mc-check {
  float: left;
}
.question .question-ans-mc .question-ans-mc-choice .question-ans-mc-content {
  overflow: hidden;
}
@media (min-width: 769px) {
  .question .question-ans-mc .question-ans-mc-choice .question-ans-mc-check {
    float: left;
  }
  .question .question-ans-mc .question-ans-mc-choice .question-ans-mc-check + label {
    overflow: hidden;
  }
  .question .question-ans-mc .question-ans-mc-choice .question-ans-mc-content {
    overflow: hidden;
  }
  .question .question-ans-mc .question-ans-mc-choice .question-ans-mc-content p span {
    display: inline;
  }
}
@media (max-width: 768px) {
  .question .question-ans-mc .question-ans-mc-choice .question-ans-mc-content {
    margin: 10px 0 10px 36px;
  }
}
.question .question-ans-mc .question-ans-mc-choice .question-ans-mc-check + label {
  display: block;
  font-size: inherit;
  line-height: inherit;
}
.question .question-ans-mc .question-ans-mc-choice .question-ans-mc-content.question-ans-mc-content-correct,
.question .question-ans-mc .question-ans-mc-choice .question-ans-mc-content.question-ans-mc-content-correct * {
  color: #0ea84f;
}
.question .question-ans-mc .question-ans-mc-choice .question-ans-mc-content.question-ans-mc-content-wrong,
.question .question-ans-mc .question-ans-mc-choice .question-ans-mc-content.question-ans-mc-content-wrong * {
  color: #ca5555;
}
.question .question-HER {
  margin-bottom: 60px;
}
.question .question-HER p span {
  display: inline;
}
.question .question-HER-title {
  font-size: 13px;
  color: #aaa;
  font-weight: bold;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .question .question-HER-title {
    font-size: 13px;
  }
}
.question .question-HER-title:before {
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0eb";
  margin-right: 8px;
}
.question .question-HER-title:before.fa-pull-left {
  margin-right: .3em;
}
.question .question-HER-title:before.fa-pull-right {
  margin-left: .3em;
}
.question .question-HER-title:before.fa-pull-left {
  margin-right: .3em;
}
.question .question-HER-title:before.fa-pull-right {
  margin-left: .3em;
}
.question .question-attachments {
  margin-bottom: 60px;
}
.question .question-attachments p span {
  display: inline;
}
.question .question-attachments .question-attachments-title {
  font-size: 13px;
  color: #aaa;
  font-weight: bold;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .question .question-attachments .question-attachments-title {
    font-size: 13px;
  }
}
.question .question-attachments .question-attachments-title:before {
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0eb";
  margin-right: 8px;
}
.question .question-attachments .question-attachments-title:before.fa-pull-left {
  margin-right: .3em;
}
.question .question-attachments .question-attachments-title:before.fa-pull-right {
  margin-left: .3em;
}
.question .question-attachments .question-attachments-title:before.fa-pull-left {
  margin-right: .3em;
}
.question .question-attachments .question-attachments-title:before.fa-pull-right {
  margin-left: .3em;
}
.question .question-attachments .question-attachments-title:before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0c6";
}
.question .question-attachments .question-attachments-title:before.fa-pull-left {
  margin-right: .3em;
}
.question .question-attachments .question-attachments-title:before.fa-pull-right {
  margin-left: .3em;
}
.question .question-attachments .question-attachments-item:not(:first-child) {
  margin-top: 15px;
}
.question .question-attachments .question-attachments-item .question-attachments-item-title a {
  margin-top: 5px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 21px;
}
.question .question-attachments .question-attachments-item .question-attachments-item-title a img {
  position: absolute;
  margin-right: 0;
  width: 16px;
  top: 3.9px;
  left: 0;
}
@media (max-width: 768px) {
  .question .question-attachments .question-attachments-item .question-attachments-item-title a img {
    top: 3.9px;
  }
}
.question .question-attachments .question-attachments-item .question-attachments-item-content {
  margin-top: 15px;
  padding-bottom: 15px;
}
.question .question-attachments .question-attachments-item .question-attachments-item-content .question-attachments-img {
  display: inline-block;
}
.question .question-attachments .question-attachments-item .question-attachments-item-content .question-attachments-img:not(.fullW) {
  max-width: 600px;
}
.question .question-attachments .question-attachments-item .question-attachments-item-content .question-attachments-img img {
  width: 100%;
}
.question .question-attachments .question-attachments-item .question-attachments-item-content .question-attachments-img .icon-button {
  position: absolute;
  right: 10px;
  top: 10px;
  color: white;
  font-size: 28px;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
  -webkit-filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
}
.question .question-attachments .question-attachments-item .question-attachments-item-content .question-attachments-img .icon-button:before {
  content: "\f424";
}
.question .question-attachments .question-attachments-item .question-attachments-item-content .question-attachments-img.fullW .icon-button:before {
  content: "\f422";
}
.question .question-attachments .question-attachments-item .question-attachments-item-content .question-attachments-audio,
.question .question-attachments .question-attachments-item .question-attachments-item-content .question-attachments-video {
  max-width: 600px;
}
.question .question-hints {
  margin-bottom: 60px;
}
.question .question-hints p span {
  display: inline;
}
.question .question-hints .question-hints-title {
  font-size: 13px;
  color: #aaa;
  font-weight: bold;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .question .question-hints .question-hints-title {
    font-size: 13px;
  }
}
.question .question-hints .question-hints-title:before {
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0eb";
  margin-right: 8px;
}
.question .question-hints .question-hints-title:before.fa-pull-left {
  margin-right: .3em;
}
.question .question-hints .question-hints-title:before.fa-pull-right {
  margin-left: .3em;
}
.question .question-hints .question-hints-title:before.fa-pull-left {
  margin-right: .3em;
}
.question .question-hints .question-hints-title:before.fa-pull-right {
  margin-left: .3em;
}
.question .question-explanations {
  margin-bottom: 60px;
}
.question .question-explanations p span {
  display: inline;
}
.question .question-explanations .question-explanations-title {
  font-size: 13px;
  color: #aaa;
  font-weight: bold;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .question .question-explanations .question-explanations-title {
    font-size: 13px;
  }
}
.question .question-explanations .question-explanations-title:before {
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0eb";
  margin-right: 8px;
}
.question .question-explanations .question-explanations-title:before.fa-pull-left {
  margin-right: .3em;
}
.question .question-explanations .question-explanations-title:before.fa-pull-right {
  margin-left: .3em;
}
.question .question-explanations .question-explanations-title:before.fa-pull-left {
  margin-right: .3em;
}
.question .question-explanations .question-explanations-title:before.fa-pull-right {
  margin-left: .3em;
}
.question .question-explanations .question-explanations-title::before {
  content: "\f27a";
}
.question .question-references {
  margin-bottom: 60px;
}
.question .question-references p span {
  display: inline;
}
.question .question-references .question-references-title {
  font-size: 13px;
  color: #aaa;
  font-weight: bold;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .question .question-references .question-references-title {
    font-size: 13px;
  }
}
.question .question-references .question-references-title:before {
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0eb";
  margin-right: 8px;
}
.question .question-references .question-references-title:before.fa-pull-left {
  margin-right: .3em;
}
.question .question-references .question-references-title:before.fa-pull-right {
  margin-left: .3em;
}
.question .question-references .question-references-title:before.fa-pull-left {
  margin-right: .3em;
}
.question .question-references .question-references-title:before.fa-pull-right {
  margin-left: .3em;
}
.question .question-references .question-references-title::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f02d";
}
.question .question-references .question-references-title::before.fa-pull-left {
  margin-right: .3em;
}
.question .question-references .question-references-title::before.fa-pull-right {
  margin-left: .3em;
}
.mc-check {
  vertical-align: top;
}
.mc-check .mc-checkbox {
  width: 24px;
  height: 24px;
  margin-bottom: 0;
  display: inline-block;
}
.mc-check .mc-checkbox > span {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  background-color: #fff;
  border: 1px solid #ccc;
}
.mc-check .mc-checkbox > input[checked="checked"] + span,
.mc-check .mc-checkbox input:checked + span {
  background-color: #4786d9;
  border: 1px solid #3772c6;
}
.mc-check .mc-checkbox > input:not(:disabled) + span {
  cursor: pointer;
}
.mc-label {
  color: #2e93d7;
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  padding-left: 15px;
  padding-right: 15px;
  vertical-align: top;
}
@media (max-width: 768px) {
  .mc-label {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .mc-label {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.mc-label label {
  font-size: inherit;
}
.quiz {
  padding-bottom: 55px;
  /* Align buttons to center */
}
#cBody > article.quiz:first-child {
  margin-top: -48px;
}
@media (max-width: 768px) {
  #cBody > article.quiz:first-child {
    margin-top: 0;
  }
}
.quiz .quiz-header {
  background-color: #dddddd;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 15px 36px;
}
.quiz .quiz-header::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
@media (max-width: 768px) {
  .quiz .quiz-header {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.quiz .quiz-header .icon-button {
  color: rgba(0, 0, 0, 0.3);
  float: right;
  margin-top: -3px;
  margin-right: -14px;
  margin-left: 10px;
}
.quiz .quiz-info {
  background: #fff;
  padding: 15px 36px;
  color: #0073e1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .quiz .quiz-info {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.quiz .quiz-info::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(0, 89, 174, 0.1);
}
.quiz .quiz-info.scrollTopFix-fixed {
  width: 100%;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.quiz .quiz-info.scrollTopFix-fixed + .question {
  z-index: 1;
  margin-top: 85px;
}
.quiz .quiz-info .quiz-info-countDown {
  font-size: 16px;
}
@media (max-width: 768px) {
  .quiz .quiz-info .quiz-info-countDown {
    font-size: 16px;
  }
}
.quiz .quiz-info .quiz-info-countDown .quiz-info-countDown-time {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .quiz .quiz-info .quiz-info-countDown .quiz-info-countDown-time {
    font-size: 22px;
  }
}
.quiz .quiz-info .quiz-info-countDown .quiz-info-countDown-time::before {
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f2f2";
  margin-right: 8px;
}
.quiz .quiz-info .quiz-info-countDown .quiz-info-countDown-time::before.fa-pull-left {
  margin-right: .3em;
}
.quiz .quiz-info .quiz-info-countDown .quiz-info-countDown-time::before.fa-pull-right {
  margin-left: .3em;
}
.quiz .quiz-info .quiz-info-score {
  font-size: 16px;
}
@media (max-width: 768px) {
  .quiz .quiz-info .quiz-info-score {
    font-size: 16px;
  }
}
.quiz .quiz-info .quiz-info-score .quiz-info-score-value {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .quiz .quiz-info .quiz-info-score .quiz-info-score-value {
    font-size: 22px;
  }
}
.quiz .quiz-info .quiz-info-progress {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: inherit;
}
.quiz .quiz-info .quiz-info-progress .dropdown-toggle {
  float: right;
  font-weight: 500;
  background-color: rgba(0, 89, 174, 0.55);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  padding: 6px 15px;
  border-radius: 10.5px;
  -moz-border-radius: 10.5px;
  -webkit-border-radius: 10.5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .quiz .quiz-info .quiz-info-progress .dropdown-toggle {
    font-size: 15px;
  }
}
@media (min-width: 769px) {
  .quiz .quiz-info .quiz-info-progress .dropdown-toggle {
    transform: scale(1.1);
    transform-origin: bottom right;
  }
}
@media (max-width: 768px) {
  .quiz .quiz-info .quiz-info-progress .dropdown-toggle {
    top: -5px;
    font-size: 13px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .quiz .quiz-info .quiz-info-progress .dropdown-toggle {
    transform: scale(1.1);
  }
}
@media (max-width: 480px) {
  .quiz .quiz-info .quiz-info-progress .dropdown-toggle {
    letter-spacing: -0.02em;
    transform: scale(1.08);
    transform-origin: bottom right;
  }
}
.quiz .quiz-info .quiz-info-progress .dropdown-toggle:after {
  border: none;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f078";
  display: inline-block;
  line-height: 1;
  font-size: smaller;
  width: auto;
  height: auto;
}
.quiz .quiz-info .quiz-info-progress .dropdown-toggle:after.fa-pull-left {
  margin-right: .3em;
}
.quiz .quiz-info .quiz-info-progress .dropdown-toggle:after.fa-pull-right {
  margin-left: .3em;
}
.quiz .quiz-info .quiz-info-progress .dropdown-toggle[aria-expanded="true"] {
  border-radius: 10.5px 10.5px 0 0;
  -moz-border-radius: 10.5px 10.5px 0 0;
  -webkit-border-radius: 10.5px 10.5px 0 0;
}
.quiz .quiz-info .quiz-info-progress .dropdown-toggle[aria-expanded="true"]:after {
  content: "\f077";
}
.quiz .quiz-info .quiz-info-progress .dropdown-toggle .quiz-info-progress-toggleFigure {
  padding-left: 8px;
  font-weight: 300;
}
.quiz .quiz-info .quiz-info-progress .dropdown-toggle .quiz-info-progress-toggleFigure:not(:last-of-type) {
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.quiz .quiz-info .quiz-info-progress .dropdown-toggle .fa-flag:before {
  content: "\f02e";
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown {
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  margin: -1px -15px 0 -15px;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
  padding: 30px 0 20px 30px;
}
@media (min-width: 769px) {
  .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown {
    min-width: 300px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown {
    width: calc(100% + 20px);
    margin: -1px -10px 0 -10px;
  }
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum {
  float: left;
  padding-right: 20px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  margin-right: 10px;
  min-width: 46px;
  font-size: 14px;
  text-align: right;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: inherit !important;
}
@media (max-width: 768px) {
  .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum {
    min-width: 46px;
    font-size: 14px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum,
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
@media (hover: none) and (pointer: coarse) {
  .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:not(:disabled):not(.disabled):hover {
    -webkit-filter: none !important;
    filter: none !important;
  }
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:not(:disabled):not(.disabled):hover {
  -webkit-filter: brightness(1.2) contrast(0.9);
  filter: brightness(1.2) contrast(0.9);
}
@-moz-document url-prefix() /* Firefox fix */ {
  .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:not(:disabled):not(.disabled):hover {
    -webkit-filter: none;
    filter: none;
  }
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum,
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:hover {
  color: #0059ae;
}
@media (hover: hover) {
  .eContent-main .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
    -webkit-filter: brightness(1.2) contrast(1);
    filter: brightness(1.2) contrast(1);
  }
  @-moz-document url-prefix() /* Firefox fix */ {
    .eContent-main .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:not(.button):not(.icon-button):not([class^="button-"]):not([class^="btn-"]):not(:disabled):not(.disabled):hover {
      -webkit-filter: none;
      filter: none;
    }
  }
}
.role-learner .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum {
  padding-bottom: 15px;
}
.role-learner .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum:after {
  position: absolute;
  content: "";
  bottom: 5px;
  right: 20px;
  width: 17px;
  height: 7px;
  background-color: #d2d2d2;
  border-radius: 3.5px;
  -moz-border-radius: 3.5px;
  -webkit-border-radius: 3.5px;
}
.role-learner .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-done:after {
  background-color: #0ea84f;
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-flagged:before {
  position: absolute;
  right: 0px;
  top: 1px;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f02e";
  color: #ffba00;
  font-size: 15px;
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-flagged:before.fa-pull-left {
  margin-right: .3em;
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-flagged:before.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-flagged:before {
    font-size: 15px;
  }
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-correct,
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-wrong {
  margin-bottom: 0;
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-correct:after,
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-wrong:after {
  display: none;
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-correct:before {
  position: absolute;
  right: 0px;
  top: 1px;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00c";
  color: #0ea84f;
  font-size: 15px;
  width: 15px;
  text-align: center;
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-correct:before.fa-pull-left {
  margin-right: .3em;
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-correct:before.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-correct:before {
    font-size: 15px;
  }
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-wrong:before {
  position: absolute;
  right: 0px;
  top: 1px;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00d";
  color: #ca5555;
  font-size: 15px;
  width: 15px;
  text-align: center;
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-wrong:before.fa-pull-left {
  margin-right: .3em;
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-wrong:before.fa-pull-right {
  margin-left: .3em;
}
@media (max-width: 768px) {
  .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-quesNum.quiz-info-progress-quesNum-wrong:before {
    font-size: 15px;
  }
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-legend {
  font-size: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 15px 30px 0 38px;
  margin-left: -30px;
  float: left;
  width: calc(100% + 30px);
}
@media (max-width: 768px) {
  .quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-legend {
    font-size: 14px;
  }
}
.quiz .quiz-info .quiz-info-progress .quiz-info-progress-dropdown .quiz-info-progress-legend:before {
  display: inline-block;
  content: "";
  width: 17px;
  height: 7px;
  background-color: #0ea84f;
  border-radius: 3.5px;
  -moz-border-radius: 3.5px;
  -webkit-border-radius: 3.5px;
  margin-right: 5px;
}
.quiz .quiz-intro {
  padding: 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .quiz .quiz-intro {
    padding: 30px 20px;
  }
}
.quiz .quiz-intro .quiz-intro-content {
  margin-bottom: 20px;
  text-align: left;
  word-break: break-word;
  word-wrap: break-word;
}
.quiz .quiz-intro .quiz-intro-content li {
  list-style-position: inside;
}
.quiz .quiz-intro .quiz-intro-content p span {
  display: inline;
}
.quiz .quiz-intro .quiz-intro-content .question-img {
  display: inline-block;
}
.quiz .quiz-intro .quiz-intro-content .question-img:not(.fullW) {
  max-width: 600px;
}
.quiz .quiz-intro .quiz-intro-content .question-img img {
  width: 100%;
}
.quiz .quiz-intro .quiz-intro-content .question-img .icon-button {
  position: absolute;
  right: 10px;
  top: 10px;
  color: white;
  font-size: 28px;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
  -webkit-filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
}
.quiz .quiz-intro .quiz-intro-content .question-img .icon-button:before {
  content: "\f424";
}
.quiz .quiz-intro .quiz-intro-content .question-img.fullW .icon-button:before {
  content: "\f422";
}
.quiz .quiz-intro .quiz-intro-figures {
  margin-top: 50px;
}
@media (min-width: 769px) {
  .quiz .quiz-intro .quiz-intro-figures {
    display: inline-block;
  }
}
.quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure .quiz-intro-figure-title {
  font-weight: 500;
  color: #9f9f9f;
  margin-bottom: 10px;
}
.quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure .quiz-intro-figure-data {
  font-weight: 300;
  color: #313c8c;
  font-size: 36px;
}
@media (min-width: 769px) {
  .quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure {
    float: left;
    width: 242.25px;
    max-width: 25%;
  }
  .quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure:not(:last-child) {
    border-right: 1px solid #eee;
  }
  .quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure img {
    width: 40px;
  }
}
@media (max-width: 768px) {
  .quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
  .quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure > * {
    display: inline-block;
    vertical-align: middle;
  }
  .quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure img {
    width: 60px;
  }
  .quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure .quiz-intro-figure-title {
    width: 40%;
    margin-bottom: 0;
  }
  .quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure .quiz-intro-figure-data {
    width: calc(40% - 60px);
  }
}
@media (max-width: 480px) {
  .quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure img {
    width: 10%;
  }
  .quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure .quiz-intro-figure-title {
    text-align: left;
    padding-left: 5px;
  }
  .quiz .quiz-intro .quiz-intro-figures .quiz-intro-figure .quiz-intro-figure-data {
    width: 45%;
    font-size: 28px;
  }
}
@media (min-width: 769px) {
  .quiz .quiz-intro + .form-submission .button {
    min-width: 150px;
  }
}
.quiz .quiz-result {
  text-align: center;
  padding-top: 50px;
}
.quiz .quiz-result .quiz-result-badge-passed {
  color: #0ea84f;
  font-weight: 600;
  font-size: 50px;
  letter-spacing: 1px;
  padding-top: 70px;
}
.quiz .quiz-result .quiz-result-badge-passed .icon {
  display: none !important;
}
.quiz .quiz-result .quiz-result-badge-failed {
  color: #ca5555;
  font-weight: 600;
  font-size: 50px;
  letter-spacing: 1px;
  padding-top: 70px;
}
.quiz .quiz-result .quiz-result-badge-passed,
.quiz .quiz-result .quiz-result-badge-failed {
  font-size: 40px;
  color: #777;
}
.quiz .quiz-result .quiz-result-score {
  color: #aaa;
  font-size: 36px;
  line-height: 50px;
  margin-top: 15px;
  margin-bottom: 30px;
}
.quiz .quiz-result .quiz-result-score::before {
  display: inline-block;
  content: "";
  margin-right: 10px;
  width: 50px;
  height: 50px;
  background-image: url("/intranet/images/icon-quiz-result-score.png");
  background-size: 50px 50px;
  vertical-align: top;
}
.quiz .quiz-result .quiz-result-msg {
  padding: 30px 15px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 19px;
}
@media (max-width: 768px) {
  .quiz .quiz-result .quiz-result-msg {
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .quiz .quiz-result + .form-submission .button {
    min-width: 150px;
  }
}
.quiz .form-submission {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 2;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  max-width: 100%;
  padding-bottom: 40px;
}
.quiz .form-submission::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}
@media (min-width: 769px) {
  .quiz .form-submission .button {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 768px) {
  .quiz .form-submission {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 480px) {
  .quiz .form-submission .button.floatR.button-secondary {
    margin-right: 0;
  }
}
.quiz .quiz-intro + .form-submission .button,
.quiz .quiz-result + .form-submission .button {
  padding-left: 10px;
  padding-right: 10px;
  min-width: auto;
  margin-left: 5px;
  margin-right: 5px;
}
@media (max-width: 480px) {
  .quiz .quiz-intro + .form-submission .button,
  .quiz .quiz-result + .form-submission .button {
    padding: 7px 18px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    min-width: 100px;
    font-size: 18px;
    line-height: 26px;
    font-size: 16px !important;
    min-width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
  .quiz .quiz-intro + .form-submission .button > img,
  .quiz .quiz-result + .form-submission .button > img {
    height: 26px;
    padding-top: -1px;
    padding-bottom: -1px;
  }
  .quiz .quiz-intro + .form-submission .button > img + span,
  .quiz .quiz-result + .form-submission .button > img + span {
    margin-left: 5px;
  }
  .quiz .quiz-intro + .form-submission .button > img,
  .quiz .quiz-result + .form-submission .button > img {
    height: 26px;
    padding-top: -1px;
    padding-bottom: -1px;
  }
  .quiz .quiz-intro + .form-submission .button > img + span,
  .quiz .quiz-result + .form-submission .button > img + span {
    margin-left: 5px;
  }
  .quiz .quiz-intro + .form-submission .button.button-secondary:before,
  .quiz .quiz-result + .form-submission .button.button-secondary:before {
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .quiz .quiz-intro + .form-submission .button,
  .quiz .quiz-result + .form-submission .button {
    font-size: 18px;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .quiz .quiz-intro + .form-submission .button,
  .quiz .quiz-result + .form-submission .button {
    font-size: 18px;
  }
}
@media (max-width: 480px) and (max-width: 374px) {
  .quiz .quiz-intro + .form-submission .button,
  .quiz .quiz-result + .form-submission .button {
    border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
    font-size: 14px !important;
  }
  .quiz .quiz-intro + .form-submission .button > img,
  .quiz .quiz-result + .form-submission .button > img {
    height: 23.8px;
    padding-top: 3.4px;
    padding-bottom: 3.4px;
  }
  .quiz .quiz-intro + .form-submission .button > img + span,
  .quiz .quiz-result + .form-submission .button > img + span {
    margin-left: 5px;
  }
  .quiz .quiz-intro + .form-submission .button > img,
  .quiz .quiz-result + .form-submission .button > img {
    height: 23.8px;
    padding-top: 3.4px;
    padding-bottom: 3.4px;
  }
  .quiz .quiz-intro + .form-submission .button > img + span,
  .quiz .quiz-result + .form-submission .button > img + span {
    margin-left: 5px;
  }
  .quiz .quiz-intro + .form-submission .button.button-secondary:before,
  .quiz .quiz-result + .form-submission .button.button-secondary:before {
    border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
  }
}
@media (max-width: 480px) and (max-width: 374px) and (max-width: 768px) {
  .quiz .quiz-intro + .form-submission .button,
  .quiz .quiz-result + .form-submission .button {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
@media (max-width: 480px) and (max-width: 374px) and (max-width: 768px) {
  .quiz .quiz-intro + .form-submission .button,
  .quiz .quiz-result + .form-submission .button {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.quiz .question + .form-submission {
  text-align: center;
}
.quiz .question + .form-submission .button.floatL,
.quiz .question + .form-submission .button.floatR {
  float: none;
  margin-left: 3px;
  margin-right: 3px !important;
}
@media (min-width: 769px) {
  .quiz .question + .form-submission .button.floatL {
    margin-right: 0;
  }
  .quiz .question + .form-submission .button {
    padding: 7px 18px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    min-width: 100px;
    font-size: 18px;
    line-height: 26px;
  }
  .quiz .question + .form-submission .button > img {
    height: 26px;
    padding-top: -1px;
    padding-bottom: -1px;
  }
  .quiz .question + .form-submission .button > img + span {
    margin-left: 5px;
  }
  .quiz .question + .form-submission .button > img {
    height: 26px;
    padding-top: -1px;
    padding-bottom: -1px;
  }
  .quiz .question + .form-submission .button > img + span {
    margin-left: 5px;
  }
  .quiz .question + .form-submission .button.button-secondary:before {
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  .quiz .question + .form-submission .button {
    font-size: 18px;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  .quiz .question + .form-submission .button {
    font-size: 18px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .quiz .question + .form-submission .button {
    padding: 7px 18px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    min-width: 100px;
    font-size: 18px;
    line-height: 26px;
  }
  .quiz .question + .form-submission .button > img {
    height: 26px;
    padding-top: -1px;
    padding-bottom: -1px;
  }
  .quiz .question + .form-submission .button > img + span {
    margin-left: 5px;
  }
  .quiz .question + .form-submission .button > img {
    height: 26px;
    padding-top: -1px;
    padding-bottom: -1px;
  }
  .quiz .question + .form-submission .button > img + span {
    margin-left: 5px;
  }
  .quiz .question + .form-submission .button.button-secondary:before {
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
@media (min-width: 481px) and (max-width: 768px) and (max-width: 768px) {
  .quiz .question + .form-submission .button {
    font-size: 18px;
  }
}
@media (min-width: 481px) and (max-width: 768px) and (max-width: 768px) {
  .quiz .question + .form-submission .button {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .quiz .question + .form-submission .button {
    padding: 7px 18px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    min-width: 100px;
    font-size: 18px;
    line-height: 26px;
    font-size: 16px !important;
    min-width: auto;
    padding-right: 19px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 0;
    margin-right: 0;
    min-width: 70px;
  }
  .quiz .question + .form-submission .button > img {
    height: 26px;
    padding-top: -1px;
    padding-bottom: -1px;
  }
  .quiz .question + .form-submission .button > img + span {
    margin-left: 5px;
  }
  .quiz .question + .form-submission .button > img {
    height: 26px;
    padding-top: -1px;
    padding-bottom: -1px;
  }
  .quiz .question + .form-submission .button > img + span {
    margin-left: 5px;
  }
  .quiz .question + .form-submission .button.button-secondary:before {
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  }
  .quiz .question + .form-submission .button.button-secondary.floatR {
    margin-right: 10px;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .quiz .question + .form-submission .button {
    font-size: 18px;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .quiz .question + .form-submission .button {
    font-size: 18px;
  }
}
@media (max-width: 480px) and (max-width: 374px) {
  .quiz .question + .form-submission .button {
    border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
    font-size: 14px !important;
  }
  .quiz .question + .form-submission .button > img {
    height: 23.8px;
    padding-top: 3.4px;
    padding-bottom: 3.4px;
  }
  .quiz .question + .form-submission .button > img + span {
    margin-left: 5px;
  }
  .quiz .question + .form-submission .button > img {
    height: 23.8px;
    padding-top: 3.4px;
    padding-bottom: 3.4px;
  }
  .quiz .question + .form-submission .button > img + span {
    margin-left: 5px;
  }
  .quiz .question + .form-submission .button.button-secondary:before {
    border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
  }
}
@media (max-width: 480px) and (max-width: 374px) and (max-width: 768px) {
  .quiz .question + .form-submission .button {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
@media (max-width: 480px) and (max-width: 374px) and (max-width: 768px) {
  .quiz .question + .form-submission .button {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.quiz figure.table td,
.quiz figure.table th {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.quiz ~ .backToTop {
  bottom: 140px;
}
/* End of Quiz*/
#blkSteps {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}
#blkSteps::before {
  content: "";
  display: block;
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #dddddd;
}
#blkSteps .step {
  width: 105px;
  margin: 0 10px;
  vertical-align: top;
}
#blkSteps .step .step-order {
  width: 25px;
  height: 25px;
  line-height: 25px;
  color: white;
  font-size: 16px;
  font-weight: 400;
  background-color: #0059ae;
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #blkSteps .step .step-order {
    font-size: 16px;
  }
}
#blkSteps .step.step-past .step-order {
  background-color: #bbbbbb;
}
#blkSteps .step.step-current .step-order {
  background-color: #0059ae;
}
#blkSteps .step .step-description {
  font-size: 18px;
  font-weight: 300;
  color: #777777;
  line-height: 1;
}
@media (max-width: 768px) {
  #blkSteps .step .step-description {
    font-size: 18px;
  }
}
#blkSteps .step .step-description > div + div {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: -5px;
  margin-right: -5px;
  letter-spacing: -0.2px;
}
#blkSteps .step.step-past .step-description {
  color: #bbbbbb;
}
#blkSteps .step.step-current .step-description {
  color: #333333;
  font-weight: 500;
}
#blkSteps .step.clickable {
  cursor: pointer;
}
#blkSteps .step.clickable > * {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#blkSteps .step.clickable:hover .step-description {
  color: #333333;
}
#blkSteps .step.clickable .step-order::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid transparent;
  border-radius: 100% 100%;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
}
#blkSteps .step.clickable:hover .step-order::after {
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  border-color: #0059ae;
}
#blkSteps .step .step-past.clickable:hover .step-order::after {
  border-color: #bbbbbb;
}
#blkSteps #btnPrevStep,
#blkSteps #btnNextStep {
  font-size: 25px;
  color: #0059ae;
  margin-top: -33px;
  display: none;
}
#blkSteps #btnPrevStep {
  position: absolute;
  left: 0;
}
#blkSteps #btnNextStep {
  position: absolute;
  right: 0;
}
@media screen and (min-width: 1440px) {
  #blkSteps .step {
    width: 150px;
  }
}
@media (min-width: 769px) {
  body.portal {
    background-color: #f3f3f3;
  }
}
@media (max-width: 768px) {
  body.classroom {
    padding-top: 0;
  }
  .table-resp,
  .table-resp tbody,
  .table-resp tr,
  .table-resp td {
    display: block;
    width: 100% !important;
    padding: 5px 0 !important;
  }
  .table-resp > thead {
    display: none !important;
  }
  .table-resp > tbody > tr > td {
    word-break: break-word;
    word-wrap: break-word;
  }
  .table-resp > tbody > tr > td:first-child {
    padding-top: 10px !important;
  }
  .table-resp > tbody > tr > td:first-child ~ td {
    font-size: 14px;
    color: #777;
  }
  .table-resp > tbody > tr > td:last-child {
    padding-bottom: 10px !important;
  }
  .table-resp > tbody > tr > td .button {
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    min-width: 100px;
  }
  .table-resp > tbody > tr > td .button > img {
    height: 23.8px;
    padding-top: 3.4px;
    padding-bottom: 3.4px;
  }
  .table-resp > tbody > tr > td .button > img + span {
    margin-left: 5px;
  }
  .table-resp > tbody > tr > td .button > img {
    height: 23.8px;
    padding-top: 3.4px;
    padding-bottom: 3.4px;
  }
  .table-resp > tbody > tr > td .button > img + span {
    margin-left: 5px;
  }
  .button-primary {
    display: block !important;
  }
  .dialog-container .dialog-photo .closeDialog-button {
    position: fixed;
    left: auto;
    bottom: auto;
    top: 8px;
    right: 8px;
  }
  /* Portal */
  .portalArea {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    padding-left: 15px;
    padding-right: 15px;
  }
  .portalArea:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 150px;
    -webkit-border-radius: 10px 10px 50% 50%;
    border-radius: 10px 10px 50% 50%;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
    z-index: -1;
  }
  /* End of Portal */
  .submissionArea .button:first-child {
    float: none;
    margin-bottom: 10px;
  }
  .submissionArea .button-secondary.floatR {
    margin-right: 0;
  }
  #blkSteps .step {
    width: auto;
  }
  #blkSteps .step:not(.step-current) {
    display: none;
  }
  #blkSteps #btnPrevStep,
  #blkSteps #btnNextStep {
    display: block;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .table-resp > tbody > tr > td:first-child ~ td {
    font-size: 14px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .table-resp > tbody > tr > td .button {
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .table-resp > tbody > tr > td .button {
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  }
}
.role-learner * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.role-learner input,
.role-learner input:before,
.role-learner input:after {
  -webkit-user-select: initial !important;
  -khtml-user-select: initial !important;
  -moz-user-select: initial !important;
  -ms-user-select: initial !important;
  user-select: initial !important;
}
/* Pull to refresh */
.ptr--ptr {
  z-index: 0;
  background: white;
}
.ptr--ptr.ptr--pull,
.ptr--ptr.ptr--refresh {
  z-index: 99993;
}
.ptr--ptr + #cBody.ptr--top .quiz,
.ptr--ptr + #cBody.ptr--top .scorm {
  padding-top: 53.8px;
}
@media (max-width: 768px) {
  .ptr--ptr + #cBody.ptr--top .quiz,
  .ptr--ptr + #cBody.ptr--top .scorm {
    padding-top: 53.8px;
  }
}
.ptr--ptr + #cBody.ptr--top .quiz .quiz-header,
.ptr--ptr + #cBody.ptr--top .scorm .scorm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 440px) {
  /*datepicker*/
  .ui-datepicker-title {
    margin: 0 1.8em !important;
  }
}
