@charset "UTF-8";
/* -- Imports -- */
/*
 The stuff in this file is included here because it contains properties that HAVE to be able to be overwritten with
 class-level specificity so we're relying on cascade order. There may be things in here that are also stated in other places, and in those cases it the
 duplication is intentional.
 */
/* Create a fixed overlay on the screen */
/* Truncate a sring line with ellipsis*/
.trunc-width {
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}
.clear-button-appearance {
  -webkit-padding-after: 0;
  -webkit-padding-before: 0;
  -webkit-padding-start: 0;
  -moz-padding-start: 0;
  -webkit-padding-end: 0;
  -moz-padding-end: 0;
  -webkit-margin-after: 0;
  -webkit-margin-before: 0;
  -webkit-margin-start: 0;
  -moz-margin-start: 0;
  -webkit-margin-end: 0;
  -moz-margin-end: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
}
.div-like {
  font-weight: inherit;
  font-variant: inherit;
  font-style: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  margin: 0;
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
.animated.hinge {
  animation-duration: 2s;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  animation-name: bounce;
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    transform: scale(1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes slideInUp {
  0% {
    transform: translateY(2000px);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #428bca;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #2a6496;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
cite {
  font-style: normal;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-muted {
  color: #999999;
}
.text-primary {
  color: #428bca;
}
a.text-primary:hover {
  color: #3071a9;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #428bca;
}
a.bg-primary:hover {
  background-color: #3071a9;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #999999;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
blockquote:before,
blockquote:after {
  content: "";
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: 0%;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: 0%;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: 0%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: 0%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: 0%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: 0%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: 0%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: 0%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  max-width: 100%;
  background-color: transparent;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
@media (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999999;
}
.form-control::-webkit-input-placeholder {
  color: #999999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
input[type="date"] {
  line-height: 34px;
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}
.radio label,
.checkbox label {
  display: inline;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
.radio[disabled],
.radio-inline[disabled],
.checkbox[disabled],
.checkbox-inline[disabled],
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.has-feedback .form-control-feedback {
  position: absolute;
  top: 25px;
  right: 0;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.form-control-static {
  margin-bottom: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    vertical-align: middle;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
.form-horizontal .form-control-static {
  padding-top: 7px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 15px;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default,
.btn.btn-highlight:hover,
.btn.btn-highlight:active,
.btn.btn-highlight:focus {
  color: #333;
  background-color: #ebebeb;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default,
.btn.btn-highlight:active {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #3276b1;
  border-color: #285e8e;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary .badge {
  color: #428bca;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #47a447;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #39b3d7;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ed9c28;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #d2322d;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  color: #428bca;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #999999;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #428bca;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #999999;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: none;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  display: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #999999;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #999999;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #428bca;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #428bca;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  border: 1px solid #333;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #333;
  border-color: #333;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #333;
  background-color: #fff;
  border-color: #333;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #333;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #333;
  background-color: #fff;
  cursor: not-allowed;
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
.label[href]:hover,
.label[href]:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #999999;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #808080;
}
.label-primary {
  background-color: #428bca;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #3071a9;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #999999;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #428bca;
  background-color: #fff;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable {
  padding-right: 35px;
}
.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #428bca;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width 0.6s ease;
}
.progress-striped .progress-bar {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.progress.active .progress-bar {
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media,
.media .media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media-object {
  display: block;
}
.media-heading {
  margin: 0 0 5px;
}
.media > .pull-left {
  margin-right: 10px;
}
.media > .pull-right {
  margin-left: 10px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
a.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
a.list-group-item:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #428bca;
  border-color: #428bca;
}
a.list-group-item.active .list-group-item-heading,
a.list-group-item.active:hover .list-group-item-heading,
a.list-group-item.active:focus .list-group-item-heading {
  color: inherit;
}
a.list-group-item.active .list-group-item-text,
a.list-group-item.active:hover .list-group-item-text,
a.list-group-item.active:focus .list-group-item-text {
  color: #e1edf7;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
a.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
a.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table {
  margin-bottom: 0;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
  overflow: hidden;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse .panel-body {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #428bca;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #428bca;
  border-color: #428bca;
}
.panel-primary > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #428bca;
}
.panel-primary > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #428bca;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ebccd1;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  transform: translate(0, 0);
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 20px;
}
.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.modal {
  display: block;
}
.modal-dialog {
  margin: 70px auto 30px;
}
@font-face {
  font-family: 'icomoon';
  src: url('fonts/icomoon.eot?pg8aid');
  src: url('fonts/icomoon.eot?#iefixpg8aid') format('embedded-opentype'), url('fonts/icomoon.ttf?pg8aid') format('truetype'), url('fonts/icomoon.woff?pg8aid') format('woff'), url('fonts/icomoon.svg?pg8aid#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"],
.glyphicon {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-Play:before {
  content: "\e620";
}
.icon-Lock:before,
.roster-remove-locked-icon:before {
  content: "\e61f";
}
.icon-Danger:before {
  content: "\e61a";
}
.icon-Minus:before {
  content: "\e623";
}
.icon-Plus:before {
  content: "\e622";
}
.icon-Spinner:before {
  content: "\e621";
}
.icon-History:before {
  content: "\e61e";
}
.icon-Info:before {
  content: "\e61b";
}
.icon-Edit:before {
  content: "\e611";
}
.icon-List:before {
  content: "\e61d";
}
.icon-Grid:before {
  content: "\e61c";
}
.icon-Checkmark:before,
.content-widget .body .image.completed a::before {
  content: "\e600";
}
.icon-Close:before {
  content: "\e601";
}
.icon-Fitler:before {
  content: "\e602";
}
.icon-Hamburger:before {
  content: "\e603";
}
.icon-Locked:before {
  content: "\e605";
}
.icon-More:before {
  content: "\e606";
}
.icon-Person:before {
  content: "\e607";
}
.icon-Podcast:before {
  content: "\e608";
}
.icon-Quiz:before {
  content: "\e609";
}
.icon-Search_Mag_Glass:before {
  content: "\e60b";
}
.icon-Settings:before {
  content: "\e60c";
}
.icon-Up_Arrow:before,
.header .top .user-picture.opened::after {
  content: "\e614";
}
.icon-Down_Arrow:before,
.header .top .user-picture::after,
.glyphicon-chevron-down:before {
  content: "\e60d";
}
.icon-Video:before {
  content: "\e60e";
}
.icon-Trash:before,
.glyphicon-trash {
  content: "\e60f";
}
.icon-Left_Arrow:before,
.glyphicon-chevron-left:before,
.btn.btn-back::before {
  content: "\e60a";
}
.icon-Right_Arrow:before,
.edit-screen a.list-group-item.active::after,
.glyphicon-chevron-right:before {
  content: "\e604";
}
.icon-Warning:before {
  content: "\e619";
}
.icon-Calendar:before,
.glyphicon-calendar {
  content: "\e610";
}
.icon-Right_Arrow_Thick:before {
  content: "\e617";
}
.icon-Left_Arrow_Thick2:before {
  content: "\e618";
}
.icon-Star_Half_Filled:before {
  content: "\e616";
}
.icon-Star_Filled:before {
  content: "\e615";
}
.icon-Segno:before {
  content: "\e612";
}
.icon-Star:before {
  content: "\e613";
}
/* Background colors */
/* Borders */
/* Fonts */
/* result colors */
/*
 * style guide colors
 */
/* Adjusting Colors */
/* Background colors */
/* Borders */
/* Fonts */
/* result colors */
/*
 * style guide colors
 */
/* Adjusting Colors */
.container {
  width: 100%;
}
.not-logged-in {
  background-color: #392728;
  color: #fff;
}
.not-logged-in .container {
  background-color: #392728;
}
.not-logged-in .lmp-footer {
  display: none;
}
.not-logged-in .login-footer {
  display: block;
}
.not-logged-in .text-link,
.not-logged-in .error-container h1 {
  color: #fff;
  margin: 0 0.4em;
  font-weight: bold;
}
.not-logged-in .text-link:hover,
.not-logged-in .error-container h1:hover,
.not-logged-in .text-link:active,
.not-logged-in .error-container h1:active,
.not-logged-in .text-link:focus,
.not-logged-in .error-container h1:focus {
  color: #fff;
}
.login-screen {
  background: #392728;
  position: absolute;
  text-align: center;
  width: 100%;
}
.login-screen img {
  width: 100%;
}
.login-screen .svg-object {
  position: fixed;
  width: 220px;
  height: 455px;
  top: 0;
  right: 4vh;
  z-index: 2000;
}
.login-screen .login-screen-brand-logo {
  position: relative;
  margin: 0 auto;
  width: 612px;
  height: 107px;
  background-image: url(../images/home-services-logo.png);
  background-position: center top;
  background-repeat: no-repeat;
}
.login-screen .login-screen-logo {
  display: block;
  position: relative;
  top: 0;
  padding: 15px;
  margin: 0 auto;
  width: 35vw;
  max-width: 500px;
}
.login-screen .login-screen-header {
  background: #054368;
  min-height: 15vh;
}
.login-screen .login-header-mask {
  background: #C3D32B;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .login-screen .svg-object {
    right: -0.5vh;
  }
  .login-screen .login-screen-brand-logo {
    width: 100vw;
    background-attachment: initial;
    /* Should fix logo for mobile screens */
    background-size: contain;
    background-position: center center;
  }
  .login-screen .login-screen-logo {
    width: 48vw;
  }
}
.login-screen .login-form-container {
  margin-top: 45px;
}
.login-screen .form-group {
  text-align: left;
  margin-right: auto;
  margin-left: auto;
  width: 300px;
}
.login-screen .form-control {
  height: 50px;
  font-size: 18px;
  border-color: #fff;
  outline: none;
}
.login-screen .form-control::-moz-placeholder {
  font-weight: 100;
  font-style: italic;
  font-size: 18px;
  opacity: 1;
  color: #333;
}
.login-screen .form-control:-ms-input-placeholder {
  font-weight: 100;
  font-style: italic;
  font-size: 18px;
  opacity: 1;
  color: #333;
}
.login-screen .form-control::placeholder {
  font-weight: 100;
  font-style: italic;
  font-size: 18px;
  opacity: 1;
  color: #333;
}
.login-screen .checkbox label {
  font-weight: 100;
  font-style: normal;
  font-size: 14px;
}
.login-screen .forgot-password-container {
  margin-top: 40px;
}
.login-screen .forgot-password-container .login-hr {
  width: 300px;
  color: #fff;
}
.login-screen .forgot-password-container .forgot-password {
  text-align: center;
  padding: 8px;
}
.login-screen .forgot-password-container .forgot-password-link {
  font-style: normal !important;
  font-size: 18px;
  color: #fff;
}
.login-screen .forgot-password-container .password-text {
  color: #C3D32B;
}
.login-screen .btn {
  padding: 10px 12px;
  max-height: 60px;
}
.login-screen .btn.btn-default {
  color: #fff;
  background-color: #C3D32B;
  font-size: 18px;
  font-weight: 100;
}
.login-screen .btn.btn-default:hover,
.login-screen .btn.btn-default:active,
.login-screen .btn.btn-default:focus {
  color: #C3D32B;
  border-color: #C3D32B;
  background-color: #fff;
}
.login-screen .spinner .dot {
  background-color: #fff;
}
.login-form {
  position: relative;
}
.login-form .error-msg {
  z-index: 1000;
  overflow: visible;
  top: 60px;
}
.login-form .error-msg:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: calc(50% - 10px);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 10px solid white;
  top: -10px;
}
.login-form.has-error {
  padding-bottom: 30px;
}
.login-footer {
  display: none;
  text-align: left;
  font-size: 14px;
  font-weight: 100;
  margin-top: 45px !important;
  height: 17vh;
  width: 300px;
  margin: 0 auto;
}
.login-footer .links a {
  clear: left;
  float: left;
  color: #C3D32B;
}
.login-footer .privacy-policy {
  margin: 0 !important;
}
.login-footer .terms-conditions {
  margin: 0 !important;
}
.login-footer .copyright {
  float: right;
}
.header {
  position: relative;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .header {
    overflow: hidden;
  }
}
.header .top,
.header .details {
  min-width: 700px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .header .top,
  .header .details {
    min-width: 0;
  }
}
.header .top {
  width: 100%;
  height: 66px;
  background-color: #C3D32B;
  position: relative;
  z-index: 998;
}
.header .top .hamburger {
  position: absolute;
  left: 0;
  top: 0;
  padding: 15px 20px 0;
  height: 100%;
  cursor: pointer;
  font-size: 36px;
  text-align: left;
  line-height: 100%;
  color: #fff;
}
@media (max-width: 767px) {
  .header .top .hamburger {
    padding-right: 0;
  }
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .header .top .hamburger {
    font-size: 20px;
    padding-top: 24px;
  }
}
.header .top .header-logo {
  display: block;
  box-sizing: content-box;
  width: 177px;
  height: 100%;
  padding: 0 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/Segno_expertise_small_white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 44px;
}
@media (max-width: 991px) {
  .header .top .header-logo {
    left: 52%;
  }
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .header .top .header-logo {
    left: 50%;
  }
}
.header .top .nav {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 240px;
  max-width: 350px;
  z-index: 999;
  height: 100vh;
}
.header .top .nav .wrapper {
  background: #000;
  position: absolute;
  top: 66px;
  padding-bottom: 66px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  overflow-y: auto;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .header .top .nav .wrapper {
    margin-right: 38px;
    position: fixed;
    min-width: 240px;
    max-width: 380px;
  }
  .header .top .nav .wrapper.position-fixed {
    position: fixed;
  }
}
.header .top .nav .close-mask {
  height: 66px;
  background-color: #C3D32B;
  width: 60px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .header .top .nav .close-mask {
    width: 50px;
  }
}
.header .top .nav .close-mask .icon-Close {
  color: #fff;
  font-size: 46px;
  padding: 6px;
  display: inline-block;
  background: none;
  border: none;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .header .top .nav .close-mask .icon-Close {
    font-size: 26px;
    padding-top: 20px;
    padding-left: 18px;
  }
}
.header .top .nav .close-mask .icon-Close:hover {
  text-decoration: none;
}
.header .top .nav .close-mask.ng-enter {
  left: -100%;
  transition: left ease 0.3s;
}
.header .top .nav .close-mask.ng-enter-active {
  left: 0;
}
.header .top .nav .close-mask.ng-leave {
  left: 0;
  transition: left ease 0.3s;
}
.header .top .nav .close-mask.ng-leave-active {
  left: -100%;
}
.header .top .nav .title {
  color: #fff;
  padding: 15px 5px;
  margin: 0;
  background: #000;
  font-size: 1.5rem;
}
.header .top .nav ul {
  padding: 0 0 54px 0;
  margin: 0;
  text-align: left;
  clear: both;
}
.header .top .nav ul li {
  list-style: none;
  background: #333;
  border-top: 1px solid #666;
}
.header .top .nav ul li a,
.header .top .nav ul li button {
  position: relative;
  display: block;
  height: 50px;
  padding: 5px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  line-height: 40px;
}
.header .top .nav ul li a:hover::before,
.header .top .nav ul li button:hover::before,
.header .top .nav ul li a:active::before,
.header .top .nav ul li button:active::before,
.header .top .nav ul li a:focus::before,
.header .top .nav ul li button:focus::before {
  content: '';
  height: 100%;
  width: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #C3D32B;
}
.header .top .nav .nav-sign-out {
  z-index: 2;
  position: fixed;
  bottom: -54px;
  left: 0;
  text-align: center;
  width: 350px;
  padding: 10px 20px;
  background: none;
  transition: none;
}
.header .top .nav .nav-sign-out.opened {
  bottom: 0px;
  background: #000;
  transition: all ease 1s;
}
.header .top .ejs-link {
  display: block;
}
.header .top .ejs-link-hide {
  display: none;
}
.header .top .sign-out {
  margin-bottom: 5px;
  float: right;
  font-weight: bold;
}
.header .top .user-picture {
  text-decoration: none;
  color: #fff;
}
.header .top .user-picture img {
  width: auto;
  max-width: 36px;
  height: auto;
  max-height: 36px;
}
.header .top .user-picture::after {
  font-family: 'icomoon';
  font-size: 13px;
  vertical-align: middle;
  display: inline;
  margin-left: 4px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .header .top .user-picture {
    display: none;
  }
}
.header .greeting {
  display: none;
  background-color: #333;
  color: #fff;
  padding: 3px 25px;
  font-weight: normal;
  font-size: 16px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .header .greeting {
    display: block;
  }
}
.header .details {
  display: block;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .header .details {
    display: none;
  }
}
.header .details-small {
  display: none;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .header .details-small {
    display: block;
  }
}
.header .details-small .detail-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  background-color: #054368;
  color: #fff;
}
.header .details-small .detail-col {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  text-align: center;
}
.header .details-small .detail-col .detail-value {
  font-size: 3em;
  margin-top: 15px;
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.header .details-small .detail-col .detail-value sup {
  top: 0;
  vertical-align: super;
  font-size: 18px;
}
.header .details-small .detail-col .detail-heading {
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  margin-top: auto;
  margin-bottom: 8px;
}
.header .details-small .detail-center {
  background-color: #C3D32B;
  -ms-flex: 0 0 115px;
      flex: 0 0 115px;
}
.header .details-small .detail-center img {
  height: 75px;
  width: auto;
  margin-bottom: 10px;
}
.header .details {
  color: #fff;
  font-size: 18px;
  width: 100%;
  position: relative;
  min-height: 100px;
  background-color: #333;
}
@media (max-width: 991px) {
  .header .details {
    font-size: 14px;
  }
}
.header .details .row {
  min-height: 100px;
  background-color: #333;
  margin: 0 !important;
}
.header .details .row .item-wrapper {
  display: inline-block;
  vertical-align: top;
  position: relative;
  min-height: 100px;
  height: 100%;
  padding: 0 20px;
  font-weight: 100;
  line-height: 18px;
}
@media (max-width: 991px) {
  .header .details .row .item-wrapper {
    padding: 0 8px;
  }
}
.header .details .row .item-wrapper.details-score {
  min-width: 150px;
}
.header .details .row .item-wrapper.is-active {
  background-color: #1a1a1a;
}
.header .details .row .item-wrapper .heading {
  font-size: 1em;
  text-transform: uppercase;
  display: table-cell;
  vertical-align: bottom;
  height: 80px;
}
.header .details .row .item-wrapper .heading .text {
  margin-right: 0.8em;
}
.header .details .row .item-wrapper .heading span {
  vertical-align: bottom;
}
.header .details .row .item-wrapper .value {
  margin: -64px 0;
  line-height: 36px;
}
.header .details .row .item-wrapper .value sup {
  top: 0;
  vertical-align: super;
}
.header .details .row .item-wrapper .value span + .medal-count {
  margin-left: 0.15em;
}
.header .details .row .item-wrapper .value .medal-count {
  margin: 0 0 0 -0.2em;
}
.header .details .row .item-wrapper .value .medal-count::after {
  position: relative;
  top: -3px;
  width: 28px;
  height: 45.25461254px;
}
.header .details .row .column-left {
  padding: 0 !important;
}
.header .details .row .column-left .item-wrapper .value {
  font-size: 2.5em;
  /* 45/18 */
}
.header .details .row .column-right {
  padding: 0 !important;
  text-align: right;
}
.header .details .row .column-right .item-wrapper {
  text-align: left;
}
.header .details .row .column-right .item-wrapper .value {
  top: -54px;
  line-height: 26px;
  font-size: 1.88888889em;
  /* 34/18 */
}
.header .details .row .column-right .item-wrapper .value sup {
  font-size: 0.41176471em;
  /* 14/34 */
}
.header .details .clickable {
  position: relative;
}
.header .details .clickable:hover {
  cursor: pointer;
}
.header .details .clickable .arrow {
  border-bottom: 12px solid #fff;
  border-left: 10px solid rgba(0, 0, 0, 0);
  border-right: 10px solid rgba(0, 0, 0, 0);
  position: absolute;
  height: 0;
  width: 0;
  left: 12px;
  z-index: 2000;
}
.header .stuff-on-the-right {
  position: absolute;
  right: 15px;
  top: 15px;
}
.header .feedback-rating {
  font-size: 14px;
  color: #fff;
  margin-right: 30px;
  line-height: 0.75em;
  vertical-align: text-bottom;
}
@media (max-width: 1199px) {
  .header .feedback-rating {
    font-size: 12px;
    margin-right: 10px;
  }
}
@media (max-width: 991px) {
  .header .feedback-rating {
    display: inline-block;
    line-height: 2em;
    vertical-align: bottom;
  }
}
.header .feedback-rating::before {
  content: attr(data-label);
  text-transform: uppercase;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .header .feedback-rating::before {
    display: block;
    line-height: 0;
    position: absolute;
    top: 5px;
    left: 2px;
  }
}
.header .feedback-rating .icon-Star,
.header .feedback-rating .icon-Star_Filled {
  font-size: 1.28571429em;
  display: inline-block;
  width: 1em;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .header .feedback-rating {
    display: none;
  }
}
.header .profile-drop-down {
  position: absolute;
  right: 10px;
  top: 67px;
  width: 282px;
  z-index: 997;
  background-image: linear-gradient(to bottom, #1a1a1a 12%, #333 24%) !important;
  background-color: #333;
  background-size: auto 400px;
  background-repeat: no-repeat;
  color: #fff;
  text-align: right;
}
.header .profile-drop-down.ng-enter {
  top: -100px;
  transition: top ease 0.5s;
}
.header .profile-drop-down.ng-enter-active {
  top: 67px;
}
.header .profile-drop-down.ng-leave {
  top: 67px;
  transition: top ease 0.5s;
}
.header .profile-drop-down.ng-leave-active {
  top: -100px;
}
.header .profile-drop-down ul {
  padding: 0;
  margin: 0;
  text-align: left;
  list-style: none;
  border-bottom: 1px solid #666;
}
.header .profile-drop-down .icon-Close {
  font-size: 24px;
  display: inline-block;
  padding: 6px;
  cursor: pointer;
}
.header .profile-drop-down button,
.header .profile-drop-down a {
  font-size: 18px;
  height: 37px;
  line-height: 37px;
  color: #fff;
  text-decoration: none;
  font-weight: 100;
  position: relative;
  display: block;
}
.header .profile-drop-down button:hover::after,
.header .profile-drop-down a:hover::after,
.header .profile-drop-down button:active::after,
.header .profile-drop-down a:active::after,
.header .profile-drop-down button:focus::after,
.header .profile-drop-down a:focus::after {
  content: '';
  height: 100%;
  width: 8px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #C3D32B;
}
.header .profile-drop-down button {
  max-width: 188px;
  min-width: 170px;
  width: 100%;
  text-align: left;
}
.header .profile-drop-down a {
  height: 37px;
  line-height: 37px;
  padding-left: 75px;
}
.header .profile-drop-down a img {
  float: left;
  max-width: 75px;
  max-height: 75px;
  width: auto;
  height: auto;
  position: relative;
  left: -75px;
  margin-right: -57px;
}
.header .profile-drop-down li + li a::before,
.header .profile-drop-down li + li button::before {
  content: '';
  display: block;
  border-top: 1px solid #666;
}
.popup-success-message {
  position: relative;
  top: 10px;
  z-index: 99;
  margin: 0 20px;
  color: #666;
  font-size: 18px;
  margin-bottom: 0;
}
.popup-success-message .close {
  font-size: 24px;
  position: absolute;
  right: 6px;
  top: 5px;
  cursor: pointer;
}
.pop-out {
  position: absolute;
  top: 166px;
  left: 0;
  z-index: 999;
  color: #fff;
  width: 100%;
  background-image: linear-gradient(to bottom, #1a1a1a 12%, #333 24%) !important;
  background-color: #333;
  background-size: auto 500px;
  background-repeat: no-repeat;
}
.pop-out .popout-close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 36px;
  cursor: pointer;
}
.pop-out > [class*="-popout"] {
  border-bottom: 2px solid #ccc;
  padding: 48px 20px 38px;
}
.pop-out > [class*="-popout"] ul {
  padding: 0;
}
.pop-out > [class*="-popout"] ul li {
  list-style: none;
}
.pop-out > [class*="-popout"] .popout-section {
  padding-bottom: 50px;
}
.pop-out > [class*="-popout"] .popout-section .popout-section-header {
  color: #fff;
  font-size: 25px;
  margin: 0 0 15px;
}
.pop-out > [class*="-popout"] .popout-section .popout-section-subheader {
  font-weight: 100;
  color: #fff;
  font-size: 18px;
  margin: 0 0 15px;
}
.pop-out > [class*="-popout"] .popout-section .popout-section-description {
  font-weight: 100;
  font-size: 18px;
  margin-bottom: 25px;
}
.pop-out > [class*="-popout"] .popout-section .whatisthis-link {
  position: absolute;
  bottom: 0;
  font-weight: 100;
  font-size: 18px;
  color: #8dc63f;
}
.pop-out > [class*="-popout"] .popout-section .number-box {
  display: block;
  width: 230px;
  height: 56px;
  background-color: #8dc63f;
  line-height: 56px;
  text-align: center;
  font-weight: 300;
  font-size: 30px;
}
.pop-out > [class*="-popout"] .section-activity {
  padding-bottom: 50px;
  padding-left: 60px;
}
.pop-out > [class*="-popout"] .section-activity .activity-item {
  position: relative;
  min-height: 25px;
  margin-bottom: 20px;
}
.pop-out > [class*="-popout"] .section-activity .activity-item::before {
  content: '';
  display: block;
  position: absolute;
}
.pop-out > [class*="-popout"] .section-activity .activity-item .activity-metadata {
  display: block;
}
.pop-out > [class*="-popout"] .section-activity .activity-item .activity-heading {
  font-size: 18px;
  font-weight: bold;
}
.pop-out > [class*="-popout"] .section-activity .activity-item .activity-points {
  font-size: 16px;
  font-weight: 300;
}
.pop-out > [class*="-popout"] .section-activity .activity-item .activity-date {
  font-size: 14px;
  font-weight: 100;
}
.pop-out > [class*="-popout"] .section-activity .allactivity-btn {
  position: absolute;
  bottom: 4px;
  left: 60px;
}
.pop-out > [class*="-popout"].score-popout .section-activity .activity-item::before {
  width: 25px;
  height: 25px;
  left: -35px;
  background-color: #8dc63f;
  content: '+';
  font-size: 25px;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
}
.pop-out > [class*="-popout"].medal-popout .section-activity .activity-item::before {
  width: 22px;
  height: 35.55719556px;
  left: -32px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
.pop-out > [class*="-popout"].medal-popout .section-activity .activity-item.gold::before {
  background-image: url(../images/medal-gold.svg);
}
.pop-out > [class*="-popout"].medal-popout .section-activity .activity-item.silver::before {
  background-image: url(../images/medal-silver.svg);
}
.pop-out > [class*="-popout"].medal-popout .section-activity .activity-item.bronze::before {
  background-image: url(../images/medal-bronze.svg);
}
.pop-out > [class*="-popout"].badge-popout .section-activity .activity-item {
  position: relative;
  left: -42px;
}
.pop-out > [class*="-popout"].badge-popout .section-activity .activity-item .media-object {
  max-height: 32px;
  max-width: 32px;
  width: auto;
  height: auto;
}
.pop-out > [class*="-popout"].level-popout .next-level {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 100;
}
.pop-out > [class*="-popout"].level-popout .section-activity .activity-item::before {
  width: 24px;
  height: 24px;
  border-right: 8px solid #8dc63f;
  border-bottom: 8px solid #8dc63f;
  left: -34px;
}
.pop-out > [class*="-popout"].level-popout .section-activity .activity-item::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: -26px;
  top: 8px;
  background-color: #8dc63f;
}
.pop-out > [class*="-popout"].rank-popout .leaderboard-widget {
  background-color: transparent;
}
.pop-out > [class*="-popout"].rank-popout .leaderboard-widget.well {
  border: none;
  padding: 0;
  margin: 0;
}
.pop-out > [class*="-popout"].rank-popout .leaderboard-widget.well h4 {
  margin-left: 0;
}
.pop-out > [class*="-popout"].rank-popout .leaderboard-widget.well .leaderboard-widget-title {
  display: none;
}
.pop-out > [class*="-popout"].rank-popout .leaderboard-widget.well .leaderboard-widget-total {
  font-weight: 100;
}
.pop-out > [class*="-popout"].rank-popout .leaderboard-widget.well .btn-widget {
  display: none;
}
.pop-out > [class*="-popout"].rank-popout .leaderboard-widget.well ul {
  padding-left: 20px;
}
.pop-out > [class*="-popout"].rank-popout .lb .lb-header {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 20px;
}
.pop-out > [class*="-popout"].rank-popout .number-box {
  position: relative;
  background-color: #6d6d6d;
  transition: background-color 0.3s linear 0s;
}
.pop-out > [class*="-popout"].rank-popout .number-box.green-up {
  background-color: #8dc63f;
}
.pop-out > [class*="-popout"].rank-popout .number-box.gray-neutral {
  background-color: #6d6d6d;
}
.pop-out > [class*="-popout"].rank-popout .number-box.red-down {
  background-color: #ed1c24;
}
.pop-out > [class*="-popout"].rank-popout .change-indicator {
  width: 230px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 10px;
  line-height: 1em;
}
.pop-out > [class*="-popout"].rank-popout .change-indicator [class*="rank-"] {
  font-size: 14px;
  font-weight: 400;
}
.pop-out > [class*="-popout"].rank-popout .change-indicator [class*="rank-"]::before {
  margin-right: 10px;
  vertical-align: bottom;
}
.pop-out > [class*="-popout"].rank-popout .change-indicator .rank-up::before {
  border-width: 0 8px 13.85640646px 8px;
}
.pop-out > [class*="-popout"].rank-popout .change-indicator .rank-down::before {
  border-width: 13.85640646px 8px 0 8px;
}
.pop-out > [class*="-popout"].rank-popout .change-indicator .rank-no-change::before {
  width: 20px;
  height: 3px;
  top: -0.38em;
}
.pop-out > [class*="-popout"].rank-popout sup {
  top: 0;
  vertical-align: super;
  font-size: 17px;
}
.pop-out .col-sm-4,
.pop-out .col-sm-8 {
  display: table-cell;
  float: none;
  vertical-align: top;
}
.feedback-container {
  border: 1px solid transparent;
  margin-top: 10px;
}
.feedback-container h3 {
  margin-top: 23px;
}
.system-alert-wrapper .icon-Close {
  position: absolute;
  right: 6px;
  top: 5px;
}
/* http://ryanfait.com/html5-sticky-footer/ */
.sticky-footer-wrapper {
  min-height: 100%;
  margin: 0 auto -70px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .sticky-footer-wrapper {
    width: 100%;
  }
}
/* the bottom margin is the negative value of the footer's height */
.lmp-footer,
.sticky-footer-push {
  z-index: 2;
  height: 70px;
  clear: both;
}
.main-container,
.main-container.container {
  padding-bottom: 50px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .has-sidebar .main-container,
  .has-sidebar .main-container.container {
    padding-bottom: 0;
    padding-right: 31px;
  }
  .has-sidebar .main-container .content-area,
  .has-sidebar .main-container.container .content-area {
    padding: 0;
  }
}
.lmp-footer {
  position: relative;
  padding-left: 20px;
}
.lmp-footer.container {
  padding: 15px 20px;
}
.lmp-footer .copyright {
  display: block;
  opacity: 0.6;
}
.lmp-footer .separator {
  color: #333;
  opacity: 0.6;
}
.lmp-footer .footer-logo img {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 130px;
  opacity: 0.6;
}
@media all and (max-width: 360px), all and (max-height: 360px) {
  .lmp-footer {
    font-size: 12px;
  }
  .lmp-footer .footer-logo img {
    top: 10px;
    width: 100px;
  }
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .no-footer .lmp-footer,
  .no-footer .sticky-footer-push {
    display: none;
  }
}
.error-container {
  padding-top: 69px;
}
.error-container h1 {
  padding-bottom: 40px;
}
.uploadError {
  float: left;
  color: red;
}
.form-input-error {
  border: 1px solid red !important;
}
.form-error-msg {
  color: red;
}
body.splashed {
  background-color: #323232;
}
body.splashed .sticky-footer-wrapper,
body.splashed .lmp-footer,
body.splashed .download-pop {
  display: none;
}
body.splashed .splash .back-splash {
  position: relative;
}
body.splashed .splash .back-splash .default-layer {
  width: 100%;
  /* Full width (cover the whole page) */
  height: auto;
  /* Full height (scale to width) */
  display: block;
}
body.splashed .splash .back-splash .mobile-layer {
  display: none;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  body.splashed .splash .back-splash .default-layer {
    display: none;
  }
  body.splashed .splash .back-splash .mobile-layer {
    width: 100%;
    /* Full width (cover the whole page) */
    height: auto;
    /* Full height (scale to width) */
    display: block;
  }
}
body.splashed .splash-modal-window .modal-dialog {
  width: 300px;
  margin-top: 300px;
}
body.splashed .splash-modal-window .modal-dialog .modal-content .modal-confirmation.splash-confirmation {
  padding: 20px;
}
body.splashed .splash-modal-window .modal-dialog .modal-content .modal-confirmation.splash-confirmation .splash-confirmation-footer .clontinue-wrap {
  -ms-flex-pack: center;
      justify-content: center;
  margin: 5px;
}
body.splashed .splash-modal-window .modal-dialog .modal-content .modal-confirmation.splash-confirmation .splash-confirmation-footer .clontinue-wrap .btn.btn-default {
  border-color: #5b5b5b;
  background-color: #4c4c4c;
  color: #aeaeae;
}
body.splashed .splash-modal-window .modal-dialog .modal-content .modal-confirmation.splash-confirmation .splash-confirmation-footer .clontinue-wrap .btn.btn-default:hover,
body.splashed .splash-modal-window .modal-dialog .modal-content .modal-confirmation.splash-confirmation .splash-confirmation-footer .clontinue-wrap .btn.btn-default :active,
body.splashed .splash-modal-window .modal-dialog .modal-content .modal-confirmation.splash-confirmation .splash-confirmation-footer .clontinue-wrap .btn.btn-default :focus {
  color: #999;
}
body.splashed .splash-modal-window .modal-dialog .modal-content .modal-confirmation.splash-confirmation .splash-confirmation-footer .close-wrap {
  text-align: center;
  margin: 5px;
}
body.splashed .splash-modal-window .modal-dialog .modal-content .modal-confirmation.splash-confirmation .splash-confirmation-footer .close-wrap .checkbox-wrap {
  font-size: 16px;
}
body.splashed .splash-modal-window .modal-dialog .modal-content .modal-confirmation.splash-confirmation .splash-confirmation-footer .close-wrap .checkbox-wrap input[type='checkbox'] {
  margin-right: 10px;
}
.manage-form h2 {
  margin-bottom: 20px;
}
.manage-form h2 small {
  display: block;
  margin-top: 10px;
}
.manage-form .change-log ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.manage-form .change-log li {
  margin-bottom: 10px;
}
.manage-form .footer {
  margin-top: 15px;
}
.manage-form .footer .saved {
  margin-bottom: 10px;
}
.dashboard .learner-dashboard .learner-dashboard-tabs {
  margin-bottom: 5px;
  padding: 5px;
  position: relative;
}
.dashboard .learner-dashboard .learner-dashboard-tabs h3 {
  font-weight: bold;
  margin-top: 10px;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .no-margin {
  margin: 0;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .no-padding {
  padding: 0;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .no-padding-left {
  padding-left: 0;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .no-padding-right {
  padding-right: 0;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .tab-content {
  border-top: 2px solid #aaa;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .tab-contents {
  position: relative;
  min-height: 150px;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .help-link:focus {
  outline: none;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .help-link button {
  position: relative;
  /** move help link down, level with tab labels*/
  bottom: -5px;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .help-link .popover a {
  color: #F37131;
  font-weight: 900;
  cursor: pointer;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .tab-contents-title {
  min-height: 30px;
  font-size: 16px;
  border-bottom: 1px solid #aaa;
  margin: 20px 0;
  padding: 5px 0;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .tab-contents-title .expand {
  position: static;
  display: inline-block;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .tab-contents-title .expand .showing-count {
  display: inline-block;
  text-transform: none;
  position: relative;
  vertical-align: middle;
  margin-right: 3px;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .tab-contents-title .expand .expand-collapse {
  text-transform: uppercase;
  font-weight: 300;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .nav,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav > li,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav > li > a,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav > li > a:hover,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav > li > a:focus,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav > li.active,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav > li.active > a,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav > li.active > a:hover,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav-tabs,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav-tabs > li,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav-tabs > li > a,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav-tabs > li > a:hover,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav-tabs > li > a:focus,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav-tabs > li.active,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav-tabs > li.active > a,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav-tabs > li.active > a:hover,
.dashboard .learner-dashboard .learner-dashboard-tabs .nav-tabs > li.active > a:focus {
  background-color: inherit;
  border: none;
}
.dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li {
  margin-right: -15px;
  margin-bottom: -2px;
}
.dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li > a::before {
  content: '';
  /* To generate the box */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-radius: 10px 10px 0 0;
  border: 2px solid #aaa;
  background: #aaa;
  transform: perspective(10px) rotateX(2deg);
  transform-origin: bottom left;
  color: #fff;
}
.dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li.active > a::before {
  border-bottom: 2px solid #fff;
  background: #fff;
  z-index: 2;
}
.dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li > a::after {
  content: '';
  /* To generate the box */
  position: absolute;
  right: -3px;
  bottom: 0;
  width: 6px;
  height: 2px;
  border-bottom-left-radius: 10px;
  border-top: 0;
  border-right: 0;
  border-left: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  z-index: 0;
}
.dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li > a {
  cursor: pointer;
  padding: 13px 15px 6px;
}
.dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li > a h5 {
  margin: 5px 15px 0 0;
  padding: 0 30px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  position: relative;
  z-index: 2;
}
.dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li.active > a,
.dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li.active > a:hover,
.dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li.active > a:focus {
  z-index: 2;
}
.dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li.active > a h5,
.dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li.active > a:hover h5,
.dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li.active > a:focus h5 {
  color: #666;
  /*dark text bottom border on active tabs*/
}
.dashboard .learner-dashboard .learner-dashboard-tabs .manage {
  width: 100%;
  overflow: hidden;
}
.dashboard .learner-dashboard .learner-dashboard-tabs .manage .btn {
  margin-bottom: 12px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .dashboard .learner-dashboard .learner-dashboard-tabs {
    padding: 5px 0 0;
    margin-bottom: 0;
  }
  .dashboard .learner-dashboard .learner-dashboard-tabs .tab-content {
    border: 2px solid #aaa;
  }
  .dashboard .learner-dashboard .learner-dashboard-tabs .tab-contents-title {
    padding: 0 20px 10px 10px;
    margin: 15px 0 0;
    font-weight: 400;
    font-style: italic;
  }
  .dashboard .learner-dashboard .learner-dashboard-tabs .tab-contents-title .expand .expand-collapse {
    font-style: normal;
    font-weight: 400;
    color: #000;
  }
  .dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li > a h5 {
    font-size: 16px;
    padding: 0;
  }
  .dashboard .learner-dashboard .learner-dashboard-tabs .btn-widget {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 360px) {
  .dashboard .learner-dashboard .learner-dashboard-tabs .tab-contents-title {
    font-size: 13px;
  }
  .dashboard .learner-dashboard .learner-dashboard-tabs ul.nav-tabs > li > a h5 {
    font-size: 13px;
  }
}
.learner-dashboard .main {
  width: 70%;
  float: left;
}
.learner-dashboard .main .dash-col-1 {
  width: 100%;
}
.learner-dashboard .main-sidebar {
  width: 28%;
  float: right;
  clear: right;
}
.learner-dashboard .main-sidebar .off-canvas-toggle,
.learner-dashboard .main-sidebar hr.side-bar-hr {
  display: none;
}
.learner-dashboard .main-sidebar .dash-col-2 {
  width: 100%;
  -ms-flex-order: 1;
      order: 1;
}
.learner-dashboard .main-sidebar .dash-col-3 {
  width: 100%;
  -ms-flex-order: 2;
      order: 2;
}
.learner-dashboard .main-sidebar .dash-col-4 {
  width: 100%;
  -ms-flex-order: 3;
      order: 3;
}
.learner-dashboard .main-sidebar .dash-col-5 {
  width: 100%;
  -ms-flex-order: 4;
      order: 4;
}
.learner-dashboard .main-sidebar .dash-col-6 {
  width: 100%;
  -ms-flex-order: 5;
      order: 5;
}
.learner-dashboard .main-sidebar .dash-col-7 {
  width: 100%;
  -ms-flex-order: 6;
      order: 6;
}
@media all and (max-width: 1100px) {
  .learner-dashboard {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .learner-dashboard .main {
    width: 100%;
    float: left;
    clear: left;
  }
  .learner-dashboard .main .dash-col-1 {
    width: 100%;
  }
  .learner-dashboard .main-sidebar {
    width: 100%;
    float: left;
    clear: left;
  }
  .learner-dashboard .main-sidebar .off-canvas-toggle,
  .learner-dashboard .main-sidebar hr.side-bar-hr {
    display: none;
  }
  .learner-dashboard .main-sidebar .dash-col-2 {
    width: 100%;
    -ms-flex-order: 1;
        order: 1;
  }
  .learner-dashboard .main-sidebar .dash-col-3 {
    width: 100%;
    -ms-flex-order: 2;
        order: 2;
  }
  .learner-dashboard .main-sidebar .dash-col-4 {
    width: 100%;
    -ms-flex-order: 3;
        order: 3;
  }
  .learner-dashboard .main-sidebar .dash-col-5 {
    width: 100%;
    -ms-flex-order: 4;
        order: 4;
  }
  .learner-dashboard .main-sidebar .dash-col-6 {
    width: 100%;
    -ms-flex-order: 5;
        order: 5;
  }
  .learner-dashboard .main-sidebar .dash-col-7 {
    width: 100%;
    -ms-flex-order: 6;
        order: 6;
  }
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .learner-dashboard {
    position: relative;
    overflow: hidden;
    display: block !important;
  }
  .learner-dashboard .main {
    width: 100%;
    position: relative;
    display: block !important;
  }
  .learner-dashboard .main .dash-col-1 {
    width: 100%;
  }
  .learner-dashboard .main-sidebar {
    margin-left: 5px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block !important;
    background-color: #323232;
    z-index: 999;
    height: 100vh;
    border-left: 2px solid #fff;
  }
  .learner-dashboard .main-sidebar .off-canvas-toggle {
    width: 30px;
    float: left;
    height: 100%;
    display: inline;
  }
  .learner-dashboard .main-sidebar .off-canvas-toggle .pull-arrow {
    width: 25px;
    left: -7px;
    display: block;
    position: absolute;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
  }
  .learner-dashboard .main-sidebar .off-canvas-toggle .pull-arrow img {
    width: 35px;
  }
  .learner-dashboard .main-sidebar.ng-hide .off-canvas-toggle .pull-arrow {
    width: 35px;
  }
  .learner-dashboard .main-sidebar .off-canvas-panel {
    float: left;
    clear: none;
    padding-right: 30px;
    padding-top: 25px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    display: block !important;
  }
  .learner-dashboard .main-sidebar .off-canvas-panel hr.side-bar-hr {
    background-color: #5F5F5F;
    height: 1px;
    border: 0;
    display: block;
  }
  .learner-dashboard .main-sidebar .off-canvas-panel .dash-col-2 {
    width: 100%;
    -ms-flex-order: 1;
        order: 1;
  }
  .learner-dashboard .main-sidebar .off-canvas-panel .dash-col-3 {
    width: 100%;
    -ms-flex-order: 2;
        order: 2;
  }
  .learner-dashboard .main-sidebar .off-canvas-panel .dash-col-4 {
    width: 100%;
    -ms-flex-order: 3;
        order: 3;
  }
  .learner-dashboard .main-sidebar .off-canvas-panel .dash-col-5 {
    width: 100%;
    -ms-flex-order: 4;
        order: 4;
  }
  .learner-dashboard .main-sidebar .off-canvas-panel .dash-col-6 {
    width: 100%;
    -ms-flex-order: 5;
        order: 5;
  }
  .learner-dashboard .main-sidebar .off-canvas-panel .dash-col-7 {
    width: 100%;
    -ms-flex-order: 6;
        order: 6;
  }
  .learner-dashboard .main-sidebar.slide.ng-enter,
  .learner-dashboard .main-sidebar.slide.ng-leave {
    transition: 0.5s linear all;
  }
}
.lmp-breadcrumbs {
  font-size: 18px;
  margin-bottom: 10px;
}
.spinner {
  display: inline-block;
  height: 100%;
  line-height: 70px;
  min-height: 70px;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  position: relative;
}
.spinner .dot {
  width: 18px;
  height: 18px;
  margin: 0 4px;
  background-color: #C3D32B;
  border-radius: 100%;
  display: inline-block;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  animation-fill-mode: both;
}
.spinner .dot.bounce1 {
  animation-delay: -0.32s;
}
.spinner .dot.bounce2 {
  animation-delay: -0.16s;
}
@keyframes bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.sidebar-filter {
  margin-right: -1px;
  border-right: 1px solid #aaa;
}
@media (max-width: 767px) {
  .sidebar-filter {
    margin-right: 0;
    border-right: none;
  }
}
.sidebar-filter .sidebar-heading,
.sidebar-filter h3.sidebar-heading {
  font-size: 18px;
  font-weight: bold;
  border-bottom: none;
  margin: 0;
}
.sidebar-filter .filter-section {
  border-bottom: 1px solid #aaa;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.sidebar-filter .filter-section .section-heading,
.sidebar-filter .filter-section h4.section-heading {
  font-weight: normal;
}
.sidebar-filter .filter-section .checkbox-row label,
.sidebar-filter .filter-section .checkbox-row span {
  cursor: pointer;
  color: #F37131;
  max-width: calc(100% - 3em);
}
.sidebar-filter .filter-section .checkbox-row span.rating {
  color: #f5aa2b;
}
.sidebar-filter .filter-section .checkbox-row input[type=checkbox] {
  margin: 0 10px 0 0;
  vertical-align: baseline;
}
.sidebar-filter .filter-section .checkbox-row.check-all {
  border-bottom: 1px solid #e0e0e0;
  padding: 5px 0;
  margin-bottom: 10px;
}
.sidebar-filter .filter-section .checkbox-row.check-all.no-bottom-border {
  border-bottom: 0;
}
.sidebar-filter .filter-section.points-wrapper {
  padding-right: 20px;
}
.sidebar-filter .point-slider {
  margin-right: 20px;
}
.sidebar-filter .point-slider .slider {
  cursor: pointer;
}
.sidebar-filter .point-slider .slider #tooltip {
  top: 20px !important;
  position: absolute;
  color: #333;
  border: 1px solid #333;
  background: #fff;
  padding: 0 3px;
  border-radius: 3px;
  opacity: 0.8;
  z-index: 999;
}
.sidebar-filter .point-slider .slider.slider-horizontal {
  width: 100% !important;
}
.sidebar-filter .point-slider .slider-output {
  text-align: center;
}
.listing .spinner {
  margin-top: 125px;
  position: relative;
}
.listing .search {
  float: left;
  margin-bottom: 20px;
  width: 100%;
}
.listing .search > .btn {
  float: left;
  margin-right: 10px;
}
.listing .search .search-box .btn-default {
  border-left: none;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.listing .filter-results {
  border-left: 1px solid #aaa;
}
@media (max-width: 767px) {
  .listing .filter-results {
    border-left: none;
    padding-top: 15px;
  }
}
.listing .filter-results .results-item {
  margin-bottom: 20px;
}
.listing .filter-results .results-item::after {
  content: '';
  display: block;
  background-image: linear-gradient(transparent 66%, #aaa 66%, #aaa);
  background-size: 1px 3px;
  height: 12px;
  margin-top: 20px;
}
.listing .filter-results .results-item .body {
  padding-bottom: 15px;
}
.listing .filter-results .results-item .footer {
  border-top: 1px solid #aaa;
  padding-top: 15px;
}
.listing .filter-results .results-item .footer .btn + .btn {
  margin-left: 5px;
}
.leaderboard-widget.well {
  margin-top: 20px;
  font-size: 18px;
  background-color: #333;
  color: #f0f0f0;
  position: relative;
  margin-bottom: 10px;
}
.leaderboard-widget.well h4 {
  margin-left: 15px;
}
.leaderboard-widget.well .total {
  font-size: 1em;
  font-weight: bold;
  color: #fff;
  margin: 0 0 20px;
}
.leaderboard-widget.well .spinner {
  position: relative;
  height: 100px;
}
.leaderboard-widget.well li {
  list-style: none;
}
.leaderboard-widget.well .item {
  font-size: 1em;
  font-weight: bold;
  position: relative;
  width: 100%;
}
.leaderboard-widget.well .item + .item {
  margin-top: 8px;
}
.leaderboard-widget.well .item a:hover {
  text-decoration: none;
}
.leaderboard-widget.well .item > .media {
  color: inherit;
  display: block;
  margin: 2px 0;
  padding: 5px 0;
}
.leaderboard-widget.well .item > .media .rank.media-object {
  width: 2em;
  line-height: 42px;
  text-align: right;
}
.leaderboard-widget.well .item > .media .media {
  margin-top: 0;
}
.leaderboard-widget.well .item > .media .media .user-picture {
  display: block;
  float: left;
  margin-right: 10px;
}
.leaderboard-widget.well .item > .media .media .user-picture img {
  border: 1px solid #fff;
  border-radius: 2px;
  max-width: 36px;
  max-height: 36px;
  position: relative;
  margin-top: 3px;
}
.leaderboard-widget.well .item > .media .media .name-and-points {
  line-height: 1.2em;
  position: relative;
}
.leaderboard-widget.well .item > .media .media .name-and-points .points {
  font-size: 0.77777778em;
  font-weight: 100;
  position: relative;
}
.leaderboard-widget.well .item.focused {
  color: #8dc63f;
}
.leaderboard-widget.well .item.focused .user-picture {
  border-color: #8dc63f;
}
.leaderboard-widget.well .item.focused::before {
  content: '';
  background: linear-gradient(to right, rgba(89, 89, 89, 0) 0%, #595959 47%, #595959 52%, rgba(89, 89, 89, 0) 100%);
  max-width: 13.88888889em;
  width: 100%;
  position: absolute;
  height: 100%;
}
.leaderboard-widget.well .item.focused::after {
  position: absolute;
  left: -20px;
  top: 20px;
  top: calc(50% - .33em);
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.5px 0 6.5px 11.3px;
  border-color: transparent transparent transparent #8dc63f;
  border-style: inset;
  transform: rotate(360deg);
}
.leaderboard-widget.well sup {
  top: 0;
  vertical-align: super;
  font-size: 0.94444444em;
}
.leaderboard .drop-down-select .btn {
  padding-right: 30px;
}
.selector-option-boxes {
  margin-top: 5px;
  padding: 0;
}
.selector-option-boxes li {
  padding: 3px;
  background: #ccc;
  border: 2px solid rgba(255, 255, 255, 0);
  border-bottom: 2px solid #999;
  margin-bottom: 2px;
  list-style: none;
}
.selector-option-boxes li:hover {
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.5);
}
.selector-option-boxes li.opt-selected {
  border: 2px solid rgba(255, 255, 255, 0);
  border-bottom: 2px solid #F37131;
}
.selector-option-boxes li.opt-selected:hover {
  cursor: default;
}
/* Prerequisites custom styling */
.prerequisite-listing .spinner {
  margin-top: 125px;
  position: relative;
}
.prerequisite-listing .search {
  float: left;
  margin-bottom: 20px;
  width: 100%;
}
.prerequisite-listing .search > .btn {
  float: left;
  margin-right: 10px;
}
.prerequisite-listing .search .search-box .btn-default {
  border-left: none;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.prerequisite-listing .filter-results {
  border-left: none;
}
@media (max-width: 767px) {
  .prerequisite-listing .filter-results {
    border-left: none;
    padding-top: 15px;
  }
}
.prerequisite-listing .filter-results .results-item {
  margin-bottom: 20px;
}
.prerequisite-listing .filter-results .results-item::after {
  content: '';
  display: block;
  background-image: linear-gradient(transparent 66%, #aaa 66%, #aaa);
  background-size: 1px 3px;
  height: 12px;
  margin-top: 20px;
}
.prerequisite-listing .filter-results .results-item .body {
  padding-bottom: 15px;
}
.prerequisite-listing .filter-results .results-item .footer {
  border-top: 1px solid #aaa;
  padding-top: 15px;
}
.prerequisite-listing .filter-results .results-item .footer .btn + .btn {
  margin-left: 5px;
}
.time-period-day-txt {
  line-height: 28px;
}
.prerequisite-gt {
  font-size: 55px;
}
input.prerequisite-days {
  display: inline-block;
  margin: 0 0.3em;
  width: 80px;
  vertical-align: middle;
}
.copy-unit-label {
  margin-right: 15px;
}
.leaderboard .title {
  border-bottom: 1px solid #aaa;
  margin-top: 24px !important;
}
.leaderboard .title small {
  display: block;
  font-weight: 300;
  font-size: 18px;
  color: #333;
  margin: 10px 0 15px;
}
.leaderboard .table-wrapper {
  overflow: auto;
}
.leaderboard .table-wrapper .table {
  overflow-y: hidden;
}
.leaderboard .table-wrapper .table th {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  padding-left: 0;
  border-top: none;
  padding-right: 35px;
}
.leaderboard .table-wrapper .table td {
  vertical-align: middle;
  padding-left: 0;
  border-top: none;
  font-weight: 300;
}
.leaderboard .table-wrapper .table tr.me th,
.leaderboard .table-wrapper .table tr.me td,
.leaderboard .table-wrapper .table tr.me .text-link {
  background-color: #333 !important;
  color: #fff;
}
.leaderboard .table-wrapper .table .rank {
  font-weight: bold;
  padding-left: 10px !important;
}
.leaderboard .table-wrapper .table .rank .rank-up,
.leaderboard .table-wrapper .table .rank .rank-down,
.leaderboard .table-wrapper .table .rank .rank-no-change {
  margin-left: 1em;
}
.leaderboard .table-wrapper .table .playa .text-link {
  color: #333;
  font-weight: 300;
}
.leaderboard .table-wrapper .table .playa a img {
  width: auto;
  height: auto;
  max-height: 48px;
  max-width: 48px;
}
.leaderboard .table-wrapper .table img {
  width: 48px;
  height: 48px;
  margin-right: 10px;
}
.leaderboard .table-wrapper .table .medals {
  min-width: 130px;
}
.leaderboard .table-wrapper .table .loading-row {
  height: 100px;
}
.leaderboard .table-wrapper .table .loading-row .spinner {
  position: relative;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .leaderboard .table-wrapper .table .score {
    padding-left: 10px;
  }
  .leaderboard .table-wrapper .table .badges {
    padding-left: 10px;
  }
}
.content-selector {
  /* overide bootstrap multiple select auto height since UX wanted to display only 8 items */
}
.content-selector .content-filter {
  margin-right: 10px;
}
.content-selector select[multiple],
.content-selector select[size] {
  height: 137px !important;
}
.content-selector option {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.content-selector .search-results {
  margin-top: 15px;
}
.content-selector .search-results select {
  width: 100%;
  margin-bottom: 15px;
}
.content-selector .added-content .total {
  font-size: 1.2em;
  font-weight: bold;
  margin-right: 80px;
}
.content-selector .table tr > th,
.content-selector .table tr > td {
  vertical-align: middle;
}
span.segnocode-span {
  padding-right: 25px;
}
.segno-img {
  padding-left: 0;
}
.img-download {
  margin-top: 2px;
}
.segnocode-wrap {
  margin-top: 10px;
}
.segnocode-wrap a {
  cursor: pointer;
}
#clear-code {
  cursor: pointer;
}
.add-content {
  border-bottom: 1px solid #aaa;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.add-content .header {
  margin-bottom: 25px;
}
.segment-home {
  position: relative;
}
.segment-home h3 .help.text-link {
  float: right;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45em;
}
.segment-home .summary {
  background-image: linear-gradient(to bottom, #1a1a1a 33%, #333 88%);
  background-color: #333;
  background-size: auto 500px;
  background-repeat: repeat-x;
  color: #fff;
  font-size: 18px;
  padding: 18px 0 0;
  margin-bottom: 20px;
}
.segment-home .summary .row {
  padding: 0 50px;
}
.segment-home .summary h3 {
  color: #fff;
  border-bottom: none;
  margin-top: 0;
}
@media (min-width: 992px) {
  .segment-home .summary h3 {
    font-weight: 500;
    font-size: 18px;
  }
}
.segment-home .summary .stats h4 {
  color: #fff;
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .segment-home .summary .stats h4 {
    font-size: 16px;
    font-weight: 300;
  }
}
.segment-home .summary .stats .status-header {
  float: left;
  margin-right: 5px;
}
.segment-home .summary .stats .user-total {
  font-size: 85px;
  line-height: 1em;
  font-weight: 300;
}
.segment-home .summary .stats .up-next .user-total {
  font-size: 60px;
}
.segment-home .summary .stats sup {
  font-size: 18px;
  top: 0;
  vertical-align: super;
}
.segment-home .summary .stats .medal:not(:first-child) {
  margin-left: -3px;
}
@media (min-width: 992px) {
  .segment-home .summary .achievement-path p {
    font-size: 16px;
    font-weight: 300;
  }
}
.segment-home .summary .status {
  width: 100%;
  max-width: 230px;
}
@media (min-width: 992px) {
  .segment-home .summary .status td {
    font-size: 16px;
    font-weight: 300;
  }
}
.segment-home .summary .status td + td {
  padding-left: 0.5em;
}
.segment-home .summary .status td:nth-child(1) {
  width: 10%;
}
.segment-home .summary .status td:nth-child(2) {
  width: 30%;
  min-width: 4em;
}
.segment-home .summary .status td:nth-child(3) {
  width: 50%;
  min-width: 6em;
}
.segment-home .summary .status .icon {
  color: #c1c1c1;
  width: 2em;
  display: inline-block;
}
.segment-home .summary .status .icon-Checkmark {
  color: #8dc63f;
}
.segment-home .summary .medals {
  margin-bottom: 20px;
  max-width: 260px;
}
.segment-home .summary .medals .medal {
  background-size: 40px auto;
  background-position: left top;
  display: inline-block;
  width: 33.3333%;
  padding-top: 60px;
  margin-left: 0;
  cursor: pointer;
}
@media (min-width: 992px) {
  .segment-home .summary .medals .medal {
    font-size: 16px;
    font-weight: 300;
  }
}
.segment-home .summary .badges {
  padding: 0;
}
.segment-home .summary .badges .segno-badge {
  display: inline-block;
  vertical-align: top;
  float: none;
  margin: 5px 0;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 992px) {
  .segment-home .summary .badges .segno-badge {
    font-size: 16px;
    font-weight: 300;
  }
}
.segment-home .summary .badges .segno-badge img {
  max-height: 35px;
  max-width: 35px;
  width: auto;
  height: auto;
  margin-bottom: 5px;
}
.segment-home .summary .badges .segno-badge:not(.earned) img {
  opacity: 0.3;
}
.segment-home .summary .badges + hr {
  margin-bottom: 0;
}
.segment-home .summary .sticky-row {
  transform: translateZ(0);
}
.segment-home .summary .leaderboard-container {
  padding: 20px 0 30px;
}
.segment-home .summary .leaderboard-container .leaderboard-widget {
  font-size: 16px;
  background-color: transparent;
}
.segment-home .summary .leaderboard-container .leaderboard-widget.well {
  border: none;
  padding: 0;
  margin: 0;
}
.segment-home .summary .leaderboard-container .leaderboard-widget.well h4 {
  margin-left: 0;
}
.segment-home .summary .leaderboard-container .leaderboard-widget.well .total {
  font-size: 23px;
}
.segment-home .summary .leaderboard-container .leaderboard-widget.well .btn-widget {
  display: none;
}
.segment-home .summary .leaderboard-container .leaderboard-widget.well ul {
  padding-left: 20px;
}
.segment-home .summary .leaderboard-container .leaderboard-widget.well .leaders {
  padding-left: 0;
}
@media (min-width: 992px) {
  .segment-home .summary .leaderboard-container .leaderboard-widget.well .total {
    font-size: 19px;
    font-weight: 500;
  }
  .segment-home .summary .leaderboard-container .leaderboard-widget.well .item {
    font-weight: 500;
    left: 0;
  }
  .segment-home .summary .leaderboard-container .leaderboard-widget.well .item.focused::before {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .segment-home .summary .sticky-row.make-sticky {
    background-color: #333;
    position: fixed;
    padding: 0 35px;
    top: 0;
    margin-left: 0;
  }
}
.learning-widgets {
  position: relative;
  min-height: 265px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .learning-widgets .header {
    display: none;
  }
}
.learning-widget-wrapper .learning-widget {
  min-height: 170px;
  margin-bottom: 30px;
  position: relative;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .learning-widget-wrapper .learning-widget {
    min-height: 30px;
    margin-bottom: 5px;
  }
}
.learning-widget-wrapper .learning-widget.browse {
  min-height: 100px;
}
.learning-widget-wrapper .learning-widget.browse .learning-widget-inner .learning-widget-content {
  background: #fff;
  border: 5px solid #f5f5f5;
}
.learning-widget-wrapper .learning-widget.browse .learning-widget-inner .learning-widget-content .listing-image {
  position: relative;
  text-align: center;
  color: #F37131;
  width: 75px;
  margin: 20px;
}
.learning-widget-wrapper .learning-widget.browse .learning-widget-inner .learning-widget-content .listing-image img {
  width: 100%;
  height: auto;
}
.learning-widget-wrapper .learning-widget.browse .learning-widget-inner .learning-widget-content .description,
.learning-widget-wrapper .learning-widget.browse .learning-widget-inner .learning-widget-content .points {
  float: left;
  width: 100%;
  margin: 10px 20px 10px 0;
}
.learning-widget-wrapper .learning-widget.browse .learning-widget-inner .learning-widget-content .points {
  color: #eb2b2b;
  white-space: normal;
  margin: 10px 20px 0 0;
}
.learning-widget-wrapper .learning-widget.browse .footer {
  background-color: #f5f5f5;
  overflow: hidden;
  padding-right: 5px;
}
.learning-widget-wrapper .learning-widget.search {
  margin-right: 15px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content {
  background: #f5f5f5;
  border: 3px solid #000;
  overflow: hidden;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content.compliance {
  border: 3px solid #29f;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .mobile {
  display: none;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content {
    border: none;
    border-bottom: 1px solid #aaa;
    background: none;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 12px;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content.compliance {
    border: none;
    border-bottom: 1px solid #aaa;
    color: #29f;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content.compliance .text-link {
    color: #29f;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content.compliance .type {
    color: #29f;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .text-link {
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .type {
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .progress-wrapper.visible {
    background: none;
    padding: 0;
    margin: 0;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .progress-wrapper.visible .pb-wrapper,
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .progress-wrapper.visible .percent-complete {
    display: none;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .progress-wrapper.visible .target-month {
    color: #29f;
    font-size: 12px;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content h4,
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .progress-content,
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .small-pb .learning-plan-label-wrapper {
    margin: 0 !important;
    padding: 0 !important;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .full-width,
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .award-content {
    display: none !important;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .mobile {
    display: inline-block;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .mobile-progress {
    padding-left: 0;
    padding-top: 7px;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .subscribe {
    text-transform: lowercase;
    font-weight: 500;
    color: #F37131;
  }
}
@media all and (max-width: 360px), all and (max-height: 360px) {
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content {
    font-size: 10px;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .text-link {
    color: #000;
    font-size: 12px;
  }
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .type,
  .learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .target-month {
    font-size: 10px;
  }
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .full-width-image {
  position: relative;
  text-align: center;
  color: #000;
  width: 100%;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .full-width-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 225px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .full-width-image .darken::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: all 1s;
  -webkit-transition: all 1s;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .full-width-image .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .full-width-image .center-top {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .full-width-image .compliance-label {
  color: #29f;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 18px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .full-width-image .compliance-hr {
  padding-top: 30px;
  border-bottom: 1px solid #29f;
  width: 180px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .full-width-image .type {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 18px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .full-width-image .name {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .description {
  padding-left: 0;
  margin-top: 10px;
  min-width: 300px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .remaining {
  background-color: #fff;
  padding: 10px;
  font-size: 16px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .progress-content {
  margin-top: 10px;
  margin-bottom: 10px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .progress-content .progress-wrapper.visible {
  margin-top: 0;
  margin-bottom: 0;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .progress-content.no-bottom-margin {
  margin-top: 0;
  margin-bottom: 0;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .progress-content.no-bottom-margin .progress-wrapper.visible {
  margin-top: 0;
  margin-bottom: 0;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .award-content {
  height: 49px;
  padding-bottom: 20px;
  display: inline-block;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .award-content .divider {
  border-right: 1px solid #999;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .award-content .medals {
  margin-left: 30px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .award-content .badges {
  white-space: nowrap;
  overflow: hidden;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .award-content .badges .badge-box {
  display: inline-block;
  min-height: 45px;
  min-width: 45px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .award-content .badges .badge-box .badge-img {
  width: auto;
  height: auto;
  max-width: 45px;
  max-height: 45px;
  margin-right: 10px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .award-content .badges .badge-count {
  text-align: center;
  vertical-align: bottom;
  line-height: 45px;
  margin-right: 10px;
}
.learning-widget-wrapper .learning-widget .learning-widget-inner .learning-widget-content .award-content .badges .badge-count .count {
  font-size: 20px;
}
.learning-widget-wrapper .learning-widget .footer {
  bottom: 5px;
  left: 0;
  width: 100%;
  line-height: 30px;
}
.learning-widget-wrapper .learning-widget .footer .subscribe {
  text-transform: lowercase;
  font-weight: 500;
  color: #F37131;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .learning-widget-wrapper .learning-widget .footer.default {
    display: none;
  }
}
.segment-seglets ul.available-seglets,
.segment-seglets ul.added-seglets {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
.segment-seglets ul.available-seglets li,
.segment-seglets ul.added-seglets li {
  padding: 5px 8px;
  border: 1px solid #999;
  border-bottom: 0;
  line-height: 32px;
}
.segment-seglets ul.available-seglets li:before,
.segment-seglets ul.added-seglets li:before,
.segment-seglets ul.available-seglets li:after,
.segment-seglets ul.added-seglets li:after {
  content: " ";
  display: table;
}
.segment-seglets ul.available-seglets li:after,
.segment-seglets ul.added-seglets li:after {
  clear: both;
}
.segment-seglets ul.available-seglets li:before,
.segment-seglets ul.added-seglets li:before,
.segment-seglets ul.available-seglets li:after,
.segment-seglets ul.added-seglets li:after {
  content: " ";
  display: table;
}
.segment-seglets ul.available-seglets li:after,
.segment-seglets ul.added-seglets li:after {
  clear: both;
}
.segment-seglets ul.available-seglets li:last-child,
.segment-seglets ul.added-seglets li:last-child {
  border-bottom: 1px solid #999;
}
.segment-seglets ul.available-seglets li a,
.segment-seglets ul.added-seglets li a {
  display: block;
  float: right;
}
.profile-segment-widget {
  border: 1px solid #aaa;
  padding: 25px 10px 28px;
  position: relative;
  margin: 10px 0 30px;
}
.profile-segment-widget .title {
  float: left;
  margin: 0;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
     -moz-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.profile-segment-widget .subscribe,
.profile-segment-widget .unsubscribe {
  float: right;
}
.profile-segment-widget .subscribe .text-link,
.profile-segment-widget .unsubscribe .text-link {
  font-weight: 300;
}
.profile-segment-widget .body {
  overflow: hidden;
  width: 100%;
}
.profile-segment-widget .body > [class*="col-"] {
  padding: 0;
}
.profile-segment-widget .body h5 {
  margin-top: 20px;
  margin-bottom: 17px;
  font-size: 18px;
  font-weight: normal;
}
.profile-segment-widget .body h5::after {
  content: ':';
}
.profile-segment-widget .body .value {
  font-size: 65px;
  font-weight: 300;
  line-height: 1em;
  margin-top: -10px;
}
.profile-segment-widget .body .medal-widget {
  margin: -10px 0 -4px;
}
.profile-segment-widget .body .medal-widget .medal {
  width: 40px;
  height: 64.64944648px;
}
.profile-segment-widget .badge-case-handle {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #aaa;
  display: inline-block;
  padding: 5px;
  margin: 0 0 0 -50px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  z-index: 10;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.profile-segment-widget .badge-case-handle:hover {
  cursor: pointer;
}
.profile-segment-widget .badges {
  border-top: 1px solid #aaa;
  margin-top: 20px;
  padding-top: 10px;
}
.profile-segment-widget .badges .segno-badge {
  text-align: center;
  margin: 20px 0;
}
.profile-segment-widget .badges .segno-badge img {
  max-width: 100%;
  opacity: 0.4;
  margin-bottom: 10px;
  width: 75px;
}
.profile-segment-widget .badges .segno-badge.earned img {
  opacity: 1;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .profile-segment-widget {
    padding: 15px 10px 18px;
    margin: 10px 0 10px;
  }
  .profile-segment-widget .title {
    font-size: 18px;
  }
  .profile-segment-widget .body .value {
    font-size: 18px;
    margin-top: 0;
  }
  .profile-segment-widget .body .medal-widget .medal {
    width: 25px;
    height: 40.40590405px;
  }
}
.seglet-home .contents .content-wrapper {
  width: 33.3333%;
  float: left;
}
.seglet-home .contents .content-wrapper .content {
  border: 1px solid #aaa;
  padding: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.seglet-preview .header {
  width: 100%;
  overflow: hidden;
}
.seglet-preview .header h4 {
  float: left;
}
.seglet-preview .header .attempts {
  margin: 5px;
  float: right;
}
.seglet-preview .contents {
  margin-top: 15px;
}
.seglet-preview .contents .rating-wrapper {
  height: 32px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media (max-width: 479px) {
  .seglet-preview .contents .expandable-collection-container {
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
  }
}
.seglet-preview .contents .expandable-collection-container .expandable-collection {
  width: 100%;
}
.content-widget {
  border: 1px solid #aaa;
  position: relative;
  margin-bottom: 15px;
  font-size: 13px;
}
.content-widget .locked {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  border: 1px solid #aaa;
  background-color: #333;
  opacity: 0.9;
  z-index: 9;
  color: #f0f0f0;
  text-align: center;
}
.content-widget .locked i {
  font-size: 2.8em;
  display: block;
  margin-bottom: 15px;
}
.content-widget .estimated-time {
  height: 20px;
}
.content-widget .body .top {
  font-size: 12px;
  padding: 7px;
  height: 130px;
}
.content-widget .body .top .dimmed {
  opacity: 0.7;
}
.content-widget .body .top .content-name {
  font-weight: 700;
  text-align: left;
  float: left;
  width: 48%;
  font-size: 16px;
}
.content-widget .body .stats {
  padding: 7px;
  border-bottom: 1px solid #aaa;
  border-top: 1px solid #aaa;
  font-size: 16px;
}
.content-widget .body .image {
  border: 1px solid #aaa;
  height: 80px;
  padding: 11px;
  text-align: center;
  overflow: hidden;
  float: right;
  background-color: #fff;
  width: 50%;
  max-width: 50%;
  /* both values are necessary for different browsers for SVG */
}
.content-widget .body .image img {
  height: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
.content-widget .body .image.has-thumbnail {
  overflow: hidden;
  padding: 0;
  position: relative;
}
.content-widget .body .image.has-thumbnail.is-video a {
  background-color: #333;
  display: inline-block;
  height: 100%;
  max-width: 100%;
}
.content-widget .body .image.has-thumbnail.is-video:not(.completed) a::before {
  content: '';
  display: block;
  opacity: 0.5;
  position: absolute;
  z-index: 1;
  transition: opacity 0.33s ease-in-out;
  background-color: #333;
  border-radius: 6px;
  width: 50px;
  height: 50px;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
}
.content-widget .body .image.has-thumbnail.is-video a::after {
  content: '';
  display: block;
  opacity: 0.5;
  position: absolute;
  z-index: 1;
  transition: opacity 0.33s ease-in-out;
  width: 0;
  height: 0;
  border-style: outset;
  border-width: 18px 0 18px 31.17691454px;
  border-color: transparent transparent transparent #fff;
  left: calc(50% -  (31.17691454px / 2) - 2);
  /* the '- 2' is for a visual correction */
  top: calc(50% -  18px);
}
.content-widget .body .image.has-thumbnail.is-video img {
  transition: opacity 0.33s ease-in-out;
}
.content-widget .body .image.has-thumbnail.is-video:hover a::after,
.content-widget .body .image.has-thumbnail.is-video:hover a::before {
  opacity: 1;
}
.content-widget .body .image.has-thumbnail.is-video:hover img {
  opacity: 0.5;
}
.content-widget .body .image.completed {
  position: relative;
}
.content-widget .body .image.completed a::before {
  position: absolute;
  display: block;
  width: 50px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  font-family: 'icomoon';
  color: #72a230;
  font-size: 70px;
  line-height: 1em;
}
.content-widget .body .image.completed img {
  opacity: 0.2;
}
.content-widget .body .image.completed.has-thumbnail.is-video a {
  background-color: transparent;
}
.content-widget .footer {
  border-top: 1px solid #aaa;
}
.content-widget .footer a.btn {
  color: #F37131;
  border: none;
  border-radius: 0;
  font-weight: 500;
}
.content-widget .footer a.btn:hover {
  color: white;
}
.rating-wrapper {
  line-height: 1.2em;
  height: 30px;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 7px;
}
.rating-wrapper .rating {
  color: #333;
  font-size: 1.5em;
}
.rating-wrapper .rating i,
.rating-wrapper .rating .icon,
.rating-wrapper .rating .glyphicon {
  display: inline-block;
}
.completion.completed {
  color: #72a230;
  font-weight: 500;
}
.subscribe-first .modal-header {
  border-bottom: none;
}
.subscribe-first .modal-body {
  padding-top: 10px;
}
.subscribe-first p {
  font-size: 24px;
  margin-bottom: 20px;
}
.subscribe-first em {
  font-style: normal;
  font-weight: 500;
  font-size: 1.2em;
}
.estimated-time .dimmed {
  margin-top: 5px;
}
.content-widget-wrapper .new-content {
  margin-right: 0px;
}
.clear-button-appearance .title {
  display: inline-block;
}
.pills {
  margin-right: 5px;
  margin-left: 5px;
  display: inline-block;
}
.pills .label {
  padding: 0.2em 0.4em;
  font-size: 12px;
}
.content-filter .filters-container {
  position: relative;
  float: left;
  z-index: 11;
}
.content-filter .filters-header {
  padding: 5px;
}
.content-filter .filters-footer {
  padding: 10px 5px;
}
.content-filter .section-heading {
  background-color: #737373;
  color: #fff;
  margin: 1px 0;
  padding: 5px;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  display: block;
}
.content-filter .section-heading:hover,
.content-filter .section-heading:focus,
.content-filter .section-heading:active {
  text-decoration: none;
}
.content-filter .section-icon {
  position: relative;
  top: 2px;
}
.content-filter .expandable-filters {
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 3px;
  bottom: -5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  position: absolute;
  transition: all linear 0.15s;
  transform: translateY(100%);
  width: 240px;
  z-index: 10;
}
.content-filter .expandable-filters ul + .filters-footer {
  border-top: 1px solid #333;
}
.content-filter .expandable-filters span {
  -ms-flex: 1;
      flex: 1;
}
.content-filter .expandable-filters ul {
  background-color: #e5e5e5;
  margin: -1px 0 0;
  max-height: 30vh;
  overflow: auto;
  padding: 5px 0;
}
.content-filter .expandable-filters li {
  line-height: 1.2em;
  list-style: none;
  padding: 5px;
}
.content-filter .expandable-filters li:nth-child(2n+1) {
  background-color: #f2f2f2;
}
.content-filter .expandable-filters li label {
  display: block;
}
.content-filter .sort-container {
  float: right;
}
.content-filter .drop-down-menus {
  bottom: -5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  max-height: 500px;
  overflow: auto;
  position: absolute;
  transform: translateY(100%);
  transition: all linear 0.15s;
  z-index: 10;
}
.content-filter .drop-down-menus.sort {
  right: 0;
}
.content-filter .drop-down-menus.sort.ng-leave.ng-leave-active {
  max-height: 0;
}
.content-filter .drop-down-menus.sort ul {
  padding: 0;
  margin: 0;
}
.content-filter .drop-down-menus.sort li {
  cursor: pointer;
  display: block;
  min-width: 198px;
  padding: 5px;
}
.content-filter .drop-down-menus.sort li + li {
  border-top: 1px solid #333;
}
.content-filter .drop-down-menus.sort li:hover {
  background-color: #f0f0f0;
}
.content-filter .drop-down-menus.sort li:first-child:hover {
  border-radius: 3px 3px 0 0;
}
.content-filter .drop-down-menus.sort li:last-child:hover {
  border-radius: 0 0 3px 3px;
}
.content-filter .wrapper {
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #333;
}
.filter-container > .btn,
.sort-container > .btn {
  display: block;
  position: relative;
  width: 200px;
}
@media (max-width: 1199px) {
  .filter-container > .btn,
  .sort-container > .btn {
    width: 180px;
  }
}
.filter-container > .btn [class^="icon-"],
.sort-container > .btn [class^="icon-"],
.filter-container > .btn [class*=" icon-"],
.sort-container > .btn [class*=" icon-"] {
  margin-top: -7px;
  position: absolute;
  right: 5px;
  top: 50%;
}
.filter-container > .btn .bubble-triangle::before,
.sort-container > .btn .bubble-triangle::before {
  background-image: url(../images/filter_arrow.svg);
  bottom: -8px;
  content: '';
  height: 15px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease 0s;
  opacity: 0;
  position: absolute;
  width: 27px;
  z-index: 11;
}
.filter-container > .btn.selected .bubble-triangle::before,
.sort-container > .btn.selected .bubble-triangle::before {
  opacity: 1;
}
.sort-container {
  position: relative;
  z-index: 11;
  display: inline-block;
}
.matched-count {
  display: block;
  margin-top: 10px;
}
.filter-pill-container {
  clear: both;
  margin: 0 -3px 0;
  padding: 10px 0 7px;
}
.filter-pill-container.details {
  padding-top: 0;
}
.filter-pill-group {
  display: inline;
  padding: 0;
}
.filter-pill {
  background-color: transparent;
  border: 1px #333 solid;
  border-radius: 5px;
  display: inline-block;
  height: 2em;
  line-height: 2em;
  margin: 10px 3px 0;
  padding: 0 10px;
  position: relative;
  vertical-align: middle;
  transition: all 0.3s ease 0s;
}
.filter-pill span {
  -ms-flex: 1;
      flex: 1;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  margin-right: 1em;
  position: relative;
  top: -1px;
}
.filter-pill .icon-Close::before {
  color: #000;
  display: block;
  position: absolute;
  right: 0.5em;
  top: -2px;
  transform: translateY(50%);
}
.filter-pill:not(.no-hover):hover {
  cursor: pointer;
  border-color: #d9d9d9;
}
.filter-pill:not(.no-hover):hover span {
  opacity: 0.35;
  transition: opacity 0.3s ease 0s;
}
.filter-pill:not(.no-hover):hover .icon-Close::before {
  color: #d9534f;
  font-size: 1.5em;
  position: absolute;
  right: 0.05em;
  top: -0.4em;
  transition: all 0.3s ease 0s;
}
.filter-pill.btn {
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #333333;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 300;
  height: auto;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0px 10px;
  top: 0px;
}
.filter-pill.btn:hover {
  border: 1px solid #333;
}
.filter-pill.btn-primary span {
  margin-right: 0;
  top: 0px;
  text-align: center;
}
.filter-sort-details-container {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.filter-sort-details-contained {
  -ms-flex: 1;
      flex: 1;
}
.filter-sort-details-contained.right {
  text-align: right;
}
.user-checklist {
  margin-bottom: 5px;
  overflow: hidden;
  width: 100%;
}
.user-checklist ul,
.user-checklist ol {
  list-style-type: none;
  padding-left: 0px;
}
.user-checklist ul.checklist-users-list,
.user-checklist ol.checklist-users-list {
  overflow: hidden;
  width: 100%;
}
.user-checklist ul.checklist-users-list li,
.user-checklist ol.checklist-users-list li {
  width: 250px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #ddd;
  float: left;
  padding: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.user-checklist ul.checklist-users-list li .name,
.user-checklist ol.checklist-users-list li .name {
  float: left;
  padding-top: 3px;
}
.user-checklist ul.checklist-users-list li .close,
.user-checklist ol.checklist-users-list li .close {
  border: 1px solid #aaa;
  background-color: #fff;
  border-radius: 20px;
  padding-right: 7px;
  padding-left: 7px;
  padding-bottom: 3px;
}
.user-checklist ul.checklist,
.user-checklist ol.checklist {
  margin-bottom: 30px;
}
.user-checklist ul.checklist li,
.user-checklist ol.checklist li {
  padding: 20px;
  border-bottom: 1px solid #aaa;
}
.user-checklist ul.checklist li .feedback,
.user-checklist ol.checklist li .feedback {
  float: right;
}
.user-checklist ul.checklist li ul,
.user-checklist ol.checklist li ul {
  margin-top: 25px;
  margin-right: 50px;
}
.user-checklist ul.checklist li ul li,
.user-checklist ol.checklist li ul li {
  width: 100%;
  overflow: hidden;
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 5px;
  margin: 5px;
}
.user-checklist ul.checklist li ul li .text,
.user-checklist ol.checklist li ul li .text,
.user-checklist ul.checklist li ul li .buttons,
.user-checklist ol.checklist li ul li .buttons {
  padding-top: 7px;
  margin-top: 0px;
}
.user-checklist ul.checklist li ul li .buttons a,
.user-checklist ol.checklist li ul li .buttons a {
  margin-right: 10px;
  margin-left: 10px;
}
.user-checklist .no-checklist-users {
  padding: 10px;
}
.user-checklist .buttons {
  margin-top: 10px;
  float: right;
}
.manage-content-widget .url {
  max-height: 23px;
  width: 100%;
  overflow: hidden;
}
.manage-content-widget .ratings {
  margin: 10px 0;
}
.manage-content-widget .created {
  display: inline-block;
  margin-top: 10px;
}
.manage-content-widget .spinner {
  position: relative;
  top: 50px;
  z-index: 10;
}
.manage-content-widget .popover {
  margin-left: -195px;
}
.manage-content-widget .popover .close {
  position: relative;
  top: -3px;
  left: 3px;
}
.manage-content-widget .segment-selector .spinner {
  position: relative;
  top: 0px;
  margin: 0 !important;
  padding: 25px 0;
}
.manage-segment-widget .name {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 16px;
}
.manage-segment-widget .btn-lean {
  display: inline-block;
  line-height: 24px;
  margin: 8px 0 8px 20px;
  padding: 0 4px;
  vertical-align: middle;
}
.manage-widget-heading,
.manage-widget-sort-pill {
  -ms-flex: 1;
      flex: 1;
}
.manage-widget-heading {
  display: inline-block;
}
.manage-widget-sort-pill {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: end;
      align-items: flex-end;
}
.manage-widget-sorted {
  display: block;
}
.manage-widget-header,
.manage-widget-sort-pill {
  display: -ms-flexbox;
  display: flex;
}
.manage-widget-header {
  margin-bottom: 15px;
}
.edit-screen a.list-group-item.active::after {
  font-family: 'icomoon';
  float: right;
}
.edit-screen label {
  display: block;
}
.edit-screen label input,
.edit-screen label select,
.edit-screen label textarea {
  font-weight: 300;
}
.edit-screen .list-group-item:first-child {
  padding-top: 5px;
  padding-bottom: 5px;
}
.edit-form .change-log ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.edit-form .change-log li {
  margin-bottom: 10px;
}
.edit-form label {
  display: block;
}
.edit-form label.label-for-radio {
  font-weight: normal;
  margin-right: 15px;
  display: inline;
}
.edit-form label input,
.edit-form label select,
.edit-form label textarea {
  font-weight: 300;
}
.edit-form label select {
  width: auto;
}
.edit-form label small {
  display: block;
  margin: 2px 0 0 6px;
}
.edit-form li.label-for-radio {
  font-weight: normal;
  display: inline;
  list-style-type: none;
}
.preview-modal {
  padding: 5px;
}
.preview-modal .media {
  margin-top: 0;
}
.preview-modal .media-object {
  height: 50px;
}
.preview-modal .modal-header {
  border-bottom: none;
}
.preview-modal .modal-body {
  border-top: 1px solid #aaa;
}
.preview-modal ul {
  list-style: none;
  padding: 0;
}
.tags label {
  display: block;
}
.tags .tag {
  padding: 2px 6px;
  display: inline-block;
  margin: 2px;
  vertical-align: top;
}
.tags .tag .close {
  margin-left: 5px;
  font-size: 1em;
  cursor: pointer;
  opacity: 1;
  text-shadow: none;
  color: #fff;
}
.tags .tag .close:hover {
  opacity: 0.3;
}
.tags .tag .close::before {
  content: '\00D7';
}
.tags .tag .button {
  color: #428bca;
  padding-left: 0;
  margin-top: 10px;
}
.tags .hidden {
  display: none;
}
.tags .spinner {
  position: absolute;
  text-align: left;
  top: -13px;
  left: 0px;
  width: auto;
}
.tags .button.clear-appearance {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  outline-style: none;
}
.manage-medals .medal-item {
  border-bottom: 1px solid #aaa;
  padding-bottom: 10px;
}
.manage-medals .medal-item .title {
  margin-top: 15px;
}
.manage-medals .medal-item .title::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 35.55719556px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
.manage-medals .medal-item .title.level-1 {
  color: #b95719;
}
.manage-medals .medal-item .title.level-1::before {
  background-image: url(../images/medal-bronze.svg);
}
.manage-medals .medal-item .title.level-2 {
  color: #8d8d8d;
}
.manage-medals .medal-item .title.level-2::before {
  background-image: url(../images/medal-silver.svg);
}
.manage-medals .medal-item .title.level-3 {
  color: #f5aa2b;
}
.manage-medals .medal-item .title.level-3::before {
  background-image: url(../images/medal-gold.svg);
}
.manage-medals .medal-item toggle-slider,
.manage-medals .medal-item .points {
  vertical-align: middle;
}
.manage-medals .medal-item ul.badges {
  padding-left: 0px;
  list-style-type: none;
  border: 1px solid #aaa;
}
.manage-medals .medal-item ul.badges li {
  padding: 10px;
  border-bottom: 1px solid #aaa;
}
.manage-medals .medal-item ul.badges li:before,
.manage-medals .medal-item ul.badges li:after {
  content: " ";
  display: table;
}
.manage-medals .medal-item ul.badges li:after {
  clear: both;
}
.manage-medals .medal-item ul.badges li:before,
.manage-medals .medal-item ul.badges li:after {
  content: " ";
  display: table;
}
.manage-medals .medal-item ul.badges li:after {
  clear: both;
}
.manage-medals .medal-item ul.badges li:last-child {
  border-bottom: none;
}
.manage-medals .medal-item ul.badges li .delete {
  float: right;
  cursor: pointer;
}
.manage-medals .medal-item .notice {
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0.8;
}
.profile .nav-buttons {
  width: 100%;
}
.profile .nav-buttons a {
  width: 50%;
}
.profile .nav-buttons a.btn:hover {
  background-color: #666;
}
.profile .profile-header {
  border-bottom: 7px solid #333;
  margin-bottom: 35px;
  width: 100%;
  overflow: hidden;
  background-color: #f0f0f0;
}
.profile .profile-header .stats {
  padding: 0;
}
.profile .profile-header .stats .top {
  width: 100%;
  overflow: hidden;
  line-height: 48px;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  background-color: #333;
}
.profile .profile-header .stats .top .number {
  line-height: 48px;
  font-size: 30px;
}
.profile .profile-header .stats .top .score {
  padding: 0 15px;
  height: 48px;
  float: left;
}
.profile .profile-header .stats .top .rank {
  float: right;
  padding: 0 15px;
  height: 48px;
  position: relative;
  background-color: #6d6d6d;
  transition: background-color 0.3s linear 0s;
}
.profile .profile-header .stats .top .rank.green-up {
  background-color: #8dc63f;
}
.profile .profile-header .stats .top .rank.gray-neutral {
  background-color: #6d6d6d;
}
.profile .profile-header .stats .top .rank.red-down {
  background-color: #ed1c24;
}
.profile .profile-header .stats .top .rank.green-up {
  background-color: #72a230;
}
.profile .profile-header .stats .top .rank sup {
  vertical-align: super;
  font-size: 90%;
  top: 0;
}
.profile .profile-header .stats .bottom .user-picture-wrapper {
  padding: 15px;
  text-align: center;
  overflow: hidden;
}
.profile .profile-header .stats .bottom .user-picture-wrapper .user-picture {
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.profile .profile-header .stats .bottom .user-picture-wrapper .user-picture img {
  border: 1px solid #aaaaaa;
}
.profile .profile-header .stats .bottom .user-picture-wrapper .change-profile-image {
  margin: auto;
}
.profile .profile-header .stats .bottom .profile-stats h4 {
  border-bottom: 1px solid #aaa;
  font-size: 24px;
  padding-bottom: 2px;
  position: relative;
  margin: 10px 0 5px 15px;
  color: #333;
}
.profile .profile-header .stats .bottom .profile-stats ul {
  margin-bottom: 0;
  padding-left: 0;
}
.profile .profile-header .stats .bottom .profile-stats ul li {
  clear: both;
  list-style-type: none;
}
.profile .profile-header .stats .bottom .profile-stats ul li .profile-title {
  margin-right: 0.3em;
  font-weight: 700;
}
.profile .profile-header .stats .bottom .profile-stats ul li .profile-data {
  clear: none;
}
.profile .profile-header .stats .bottom .profile-stats [class*="col-"] {
  margin-bottom: 5px;
}
.profile .profile-header .stats .bottom .profile-stats .title {
  font-size: 1.2em;
  font-weight: bold;
}
.profile .profile-header .stats .bottom .profile-stats .value {
  font-weight: bold;
  line-height: 1.5em;
}
.profile .profile-header .stats .bottom .profile-stats .medals {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
  min-width: 150px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .profile .profile-header .stats .bottom .profile-stats .medals {
    padding-bottom: 5px;
  }
}
.profile .profile-header .stats .bottom .profile-stats .medals .medal {
  width: auto;
  background-color: transparent;
  display: block;
  vertical-align: middle;
  margin-right: 0.8em;
  margin-left: 0;
  margin-bottom: 5px;
  float: left;
  text-align: center;
}
.profile .profile-header .stats .bottom .profile-stats .medals .medal .icon {
  display: block;
  vertical-align: baseline;
  width: 36px;
  height: 58.18450183px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  margin-bottom: -2px;
}
.profile .profile-header .stats .bottom .profile-stats .medals .medal .icon.gold {
  background-image: url(../images/medal-gold.svg);
}
.profile .profile-header .stats .bottom .profile-stats .medals .medal .icon.silver {
  background-image: url(../images/medal-silver.svg);
}
.profile .profile-header .stats .bottom .profile-stats .medals .medal .icon.bronze {
  background-image: url(../images/medal-bronze.svg);
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .profile .profile-header .stats .bottom .profile-stats .medals .medal .icon {
    width: 25px;
    height: 40.40590405px;
  }
}
@media (max-width: 480px) {
  .profile .profile-header .stats .bottom .profile-stats .medals .medal {
    display: block !important;
  }
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .profile .profile-header {
    margin-bottom: 5px;
  }
}
.profile .sidebar .spinner {
  position: relative;
}
.profile .achievements .medals,
.profile .achievements .badges {
  border: 1px solid #aaa;
  padding: 10px;
  margin: 15px 0;
}
.profile .achievements .medals h4,
.profile .achievements .badges h4 {
  margin: 0 0 30px;
}
.profile .achievements .medals ul,
.profile .achievements .badges ul {
  list-style-type: none;
  padding: 0;
}
.profile .achievements .medals ul li,
.profile .achievements .badges ul li {
  display: inline-block;
  float: none;
  vertical-align: top;
  font-size: 1.1em;
  text-align: center;
  margin: 0;
}
.profile .achievements .medals ul li img,
.profile .achievements .badges ul li img {
  width: 69px;
  margin-bottom: 10px;
}
.profile .achievements .medals ul li .medal,
.profile .achievements .badges ul li .medal {
  width: 69px;
  height: 111.52029518px;
  background-size: 100% auto;
  background: no-repeat center center;
}
.profile .achievements .medals ul li .medal.gold,
.profile .achievements .badges ul li .medal.gold {
  background-image: url(../images/medal-gold.svg);
}
.profile .achievements .medals ul li .medal.silver,
.profile .achievements .badges ul li .medal.silver {
  background-image: url(../images/medal-silver.svg);
}
.profile .achievements .medals ul li .medal.bronze,
.profile .achievements .badges ul li .medal.bronze {
  background-image: url(../images/medal-bronze.svg);
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .profile .achievements {
    margin: 15px 0 0;
    padding-bottom: 0;
    background-color: #333333;
    color: #ffffff;
  }
  .profile .achievements .medals,
  .profile .achievements .badges {
    padding: 0;
  }
  .profile .achievements .medals h4,
  .profile .achievements .badges h4 {
    margin: 10px 0 10px 15px;
    color: #ffffff;
  }
  .profile .achievements .medals ul,
  .profile .achievements .badges ul {
    margin: 5px 0;
    background-color: #ffffff;
    color: #000000;
  }
  .profile .achievements .medals ul li,
  .profile .achievements .badges ul li {
    padding: 10px;
    border-top: 1px solid #ddd;
    list-style-type: none;
    float: left;
    clear: left;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
  }
  .profile .achievements .medals ul li img,
  .profile .achievements .badges ul li img {
    clear: none;
    max-width: 30px;
    max-height: 30px;
    margin: 5px 15px 0 0;
  }
  .profile .achievements .medals ul li .badge-data,
  .profile .achievements .badges ul li .badge-data {
    clear: none;
    font-size: 14px;
    text-align: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .profile .achievements .medals ul li .badge-data .badge-segment-name,
  .profile .achievements .badges ul li .badge-data .badge-segment-name {
    clear: both;
  }
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .profile .segments {
    margin-bottom: 20px;
  }
}
.bottom .user-picture-wrapper {
  width: 159px;
  float: left;
}
.bottom .user-picture-wrapper .user-picture {
  width: 144px;
}
.bottom .profile-stats {
  display: block;
  margin-left: 175px;
}
.bottom .profile-stats .profile-stats-inner {
  padding-left: 15px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
}
.bottom .profile-stats .profile-stats-inner .stats-col-1 {
  width: 43%;
  -ms-flex-order: 1;
      order: 1;
}
.bottom .profile-stats .profile-stats-inner .stats-col-2 {
  width: 25%;
  -ms-flex-order: 2;
      order: 2;
}
.bottom .profile-stats .profile-stats-inner .stats-col-3 {
  width: 20%;
  -ms-flex-order: 3;
      order: 3;
}
.bottom .profile-stats .profile-stats-inner .stats-col-4 {
  width: 12%;
  -ms-flex-order: 4;
      order: 4;
}
@media all and (max-width: 768px) {
  .bottom .profile-stats .profile-stats-inner {
    display: inline-block;
  }
  .bottom .profile-stats .profile-stats-inner .stats-col-1 {
    width: 100%;
    -ms-flex-order: 1;
        order: 1;
  }
  .bottom .profile-stats .profile-stats-inner .stats-col-2 {
    width: 100%;
    -ms-flex-order: 2;
        order: 2;
  }
  .bottom .profile-stats .profile-stats-inner .stats-col-3 {
    width: 100%;
    -ms-flex-order: 3;
        order: 3;
  }
  .bottom .profile-stats .profile-stats-inner .stats-col-4 {
    width: 100%;
    -ms-flex-order: 4;
        order: 4;
  }
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .bottom .user-picture-wrapper {
    width: 90px;
  }
  .bottom .user-picture-wrapper .user-picture {
    width: 75px;
  }
  .bottom .profile-stats {
    margin-left: 90px;
  }
  .bottom .profile-stats .profile-stats-inner {
    display: inline-block;
  }
  .bottom .profile-stats .profile-stats-inner .stats-col-1 {
    width: 100%;
    -ms-flex-order: 1;
        order: 1;
  }
  .bottom .profile-stats .profile-stats-inner .stats-col-2 {
    width: 100%;
    -ms-flex-order: 2;
        order: 2;
  }
  .bottom .profile-stats .profile-stats-inner .stats-col-3 {
    width: 100%;
    -ms-flex-order: 3;
        order: 3;
  }
  .bottom .profile-stats .profile-stats-inner .stats-col-4 {
    width: 100%;
    -ms-flex-order: 4;
        order: 4;
  }
}
.image-uploader {
  margin-bottom: 10px;
}
.image-uploader .alert {
  margin-bottom: 10px;
}
.image-uploader img {
  width: 75px;
  height: 75px;
  margin: 0 10px 10px 0;
}
.image-uploader code {
  vertical-align: top;
}
.image-uploader .file-input {
  display: none;
}
/*  image-uploader appears to be associated to a directive. */
image-uploader + span label {
  font-weight: 300;
  display: inline !important;
}
image-uploader + span label:hover {
  cursor: pointer;
}
.edit-badges .edit-badge {
  border: 1px solid #aaa;
  padding: 5px;
  margin-bottom: 10px;
  transition: all linear 0.3s;
}
.edit-badges .edit-badge.ng-enter,
.edit-badges .edit-badge.ng-leave.ng-leave-active {
  opacity: 0;
}
.edit-badges .edit-badge .body:before,
.edit-badges .edit-badge .body:after {
  content: " ";
  display: table;
}
.edit-badges .edit-badge .body:after {
  clear: both;
}
.edit-badges .edit-badge .body:before,
.edit-badges .edit-badge .body:after {
  content: " ";
  display: table;
}
.edit-badges .edit-badge .body:after {
  clear: both;
}
.edit-badges .edit-badge .body ul.contents {
  padding-left: 0;
  list-style-type: none;
  border: 1px solid #aaa;
}
.edit-badges .edit-badge .body ul.contents li {
  padding: 10px;
  border-bottom: 1px solid #aaa;
}
.edit-badges .edit-badge .body ul.contents li:before,
.edit-badges .edit-badge .body ul.contents li:after {
  content: " ";
  display: table;
}
.edit-badges .edit-badge .body ul.contents li:after {
  clear: both;
}
.edit-badges .edit-badge .body ul.contents li:before,
.edit-badges .edit-badge .body ul.contents li:after {
  content: " ";
  display: table;
}
.edit-badges .edit-badge .body ul.contents li:after {
  clear: both;
}
.edit-badges .edit-badge .body ul.contents li:last-child {
  border-bottom: none;
}
.edit-badges .edit-badge .body ul.contents li .delete {
  float: right;
  cursor: pointer;
}
.edit-badges .edit-badge .buttons:before,
.edit-badges .edit-badge .buttons:after {
  content: " ";
  display: table;
}
.edit-badges .edit-badge .buttons:after {
  clear: both;
}
.edit-badges .edit-badge .buttons:before,
.edit-badges .edit-badge .buttons:after {
  content: " ";
  display: table;
}
.edit-badges .edit-badge .buttons:after {
  clear: both;
}
.edit-badges .edit-badge .buttons .btn {
  float: right;
  margin-left: 5px;
}
.click-to-edit .input-group {
  display: block;
}
.click-to-edit .input-group .displayed-value {
  margin-right: 0px;
  padding-right: 0px;
}
.click-to-edit .input-group .displayed-value > div {
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 20px;
  max-height: 119px;
}
.click-to-edit .input-group.checkbox,
.click-to-edit .input-group.radio {
  display: inherit;
  min-height: inherit;
  margin-top: inherit;
  margin-bottom: inherit;
  padding-left: inherit;
  vertical-align: inherit;
}
.click-to-edit .input-group-btn {
  position: absolute;
  top: 0px;
  right: 34px;
  width: 5px;
}
.click-to-edit .input-group-btn button {
  height: 101%;
  min-height: 34px;
  padding-top: 1px;
  padding-bottom: 0px;
}
.click-to-edit textarea {
  margin-bottom: 5px;
}
.click-to-edit .buttons {
  margin-top: 5px;
}
/* Displayed Role Class*/
.displayed-value {
  padding: 6px 5px;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  width: 100%;
  margin-right: 5px;
  display: inline-block;
  white-space: nowrap;
  vertical-align: top;
  text-overflow: ellipsis;
  overflow: hidden;
}
.displayed-value.textarea,
.displayed-value > div {
  white-space: pre;
}
.displayed-value.textarea.textarea,
.displayed-value > div.textarea {
  white-space: normal;
  padding-right: 40px;
}
.edit-checklist .buttons {
  margin-top: 5px;
}
.edit-checklist .buttons:before,
.edit-checklist .buttons:after {
  content: " ";
  display: table;
}
.edit-checklist .buttons:after {
  clear: both;
}
.edit-checklist .buttons:before,
.edit-checklist .buttons:after {
  content: " ";
  display: table;
}
.edit-checklist .buttons:after {
  clear: both;
}
.edit-checklist .buttons .btn {
  float: right;
}
.edit-checklist ol li,
.edit-checklist .press-enter {
  height: 20px;
  transition: all linear 0.2s;
}
.edit-checklist ol li.ng-enter,
.edit-checklist .press-enter.ng-enter,
.edit-checklist ol li.ng-leave.ng-leave-active,
.edit-checklist .press-enter.ng-leave.ng-leave-active {
  opacity: 0;
  height: 0;
}
.segment-users .criterion {
  margin-bottom: 7px;
}
.segment-users .criterion:before,
.segment-users .criterion:after {
  content: " ";
  display: table;
}
.segment-users .criterion:after {
  clear: both;
}
.segment-users .criterion:before,
.segment-users .criterion:after {
  content: " ";
  display: table;
}
.segment-users .criterion:after {
  clear: both;
}
.segment-users .add-fields {
  margin: 10px 0 20px;
}
.segment-users .assigned-users {
  margin-top: 20px;
}
.segment-users .assigned-users .loading-message {
  text-align: center;
}
.segment-users .assigned-users .loading-message .spinner {
  position: relative;
  height: 100px;
}
.segment-users .assigned-users .user-search {
  margin-top: 20px;
  margin-bottom: 20px;
}
.all-activity {
  background: #fff;
  position: relative;
}
.all-activity h3 {
  z-index: 10;
  position: relative;
}
.all-activity h3 + p {
  font-weight: 300;
}
.all-activity ul {
  padding: 0 5px;
  z-index: 10;
  position: relative;
}
.all-activity ul li {
  list-style: none;
  margin-bottom: 10px;
}
.all-activity > [class*="col-"] {
  padding-bottom: 20px;
}
@media (min-width: 480px) and (max-width: 767px) {
  .all-activity > [class*="col-"].sidebar-filter {
    float: left;
    width: 35%;
  }
  .all-activity > [class*="col-"].calendar-panel {
    float: left;
    width: 65%;
  }
  .all-activity > [class*="col-"].calendar-panel .calendar {
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .all-activity > [class*="col-"].calendar-panel h3 {
    font-size: 18px;
    font-weight: 500;
  }
}
.all-activity .sidebar-filter {
  border-right: none;
  margin-right: 0;
}
.all-activity .sidebar-filter .filter-section {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.all-activity .activity-set {
  padding-right: 10px;
  padding-bottom: 50px;
  padding-top: 50px;
}
.all-activity .activity-set.ng-enter {
  transition: all ease 0.5s;
  opacity: 0;
}
.all-activity .activity-set.ng-enter-active {
  opacity: 1;
}
.all-activity .activity-set .activity-group {
  padding-bottom: 10px;
}
.all-activity .activity-set .activity-group::after {
  content: '';
  display: block;
  background-image: linear-gradient(transparent 66%, #aaa 66%, #aaa);
  background-size: 1px 3px;
  height: 12px;
  margin-top: 20px;
  margin-top: 10px;
}
.all-activity .activity-set .activity-group .banner {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1px solid #aaa;
}
.all-activity .activity-set .activity-group .activity {
  min-height: 30px;
  padding: 10px 0;
  border-bottom: 1px solid #aaa;
  font-weight: 300;
}
.all-activity .activity-set .activity-group .activity:before,
.all-activity .activity-set .activity-group .activity:after {
  content: " ";
  display: table;
}
.all-activity .activity-set .activity-group .activity:after {
  clear: both;
}
.all-activity .activity-set .activity-group .activity:before,
.all-activity .activity-set .activity-group .activity:after {
  content: " ";
  display: table;
}
.all-activity .activity-set .activity-group .activity:after {
  clear: both;
}
.all-activity .activity-set .activity-group .activity:last-child {
  border-bottom: none;
}
.all-activity .activity-set .activity-group .activity .data {
  text-align: center;
}
.all-activity .activity-set .activity-group .activity .data img {
  width: 30px;
}
.all-activity .activity-set .activity-group .activity .medal {
  width: 22px;
  height: 35.55719556px;
}
.all-activity .activity-set .activity-group .activity .badge-img {
  max-height: 30px;
  max-width: 30px;
  height: auto;
  width: auto;
}
.all-activity .activity-set.ng-enter {
  transition: all ease 1s;
  opacity: 0;
}
.all-activity .activity-set.ng-enter-active {
  opacity: 1;
}
.all-activity .calendar {
  max-width: 250px;
}
.all-activity .content-panel {
  min-height: 300px;
}
@media all and (max-width: 991px) {
  .all-activity .content-panel {
    clear: both;
  }
}
.all-activity .spinner {
  top: 50px;
  position: relative;
}
.all-activity #FilterList {
  position: relative;
  top: 20px;
}
.all-activity #FilterList h3 {
  margin-top: 0;
  line-height: 18px;
  margin-bottom: 15px;
  border-bottom: none;
}
.all-activity #main-content {
  height: 500px;
  overflow-y: scroll;
}
.all-activity #main-content .loader {
  height: 50px;
  background: #fff;
  font-size: 1.125em;
  text-align: center;
}
.all-activity #main-content .output-content {
  min-height: 100%;
}
.all-activity #main-content .output-content .activity-set {
  position: relative;
}
.team-filter-box-container {
  position: relative;
  width: 376px;
  height: 35px;
  float: right;
  white-space: nowrap;
  overflow: hidden;
}
.team-filter-box-container .ib {
  display: inline-block;
  vertical-align: top;
}
.team-filter-box-container .team-filter-box-open {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  width: 30px;
  height: 35px;
  margin: 0;
}
.team-filter-box-container .team-filter-box-open.glyphicon::before {
  top: 0;
  text-align: center;
  display: block;
  font-size: 1.313em;
  line-height: 33px;
}
.team-filter-box-container .team-filter-box {
  position: absolute;
  right: 0;
  transition: all 0.5s ease;
}
.team-filter-box-container .team-filter-box .team-filter-box-close {
  display: inline-block;
  vertical-align: top;
  width: 30px;
  height: 35px;
  text-align: center;
  background: #f2f2f2;
  border-color: #ccc;
  border-width: 1px 0 1px 1px;
  border-style: solid;
}
.team-filter-box-container .team-filter-box .team-filter-box-close .line {
  content: '';
  width: 20px;
  height: 2px;
  border-top: 2px solid #999;
  display: block;
  position: relative;
  left: 4px;
}
.team-filter-box-container .team-filter-box .team-filter-box-close::before {
  content: '';
  width: 20px;
  height: 2px;
  border-top: 2px solid #999;
  display: block;
  position: relative;
  left: 4px;
  top: 15.5px;
  transform: rotate(45deg);
}
.team-filter-box-container .team-filter-box .team-filter-box-close::after {
  content: '';
  width: 20px;
  height: 2px;
  border-top: 2px solid #999;
  display: block;
  position: relative;
  left: 4px;
  top: 13.5px;
  transform: rotate(135deg);
}
.team-filter-box-container .team-filter-box .team-filter-box-input {
  display: inline-block;
  vertical-align: top;
  height: 35px;
  line-height: 33px;
  border-color: #ccc #ccc #ccc transparent;
  border-style: solid solid solid none;
  border-width: 1px 1px 1px 0;
  width: 346px;
  padding-left: 0.6em;
}
.team-filter-box-container .team-filter-box .team-filter-box-input::-moz-placeholder {
  font-style: italic;
  font-family: 'Calibri';
  font-size: 1em;
  opacity: 1;
  color: #999;
}
.team-filter-box-container .team-filter-box .team-filter-box-input:-ms-input-placeholder {
  font-style: italic;
  font-family: 'Calibri';
  font-size: 1em;
  opacity: 1;
  color: #999;
}
.team-filter-box-container .team-filter-box .team-filter-box-input::placeholder {
  font-style: italic;
  font-family: 'Calibri';
  font-size: 1em;
  opacity: 1;
  color: #999;
}
.team-filter-box-container .team-filter-box.ng-hide-remove,
.team-filter-box-container .team-filter-box.ng-hide-add {
  display: block !important;
}
.team-filter-box-container .team-filter-box.ng-hide {
  right: -100%;
}
.search-page .body .summary {
  margin-top: 15px;
  margin-bottom: 15px;
}
.search-page .body .cant-find {
  float: right;
}
.search-page .body .results-item {
  font-weight: 300;
}
.search-page .body .results-item .result-title {
  font-weight: bold;
}
.search-page .body .results-item .result-description {
  margin-bottom: 10px;
}
.search-page .body .results-item .rating-wrapper {
  padding: 0;
}
.search-page .body .results-item .rating {
  font-size: 20px;
  vertical-align: middle;
}
.search-page .body .results-item .not-rated {
  margin-left: 5px;
  vertical-align: middle;
}
.search-page .body .results-item .content-type {
  background-repeat: no-repeat;
  background-size: auto 100%;
  display: inline-block;
  height: 26px;
  line-height: 26px;
  margin-left: 1em;
  padding-left: 35px;
  position: relative;
  vertical-align: middle;
}
.search-page .body .results-item .segments .segment-widget,
.search-page .body .results-item .plans .segment-widget,
.search-page .body .results-item .segments plan-widget,
.search-page .body .results-item .plans plan-widget {
  height: auto;
  margin-bottom: 20px;
  background: #fff;
  border: 5px solid #f5f5f5;
}
.search-page .body .results-item .segments .segment-widget .media-body,
.search-page .body .results-item .plans .segment-widget .media-body,
.search-page .body .results-item .segments plan-widget .media-body,
.search-page .body .results-item .plans plan-widget .media-body {
  height: 6em;
  position: relative;
  z-index: 1;
  padding: 5px;
}
.search-page .body .results-item .segments .segment-widget .media-body::after,
.search-page .body .results-item .plans .segment-widget .media-body::after,
.search-page .body .results-item .segments plan-widget .media-body::after,
.search-page .body .results-item .plans plan-widget .media-body::after {
  content: '';
  display: block;
  height: 1em;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 20px;
}
.search-page .body .results-item .segments .segment-widget .media-body .media-heading .plan-tag,
.search-page .body .results-item .plans .segment-widget .media-body .media-heading .plan-tag,
.search-page .body .results-item .segments plan-widget .media-body .media-heading .plan-tag,
.search-page .body .results-item .plans plan-widget .media-body .media-heading .plan-tag,
.search-page .body .results-item .segments .segment-widget .media-body .media-heading .segment-tag,
.search-page .body .results-item .plans .segment-widget .media-body .media-heading .segment-tag,
.search-page .body .results-item .segments plan-widget .media-body .media-heading .segment-tag,
.search-page .body .results-item .plans plan-widget .media-body .media-heading .segment-tag {
  font-size: 10px;
  background: #fff;
  padding: 4px;
  text-transform: uppercase;
  margin-left: 5px;
  margin-bottom: 5px;
}
.search-page .body .results-item .segments .segment-widget .media-body .media-heading .plan-tag,
.search-page .body .results-item .plans .segment-widget .media-body .media-heading .plan-tag,
.search-page .body .results-item .segments plan-widget .media-body .media-heading .plan-tag,
.search-page .body .results-item .plans plan-widget .media-body .media-heading .plan-tag {
  color: #333;
  border: #f05133;
  border-style: dashed;
  border-width: 1px;
}
.search-page .body .results-item .segments .segment-widget .media-body .media-heading .segment-tag,
.search-page .body .results-item .plans .segment-widget .media-body .media-heading .segment-tag,
.search-page .body .results-item .segments plan-widget .media-body .media-heading .segment-tag,
.search-page .body .results-item .plans plan-widget .media-body .media-heading .segment-tag {
  color: #333;
  border: #BA58BB;
  border-style: dashed;
  border-width: 1px;
}
.search-page .body .results-item .segments .segment-widget .footer,
.search-page .body .results-item .plans .segment-widget .footer,
.search-page .body .results-item .segments plan-widget .footer,
.search-page .body .results-item .plans plan-widget .footer {
  border-top: none;
  padding: 5px;
  background-color: #f5f5f5;
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.search-page .body .results-item .segments .segment-widget .footer .view-content,
.search-page .body .results-item .plans .segment-widget .footer .view-content,
.search-page .body .results-item .segments plan-widget .footer .view-content,
.search-page .body .results-item .plans plan-widget .footer .view-content {
  text-transform: lowercase;
  font-weight: 500;
  font-size: 14px;
}
.search-page .body .results-item .segments .segment-widget .footer .view-content:hover,
.search-page .body .results-item .plans .segment-widget .footer .view-content:hover,
.search-page .body .results-item .segments plan-widget .footer .view-content:hover,
.search-page .body .results-item .plans plan-widget .footer .view-content:hover,
.search-page .body .results-item .segments .segment-widget .footer .view-content:focus,
.search-page .body .results-item .plans .segment-widget .footer .view-content:focus,
.search-page .body .results-item .segments plan-widget .footer .view-content:focus,
.search-page .body .results-item .plans plan-widget .footer .view-content:focus,
.search-page .body .results-item .segments .segment-widget .footer .view-content:active,
.search-page .body .results-item .plans .segment-widget .footer .view-content:active,
.search-page .body .results-item .segments plan-widget .footer .view-content:active,
.search-page .body .results-item .plans plan-widget .footer .view-content:active {
  text-decoration: none;
}
.search-page .body .results-item .segments .segment-widget .footer .subscribe,
.search-page .body .results-item .plans .segment-widget .footer .subscribe,
.search-page .body .results-item .segments plan-widget .footer .subscribe,
.search-page .body .results-item .plans plan-widget .footer .subscribe {
  text-transform: lowercase;
  font-weight: 500;
  font-size: 14px;
  position: static;
}
.search-page .body .results-item .created-date,
.search-page .body .results-item .found-in {
  margin: 10px 0;
}
.search-page .body .results-item .user img {
  width: 48px;
  height: 48px;
  margin-right: 10px;
}
.input-wrapper {
  border-radius: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  left: 100px;
  margin: 5px 0;
  border: 1px solid transparent;
  position: absolute;
  transition: width 0.5s;
  width: 50px;
}
@media all and (max-width: 992px) {
  .input-wrapper {
    margin: 10px 0;
  }
}
.input-wrapper.active {
  width: 300px;
}
@media all and (max-width: 992px) {
  .input-wrapper.active {
    width: 190px;
  }
}
.input-wrapped {
  border: none;
  border-radius: 15px;
  -ms-flex: 1;
      flex: 1;
}
.input-wrapped-input {
  opacity: 0;
  padding: 0px 0 0 10px;
  height: 52px;
  font: italic normal 400 16px 'Calibri Italic', 'Calibri';
  color: #999999;
  max-width: 100%;
  position: relative;
  z-index: -1;
}
@media all and (max-width: 992px) {
  .input-wrapped-input {
    height: 45px;
  }
}
.input-wrapped-button.btn {
  max-height: none;
}
.input-wrapped-button {
  border: none;
  height: 100%;
  font-size: 40px;
  font-weight: bold !important;
  position: absolute;
  right: 0;
}
@media all and (max-width: 992px) {
  .input-wrapped-button {
    font-size: 35px;
  }
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .input-wrapped-button {
    font-size: 25px;
  }
}
.btn.input-wrapped-button {
  color: white;
  background-color: transparent;
}
.btn.input-wrapped-button:hover,
.btn.input-wrapped-button:focus {
  background: white;
  color: #bbb;
  outline: none;
  box-shadow: 0 0 0 1px white;
  transition: all 0.3s;
  border-radius: 15px;
}
.active .input-wrapped-button {
  box-shadow: none;
  color: #999;
  z-index: 2;
}
.active .input-wrapped-button:hover,
.active .input-wrapped-button:focus {
  box-shadow: none;
}
.active .input-wrapped-input {
  opacity: 1;
  padding-right: 60px;
  z-index: 2;
}
.result-pill {
  border: 2px dashed transparent;
  display: inline-block;
  padding: 5px;
  width: 150px;
  text-align: center;
  text-transform: uppercase;
}
.result-pill.result-content {
  border-color: #428bca;
}
.result-pill.result-plan {
  border-color: #f05133;
}
.result-pill.result-profile {
  border-color: #2CC761;
}
.result-pill.result-segment {
  border-color: #BA58BB;
}
.result-section {
  border-bottom: 1px solid black;
}
.lmp-search {
  clear: both;
  padding: 20px 5px 10px;
}
.lmp-search .hello-welcome {
  font-size: 16px;
  line-height: 34px;
  font-weight: 300;
}
.lmp-search .hello-welcome b {
  font-weight: bold;
}
.lmp-search .help-link {
  font-size: 18px;
  font-weight: 300;
}
.lmp-search .help-link:hover,
.lmp-search .help-link:active,
.lmp-search .help-link:focus {
  text-decoration: none;
}
.lmp-search .input-group {
  padding: 0 15px;
}
.lmp-search .input-group input {
  border-right: none;
  font-weight: 300;
}
.lmp-search .input-group .input-group-addon {
  background-color: #fff;
  cursor: pointer;
  font-size: 26px;
  padding: 0 4px 0 6px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .lmp-search .greeting-large {
    display: none;
  }
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .search-input-wrapper {
    left: auto;
    right: 0;
  }
}
.search-input-wrapper .tooltip-inner {
  min-width: 240px;
  max-width: 250px;
}
.edit-badge .side-bar {
  margin-right: 0;
  left: 0;
  height: auto;
  transition: all ease 2s;
}
.edit-badge .side-bar.ng-enter {
  left: -100%;
  margin-right: -100%;
}
.edit-badge .side-bar.ng-enter-active {
  left: 0;
  margin-right: 0;
}
.edit-badge .sidebar ul {
  padding: 10px;
}
.edit-badge .sidebar li {
  list-style: none;
  line-height: 45px;
  font-size: 0.938em;
  padding: 0 5px;
  margin: 5px 0 0;
  color: #428bca;
}
.edit-badge .sidebar li.active {
  background: #ccc;
}
.edit-badge .sidebar li.active i {
  line-height: 41px;
  display: block;
}
.edit-badge .sidebar li.heading {
  font-size: 1.125em;
  color: #fff;
  background: #999;
}
.edit-badge .sidebar li i {
  display: none;
}
.edit-badge .sidebar li:hover:not(.heading) {
  background: #ccc;
  cursor: pointer;
}
.edit-badge .search {
  border: none;
}
.edit-badge .search button {
  border-color: #ccc;
}
.edit-badge .content-wrap.full-width {
  width: 100%;
}
.edit-badge .content-wrap h4 {
  border: none;
}
.edit-badge .content-wrap .similar-badges label {
  height: 100%;
  float: left;
  width: 20%;
  display: block;
}
.edit-badge .content-wrap .image-uploader {
  float: left;
}
.edit-badge .content-wrap > div {
  margin: 20px 0;
}
.edit-badge .content-wrap > div > label {
  float: left;
  width: 20%;
  font-weight: normal;
  margin: 0 5px 0 0;
}
.edit-badge .content-wrap > div > label span {
  display: block;
  font-size: 0.625em;
}
.edit-badge .content-wrap .notifications .expandable {
  border-bottom: 1px solid #999;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
.edit-badge .content-wrap .notifications .expandable .title {
  padding: 10px 0;
}
.edit-badge .content-wrap .notifications .expandable textarea {
  width: 274px;
}
.edit-badge .content-wrap .notifications .expandable .add-message {
  vertical-align: top;
}
.edit-badge .content-wrap .notifications .expandable select {
  float: right;
  width: 55%;
}
.edit-badge .content-wrap .notifications .expandable .repeat {
  width: 100%;
}
.edit-badge .content-wrap .notifications .expandable .col-sm-5 > div:not(.clear) {
  margin: 10px 0;
}
.edit-badge .content-wrap .text {
  float: left;
  display: block;
  padding: 7px 3px;
  width: 60%;
}
.edit-badge .content-wrap .text.title {
  width: 45%;
}
.edit-badge .content-wrap .type {
  float: left;
  margin: 5px 10px;
  max-width: 35%;
}
.edit-badge .content-wrap .type label {
  float: none;
}
.edit-badge .content-wrap .total {
  position: relative;
  top: 16px;
  left: 5px;
  margin: 0 30px 0 0;
}
.edit-badge .content-wrap .select-all {
  min-width: 100px;
}
.edit-badge .content-wrap .select-all label {
  float: none !important;
  width: auto !important;
}
.edit-badge .content-wrap .results {
  border: 1px solid #ccc;
}
.edit-badge .content-wrap .results .result,
.edit-badge .content-wrap .results .header {
  border: 1px solid #ccc;
  border-top: none;
}
.edit-badge .content-wrap .results .result td,
.edit-badge .content-wrap .results .header td {
  padding: 10px 0;
}
.edit-badge .content-wrap .results .result td.first,
.edit-badge .content-wrap .results .header td.first {
  padding-left: 3px;
}
.edit-badge .content-wrap .results .result td.last,
.edit-badge .content-wrap .results .header td.last {
  padding-right: 3px;
}
.edit-badge .content-wrap .results .result .center,
.edit-badge .content-wrap .results .header .center {
  text-align: center;
}
.edit-badge .content-wrap .results .result .select,
.edit-badge .content-wrap .results .header .select {
  margin: 0 30px;
}
.edit-badge .content-wrap .results .result .points,
.edit-badge .content-wrap .results .header .points {
  margin: 0 13px;
}
.edit-badge .content-wrap .results .result .points span,
.edit-badge .content-wrap .results .header .points span {
  margin: 0 10px;
}
.edit-badge .content-wrap select {
  width: 100%;
}
.edit-badge .content-wrap .filters h3 {
  margin: 0 10px 20px 0;
}
.edit-badge .content-wrap .filters select {
  width: 25%;
  margin: 0 3px;
}
.edit-badge .content-wrap .activity {
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #999;
}
.edit-badge .content-wrap .activity h4 {
  border: none;
}
.edit-badge .content-wrap .activity span {
  margin: 0 10px;
}
.edit-badge .content-wrap .activity select {
  width: 25%;
}
.edit-badge .content-wrap .activity .score {
  width: 75px;
  padding: 5px 3px;
}
.edit-badge .content-wrap .repeat-fequency {
  margin-top: 20px;
}
.edit-badge .content-wrap .repeat-fequency select {
  float: left !important;
  margin: 15px 0 0 10px;
}
.edit-badge .content-wrap .change-log ul {
  padding: 0;
  margin-bottom: 20px;
}
.edit-badge .content-wrap .change-log li {
  list-style: none;
  padding: 5px 0;
  border-bottom: 1px solid #999;
}
.edit-badge .content-wrap .badge-status ul {
  padding-left: 10px;
  margin-bottom: 20px;
}
.edit-badge .content-wrap .badge-status li {
  list-style: none;
  padding: 5px 0;
}
.badge-nav {
  padding: 0;
  margin-bottom: 25px;
}
.badge-nav .btn {
  background: #fff;
  font-size: 1.125em;
  padding: 6px 40px;
  margin: 3px;
  color: #428bca;
}
.badge-nav .btn:hover {
  background: #999;
}
.edit-plan .body > img {
  width: 75px;
  height: 75px;
  margin-top: -75px;
  display: inline-block;
  float: right;
}
.edit-plan .body .col-5 {
  float: left;
  min-height: 1px;
  padding: 0 15px;
  position: relative;
  width: 20%;
}
.edit-plan .body .value {
  color: #999;
  font-size: 18px;
  margin-bottom: 10px;
}
.edit-plan .body .property {
  color: #666;
  font-size: 14px;
}
.edit-plan.learning-units h3 small {
  display: block;
  margin-top: 10px;
}
.edit-plan.learning-units .learning-plan {
  margin-bottom: 20px;
  background-color: #f0f0f0;
  border-bottom: 7px solid #333;
}
.edit-plan.learning-units .learning-plan h3 {
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 15px;
  font-weight: 300;
}
.edit-plan.learning-units .learning-plan h3 small {
  text-transform: none;
  font-weight: 300;
}
.edit-plan.learning-units .learning-plan .body {
  padding: 15px;
}
.edit-plan.learning-units .learning-plan .body > .row {
  padding-right: 105px;
}
.edit-plan.learning-units .learning-plan .body .col-5 {
  min-height: 75px;
}
.edit-plan.learning-units .learning-units-search {
  margin-bottom: 20px;
}
.edit-plan.learning-units .learning-units-results {
  margin-bottom: 20px;
}
.edit-plan.learning-units .learning-units-results h2 {
  margin: 25px 0 0;
}
.edit-plan.learning-units .learning-units-results .select-wrapper {
  margin: 5px 0 10px;
  width: 100%;
}
.edit-plan.learning-units .learning-units-results .select-wrapper .select-list {
  width: 100%;
}
.edit-plan.learning-units .learning-units-results .learning-unit {
  margin-bottom: 20px;
}
.edit-plan.learning-units .learning-units-results .learning-unit::after {
  content: '';
  display: block;
  background-image: linear-gradient(transparent 66%, #aaa 66%, #aaa);
  background-size: 1px 3px;
  height: 12px;
  margin-top: 20px;
}
.edit-plan.learning-units .learning-units-results .learning-unit .footer {
  border-top: 1px solid #aaa;
  padding-top: 15px;
}
.edit-plan.learning-units .learning-units-results .learning-unit-sort {
  display: table;
}
@media screen and (min-width: 401px) {
  .edit-plan.learning-units .learning-units-results .border-left {
    padding-left: 19px;
    border-left: 1px solid #aaa;
  }
}
@media screen and (max-width: 400px) {
  .edit-plan.learning-units .learning-units-results .border-top {
    padding-left: 19px;
    border-top: 1px solid #aaa;
  }
}
.edit-plan.plan-status .form-control {
  min-width: 10em;
  width: 25%;
}
.edit-plan.learning-unit label {
  text-transform: uppercase;
  font-size: 18px;
}
.edit-plan.learning-unit .unit-meta {
  margin-bottom: 20px;
  background-color: #f0f0f0;
  border-bottom: 7px solid #333;
}
.edit-plan.learning-unit .unit-meta > div {
  padding: 15px;
}
.edit-plan.learning-unit .unit-meta .dark-bg {
  padding-bottom: 5px;
}
.edit-plan.learning-unit .unit-meta .item-wrapper {
  display: inline-block;
  padding: 0 20px;
  vertical-align: top;
}
.edit-plan.learning-unit .unit-meta .col-left {
  padding: 0 !important;
}
.edit-plan.learning-unit .unit-meta .col-right {
  padding: 0 !important;
  text-align: right;
}
.edit-plan.learning-unit .unit-meta .col-right .item-wrapper {
  text-align: left;
}
.edit-plan.learning-unit .unit-map .select-learning-plan-row label,
.edit-plan.learning-unit .unit-map .select-learning-plan-row .text-link {
  line-height: 34px;
}
.edit-plan.learning-unit .unit-map .contentId {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  text-align: center;
}
.edit-plan.learning-unit .unit-map .description {
  margin-bottom: 10px;
  font-size: 18px;
}
.edit-plan.learning-unit .save-alert,
.edit-plan.learning-unit .footer-buttons {
  margin-top: 35px;
}
.edit-advanced h3 {
  margin-bottom: 15px;
}
.edit-advanced .form-group {
  border-top: 1px solid #000;
  padding: 20px 0;
  margin-top: 20px;
}
body.popup-open {
  height: 100%;
  overflow: hidden;
}
.plan-public .label-for-radio {
  width: 45%;
}
.spinner.inline {
  height: 35px;
  line-height: 35px;
  min-height: 35px;
  width: auto;
}
.unit-pop-out {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
  overflow-y: scroll;
}
.unit-pop-out .pop-cont {
  position: relative;
  top: 70px;
  left: 0;
  margin: 0 auto;
  background: #fff;
  max-width: 900px;
  width: 100%;
  border-radius: 5px;
  padding: 20px 20px 0;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}
.unit-pop-out .footer-row {
  padding: 10px;
  margin: -1px -5px -5px;
  height: 54px;
}
.unit-pop-out .footer-row.dark {
  background: #999;
  color: #fff;
}
.unit-pop-out .overwrite {
  top: 0 !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.unit-pop-out .checkbox-wrap {
  display: inline-block;
  height: 20px;
  width: 20px;
  border: 1px solid #000;
  float: left;
  margin: 0px 15px 5px 0;
}
.unit-pop-out .checkbox-wrap:hover {
  cursor: pointer;
}
.unit-view-btns {
  background: #999;
  padding: 3px;
  display: inline-block;
}
.unit-view-btns i {
  font-size: 2.5rem;
  position: relative;
  top: 2px;
}
.unit-view-btns button {
  color: #fff;
  background: #666;
  border-top-color: #fefefe;
  border-left-color: #fefefe;
}
.unit-view-btns button.active {
  color: #000;
  background: #fefefe;
  border-bottom: transparent;
  border-right: transparent;
  cursor: default !important;
}
.zoom-btns {
  position: absolute;
  top: 135px;
  right: 15px;
  z-index: 99;
}
.zoom-btns button {
  border-radius: 50%;
  font-size: 15px;
  background: #000;
  color: #fff;
  height: 30px;
  width: 30px;
  line-height: 30px;
}
.zoom-btns button:hover {
  background: #ccc;
  color: #000;
}
.zoom-btns button.zoom-level {
  border-radius: 0;
  width: auto;
}
#unit-creator {
  position: relative;
}
#unit-creator #unit-canvas {
  background: url(../images/grid-repeat.jpg);
  position: relative;
  min-height: 300px;
  min-width: 100%;
  margin-top: 25px;
  overflow: hidden;
}
#unit-creator .new-unit {
  height: 300px;
  border: 2px dashed #999;
  width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -200px;
  margin-top: -150px;
}
#unit-creator .new-unit h4 {
  position: relative;
  top: 120px;
  text-align: center;
  color: #333;
}
#unit-creator .canvas-column {
  overflow-x: scroll;
}
#unit-creator .new-row {
  height: 100px;
  width: 100%;
  border: 2px dashed #999;
  position: absolute;
  bottom: 0px;
  opacity: 0;
}
#unit-creator .new-row.over {
  opacity: 1;
}
#unit-creator .new-row h4 {
  position: relative;
  top: 30px;
  text-align: center;
  color: #333;
}
#unit-creator .unit-row {
  padding: 25px 0;
  border: 2px solid rgba(255, 255, 255, 0);
  height: 300px;
}
#unit-creator .unit-row .mask {
  background: none;
  height: 65%;
  width: 100%;
  position: relative;
  top: 40px;
}
#unit-creator .unit-row .drop-after {
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
  width: 99999px;
  background: none;
}
#unit-creator .link-group-wrapper {
  position: relative;
}
#unit-creator .sandbox-wrapper {
  width: 25%;
  float: left;
  min-height: 1px;
}
#unit-creator .sandbox-wrapper .full-width {
  width: 100%;
}
#unit-creator .sandbox {
  border: 1px solid #ccc;
  padding: 5px;
  background-color: #f0f0f0;
}
#unit-creator .sandbox.fixed {
  position: fixed;
  max-height: 82vh;
  top: 0;
  left: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 25%;
  z-index: 10;
  border: none;
  background-color: #f0f0f0;
}
#unit-creator .fixed .sandbox-overflow {
  overflow: hidden;
}
#unit-creator .sandbox.fixed.has-more-info {
  width: 100%;
}
#unit-creator .sandbox.fixed.has-more-info .sandbox-overflow {
  max-width: calc(24% + 290px);
}
#unit-creator .sandbox.fixed.has-more-info .content-item-width {
  max-width: calc(100% - 290px);
  margin-top: 4px;
}
#unit-creator .sandbox.fixed.has-more-info .content-item {
  float: none;
}
#unit-creator .sandbox.fixed.has-more-info .btn {
  display: block;
}
#unit-creator .btn.content-item-width {
  margin-left: 0;
}
#unit-creator .content-item {
  width: 99%;
  min-height: 44px;
  border: 1px solid #999;
  z-index: 9;
  font-weight: 300;
  margin: 2px;
  float: left;
  position: relative;
  padding-left: 22px;
}
#unit-creator .content-item .handle {
  width: 18px;
  height: 100%;
  background: #fff url(../images/content-handle.jpg) no-repeat left center;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0;
}
#unit-creator .content-item .handle:hover {
  cursor: move;
}
#unit-creator .content-item .moveable:hover {
  cursor: move;
}
#unit-creator .content-item .full {
  height: 100%;
}
#unit-creator .content-item .body {
  min-height: 22px;
  height: 44px;
  overflow: hidden;
  display: block;
  outline: none;
}
#unit-creator .content-item .more-info {
  padding: 0 5px;
  position: absolute;
  bottom: 0;
  right: 0;
}
#unit-creator .content-item:hover {
  background: #ccc;
}
#unit-creator .content-item.selected {
  border: 1px solid red;
}
#unit-creator .wrapper {
  height: 100%;
  position: relative;
}
#unit-creator .drop-before {
  background: red;
  height: 100%;
  width: 50px;
}
#unit-creator .group {
  display: block;
  padding: 20px 0 25px;
  border-radius: 5px;
  box-shadow: 2px 2px 3px #999;
  background: #f0f0f0;
  border: 1px solid #000;
  margin: 4px;
  position: absolute;
  z-index: 2;
}
#unit-creator .group.make-zhigher {
  z-index: 50;
}
#unit-creator .group.over {
  border: 1px solid none;
}
#unit-creator .group .fake-content {
  display: block;
  border-radius: 5px;
  float: left;
  margin: 2px;
  background: #999;
  border: 1px dashed #000;
  height: 160px;
  width: 136px;
}
#unit-creator .group .group-rule {
  height: 25px;
  z-index: 50;
  margin-top: -15px;
}
#unit-creator .group .group-rule small {
  background: #f0f0f0;
  padding: 3px;
  display: inline-block;
}
#unit-creator .group .group-drop-mask {
  position: absolute;
  top: 0;
  left: -35px;
  background: none;
  height: 100%;
  width: 35px;
}
#unit-creator .group .unit-content-item {
  padding: 5px 5px 10px;
  border: 1px solid #000;
  border-radius: 5px;
  margin: 2px;
  text-align: center;
  z-index: 9;
  width: 136px;
  height: 160px;
  background: #fff;
}
#unit-creator .group .unit-content-item .img {
  border: 1px solid #000;
  padding: 5px;
  margin: 2px 0 5px;
  width: 100%;
}
#unit-creator .group .unit-content-item .img-responsive {
  margin: 0 auto;
}
#unit-creator .group .unit-content-item .body {
  height: 43px;
  font-weight: 500;
  overflow: hidden;
}
#unit-creator .group .group-drop-bottom,
#unit-creator .group .group-drop-top {
  z-index: 9999;
  height: 60px;
  width: 100%;
  position: absolute;
  left: 0;
  top: -60px;
  background: #fff;
  border: 2px dashed #999;
  text-align: center;
  font-weight: 700;
  opacity: 0;
}
#unit-creator .group .group-drop-bottom.over,
#unit-creator .group .group-drop-top.over {
  opacity: 1;
}
#unit-creator .group .group-drop-bottom span,
#unit-creator .group .group-drop-top span {
  position: relative;
  top: 10px;
}
#unit-creator .group .group-drop-bottom {
  top: auto;
  bottom: -60px;
}
#unit-creator .content-swap {
  background: #fff;
  border: 1px solid #999;
  position: absolute;
  top: 100px;
  left: 50%;
  margin-left: -150px;
  min-height: 150px;
  max-height: 220px;
  width: 300px;
  padding: 5px;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 15;
  border-radius: 5px;
}
#unit-creator .content-swap input {
  width: 100%;
}
#unit-creator .content-swap button {
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#unit-creator .content-swap input {
  margin: 5px 0;
}
#unit-creator .content-swap .option-list button {
  margin-bottom: 3px;
  text-overflow: ellipsis;
}
#unit-creator ._jsPlumb_connector {
  z-index: 4;
}
#unit-creator ._jsPlumb_endpoint {
  z-index: 5;
}
#unit-creator ._jsPlumb_overlay {
  z-index: 6;
}
#unit-list-view table {
  border: 1px solid #000;
  border-collapse: collapse;
  width: 100%;
}
#unit-list-view table td {
  padding: 5px;
  border: 1px solid #000;
}
#unit-list-view .row {
  border: 1px solid #000;
}
#unit-list-view .col-xs-6 {
  padding-top: 5px;
  padding-bottom: 5px;
}
#unit-list-view .col-xs-6:nth-child(1) {
  border-right: 1px solid #000;
  min-height: 100%;
}
#unit-list-view .indent {
  padding-left: 50px;
}
.plan-units-add-unit-modal .unit-result button {
  color: #000;
  padding-bottom: 2px;
  padding-top: 2px;
  border-bottom: 1px solid #000;
  display: block;
  text-decoration: none;
}
.plan-units-add-unit-modal .unit-result i {
  color: green;
}
.result-listing {
  color: #000;
  text-decoration: none;
  padding-top: 15px;
  text-align: left;
}
.result-listing .title {
  max-width: 85%;
  display: inline-block;
}
.result-listing:focus {
  outline: none;
}
.checkmark-wrap {
  width: 25px;
  height: 25px;
  border: 1px solid #000;
  text-align: center;
  display: block;
}
.checkmark-wrap i {
  color: green;
}
.jsplumb-draggable {
  cursor: move;
}
.wrap-text {
  word-break: break-all;
}
.results-heading {
  margin-bottom: 20px;
}
.result-btn {
  font-weight: 700;
  position: relative;
  padding: 15px 0;
  margin: 0 15px;
  width: calc(50% - 30px);
  border-bottom: 1px solid #000;
}
.result-btn:focus {
  outline: none;
}
.manage-badge-widget .badge-data .description {
  color: #666;
  font-size: 14px;
  line-height: 16px;
  display: block;
}
.manage-badge-widget .badge-data .title {
  display: block;
  font-size: 18px;
  color: #999;
}
.manage-badge-widget .badge-data .title::first-letter {
  text-transform: uppercase;
}
.manage-badge-widget .badge-data.badge-img {
  padding-right: 15px;
  margin-right: -95px;
  float: left;
}
.manage-badge-widget .badge-data.badge-img img {
  max-height: 80px;
  max-width: 80px;
  height: auto;
  width: auto;
}
.manage-badge-widget .badge-data.badge-type {
  word-wrap: break-word;
  margin-left: 95px;
}
/* input-select appears to be associated to a directive. */
input-select {
  display: block;
  position: relative;
}
input-select .input-select {
  width: 100%;
  min-width: 200px;
  height: 30px;
  position: relative;
  z-index: 1;
}
input-select .input-select input {
  width: 100%;
  line-height: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
input-select .input-select span {
  height: 30px;
  width: 30px;
}
input-select .input-select span:hover {
  cursor: pointer;
}
input-select .input-select span i {
  vertical-align: middle;
  position: relative;
  line-height: 32px;
}
input-select .input-select ul {
  clear: both;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow: auto;
  background: #fff;
  position: relative;
  padding: 0 2%;
  z-index: 9999;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.5);
}
input-select .input-select ul li {
  padding: 5px;
  list-style: none;
}
input-select .input-select ul li:hover {
  cursor: pointer;
}
.report-dashboard .reporting-segment-select {
  z-index: 99;
}
.report-dashboard .graph-container {
  border-radius: 10px;
  background-color: #f5f5f5;
  margin-bottom: 20px;
  float: left;
  padding: 20px 20px 0;
  width: 100%;
  text-align: center;
}
.report-dashboard .graph-container::after {
  content: '';
  display: block;
  height: 0;
  margin-top: 20px;
  width: 100%;
}
.report-dashboard .graph-container h3 {
  margin-top: 0;
  text-align: left;
}
.report-dashboard .graph-container table {
  float: left;
  width: calc(100% -  20px + 100px);
  max-width: 275px;
  min-width: 175px;
  margin: 4px 0 20px;
}
.report-dashboard .graph-container th {
  color: #999;
  font-weight: 500;
  text-align: left;
}
.report-dashboard .graph-container th::before {
  content: '';
  border-left-width: 7px;
  border-left-style: solid;
  padding-left: 0.5em;
}
.report-dashboard .graph-container th.gold::before {
  border-left-color: #f5aa2b;
}
.report-dashboard .graph-container th.silver::before {
  border-left-color: #8d8d8d;
}
.report-dashboard .graph-container th.bronze::before {
  border-left-color: #b95719;
}
.report-dashboard .graph-container th.no-medal::before {
  border-left-color: #ff1e00;
}
.report-dashboard .graph-container td {
  padding-top: 3px;
  text-align: right;
}
.report-dashboard .graph-container .reporting-graph {
  width: 100px;
  height: 100px;
  margin: 20px 0 0 20px;
}
.report-dashboard .saved-views:hover,
.report-dashboard .closeBtn:hover {
  cursor: pointer;
}
.report-dashboard .icons {
  position: relative;
}
.report-dashboard .icons span {
  margin: 3px;
  position: relative;
  z-index: 999;
}
.report-dashboard .icons span i {
  font-size: 18px;
}
.report-dashboard .icons span i:hover {
  cursor: pointer;
}
.report-dashboard .icons span:nth-child(1) {
  position: relative;
  right: -5px;
}
.report-dashboard .icons .filter-flyout {
  border: 1px solid #999;
  position: absolute;
  right: 0;
  top: -5px;
  width: 275px;
  padding-top: 5px;
  z-index: 100;
}
.report-dashboard .icons .filter-flyout h3 {
  margin-top: 0;
  padding: 0 5px;
}
.report-dashboard .icons .filter-flyout .heading {
  background: #ccc;
  padding: 3px 0;
}
.report-dashboard .icons .filter-flyout .flyout-body {
  background: #fff;
  max-height: 150px;
  overflow-x: scroll;
}
.report-dashboard .icons .filter-flyout .flyout-body .option {
  padding: 2px 5px;
  background: #eee;
  border-bottom: 2px solid #fff;
  border-top: 2px solid #fff;
}
.report-dashboard .icons .filter-flyout .flyout-body .option:first-child {
  border-top-width: 4px;
}
.report-dashboard .icons .filter-flyout .flyout-body .option:last-child {
  border-bottom-width: 4px;
}
.report-dashboard .icons .filter-flyout .flyout-body .option-arrow:hover {
  cursor: pointer;
}
.report-dashboard .icons .filter-flyout .flyout-body .show-more {
  display: block;
}
.report-dashboard .icons .filter-flyout .flyout-body .subset {
  background: #fff;
  overflow-y: auto;
  max-height: 100px;
  padding: 0 5px;
}
.report-dashboard .icons .filter-flyout .flyout-body .subset span {
  font-size: 16px;
  width: 18px;
  min-height: 1px;
  display: inline-block;
  margin: 0;
  right: 0;
}
.report-dashboard .icons .filter-flyout .flyout-body .subset .subset {
  max-height: none;
  padding-left: 35px;
  padding-right: 0;
}
.report-dashboard .icons .filter-flyout .flyout-body .subset .subset label {
  max-width: 90%;
  margin-left: 3px;
}
.report-dashboard .icons .filter-flyout .flyout-body.bottom {
  padding: 10px 5px;
  background: #ccc;
}
.report-dashboard .icons .filter-flyout.ng-enter {
  right: -100%;
  transition: right ease 0.6s;
}
.report-dashboard .icons .filter-flyout.ng-enter-active {
  right: 0;
}
.report-dashboard .icons .filter-flyout .close {
  position: absolute;
  left: -25px;
  top: 0;
  background: #ccc;
  border: 1px solid #999;
}
.report-dashboard .icons .search-flyout {
  position: absolute;
  right: 0;
  top: -5px;
  width: 275px;
  border: 1px solid #ccc;
  height: 32px;
}
.report-dashboard .icons .search-flyout input {
  border: 0;
  height: 30px;
  padding: 0 25px 0 3px;
  float: left;
  width: 210px;
}
.report-dashboard .icons .search-flyout.ng-enter {
  right: -100%;
  transition: right ease 0.6s;
}
.report-dashboard .icons .search-flyout.ng-enter-active {
  right: 0;
}
.report-dashboard .icons .search-flyout .close {
  float: left;
  height: 32px;
  line-height: 27px;
  background: #ccc;
  padding: 0 3px;
}
.report-dashboard .icons .search-flyout .close i {
  vertical-align: middle;
}
.report-dashboard .greyback {
  background: rgba(255, 255, 255, 0.5);
}
.table-wrapper {
  position: relative;
}
#stickyReportTable .banner {
  height: 42px;
  line-height: 35px;
}
#stickyReportTable .banner .wrapper {
  background: #ccc;
}
#stickyReportTable .banner .wrapper .col {
  padding: 0 0 0 8px;
  width: 50%;
  text-align: left;
  min-height: 35px;
  font-size: 18px;
}
#stickyReportTable .banner .wrapper .pull-right {
  height: 35px;
}
#stickyReportTable .banner .wrapper .tab-btn {
  position: relative;
  width: 35px;
  height: 100%;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  float: left;
}
#stickyReportTable .banner .wrapper .tab-btn:nth-child(even) {
  border-left: 2px solid #fff;
}
#stickyReportTable .banner .wrapper .tab-btn.selected {
  cursor: default;
  background: #9e9e9e;
  color: #fff;
}
#stickyReportTable .banner .wrapper .tab-btn.selected img {
  position: absolute;
  bottom: -9px;
  left: 13px;
}
#stickyReportTable .sorting-arrow {
  position: absolute;
  right: 0;
  top: 23px;
}
#stickyReportTable .header .col {
  background: #fff;
  position: relative;
  min-height: 51px;
}
#stickyReportTable .header .col:hover {
  cursor: pointer;
}
.report-table-footer {
  position: relative;
  color: #fff;
}
.report-table-footer.non-sticky {
  z-index: 10;
  margin: 0px auto -15px;
  padding-bottom: 15px;
  background: #fff;
  visibility: hidden;
  width: 100%;
  position: absolute;
  bottom: -60px;
  left: 0;
}
.report-table-footer.non-sticky.top-held {
  top: 60px;
}
.report-table-footer.non-sticky.visible {
  visibility: visible;
}
.report-table-footer.sticky {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0px;
  z-index: 1;
  visibility: hidden;
}
.report-table-footer.sticky .container {
  padding: 0 20px;
}
.report-table-footer.sticky .container .shadow-wrap {
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.5);
}
.report-table-footer.sticky.visible {
  visibility: visible;
}
.report-table-footer .col {
  background: #666;
  min-height: 30px;
}
.report-table-footer .gold,
.report-table-footer .silver,
.report-table-footer .bronze {
  color: #000;
}
.cols-10 .col {
  width: 10%;
  text-align: center;
}
.cols-10 .col.left {
  text-align: left;
}
.cols-10 .row-listing .outer {
  display: table;
  position: absolute;
  left: 0;
  top: 0;
  height: 65px;
  width: 100%;
  overflow: hidden;
}
.cols-10 .row-listing .middle {
  display: table-cell;
  vertical-align: middle;
}
.cols-10 .row-listing .inner {
  margin-left: auto;
  margin-right: auto;
}
.cols-7 .col {
  width: 12%;
  text-align: center;
}
.cols-7 .col.left {
  text-align: left;
}
.cols-7 .col:nth-child(1) {
  width: 28%;
  text-align: left;
}
.cols-7 .row-listing {
  height: 80px;
}
.cols-7 .row-listing .col {
  height: 100%;
}
.cols-7 .row-listing img {
  width: 60px;
  height: 100%;
  padding-right: 5px;
}
.cols-7 .row-listing .outer {
  display: table;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.cols-7 .row-listing .middle {
  display: table-cell;
  vertical-align: middle;
}
.cols-7 .row-listing .inner {
  margin-left: auto;
  margin-right: auto;
}
.cols-7 .report-table-footer .col:nth-child(1) {
  text-align: right;
}
.col {
  padding: 2px 8px;
  box-sizing: border-box;
  float: left;
  position: relative;
  min-height: 65px;
}
.col.gold {
  background: rgba(245, 173, 46, 0.7);
}
.col.silver {
  background: rgba(141, 141, 141, 0.7);
}
.col.bronze {
  background: rgba(187, 89, 27, 0.7);
}
.row-listing img {
  width: 60px;
  height: 60px;
  padding-right: 5px;
}
.row-listing:nth-child(odd) {
  background: #ccc;
}
.activities.well {
  margin-top: 20px;
}
.activities.well h4 {
  margin-left: 15px;
}
.activities.well .description {
  margin-left: 15px;
}
.activities.well .help-link:focus {
  outline: none;
}
.activities.well .help-link button {
  position: relative;
  /** move help link down, level with tab labels*/
  bottom: -5px;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
}
.activities.well .help-link .popover {
  color: #333;
}
.activities.well .help-link .popover h4 {
  color: #333;
  margin-left: 0;
}
.activities.well .help-link .popover a {
  color: #F37131;
  font-weight: 900;
  cursor: pointer;
}
.activities.well .wrapper {
  padding-bottom: 0;
  background-color: #fff;
  color: #000;
  margin-bottom: 5px;
}
.activities.well .wrapper ul.list {
  margin: 0;
  padding: 0;
}
.activities.well .wrapper ul.list h3 {
  font-weight: bold;
  border-bottom: 0;
  padding-bottom: 0;
}
.activities.well .wrapper ul.list li.activity {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  list-style-type: none;
}
.activities.well .wrapper ul.list li.activity .activity-name {
  font-weight: bold;
}
.activities.well .wrapper ul.list li.activity .profile-img {
  max-width: 60px;
  max-height: 60px;
}
.activities.well .wrapper ul.list li.activity .user-link {
  margin: 0;
  padding-bottom: 0;
}
.activities.well .wrapper ul.list li.activity img {
  width: auto;
  height: auto;
  max-width: 30px;
  max-height: 30px;
}
.activities.well .wrapper ul.list li.activity a {
  color: #F37131;
}
.activities.well .wrapper ul.list li.activity:last-child {
  border-bottom: none;
}
.activities.well .wrapper ul.list .medal {
  width: 24px;
  height: 38.78966789px;
  margin-top: -20px;
}
.activities.well .wrapper ul.list img.badge-img {
  max-height: 30px;
  max-width: 30px;
  height: auto;
  width: auto;
  margin-top: -20px;
}
.activities.well .wrapper ul.list .spinner {
  top: 50px;
  position: relative;
}
.activities.well .wrapper ul.list .description {
  padding-bottom: 10px;
}
.activities.well .spinnerWrapper .spinner {
  top: 0;
}
.activities.well .spinner {
  position: relative;
  top: 20px;
}
.sidebar .activities-spinner {
  min-height: 200px;
}
.sidebar .activities-spinner:before,
.sidebar .activities-spinner:after {
  content: " ";
  display: table;
}
.sidebar .activities-spinner:after {
  clear: both;
}
.sidebar .activities-spinner:before,
.sidebar .activities-spinner:after {
  content: " ";
  display: table;
}
.sidebar .activities-spinner:after {
  clear: both;
}
.sidebar .activities > h2 {
  font-size: 18px;
}
.sidebar .activities .list .activity .activity-name {
  font-size: 14px;
  font-weight: normal;
}
.sidebar .activities .activity-date {
  font-weight: 300;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .off-canvas-panel .activities.well {
    border: none;
  }
  .off-canvas-panel .activities.well h4 {
    margin-left: 0;
  }
  .off-canvas-panel .activities.well .description {
    margin-left: 0;
    font-size: 11px;
    color: #aaaaaa;
  }
  .off-canvas-panel .activities.well .help-link,
  .off-canvas-panel .activities.well .wrapper,
  .off-canvas-panel .activities.well .spinner {
    display: none;
  }
  .off-canvas-panel .activities.well .btn.btn-widget {
    border-color: #5b5b5b;
    background-color: #4c4c4c;
    color: #aeaeae;
  }
  .off-canvas-panel .activities.well .btn.btn-widget:hover,
  .off-canvas-panel .activities.well .btn.btn-widget :active,
  .off-canvas-panel .activities.well .btn.btn-widget :focus {
    color: #999;
  }
}
.profile .activities.well .help-link {
  display: none;
}
toggle-slider {
  display: inline-block;
}
.toggle-slider {
  font-size: 12px;
}
.toggle-slider input {
  display: none;
}
.toggle-slider .wrapper {
  height: 30px;
  width: 70px;
  position: relative;
  border: 1px solid #999;
  background: #999;
  color: #fff;
  border-radius: 15px;
  overflow: hidden;
}
.toggle-slider .wrapper:hover {
  cursor: pointer;
}
.toggle-slider .wrapper span {
  line-height: 27px;
  height: 30px;
  margin: 0 auto;
}
.toggle-slider .wrapper span::-moz-selection {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.toggle-slider .wrapper span::selection {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.toggle-slider .wrapper .on-text {
  margin-left: 12px;
}
.toggle-slider .wrapper .off-text {
  margin-right: 12px;
}
.toggle-slider .wrapper .slider-button {
  box-shadow: 0 0 3px #000;
  border-radius: 30px;
  border: 1px solid #ccc;
  position: absolute;
  left: 0;
  top: -1px;
  height: 30px;
  width: 30px;
  transition: left ease 0.2s;
}
.toggle-slider .wrapper .slider-button.on {
  left: 38px;
}
.toggle-slider .grad-rad {
  background: #a0a0a0;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 12+ */
  /* IE10+ */
  background: radial-gradient(ellipse at center, #a0a0a0 4%, #d1d1d1 86%, #fefefe 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a0a0a0', endColorstr='#fefefe', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
/*!
 * Slider for Bootstrap
 *
 * Licensed under the Apache License v2.0
 *
 */
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 210px;
  height: 20px;
}
.slider.slider-horizontal .slider-track {
  height: 10px;
  width: 100%;
  margin-top: -5px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection {
  height: 100%;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-handle {
  margin-left: -10px;
  margin-top: -5px;
}
.slider.slider-horizontal .slider-handle.triangle {
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #0480be;
  margin-top: 0;
}
.slider.slider-vertical {
  height: 210px;
  width: 20px;
}
.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  margin-left: -5px;
  left: 50%;
  top: 0;
}
.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.slider.slider-vertical .slider-handle {
  margin-left: -5px;
  margin-top: -10px;
}
.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #0480be;
  margin-left: 0;
}
.slider.slider-disabled .slider-handle {
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
}
.slider.slider-disabled .slider-track {
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
  cursor: not-allowed;
}
.slider input {
  display: none;
}
.slider .tooltip-inner {
  white-space: nowrap;
}
.slider-track {
  position: absolute;
  cursor: pointer;
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.slider-selection {
  position: absolute;
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #3a94a5;
  background-image: linear-gradient(to bottom, #149bdf 0%, #0480be 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  filter: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  opacity: 0.8;
  border: 0px solid transparent;
}
.slider-handle.round {
  border-radius: 50%;
}
.slider-handle.triangle {
  background: transparent none;
}
.select-wrapper {
  position: relative;
  display: inline-block;
  margin: 15px 0;
}
.select-wrapper .btn {
  min-width: 200px;
  z-index: 997;
  position: relative;
  display: block;
}
.select-wrapper .btn i {
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -7px;
}
.select-wrapper .btn.selected {
  color: #fff;
  background: #333;
}
.select-wrapper .btn > img {
  position: absolute;
  bottom: -9px;
  left: 50%;
  margin-left: -14px;
  width: auto;
  height: auto;
}
.select-wrapper .select-list {
  border: 1px solid #000;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 40px;
  background: #fff;
  z-index: 99;
  min-width: 200px;
  max-height: 200px;
  overflow-y: scroll;
}
.select-wrapper .select-list .option {
  display: block;
  padding: 5px;
  border-bottom: 1px solid #000;
}
.select-wrapper .select-list .option:hover {
  cursor: pointer;
}
.select-wrapper .select-list .option:last-child {
  border: none;
}
.dd-filter {
  padding-right: 20px;
}
.section {
  margin-top: 25px;
}
.section .addable-seglets .option {
  padding: 5px 8px;
  border: 1px solid #999;
  border-bottom: 0;
}
.section .addable-seglets .option:last-child {
  border-bottom: 1px solid #999;
}
.manage-seglets .manage-seglet-widget .info .item {
  display: inline-block;
  float: left;
  width: 20%;
  padding: 0 3px;
}
.content-wrap {
  position: relative;
}
.submitting-spinner {
  position: relative;
  width: 125px;
  height: 20px;
  display: inline-block;
}
scorm-player {
  position: absolute;
  height: 650px;
  width: 730px;
  left: 50%;
  top: 0;
  margin: 0 0 0 -375px;
}
scorm-player .scorm-player {
  height: 625px;
  width: 740px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
scorm-player .scorm-player iframe {
  overflow: visible;
  border: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -369px 0 0 -478px;
}
.content-home {
  position: relative;
}
.content-home .completion-note {
  display: none;
  position: relative;
  width: 95%;
  min-width: 300px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  margin-top: 20px;
  color: #000;
  background: #ddd !important;
  box-shadow: 0 0 10px black;
  border: none;
}
.content-home .completion-note:before,
.content-home .completion-note:after {
  content: " ";
  display: table;
}
.content-home .completion-note:after {
  clear: both;
}
.content-home .completion-note:before,
.content-home .completion-note:after {
  content: " ";
  display: table;
}
.content-home .completion-note:after {
  clear: both;
}
.content-home .completion-note .heading {
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.15em;
}
.content-home .completion-note > div {
  padding: 3px 0;
}
.content-home .completion-note .points {
  color: #F37131;
}
.content-home .read-acknowledge {
  margin-top: 16px;
  margin-right: 20px;
  display: inline-block;
}
.content-home .submitErrors {
  margin-top: 10px;
}
.content-home .document-viewer .alert-info {
  margin-top: 20px;
}
.content-home .document-viewer .alert-info p {
  font-size: 18px;
  font-weight: 500;
}
.content-home .document-viewer .alert-info .btn {
  margin-top: 15px;
}
.content-home .content {
  width: 100%;
  height: 600px;
}
.content-home .warning {
  width: 100%;
  overflow: hidden;
}
.content-home .ratingArea {
  padding: 10px 0 0 0;
}
.content-home .ratingArea h4 {
  margin: 0;
}
.content-home .ratingArea .rating {
  font-size: 1.6em;
  color: #333;
  cursor: pointer;
  outline: none;
}
.content-home .ratingArea .rating i {
  display: inline-block;
}
.content-home .buttons {
  margin-top: 10px;
  display: inline-block;
}
.content-home .buttons .submitBtn {
  padding-left: 40px;
  padding-right: 40px;
}
#youTubePlayer {
  margin: 0 auto;
  display: block;
}
.help-pop-over {
  padding: 10px;
  height: 400px;
  width: 500px;
  background: rgba(6, 160, 227, 0.9);
  position: absolute;
  left: 50%;
  top: 25px;
  margin: 0 0 0 -250px;
  z-index: 9999;
  border-radius: 20px;
  color: #fff;
  text-align: center;
}
.help-pop-over h2 {
  color: #fff;
  margin-bottom: 15px;
}
.help-pop-over p {
  font-size: 1.25em;
}
.help-pop-over a {
  color: #428bca;
  margin-top: 15px;
  display: inline-block;
}
.help-wrap {
  width: 100%;
  position: relative;
}
.help-wrap .help-popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  width: 300px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.5) 3px 3px;
  font-size: 20px;
}
.help-wrap .header {
  color: #fff;
  padding: 10px;
}
.help-wrap .content {
  padding: 10px;
  background: #fff;
  color: #666;
  border-radius: 20px;
  min-height: 100px;
}
.help-wrap .content .buttons {
  border-top: 1px solid #666;
  padding: 5px 0 0;
  margin-top: 5px;
}
.help-wrap .content .buttons .next-circle,
.help-wrap .content .buttons .prev-circle {
  background: #fff;
  border: 1px solid #428bca;
  color: #428bca;
  height: 40px;
  width: 40px;
  border-radius: 40px;
  text-align: center;
  float: left;
  font-size: 20px;
  line-height: 40px;
  margin: 0 5px;
}
.help-wrap .content .buttons .next-circle:hover,
.help-wrap .content .buttons .prev-circle:hover {
  cursor: pointer;
}
.help-wrap .arrow-up {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 50%;
  margin-left: -15px;
  top: -20px;
}
.help-wrap .arrow-down {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid rgba(0, 0, 0, 0.6);
}
.help-wrap .arrow-right {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid rgba(0, 0, 0, 0.6);
  position: absolute;
  right: -20px;
  top: 18px;
}
.help-wrap .arrow-left {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid rgba(0, 0, 0, 0.6);
  position: absolute;
  left: -20px;
  top: 18px;
}
.log-out-warning h2 {
  text-align: center;
}
.log-out-warning .btn-actions {
  text-align: center;
  padding: 10px;
}
.count-down {
  width: 200px;
  height: 200px;
  position: relative;
  background: #ccc;
  border-radius: 100px;
  margin: 0 auto;
  /*
  unless the piece represents more than 50% of the whole chart.
  then make it a square, and ensure the transform origin is
  back in the center.

  NOTE: since this is only ever a single piece, you could
  move this to a piece specific rule and remove the extra class
*/
  /*
  this is the actual visible part of the pie. 
  Give it the same dimensions as the regular piece.
  Use border radius make it a half circle.
  move transform origin to the middle of the right side.
  Push it out to the left of the containing box.
*/
  /* if it's part of a big piece, bring it back into the square */
  /* 
  big pieces will also need a second semicircle, pointed in the
  opposite direction to hide the first part behind.
*/
  /*
  add colour to each piece.
*/
  /*
  now rotate each piece based on their cumulative starting
  position
*/
  /*
  and rotate the amount of the pie that's showing.

  NOTE: add an extra degree to all but the final piece, 
  to fill in unsightly gaps.
*/
  /*
NOTE: you could also apply custom classes (i.e. .s0 .v30)
but if the CSS3 attr() function proposal ever gets implemented,
then all the above custom piece rules could be replaced with
the following:

.pie[data-start] {
   transform:rotate(attr(data-start,deg,0);
}
.pie[data-value]:BEFORE {
   transform:rotate(attr(data-value,deg,0);
}
*/
}
.count-down .time-left {
  position: absolute;
  z-index: 999;
  font-size: 26px;
  line-height: 40px;
  height: 40px;
  left: 50%;
  width: 40px;
  margin: -20px 0 0 -20px;
  text-align: center;
  top: 50%;
  background: #fff;
  border-radius: 20px;
}
.count-down .pie {
  position: absolute;
  width: 100px;
  height: 200px;
  overflow: hidden;
  left: 100px;
  transform-origin: left center;
}
.count-down .pie.big {
  width: 200px;
  height: 200px;
  left: 0px;
  transform-origin: center center;
}
.count-down .pie:BEFORE {
  content: "";
  position: absolute;
  width: 100px;
  height: 200px;
  left: -100px;
  border-radius: 100px 0 0 100px;
  transform-origin: right center;
}
.count-down .pie.big:BEFORE {
  left: 0px;
}
.count-down .pie.big:AFTER {
  content: "";
  position: absolute;
  width: 100px;
  height: 200px;
  left: 100px;
  border-radius: 0 100px 100px 0;
}
.count-down .pie:nth-of-type(1):BEFORE,
.count-down .pie:nth-of-type(1):AFTER {
  background-color: #C3D32B;
}
.count-down .pie[data-start="30"] {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(30deg);
}
.count-down .pie[data-start="60"] {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(60deg);
}
.count-down .pie[data-start="100"] {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(100deg);
}
.count-down .pie[data-value="36"]:BEFORE {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(36deg);
}
.count-down .pie[data-value="72"]:BEFORE {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(72deg);
}
.count-down .pie[data-value="108"]:BEFORE {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(108deg);
}
.count-down .pie[data-value="144"]:BEFORE {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(144deg);
}
.count-down .pie[data-value="180"]:BEFORE {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(180deg);
}
.count-down .pie[data-value="216"]:BEFORE {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(216deg);
}
.count-down .pie[data-value="252"]:BEFORE {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(252deg);
}
.count-down .pie[data-value="288"]:BEFORE {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(288deg);
}
.count-down .pie[data-value="324"]:BEFORE {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(324deg);
}
.count-down .pie[data-value="360"]:BEFORE {
  /* Firefox */
  /* IE */
  /* Safari and Chrome */
  /* Opera */
  transform: rotate(360deg);
}
.chart {
  background: #eee;
  padding: 3px;
}
.chart div {
  width: 0;
  transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
}
.chart div {
  font: 10px sans-serif;
  background-color: steelblue;
  text-align: right;
  padding: 3px;
  margin: 5px;
  color: white;
  box-shadow: 2px 2px 2px #666;
}
.segment-medal-summary {
  position: relative;
  box-sizing: border-box;
  width: 320px;
}
.segment-medal-summary .popup-header {
  border-bottom: 1px solid #aaa;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.segment-medal-summary .popup-header .medal {
  background-size: 45px auto !important;
  padding-top: 70px !important;
  width: 40px !important;
  margin-right: 10px;
}
.segment-medal-summary .popup-header h3 {
  color: #333;
  padding-right: 30px;
}
.segment-medal-summary .popup-body {
  color: #333;
}
.segment-medal-summary .popup-body h3 {
  color: #333;
}
.segment-medal-summary .popup-body .medals {
  max-width: 100% !important;
}
.segment-medal-summary .popup-body .medals .medal {
  background-position: center top;
  background-size: 28px auto;
  font-size: 14px;
  text-align: center;
  height: auto;
  padding-top: 48.48708486px;
  vertical-align: top;
}
.segment-medal-summary .popup-body .badges .segno-badge {
  font-size: 14px;
  text-align: center;
  width: 33.33333333%;
}
.segment-badge-summary {
  position: relative;
  box-sizing: border-box;
  width: 320px;
}
.segment-badge-summary .popup-header {
  border-bottom: 1px solid #aaa;
  padding-bottom: 15px;
}
.segment-badge-summary .popup-header .medal {
  background-size: 45px auto !important;
  padding-top: 70px !important;
  width: 40px !important;
  margin-right: 10px;
}
.segment-badge-summary .popup-header h3 {
  color: #333;
  padding-right: 30px;
}
.segment-badge-summary .popup-header h3 img {
  margin-right: 5px;
}
.segment-badge-summary .popup-body {
  color: #333;
}
.segment-badge-summary .popup-body h3 {
  color: #333;
  padding-top: 15px;
}
.segment-badge-summary .popup-body .segno-content {
  font-size: 12px;
}
.segment-badge-summary .popup-body .segno-content span {
  color: #8dc63f;
}
.segment-badge-summary .completion-status {
  background-size: cover !important;
  display: inline-block;
  width: 36px;
  height: 24px;
}
.segment-badge-summary .completed {
  background: url(../images/completed.svg) no-repeat;
}
.segment-badge-summary .not-completed {
  background: url(../images/not-completed.svg) no-repeat;
}
.full-page-modal {
  padding: 5px;
  background: #000;
  overflow: hidden;
}
.full-page-modal .pop-wrap,
.full-page-modal .iframe-wrap {
  height: 100%;
}
.full-page-modal .iframe-wrap .btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  margin: 2px 0 5px;
}
.full-page-modal .iframe-wrap .btn:hover {
  background: #fff;
  color: #000;
}
.full-page-modal .icon {
  color: #fff;
  font-size: 18px;
}
.full-page-modal .icon:hover {
  cursor: pointer;
}
.full-page-modal iframe {
  width: 100%;
  height: 96%;
}
.confetti-popup {
  background: none;
}
.confetti-popup #confetti {
  height: 100%;
  left: 0px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: -1;
}
.confetti-popup .content-wrap {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  width: 500px;
  max-width: 100%;
  padding: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.system-alert textarea {
  width: 100%;
  min-height: 100px;
}
.system-alert .alert-warning {
  font-size: 16px;
}
.preview-alert {
  padding: 15px 35px 15px 60px;
  position: relative;
  font-size: 16px;
}
.preview-alert::before {
  content: " ";
  display: inline-block;
}
.preview-alert .type-icon {
  font-size: 26px;
  position: absolute;
  left: 15px;
  top: 15px;
  cursor: default;
}
.preview-alert .icon-Close {
  font-size: 24px;
  cursor: pointer;
}
.preview-alert-text {
  padding: 0;
  font-weight: 300;
  font-size: 16px;
  margin: 0;
  line-height: 1.3;
  position: relative;
  top: 2px;
}
.preview-alert-box {
  padding: 15px 35px 15px 60px;
  position: relative;
}
.preview-alert-icon.type-icon {
  font-size: 26px;
  position: absolute;
  left: 15px;
  top: 15px;
  cursor: default;
}
.preview-alert-icon.icon-Close {
  font-size: 24px;
  cursor: pointer;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbFmUiA8.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabVmUiA8.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiA8.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bVmUiA8.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjalmUiA8.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtalmUiA8.ttf) format('truetype');
}
.segnocode-report .search-box {
  margin: 20px auto;
  width: 600px;
}
.segnocode-report .search-box .title {
  float: left;
  width: 100px;
}
.segnocode-report .search-box input {
  float: left;
  width: 250px;
}
.segnocode-report .search-box button {
  margin-left: 10px;
}
.segnocode-report .search-box .error {
  color: #999999;
  font-weight: bold;
  margin-left: 105px;
  margin-top: 5px;
}
.segnocode-report .search-box-btm-border {
  clear: both;
  border-bottom: solid 1px #737373;
  border-top: solid 1px #737373;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  padding: 10px;
}
.segnocode-report .content .div {
  clear: both;
  width: 100%;
  padding: 8px;
}
.segnocode-report .content .div .title {
  float: left;
  font-weight: bold;
  width: 200px;
}
.segnocode-report .content .div .data {
  float: left;
  width: 300px;
}
.segnocode-report .grid thead tr th {
  font-weight: 700;
}
.segnocode-report .grid thead tr .st-sort-ascent:before {
  content: '\25B2';
}
.segnocode-report .grid thead tr .sort {
  cursor: pointer;
}
.segnocode-report .grid tbody tr td {
  border-bottom: 1px solid #CCC;
}
.group-listing {
  margin: 15px 0;
  position: relative;
  transition: all ease 0.5s;
}
.group-listing .arrow {
  display: none;
}
.group-listing.do-next .mask,
.group-listing.satisfied .mask {
  display: none !important;
}
.group-listing.do-next .arrow {
  position: absolute;
  left: -60px;
  top: calc(50% - 30px);
  display: block;
  font-size: 6rem;
  color: #F37131;
}
.content-list {
  margin: 0 auto;
  max-width: 800px;
}
.overview-wrapper {
  position: relative;
  height: auto;
  z-index: 5;
  width: 100%;
}
.ribbon {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 3;
  overflow: hidden;
  width: 100px;
  height: 100px;
  text-align: right;
}
.ribbon span {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  line-height: 25px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 130px;
  display: block;
  background: #C3D32B;
  box-shadow: 0 3px 10px -5px #000000;
  position: absolute;
  top: 22px;
  right: -28px;
}
.displayBlack {
  color: #333333;
}
.overview {
  top: 0;
  width: 100%;
  color: #fff;
  border-radius: 5px;
  border-top-left-radius: 0;
}
.overview .wrap {
  background: #000;
  padding: 10px 20px;
  width: 100%;
}
.overview h4 {
  color: #fff;
}
.overview.fixed {
  position: fixed;
  left: 0;
  padding: 0 20px;
}
.overview .progress-bar {
  position: relative;
  height: 20px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 0.1px solid #333;
}
.overview .progress-bar .progress-fill {
  position: absolute;
  left: 0;
  top: -1px;
  background: #007f00;
  height: 22px;
  border-radius: 10px;
}
.overview .unit-map {
  position: absolute;
  top: 60px;
  right: 0px;
  min-width: 250px;
  padding: 0 5px;
  min-height: 0px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  max-height: 0px;
  visibility: hidden;
}
.overview .unit-map h3 {
  text-align: center;
}
.overview .unit-map.opened {
  max-height: 10000px;
  min-height: 100px;
  visibility: visible;
}
.overview .unit-map.opened .bubble-triangle:before {
  background-image: url("../images/filter_arrow.svg");
  top: -13px;
  content: "";
  height: 15px;
  right: 23px;
  position: absolute;
  transform: translateX(-50%);
  width: 27px;
  z-index: 11;
}
.overview .unit-map .wrapper {
  position: relative;
  margin-top: 20px;
}
.overview .unit-map .map-group {
  position: absolute;
  min-width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.overview.fixed .unit-map {
  right: 20px;
}
.content-link {
  display: inline-block;
  position: relative;
  text-align: center;
  width: 50px;
  border: 1px solid #999;
  background: #ccc;
  border-radius: 5px;
  color: #F37131;
  outline: none !important;
}
.content-link a {
  text-decoration: none !important;
}
.content-link i {
  font-size: 1.5rem;
  color: #000;
}
.content-link i.icon-Checkmark {
  color: green;
}
.content-link .contentId {
  position: absolute;
  top: -16px;
  left: 2px;
  color: #000;
  font-weight: 700;
  z-index: 20;
}
.content-link:hover {
  background: #fefefe;
}
.do-next .content-link i:not(.icon-Checkmark):before {
  content: "\e620";
  color: #F37131;
}
.content-listing {
  border: 2px solid #999;
  position: relative;
  font-size: 1.75rem;
  min-height: 130px;
  border-radius: 10px;
}
.content-listing a {
  display: block;
  text-align: center;
  color: #F37131;
}
.content-listing img {
  max-width: 100%;
  max-height: 128px;
}
.content-listing .media-heading {
  padding: 15px 15px 0;
  font-size: 1.9rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.content-listing .media-heading a {
  text-align: left;
  word-break: normal;
  width: 82%;
}
.content-listing .media-heading span {
  color: #999;
}
.content-listing .mask {
  height: 0;
  overflow: hidden;
  padding: 0 15px;
  display: none;
}
.content-listing .content-image {
  padding-right: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.content-listing.disabled {
  opacity: 0.5;
}
.content-listing.disabled .mask {
  background: rgba(255, 255, 255, 0.1);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  font-size: 8.5rem;
  color: #666;
}
.content-listing.disabled .mask i {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -7px;
}
.content-listing.disabled .mask .message {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
.content-listing.content-tested-out {
  opacity: 1 !important;
  background-color: #EBEBEB;
}
.content-listing .content-completion-labels {
  width: 40%;
}
.content-listing .content-completion-labels .content-completed-label {
  float: right;
  color: green;
}
.content-listing .content-completion-labels .content-tested-out-label {
  float: left;
  color: green;
}
.content-listing .content-completion-labels .content-not-started-label {
  float: right;
}
.do-next .content-listing,
.satisfied .content-listing {
  opacity: 1 !important;
}
.tab-wrapper .btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.tab-wrapper .btn.active {
  color: #fff;
  background: #000;
  border-color: #000;
}
.listing-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 128px;
}
.content-listing-time {
  margin-left: 15px;
  width: 60%;
}
.plan-info {
  width: 80px;
  margin-left: 15px;
}
.content-listing-image-wrapper {
  -ms-flex-order: 2;
      order: 2;
  max-width: 25%;
  padding-right: 0;
}
a.content-listing-image-link {
  height: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
}
a.content-listing-image-link.columns {
  -ms-flex-direction: row;
      flex-direction: row;
}
a.content-listing-image-link.rows {
  -ms-flex-direction: column;
      flex-direction: column;
}
/*
* ######### Page Styles #########
*/
.option-selected {
  background-color: #333333 !important;
  color: #ffffff !important;
  border-color: #333333;
  transition: all 0.1s ease 0s;
}
.option-selected:hover {
  color: #333333;
  background-color: #ebebeb;
}
/*
* ######### BUTTONS #########
*/
.lnk-btn {
  background: none;
  border: 0;
  padding: 5px 8px;
}
.lnk-btn i {
  font-size: 2rem;
}
.lnk-btn.no-pad {
  padding: 5px 0;
}
.btn-lean {
  display: inline-block;
  line-height: 24px;
  padding: 0 4px;
  vertical-align: middle;
}
.placeholder-btn {
  height: 50px;
}
.full-width {
  width: 100%;
}
.btn-outline {
  background: none;
  border: 1px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  border-color: #000;
}
/*
* ######### Check Boxes #########
*/
.sg-checkbox-wrap {
  display: block;
  text-decoration: none;
  outline: none !important;
  border: 0;
  background: none;
}
.sg-checkbox-wrap span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  padding-left: 10px;
}
.sg-checkbox-wrap.option {
  margin-bottom: 10px;
}
.sg-checkbox {
  height: 20px;
  width: 20px;
  border: 1px solid #000;
  position: relative;
}
.sg-checkbox i {
  position: absolute;
  top: 2px;
  left: 2px;
  color: green;
  font-weight: 700;
}
/*
* ######### Radio Buttons #########
*/
/*
* ######### Switch #########
*/
/*
* ######### Pill #########
*/
/*
* ######### POPUP #########
*/
.sg-popover .heading {
  margin-top: 0;
}
.sg-popover .close-btn {
  font-size: 2rem;
  color: #333;
}
.sg-popover .popover-wrapper {
  padding: 15px;
}
.sg-popover .popover-wrapper.dark {
  background: #999;
}
.sg-popover .popover-footer {
  padding: 15px;
}
/*
* ######### Tables #########
*/
.icon-info {
  padding-top: 15px;
  padding-left: 75px;
}
.criterion-selector-widget {
  margin-bottom: 50px;
}
.criterion-selector-widget hr {
  margin: 55px 0;
}
.criterion-selector-widget .criteria-select-assign .criterion-set:first-child .hr-divider {
  display: none;
}
.criterion-selector-widget .criteria-select-assign .hr-divider {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -ms-flex-align: center;
      align-items: center;
  color: #aaa;
  font-weight: 500;
  margin: 20px 0;
}
.criterion-selector-widget .criteria-select-assign .hr-divider::before {
  content: "";
  width: 50px;
  background: #aaa;
  height: 1px;
  margin: 0 16px 0 0;
}
.criterion-selector-widget .criteria-select-assign .hr-divider::after {
  content: "";
  -ms-flex-positive: 1;
      flex-grow: 1;
  background: #aaa;
  height: 1px;
  margin: 0 0 0 16px;
}
.criterion-selector-widget .subscribed-learners h3 {
  text-transform: uppercase;
  margin-bottom: 30px;
}
.criterion-selector-widget .subscribed-learners .criterion-set + .criterion-set::before {
  /* layout */
  content: '';
  display: block;
  height: 12px;
  margin: 20px 0;
  /* pattern */
  background-image: linear-gradient(transparent 66%, #aaa 66%, #aaa);
  background-size: 1px 3px;
}
.criterion-selector-widget .subscribed-learners dl {
  margin-bottom: 15px;
}
.criterion-selector-widget .subscribed-learners dt {
  clear: left;
  float: left;
  margin-right: 0.3em;
}
.criterion-selector-widget .subscribed-learners dt::after {
  content: ":";
}
.criterion-selector-widget .subscribed-learners dd {
  float: left;
}
.criterion-selector-widget .subscribed-learners .criterion-set .set-val {
  word-wrap: break-word;
}
.criterion-selector-widget .due-dates h3 small {
  margin-top: 10px;
  display: block;
}
.criterion-selector-widget .due-dates .form-group {
  margin: 30px 0;
}
.criterion-selector-widget .due-dates .radio-row {
  margin-bottom: 15px;
  padding-left: 30px;
}
.criterion-selector-widget .due-dates .radio-row .alert {
  margin: 10px 0;
}
.criterion-selector-widget .due-dates .label-for-radio {
  display: inline;
  padding-left: 0;
}
.criterion-selector-widget .due-dates input[type="radio"] {
  margin-right: 0.3em;
}
.criterion-selector-widget .due-dates .calendar-container {
  vertical-align: middle;
  display: inline-block;
  width: 400px;
  margin-left: 0.3em;
}
.criterion-selector-widget .due-dates .due-days {
  display: inline-block;
  margin: 0 0.3em;
  width: 80px;
  vertical-align: middle;
}
.download-pop {
  width: 400px;
  max-height: 500px;
  background: #C3D32B;
  border-radius: 5px;
  border: 1px solid #999;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: fixed;
  z-index: 100;
  top: auto;
  right: 15px;
  bottom: 0px;
  left: auto;
}
.download-pop.collapsed {
  max-height: 42px;
}
.download-pop .title {
  padding-left: 10px;
  color: #fff;
}
.download-pop .pop-wrapper {
  background: #fff;
  border-top: 1px solid #000;
  padding: 15px 5px;
}
.download-pop .lnk-btn {
  color: #fff;
}
.download-pop .lnk-btn i {
  position: relative;
  top: 4px;
}
.download-pop .lnk-btn .minimize-icon {
  font-size: 14px;
  font-weight: 700;
  top: 1px;
}
.download-listing {
  padding: 5px;
  border-top: 1px solid #000;
}
.download-listing:nth-child(1) {
  border: 0;
}
.browse-learning .tab-wrapper {
  margin-top: 20px;
}
.browse-learning .tab-wrapper .btn {
  margin: 0 !important;
}
.browse-learning .select-wrapper {
  margin: 0;
}
.browse-learning .four-lines {
  height: 30px;
  margin-top: 0;
}
.browse-learning .four-lines::after {
  background-image: linear-gradient(transparent 66%, #aaa 66%, #aaa);
  background-size: 1px 3px;
  content: "";
  display: block;
  height: 12px;
}
/* Override Bootstrap container and login screen container class when a legacy unsupported browser */
.legacy-alert {
  background: #C3D32B !important;
  height: 100%;
  width: 100%;
  text-align: center;
}
.legacy-alert .login-screen {
  margin-top: 17% !important;
}
.svg .sticky-footer-wrapper {
  display: block;
}
.svg .legacy-alert {
  display: none;
}
.modal-confirmation,
.confirmation-header,
.confirmation-content,
.confirmation-footer,
.reward .medals,
.modal-awards,
.modal-content .modal-footer {
  display: -ms-flexbox;
  display: flex;
}
/* awards popup */
.modal-confirmation .medal {
  position: relative;
}
.modal-awards {
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  border: 2px solid #999;
  -webkit-padding-after: 0;
  -webkit-padding-before: 0;
  -webkit-padding-start: 0;
  -moz-padding-start: 0;
  -webkit-padding-end: 0;
  -moz-padding-end: 0;
}
.modal-award {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  list-style-type: none;
  position: relative;
}
.points {
  color: #F37131 !important;
  white-space: pre;
}
.reward .medals {
  -ms-flex-direction: column;
      flex-direction: column;
  margin-left: 40px;
}
.modal-content .modal-footer {
  margin-top: 0;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.reward.modal-header,
.reward.modal-footer {
  border-top: none;
  border-bottom: none;
}
.reward.modal-header,
.reward.modal-content,
.reward.modal-footer,
.reward .modal-title,
.reward span,
.reward li,
.reward p {
  font-weight: 400;
  color: #666;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.reward p,
.reward span,
.reward li {
  font-size: 20px;
}
.reward.modal-footer .btn,
.reward .rating-area {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
}
.reward .modal-title {
  font-size: 28px;
}
.reward.modal-body {
  padding-top: 0;
  padding-bottom: 0;
}
.reward.modal-footer {
  text-align: initial;
}
.reward.modal-footer .btn {
  max-width: 170px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.reward .rating-area {
  text-align: left;
}
.reward .rating-area .rating {
  color: #333;
}
.reward .gold.medal {
  background-image: url(../images/medal-gold.svg);
}
.reward .silver.medal {
  background-image: url(../images/medal-silver.svg);
}
.reward .bronze.medal {
  background-image: url(../images/medal-bronze.svg);
}
.reward .medal {
  position: absolute;
  left: -35px;
  top: 7px;
}
.medal-container {
  position: relative;
  padding: 15px 0;
}
.segno-points {
  margin-left: 20px;
}
.modal-confirmation .badges {
  margin-left: 40px;
}
.levels,
.alert-center {
  text-align: center;
}
.badge-icon-new:before {
  content: ' ';
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #999999;
  border-radius: 10px;
  background-image: url(../images/badge.png);
  background-color: transparent ;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 0;
  width: 30px;
  height: 50px;
}
.badge-icon-new:before:empty {
  display: none;
}
.btn .badge-icon-new:before {
  position: relative;
  top: -1px;
}
.btn-xs .badge-icon-new:before {
  top: 0;
  padding: 1px 5px;
}
.badge-icons-container {
  max-width: 65px;
  min-width: 60px;
  margin-right: 10px;
}
.badges.modal-award {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.badge-icons-container,
.medal-container,
.modal-confirmation .medal,
.badge-icon-new:before,
.reward,
.segno-points,
.modal-confirmation .badges,
.modal-awards {
  transition-property: width, height, min-width, max-width, min-height, max-height, margin, padding, font-size, left, right, top, bottom;
  transition-duration: 0.75s;
}
.modal-dialog {
  transition: transform 0.3s ease-out, width 0.5s, height 0.5s !important;
}
@media all and (max-width: 1000px) {
  .segnocode-popup .modal-awards {
    border: none;
  }
  .segnocode-popup .segno-points,
  .segnocode-popup .modal-confirmation .badges {
    margin-left: 0;
  }
  .segnocode-popup .reward p,
  .segnocode-popup .reward span,
  .segnocode-popup .reward li {
    font-size: 16px;
  }
  .segnocode-popup .badge-icon-new:before {
    width: 25px;
    height: 30px;
  }
  .segnocode-popup .modal-confirmation .medal {
    width: 25px !important;
    height: 30px !important;
    top: 5px !important;
    left: -30px !important;
    background-size: contain !important;
  }
  .segnocode-popup .medal-container {
    padding: 10px 0;
  }
  .segnocode-popup .badge-icons-container {
    min-width: 55px;
    max-width: 60px;
    margin-right: 0;
  }
  .segnocode-popup .badge-icons-container,
  .segnocode-popup .medal-container,
  .segnocode-popup .modal-confirmation .medal,
  .segnocode-popup .badge-icon-new:before,
  .segnocode-popup .reward,
  .segnocode-popup .segno-points,
  .segnocode-popup .modal-confirmation .badges,
  .segnocode-popup .modal-awards {
    transition-property: width, height, min-width, max-width, min-height, max-height, margin, padding, font-size, left, right, top, bottom;
    transition-duration: 0.75s;
  }
  .segnocode-popup .modal-dialog {
    transition: transform 0.3s ease-out, width 0.75s, height 0.75s !important;
  }
}
@media all and (max-width: 650px) {
  .segnocode-popup .reward p,
  .segnocode-popup .reward span,
  .segnocode-popup .reward li {
    font-size: 14px;
  }
}
@media all and (max-width: 550px) {
  .segnocode-popup .badge-icon-new:before,
  .segnocode-popup .modal-confirmation .medal {
    width: 20px !important;
    height: 25px !important;
    top: 5px !important;
    left: -30px !important;
    background-size: contain !important;
  }
  .segnocode-popup .reward p,
  .segnocode-popup .reward span,
  .segnocode-popup .reward li {
    font-size: 12px;
  }
  .segnocode-popup .badge-icons-container {
    max-width: 50px;
    min-width: 45px;
    margin-right: 0;
  }
  .segnocode-popup .reward .medals {
    margin-left: 25px;
  }
  .segnocode-popup .reward .medal {
    left: -22px !important;
  }
}
@media all and (max-width: 480px) {
  .segnocode-popup .medal,
  .segnocode-popup .badge-icon-new {
    display: none !important;
  }
  .segnocode-popup .badge-icons-container {
    min-width: 0;
  }
  .segnocode-popup .badges.modal-award {
    -ms-flex-pack: center;
        justify-content: center;
  }
  .segnocode-popup .reward .medals {
    margin-left: 0;
    min-width: 112px;
  }
  .segnocode-popup .reward .btn,
  .segnocode-popup .reward .inline3 {
    font-size: 12px;
  }
}
.medal-container {
  position: relative;
  padding: 15px 0;
}
.segno-points {
  margin-left: 20px;
}
.modal-confirmation .badges {
  margin-left: 40px;
}
.levels,
.alert-center {
  text-align: center;
}
.badge-icon-new:before {
  content: ' ';
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #999999;
  border-radius: 10px;
  background-image: url(../images/badge.png);
  background-color: transparent ;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 0;
  width: 30px;
  height: 50px;
}
.badge-icon-new:before:empty {
  display: none;
}
.btn .badge-icon-new:before {
  position: relative;
  top: -1px;
}
.btn-xs .badge-icon-new:before {
  top: 0;
  padding: 1px 5px;
}
.badge-icons-container {
  max-width: 65px;
  min-width: 60px;
  margin-right: 10px;
}
.badges.modal-award {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.badge-icons-container,
.medal-container,
.modal-confirmation .medal,
.badge-icon-new:before,
.reward,
.segno-points,
.modal-confirmation .badges,
.modal-awards {
  transition-property: width, height, min-width, max-width, min-height, max-height, margin, padding, font-size, left, right, top, bottom;
  transition-duration: 0.75s;
}
.modal-dialog {
  transition: transform 0.3s ease-out, width 0.5s, height 0.5s !important;
}
@media all and (max-width: 1000px) {
  .segnocode-popup .modal-awards {
    border: none;
  }
  .segnocode-popup .segno-points,
  .segnocode-popup .modal-confirmation .badges {
    margin-left: 0;
  }
  .segnocode-popup .reward p,
  .segnocode-popup .reward span,
  .segnocode-popup .reward li {
    font-size: 16px;
  }
  .segnocode-popup .badge-icon-new:before {
    width: 25px;
    height: 30px;
  }
  .segnocode-popup .modal-confirmation .medal {
    width: 25px !important;
    height: 30px !important;
    top: 5px !important;
    left: -30px !important;
    background-size: contain !important;
  }
  .segnocode-popup .medal-container {
    padding: 10px 0;
  }
  .segnocode-popup .badge-icons-container {
    min-width: 55px;
    max-width: 60px;
    margin-right: 0;
  }
  .segnocode-popup .badge-icons-container,
  .segnocode-popup .medal-container,
  .segnocode-popup .modal-confirmation .medal,
  .segnocode-popup .badge-icon-new:before,
  .segnocode-popup .reward,
  .segnocode-popup .segno-points,
  .segnocode-popup .modal-confirmation .badges,
  .segnocode-popup .modal-awards {
    transition-property: width, height, min-width, max-width, min-height, max-height, margin, padding, font-size, left, right, top, bottom;
    transition-duration: 0.75s;
  }
  .segnocode-popup .modal-dialog {
    transition: transform 0.3s ease-out, width 0.75s, height 0.75s !important;
  }
}
@media all and (max-width: 650px) {
  .segnocode-popup .reward p,
  .segnocode-popup .reward span,
  .segnocode-popup .reward li {
    font-size: 14px;
  }
}
@media all and (max-width: 550px) {
  .segnocode-popup .badge-icon-new:before,
  .segnocode-popup .modal-confirmation .medal {
    width: 20px !important;
    height: 25px !important;
    top: 5px !important;
    left: -30px !important;
    background-size: contain !important;
  }
  .segnocode-popup .reward p,
  .segnocode-popup .reward span,
  .segnocode-popup .reward li {
    font-size: 12px;
  }
  .segnocode-popup .badge-icons-container {
    max-width: 50px;
    min-width: 45px;
    margin-right: 0;
  }
  .segnocode-popup .reward .medals {
    margin-left: 25px;
  }
  .segnocode-popup .reward .medal {
    left: -22px !important;
  }
}
@media all and (max-width: 480px) {
  .segnocode-popup .modal-confirmation .medal,
  .segnocode-popup .badge-icon-new {
    display: none !important;
  }
  .segnocode-popup .badge-icons-container {
    min-width: 0;
  }
  .segnocode-popup .badges.modal-award {
    -ms-flex-pack: center;
        justify-content: center;
  }
  .segnocode-popup .reward .medals {
    margin-left: 0;
    min-width: 112px;
  }
  .segnocode-popup .reward .btn,
  .segnocode-popup .reward .inline3 {
    font-size: 12px;
  }
}
/* confirmation popup */
.modal-confirmation {
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 0 20px 20px;
}
.confirmation-header,
.confirmation-content,
.confirmation-footer {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
}
.confirmation-content {
  font-size: 16px;
}
.confirmation-footer {
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.confirmation-footer .btn-cancel {
  background: #bbb;
  font-weight: 300;
  text-transform: uppercase;
}
.pagination-results-wrapper {
  height: 300px;
  overflow: scroll;
}
.pb-wrapper {
  position: relative;
}
.pb-target {
  position: absolute;
  display: block;
  width: 1px;
  height: 100%;
  background: black;
  z-index: 2;
}
.pb {
  color: #31CEA9;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearence: none;
  appearence: none;
  box-shadow: 0px 0px 2px 0px #888;
}
.pb,
.pb-target {
  height: 30px;
}
.learning-widget .pb,
.learning-widget .pb-target {
  height: 15px;
}
.pb[value] {
  background-color: #fff;
  border-radius: 15px;
}
.pb[value]::-webkit-progress-value {
  position: relative;
  background: linear-gradient(120deg, #31CEA9, #30cc85);
  border-radius: 15px 12px 12px 15px;
}
.pb[value]::-moz-progress-bar {
  position: relative;
  background: linear-gradient(120deg, #31CEA9, #30cc85);
  border-radius: 15px 12px 12px 15px;
}
.pb[value].yellow {
  color: #fee61b;
  background-color: white;
}
.pb[value].yellow::-webkit-progress-value {
  background: linear-gradient(120deg, #fee61b 0%, #E1F01C 100%);
}
.pb[value].yellow::-moz-progress-bar {
  background: linear-gradient(120deg, #fee61b 0%, #E1F01C 100%);
}
.pb[value].red {
  color: #c00500;
  background-color: white;
}
.pb[value].red::-webkit-progress-value {
  background: linear-gradient(120deg, #c00500 0%, #F18F16 100%);
}
.pb[value].red::-moz-progress-bar {
  background: linear-gradient(120deg, #c00500 0%, #F18F16 100%);
}
.pb[value]::-webkit-progress-bar {
  background-color: #fff;
  border-radius: 15px;
}
.pb[value]::-moz-progress-bar {
  position: relative;
  background: linear-gradient(120deg, #31CEA9, #30cc85);
  border-radius: 15px 12px 12px 15px;
}
.progress-wrapper.visible {
  background: #f5f5f5;
  padding: 20px;
  margin: 30px 0px 30px;
}
.progress-wrapper.big-pb.visible {
  padding: 20px 125px;
}
.learning-plan-progress.overview {
  text-align: left;
  max-width: 800px;
  margin: auto;
}
.learning-plan-label-wrapper {
  text-transform: capitalize;
}
.small-pb .learning-plan-label-wrapper {
  margin-bottom: 10px;
}
.plan-status-bar {
  font-weight: 900;
}
.percent-complete {
  margin-left: auto;
}
.percent-remaining,
.target-month {
  font-weight: 900;
}
.progress-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 0;
  margin-top: 0;
}
.learning-plan-label-wrapper {
  display: -ms-flexbox;
  display: flex;
}
.learning-plan-progress {
  -ms-flex: 1;
      flex: 1;
}
.target-month {
  -ms-flex: 1;
      flex: 1;
  font-weight: normal;
  white-space: nowrap;
}
.month-goal {
  display: inline-block;
  margin-left: 10px;
  color: #999;
}
.learning-plan-label-wrapper {
  margin-top: 10px;
  margin-bottom: 20px;
}
.percent-remaining {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
}
.percent-remaining span:first-child {
  margin-right: 10px;
}
.month-goal {
  margin-bottom: 3px;
}
.due-date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  -ms-flex-align: end;
      align-items: flex-end;
  padding-bottom: 3px;
}
.target-month .yellow {
  color: #33C931;
}
.target-month .red {
  color: red;
}
.target-month .green {
  color: #33C931;
}
.pb-target.yellow {
  background: #33C931;
}
.pb-target.red {
  background: red;
}
@media (max-width: 991px) {
  .percent-remaining {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .learning-plan-progress-status,
  .target-month,
  .percent-remaining,
  .due-date {
    font-size: 15px;
  }
  .progress-wrapper.big-pb.visible {
    padding: 20px;
  }
}
.profile-approval .filter {
  margin-bottom: 20px;
}
.profile-approval .content {
  margin-bottom: 20px;
}
.profile-approval .panel {
  border: 0;
  border-bottom: 2px solid;
  border-radius: 0px;
}
.profile-approval .panel-heading {
  background-color: transparent;
}
.profile-approval .panel-body {
  border-top: 0;
}
.profile-approval .checkbox-item {
  background: #f8f8f8;
  padding: 10px;
  margin: 10px;
}
.manage-approvals-widget.well {
  margin-top: 20px;
}
.manage-approvals-widget.well h4 {
  margin-left: 15px;
}
.manage-approvals-widget.well .description {
  margin-left: 15px;
}
.manage-approvals-widget.well .margin-bottom {
  margin-bottom: 10px;
}
.manage-approvals-widget.well ul,
.manage-approvals-widget.well li {
  list-style-type: none;
  -webkit-margin-after: 0;
  -webkit-margin-before: 0;
  -webkit-margin-start: 0;
  -moz-margin-start: 0;
  -webkit-margin-end: 0;
  -moz-margin-end: 0;
  -webkit-padding-after: 0;
  -webkit-padding-before: 0;
  -webkit-padding-start: 0;
  -moz-padding-start: 0;
  -webkit-padding-end: 0;
  -moz-padding-end: 0;
  margin: 0;
}
.manage-approvals-widget.well input[type='checkbox'] {
  border: 1px solid black;
  padding: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0 10px 0 0;
}
.manage-approvals-widget.well .bu-users-list-item {
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px !important;
}
.manage-approvals-widget.well .bu-users-list-item:last-of-type {
  margin-bottom: 0;
}
.manage-approvals-widget.well .bu-users-list-item:first-of-type {
  margin-top: 0;
}
.manage-approvals-widget.well .bu-users-list > .bu-users-list-item {
  margin: 10px 0;
}
.manage-approvals-widget.well .manage-approvals-bu-users {
  -ms-flex: 2;
      flex: 2;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 15px;
}
.manage-approvals-widget.well .learner-heading {
  margin-bottom: 15px;
  margin-top: 0;
}
.manage-approvals-widget.well .approval-button {
  background-color: #478FE8;
  color: #FFF;
  font-weight: bold;
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  border-radius: 0;
}
.manage-approvals-widget.well .manage-btn {
  font-weight: bold;
  padding-right: 40px;
  color: #478fe8;
  margin-top: 10px;
  border-radius: 0;
}
.manage-approvals-widget.well .manage-btn:hover {
  color: black;
  cursor: pointer;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .off-canvas-panel .manage-approvals-widget.well {
    color: #fff;
    border: none;
  }
  .off-canvas-panel .manage-approvals-widget.well .manager-heading {
    font-size: 18px;
    border-bottom: 1px solid #5F5F5F;
  }
  .off-canvas-panel .manage-approvals-widget.well .bu-users-list-heading {
    font-size: 12px;
  }
  .off-canvas-panel .manage-approvals-widget.well .approval-button {
    border: 1px solid #5b5b5b;
    background-color: #4c4c4c;
    color: #aeaeae;
    font-weight: 400;
    text-transform: uppercase;
  }
}
.manage-session-widget .session-title {
  padding-top: 10px;
  font-weight: 500;
  color: gray;
}
.manage-session-widget .session-day {
  height: auto;
  display: -ms-flexbox;
  display: flex;
}
.manage-session-widget .session-day .session-room {
  overflow-wrap: break-word;
}
.ilt-button-wrapper {
  -ms-flex-align: end;
      align-items: flex-end;
}
.manage-ilt-widget.well {
  margin-top: 20px;
}
.manage-ilt-widget.well h4 {
  margin-left: 15px;
}
.manage-ilt-widget.well .margin-bottom {
  margin-bottom: 10px;
}
.off-canvas-panel .manage-ilt-widget.well {
  margin-top: 20px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .off-canvas-panel .manage-ilt-widget.well {
    border: none;
  }
  .off-canvas-panel .manage-ilt-widget.well h4 {
    margin-left: 0;
  }
  .off-canvas-panel .manage-ilt-widget.well .btn.btn-widget {
    border-color: #5b5b5b;
    background-color: #4c4c4c;
    color: #aeaeae;
    margin-top: 20px;
  }
  .off-canvas-panel .manage-ilt-widget.well .btn.btn-widget:hover,
  .off-canvas-panel .manage-ilt-widget.well .btn.btn-widget :active,
  .off-canvas-panel .manage-ilt-widget.well .btn.btn-widget :focus {
    color: #999;
  }
}
.ilt-session-new .textArea {
  width: 100%;
  resize: none;
  height: 5%;
}
.ilt-session-new .randomSpace {
  padding-top: 20px;
}
.ilt-session-new .location-results-not-found {
  margin: 15px 0 0;
}
.ilt-session-new .col-xs-6 .row {
  margin: 0;
}
.ilt-session-new input[type=number] {
  text-align: center;
}
.ilt-session-new .center-input-text {
  text-align: center;
}
.session-info-day .glyphicon-chevron-right,
.session-info-day .glyphicon-chevron-down {
  margin-top: -25px;
}
.session-info-day .session-meta-day.ng-hide {
  opacity: 0;
}
.session-info-day .session-meta-day.ng-hide-add,
.session-info-day .session-meta-day.ng-hide-remove {
  transition: all linear 0.5s;
}
.description-size {
  width: 100%;
}
.heading {
  margin-top: 0;
}
.session-item {
  border: 1px solid #aaa;
  padding: 15px;
  margin: 10px 2px;
}
.session-item label {
  display: block;
  padding: 0px;
  text-align: left;
  color: #999;
}
.flex-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.session-status,
.session-day,
.session-registration-buttons-wrapper,
.session-action {
  height: 100px;
}
.session-instructor .profile-img {
  max-height: 50px;
  max-width: 50px;
  display: block;
  margin-right: 10px;
}
.session-status {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-line-pack: distribute;
      align-content: space-around;
  font-size: 14px;
  font-weight: bold;
}
.session-action {
  -ms-flex-pack: center;
      justify-content: center;
}
.available-seats {
  margin: 5px 0 0 10px;
}
.available-seats.full-session {
  color: #d9534f;
}
.session-registration-buttons-wrapper {
  margin-top: 10px;
}
#headingTwo h3 {
  border-bottom: 1px solid #aaa;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 15px;
  margin-left: 3px;
  margin-right: 3px;
}
.roster-table {
  width: 100%;
  font: normal normal 400 15px 'Roboto', sans-serif;
  text-transform: uppercase;
}
.roster-table.loading-dialog {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: table;
}
.roster-table.loading-dialog .spinner {
  display: table-cell;
  vertical-align: middle;
}
.roster-header {
  color: white;
  background: #333;
  padding: 20px;
}
.roster-heading {
  font-weight: 400;
  letter-spacing: 0.5px;
}
.roster-caption {
  display: block;
  text-align: left;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
  margin-bottom: 15px;
}
.roster-table-row {
  padding: 15px 20px;
}
.roster-table-row:nth-of-type(2n) {
  background: #ccc;
}
.roster-seat {
  width: 6%;
}
.roster-learner,
.roster-job {
  width: 28%;
}
.roster-location,
.roster-manager {
  width: 10%;
}
.roster-attendance,
.roster-remove {
  width: 17%;
}
.roster-table-row > .roster-seat {
  text-align: center;
}
.roster-learner {
  position: relative;
}
.roster-profile-name {
  display: inline-block;
  position: relative;
}
td.roster-learner img {
  width: auto;
  max-width: 36px;
  height: auto;
  float: left;
  max-height: 36px;
  margin: -8px 5px 0 0;
}
.roster-profile-name::before {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0);
  content: " ";
  position: absolute;
  top: calc(50% - 15px);
  left: -50px;
}
.roster-attendance {
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 185px;
  position: relative;
}
.roster-remove {
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 185px;
  position: relative;
  transform: translateZ(0);
}
.roster-table-body {
  border: 3px solid #ccc;
  border-bottom: 4px solid #aaa;
}
.circle-icon::before {
  content: " ";
  width: 30px;
  height: 30px;
  border: 3px solid #000;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
}
.roster-checkmark::before {
  position: absolute;
  left: calc(50% - 10px);
  font-size: 20px;
  font-weight: 900;
}
.roster-checkmark-disabled {
  opacity: 0.3;
}
.roster-session-info {
  background: #eaeaea;
}
.roster-session-info-heading {
  padding: 10px;
  background: #ccc;
}
.roster-session-header,
.roster-session-section {
  padding: 0 10px 10px 10px;
}
.roster-session-description-wrapper {
  border: 4px solid #ccc;
  padding: 5px;
}
.roster-denied {
  margin-top: 40px;
}
.roster-center {
  -ms-flex-align: center;
      align-items: center;
}
.roster-header,
.roster-table-body {
  display: block;
}
.roster-heading,
.roster-cell {
  display: inline-block;
}
.roster-remove-icon {
  position: relative;
  right: 15px;
}
.roster-remove-icon:before,
.roster-remove-icon:after {
  position: relative;
  left: 15px;
  content: ' ';
  height: 30px;
  width: 2px;
  background-color: #000;
}
.roster-remove-icon:before {
  transform: rotate(45deg);
}
.roster-remove-icon:after {
  transform: rotate(-45deg);
}
.roster-remove-locked-icon {
  font-size: 30px;
}
.roster-session-section.multiple-lines .rotated-table-head-cell.roster-session-datetime,
.roster-session-section.multiple-lines .rotated-table-body-cell.roster-session-instructor {
  border-bottom: none;
  border-right: none;
}
.roster-session-section.multiple-lines #session-datetime {
  text-align: center;
}
.roster-session-section.multiple-lines #session-datetime .roster-session-days {
  display: inline-block;
  padding: 5px 5px 5px 75px;
  border-right: 4px solid #ccc;
  margin-right: 10px;
}
.roster-session-section.multiple-lines #session-datetime .roster-session-days .roster-session-day {
  display: block;
  float: left;
  clear: none;
  padding-left: 8px;
}
.roster-session-section.multiple-lines #session-datetime,
.roster-session-section.multiple-lines #session-instructor {
  border-bottom: none;
  display: block;
}
.roster-session-section.multiple-lines .border-divider {
  border-top: 4px solid #ccc;
  margin: 0 10px 20px 10px;
}
.roster-session-section.one-line #session-datetime {
  text-align: center;
  padding-bottom: 5px;
}
.roster-session-section.one-line #session-datetime .roster-session-days {
  display: inline-block;
}
.roster-session-section.one-line #session-datetime .roster-session-days .roster-session-day {
  display: block;
  float: left;
  clear: none;
  padding-left: 8px;
}
@media print {
  #main-container .h3 {
    font-size: 19px;
  }
  #main-container .top,
  #main-container .details,
  #main-container lmp-search,
  #main-container lmp-breadcrumbs,
  #main-container .add-learner {
    display: none;
  }
  #main-container .roster-session-info,
  #main-container .roster-table-row:nth-of-type(2n) {
    background: #eaeaea !important;
  }
  footer {
    display: none;
  }
}
.rotated-table {
  width: 100%;
  position: relative;
  min-width: 800px;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px 10px 10px;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rotated-table-head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  position: absolute;
  width: 100%;
}
.rotated-table-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1;
      flex: 1;
}
.rotated-table-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
.rotated-table-body-row {
  -ms-flex-align: stretch;
      align-items: stretch;
}
.rotated-table-body-cell {
  text-align: center;
  border-bottom: 4px solid #ccc;
  padding-bottom: 10px;
  padding-top: 10px;
}
.rotated-table-head-cell {
  margin-top: 6px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 10px;
}
.rotated-table-head-col-1 .rotated-table-head-cell {
  border-right: 4px solid #ccc;
  margin-right: 20px;
}
.rotated-table-head-cell,
.rotated-table-body-cell {
  min-height: 20px;
  display: inline-block;
}
.ilt-approve-course-divider {
  border-bottom: 5px solid #e5e5e5;
  padding-bottom: 7px;
  margin-bottom: 15px;
}
.ilt-approve-course-wrapper {
  background: #e5e5e5;
  border: 5px solid #e5e5e5;
}
.ilt-approve-course-wrapper:nth-of-type(n + 2) {
  margin-top: 20px;
}
.ilt-approve-course-header {
  padding: 0px 20px 5px;
}
.ilt-approve-course-status {
  text-align: right;
}
.ilt-approve-course-list {
  background: #fff;
  margin: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
  -webkit-padding-end: 0;
  -webkit-padding-before: 0;
  -webkit-padding-after: 0;
}
.ilt-approve-course-button-wrapper {
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.ilt-approve-course-button {
  -ms-flex-item-align: center;
      align-self: center;
  max-width: 200px;
}
.ilt-approve-course-list li:nth-child(n + 2) {
  border-top: 3px solid #e5e5e5;
}
.ilt-approve-course-list-item {
  margin: 0 20px;
}
.ilt-approve-course-time {
  margin-bottom: 0;
}
.deny {
  background-color: #478FE8;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 300;
}
/**
 * Angular JS slider directive
 *
 * (c) Rafal Zajac <rzajac@gmail.com>
 * http://github.com/rzajac/angularjs-slider
 *
 * Licensed under the MIT license
 */
.rzslider {
  display: inline-block;
  position: relative;
  height: 4px;
  width: 100%;
  margin: 35px 0 15px 0;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.rzslider.with-legend {
  margin-bottom: 40px;
}
.rzslider[disabled] {
  cursor: not-allowed;
}
.rzslider[disabled] .rz-pointer {
  cursor: not-allowed;
  background-color: #d8e0f3;
}
.rzslider[disabled] .rz-bar-wrapper.rz-draggable {
  cursor: not-allowed;
}
.rzslider[disabled] .rz-bar.rz-selection {
  background: #8b91a2;
}
.rzslider[disabled] .rz-ticks .rz-tick {
  cursor: not-allowed;
}
.rzslider[disabled] .rz-ticks .rz-tick.rz-selected {
  background: #8b91a2;
}
.rzslider span {
  white-space: nowrap;
  position: absolute;
  display: inline-block;
}
.rzslider .rz-base {
  width: 100%;
  height: 100%;
  padding: 0;
}
.rzslider .rz-bar-wrapper {
  left: 0;
  box-sizing: border-box;
  margin-top: -16px;
  padding-top: 16px;
  width: 100%;
  height: 32px;
  z-index: 1;
}
.rzslider .rz-bar-wrapper.rz-draggable {
  cursor: move;
}
.rzslider .rz-bar {
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1;
  background: #d8e0f3;
  border-radius: 2px;
}
.rzslider .rz-bar.rz-selection {
  z-index: 2;
  background: #0db9f0;
  border-radius: 2px;
}
.rzslider .rz-pointer {
  cursor: pointer;
  width: 32px;
  height: 32px;
  top: -14px;
  background-color: #0db9f0;
  z-index: 3;
  border-radius: 16px;
}
.rzslider .rz-pointer:after {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 4px;
  background: #fff;
}
.rzslider .rz-pointer:hover:after {
  background-color: #fff;
}
.rzslider .rz-pointer.rz-active {
  z-index: 4;
}
.rzslider .rz-pointer.rz-active:after {
  background-color: #451aff;
}
.rzslider .rz-bubble {
  cursor: default;
  bottom: 16px;
  padding: 1px 3px;
  color: #55637d;
}
.rzslider .rz-bubble.rz-selection {
  top: 16px;
}
.rzslider .rz-bubble.rz-limit {
  color: #55637d;
}
.rzslider .rz-ticks {
  box-sizing: border-box;
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  top: -3px;
  margin: 0;
  z-index: 1;
  list-style: none;
}
.rzslider .rz-ticks .rz-tick {
  text-align: center;
  cursor: pointer;
  width: 10px;
  height: 10px;
  background: #d8e0f3;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 11px;
}
.rzslider .rz-ticks .rz-tick.rz-selected {
  background: #0db9f0;
}
.rzslider .rz-ticks .rz-tick .rz-tick-value {
  position: absolute;
  top: -30px;
  transform: translate(-50%, 0);
}
.rzslider .rz-ticks .rz-tick .rz-tick-legend {
  position: absolute;
  top: 24px;
  transform: translate(-50%, 0);
  max-width: 50px;
  white-space: normal;
}
.rzslider .rz-ticks.rz-ticks-values-under .rz-tick-value {
  top: initial;
  bottom: -32px;
}
.rzslider.rz-vertical {
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 20px;
  padding: 0;
  vertical-align: baseline;
}
.rzslider.rz-vertical .rz-base {
  width: 100%;
  height: 100%;
  padding: 0;
}
.rzslider.rz-vertical .rz-bar-wrapper {
  top: auto;
  left: 0;
  margin: 0 0 0 -16px;
  padding: 0 0 0 16px;
  height: 100%;
  width: 32px;
}
.rzslider.rz-vertical .rz-bar {
  bottom: 0;
  left: auto;
  width: 4px;
  height: 100%;
}
.rzslider.rz-vertical .rz-pointer {
  left: -14px !important;
  top: auto;
  bottom: 0;
}
.rzslider.rz-vertical .rz-bubble {
  left: 16px !important;
  margin-left: 3px;
  bottom: 0;
}
.rzslider.rz-vertical .rz-bubble.rz-selection {
  left: 16px !important;
  top: auto;
}
.rzslider.rz-vertical .rz-ticks {
  height: 100%;
  width: 0;
  left: -3px;
  top: 0;
  z-index: 1;
}
.rzslider.rz-vertical .rz-ticks .rz-tick {
  vertical-align: middle;
  margin-left: auto;
  margin-top: 11px;
}
.rzslider.rz-vertical .rz-ticks .rz-tick .rz-tick-value {
  left: 24px;
  top: initial;
  transform: translate(0, -28%);
}
.rzslider.rz-vertical .rz-ticks .rz-tick .rz-tick-legend {
  top: initial;
  right: 24px;
  transform: translate(0, -28%);
  max-width: none;
  white-space: nowrap;
}
.rzslider.rz-vertical .rz-ticks.rz-ticks-values-under .rz-tick-value {
  bottom: initial;
  left: initial;
  right: 24px;
}
.assessment-editor-form {
  padding-top: 20px;
  padding-bottom: 20px;
}
.assessment-editor-form label {
  display: block;
  font-size: 15px;
}
.assessment-editor-skill {
  margin-top: 10px;
  padding-left: 15px;
}
.assessment-form-message {
  position: absolute;
  right: 0px;
  color: red;
}
.assessment-form-input-error {
  border: 1px solid red !important;
}
.rzslider {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 4px;
  margin: 50px 0 15px 0;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.rzslider .rz-pointer {
  top: -21px;
  z-index: 3;
  width: 15px;
  height: 45px;
  cursor: pointer;
  background-color: white;
  border-radius: 0px;
  border: 1px solid black;
}
.rzslider .rz-pointer:after {
  position: absolute;
  top: 12px;
  left: 1px;
  width: 8px;
  height: 8px;
  color: #757575;
  content: '\2630';
  font-size: 12.5px;
}
.rzslider .rz-pointer.rz-active:after {
  background-color: white;
}
.rzslider .rz-ticks {
  left: 5px;
}
.rzslider .rz-ticks .rz-tick {
  margin-left: 0px;
  top: -2px;
  left: 0;
  width: 3px;
  height: 13px;
  border-radius: 0;
}
.rzslider .rz-ticks .rz-tick .rz-tick-value {
  position: absolute;
  top: -45px;
  transform: translate(-50%, 0);
}
.assessment-slider {
  height: 100px;
}
.rzslider .rz-bar.rz-selection {
  z-index: 2;
  background: black;
  border-radius: 2px;
}
.rzslider .rz-ticks .rz-tick.rz-selected {
  background: black;
}
.assessment-tool-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: baseline;
      align-items: baseline;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  font-size: 16px;
}
.assessment-tool-edit {
  margin-top: 10px;
  margin-bottom: 10px;
}
li.assessment-divider {
  padding-top: 10px;
  padding-bottom: 10px;
  border: 0;
  border-bottom: 1px solid #aaaaaa;
}
li.assessment-divider:first-child {
  border-top: 1px solid #aaaaaa;
}
.assessment-tool-btn {
  -ms-flex-item-align: center;
      align-self: center;
  width: 270px;
  background-color: #F28033;
}
.assessment-tool-edit {
  text-align: center;
}
@media all and (max-width: 640px) {
  .assessment-tool-wrapper {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
#assessment-tool-footer {
  text-align: center;
  margin: 50px 0 20px 0;
}
#assessment-tool-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: baseline;
      align-items: baseline;
}
.reorder-collection-wrapper {
  margin: 0 auto;
  display: table;
  text-align: center;
  vertical-align: middle;
}
.reorder-collection-wrapper .reorder-collection {
  margin: 0 auto;
  width: 90px;
  height: 165px;
  line-height: 30px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.reorder-collection-wrapper .reorder-collection .up,
.reorder-collection-wrapper .reorder-collection .order-outer,
.reorder-collection-wrapper .reorder-collection .down {
  display: block;
  padding-right: 30px;
  padding-left: 30px;
}
.reorder-collection-wrapper .reorder-collection .order-outer.no-arrow-up {
  margin-top: 55px;
}
.reorder-collection-wrapper .reorder-collection .order-outer.no-arrow-down {
  margin-bottom: 55px;
}
.reorder-collection-wrapper .reorder-collection .order-inner {
  margin: 15px auto;
  width: 30px;
  font-weight: 300;
  font-size: 18px;
}
.reorder-collection-wrapper .reorder-collection .arrow-up,
.reorder-collection-wrapper .reorder-collection .arrow-down {
  width: 0;
  height: 0;
  left: 30px;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}
.reorder-collection-wrapper .reorder-collection .arrow-up:active:focus,
.reorder-collection-wrapper .reorder-collection .arrow-down:active:focus,
.reorder-collection-wrapper .reorder-collection .arrow-up:hover:focus,
.reorder-collection-wrapper .reorder-collection .arrow-down:hover:focus,
.reorder-collection-wrapper .reorder-collection .arrow-up:active .clear-button-appearance,
.reorder-collection-wrapper .reorder-collection .arrow-down:active .clear-button-appearance,
.reorder-collection-wrapper .reorder-collection .arrow-up:hover .clear-button-appearance,
.reorder-collection-wrapper .reorder-collection .arrow-down:hover .clear-button-appearance {
  outline: 0;
}
.reorder-collection-wrapper .reorder-collection .arrow-up {
  border-bottom: 30px solid #cccccc;
  padding-bottom: 10px;
}
.reorder-collection-wrapper .reorder-collection .arrow-up:active,
.reorder-collection-wrapper .reorder-collection .arrow-up:hover {
  border-bottom: 30px solid #afafaf;
}
.reorder-collection-wrapper .reorder-collection .arrow-down {
  border-top: 30px solid #cccccc;
  padding-bottom: 25px;
}
.reorder-collection-wrapper .reorder-collection .arrow-down:active,
.reorder-collection-wrapper .reorder-collection .arrow-down:hover {
  border-top: 30px solid #afafaf;
}
.reorder-collection-wrapper .reorder-collection.loading-dialog {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: table;
}
.reorder-collection-wrapper .reorder-collection.loading-dialog .spinner {
  display: table-cell;
  vertical-align: middle;
}
.recommendations.well {
  margin-top: 20px;
}
.recommendations.well h4 {
  margin-left: 15px;
}
.recommendations.well .description {
  margin-left: 15px;
}
.recommendations.well .help-link:focus {
  outline: none;
}
.recommendations.well .help-link button {
  position: relative;
  /** move help link down, level with tab labels*/
  bottom: -5px;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
}
.recommendations.well .help-link .popover {
  color: #333;
}
.recommendations.well .help-link .popover h4 {
  color: #333;
  margin-left: 0;
}
.recommendations.well .help-link .popover a {
  color: #F37131;
  font-weight: 900;
  cursor: pointer;
}
.recommendations.well .menu-container {
  display: none;
}
.recommendations.well .tab-container {
  padding-bottom: 0;
  margin-bottom: 0;
}
.recommendations.well .tab-container h5 {
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: #333;
  text-transform: uppercase;
}
.recommendations.well .tab-container .nav-tabs > li > a {
  background-color: #eee;
  border-radius: 0;
}
.recommendations.well .tab-container .nav-tabs > li.active > a,
.recommendations.well .tab-container .nav-tabs > li.active > a:hover,
.recommendations.well .tab-container .nav-tabs > li.active > a:focus {
  background-color: #fff;
}
.recommendations.well .tab-container .nav > li > a:hover,
.recommendations.well .tab-container .nav > li > a:focus {
  background-color: #ccc;
}
.recommendations.well .tab-container ul.list {
  background-color: #fff;
  margin-bottom: 5px;
  margin-right: 0;
  padding: 0;
}
.recommendations.well .tab-container ul.list li.recommendation {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  list-style-type: none;
}
.recommendations.well .tab-container ul.list li.recommendation .recommendation-name {
  font-size: 16px;
  margin-left: 5px;
}
.recommendations.well .tab-container ul.list li.recommendation .alert {
  margin: 0 10px;
}
.recommendations.well .tab-container ul.list li.recommendation a {
  color: #F37131;
}
.recommendations.well .tab-container ul.list li.recommendation:last-child {
  border-bottom: none;
}
.recommendations.well .tab-container ul.list .spinner {
  top: 50px;
  position: relative;
}
.recommendations.well .tab-container .recommendation .close {
  padding-right: 5px;
}
.recommendations .spinnerWrapper .spinner {
  top: 0;
}
.recommendations .spinner {
  position: relative;
  top: 20px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .off-canvas-panel .recommendations.well {
    border: none;
  }
  .off-canvas-panel .recommendations.well h4 {
    margin-left: 0;
  }
  .off-canvas-panel .recommendations.well .description {
    margin-left: 0;
    font-size: 11px;
    color: #aaaaaa;
  }
  .off-canvas-panel .recommendations.well .menu-container {
    display: block;
  }
  .off-canvas-panel .recommendations.well .menu-container ul.list {
    padding: 0;
  }
  .off-canvas-panel .recommendations.well .menu-container ul.list li.menu-item {
    list-style-type: none;
    background-color: inherit;
    border: none;
    border-top: 1px solid #5F5F5F;
    display: block;
    float: left;
    clear: both;
    width: 100%;
  }
  .off-canvas-panel .recommendations.well .menu-container ul.list li.menu-item a {
    display: block;
  }
  .off-canvas-panel .recommendations.well .menu-container ul.list li.menu-item a .menu-link {
    color: #fff;
    text-align: left;
    font-weight: 300;
    font-size: 10px;
    text-transform: uppercase;
    padding: 0 0 0 30px;
    margin: 10px 0 10px 0;
    display: block;
    float: left;
  }
  .off-canvas-panel .recommendations.well .menu-container ul.list li.menu-item a .arrow-right {
    display: block;
    float: right;
    margin: 3px 10px 3px 0;
  }
  .off-canvas-panel .recommendations.well .menu-container ul.list li.menu-item a .arrow-right img {
    width: 7px;
  }
  .off-canvas-panel .recommendations.well .menu-container ul.list li.menu-item a:hover,
  .off-canvas-panel .recommendations.well .menu-container ul.list li.menu-item a:active,
  .off-canvas-panel .recommendations.well .menu-container ul.list li.menu-item a:focus {
    text-decoration: none;
  }
  .off-canvas-panel .recommendations.well .menu-container ul.list li.menu-item a:hover h5,
  .off-canvas-panel .recommendations.well .menu-container ul.list li.menu-item a:active h5,
  .off-canvas-panel .recommendations.well .menu-container ul.list li.menu-item a:focus h5 {
    color: #aeaeae;
  }
  .off-canvas-panel .recommendations.well .menu-container ul.list li.menu-item:last-child {
    border-bottom: 1px solid #5F5F5F;
  }
  .off-canvas-panel .recommendations.well .help-link,
  .off-canvas-panel .recommendations.well .tab-container,
  .off-canvas-panel .recommendations.well .spinner {
    display: none;
  }
  .off-canvas-panel .recommendations.well .btn.btn-widget {
    border-color: #5b5b5b;
    background-color: #4c4c4c;
    color: #aeaeae;
    margin-top: 20px;
  }
  .off-canvas-panel .recommendations.well .btn.btn-widget:hover,
  .off-canvas-panel .recommendations.well .btn.btn-widget :active,
  .off-canvas-panel .recommendations.well .btn.btn-widget :focus {
    color: #999;
  }
}
.all-recommendations {
  padding: 25px;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
}
.all-recommendations .tab-container {
  padding-bottom: 0;
  margin-bottom: 0;
}
.all-recommendations .tab-container h5 {
  font-size: 16px;
  margin-left: 0;
  padding-bottom: 0;
  color: #333333;
}
.all-recommendations .tab-container .nav-tabs > li > a {
  background-color: #eeeeee;
}
.all-recommendations .tab-container .nav-tabs > li.active > a,
.all-recommendations .tab-container .nav-tabs > li.active > a:hover,
.all-recommendations .tab-container .nav-tabs > li.active > a:focus {
  background-color: #ffffff;
}
.all-recommendations .tab-container .nav > li > a:hover,
.all-recommendations .tab-container .nav > li > a:focus {
  background-color: #cccccc;
}
.all-recommendations .tab-container ul.list {
  background-color: #FFFFFF;
  margin-bottom: 5px;
  margin-right: 1px;
  padding: 0;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
.all-recommendations .tab-container ul.list .recommendation {
  padding: 10px;
  border-bottom: 1px solid #dddddd;
  list-style-type: none;
}
.all-recommendations .tab-container ul.list .recommendation .recommendation-name {
  font-size: 16px;
  margin-left: 5px;
}
.all-recommendations .tab-container ul.list .recommendation a {
  color: #F37131;
}
.all-recommendations .tab-container ul.list .spinner {
  top: 50px;
  position: relative;
}
.all-recommendations .tab-container .recommendation .close {
  padding-right: 5px;
}
.all-recommendations .tab-container .recommendation .recommendation-points {
  padding-right: 10px;
}
.all-recommendations .spinnerWrapper .spinner {
  top: 0;
}
.all-recommendations .spinner {
  position: relative;
  top: 20px;
}
.preview-popover-modal-window .modal-content {
  padding: 10px;
}
.preview-popover-modal-window .modal-content .preview-popover {
  padding: 10px;
}
.preview-popover-modal-window .modal-content .preview-popover .spinner {
  position: relative;
  top: 0;
  margin: 0 !important;
  padding: 25px 0;
}
.learner-segnocode-wrap .well {
  padding-right: 5px;
}
.learner-segnocode-wrap .well .description {
  margin-left: 15px;
}
.learner-segnocode-wrap .well .description span {
  font-weight: bold;
  color: #C3D32B;
}
.learner-segnocode-wrap .well h4 {
  margin-left: 15px;
}
.learner-segnocode-wrap .well .help-link:focus {
  outline: none;
}
.learner-segnocode-wrap .well .help-link button {
  position: relative;
  /** move help link down, level with tab labels*/
  bottom: -5px;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
}
.learner-segnocode-wrap .well .help-link .popover {
  color: #333;
}
.learner-segnocode-wrap .well .help-link .popover h4 {
  color: #333;
  margin-left: 0;
}
.learner-segnocode-wrap .well .help-link .popover a {
  color: #F37131;
  font-weight: 900;
  cursor: pointer;
}
.learner-segnocode-wrap .well .btn {
  border-radius: 4px;
}
.learner-segnocode-wrap .well .learner-heading {
  padding-bottom: 5px;
  border-bottom: 1px solid #aaaaaa;
  font-weight: bold;
}
.learner-segnocode-wrap .well .form-control {
  border-radius: 4px !important;
}
.learner-segnocode-wrap .well .input-group-addon {
  background: none;
  padding: 0 0 0 5px;
}
.learner-segnocode-wrap .well .input-group-addon button {
  position: relative;
  top: -1px;
}
.learner-segnocode-wrap .well p:first-child {
  word-spacing: 6px;
}
@media (max-width: 991px) {
  .learner-segnocode-wrap .well {
    height: auto;
  }
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .off-canvas-panel .learner-segnocode-wrap .well {
    border: none;
  }
  .off-canvas-panel .learner-segnocode-wrap .well h4 {
    margin-left: 0;
  }
  .off-canvas-panel .learner-segnocode-wrap .well .description {
    margin-left: 0;
    font-size: 12px;
  }
  .off-canvas-panel .learner-segnocode-wrap .well .help-link {
    display: none;
  }
}
.mobile-view.segnocode-redeem-window .modal-dialog {
  width: 300px;
}
.croppie-container {
  width: 100%;
  height: 100%;
}
.croppie-container .cr-image {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  max-height: none;
  max-width: none;
  text-indent: -9999px;
}
.croppie-container .cr-image::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: #ebebeb url('../images/upload-an-image.png') no-repeat center;
  color: transparent;
}
.croppie-container .cr-boundary {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
  position: absolute;
  border: 2px solid #fff;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.croppie-container .cr-resizer {
  z-index: 2;
  box-shadow: none;
  pointer-events: none;
}
.croppie-container .cr-resizer-vertical,
.croppie-container .cr-resizer-horisontal {
  position: absolute;
  pointer-events: all;
}
.croppie-container .cr-resizer-vertical::after,
.croppie-container .cr-resizer-horisontal::after {
  display: block;
  position: absolute;
  box-sizing: border-box;
  border: 1px solid black;
  background: #fff;
  width: 10px;
  height: 10px;
  content: '';
}
.croppie-container .cr-resizer-vertical {
  bottom: -5px;
  cursor: row-resize;
  width: 100%;
  height: 10px;
}
.croppie-container .cr-resizer-vertical::after {
  left: 50%;
  margin-left: -5px;
}
.croppie-container .cr-resizer-horisontal {
  right: -5px;
  cursor: col-resize;
  width: 10px;
  height: 100%;
}
.croppie-container .cr-resizer-horisontal::after {
  top: 50%;
  margin-top: -5px;
}
.croppie-container .cr-original-image {
  display: none;
}
.croppie-container .cr-vp-circle {
  border-radius: 50%;
}
.croppie-container .cr-overlay {
  z-index: 1;
  position: absolute;
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}
.croppie-container .cr-slider-wrap {
  width: 75%;
  margin: 15px auto;
  text-align: center;
}
.croppie-result {
  position: relative;
  overflow: hidden;
}
.croppie-result img {
  position: absolute;
}
.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport {
  transform: translateZ(0);
}
/*************************************/
/***** STYLING RANGE INPUT ***********/
/*************************************/
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
/*************************************/
.cr-slider {
  -webkit-appearance: none;
  /*removes default webkit styles*/
  /*border: 1px solid white; */
  /*fix for FF unable to apply focus style bug */
  width: 300px;
  /*required for proper track sizing in FF*/
  max-width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: transparent;
}
.cr-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  border-radius: 3px;
}
.cr-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: -6px;
}
.cr-slider:focus {
  outline: none;
}
/*
.cr-slider:focus::-webkit-slider-runnable-track {
background: #ccc;
}
*/
.cr-slider::-moz-range-track {
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  border-radius: 3px;
}
.cr-slider::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: -6px;
}
/*hide the outline behind the border*/
.cr-slider:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}
.cr-slider::-ms-track {
  width: 100%;
  height: 5px;
  background: transparent;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  border-color: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-width: 6px 0;
  color: transparent;
  /*remove default tick marks*/
}
.cr-slider::-ms-fill-lower {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
.cr-slider::-ms-fill-upper {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
.cr-slider::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: 1px;
}
.cr-slider:focus::-ms-fill-lower {
  background: rgba(0, 0, 0, 0.5);
}
.cr-slider:focus::-ms-fill-upper {
  background: rgba(0, 0, 0, 0.5);
}
/*******************************************/
/***********************************/
/* Rotation Tools */
/***********************************/
.cr-rotate-controls {
  position: absolute;
  bottom: 5px;
  left: 5px;
  z-index: 1;
}
.cr-rotate-controls button {
  border: 0;
  background: none;
}
.cr-rotate-controls i:before {
  display: inline-block;
  font-style: normal;
  font-weight: 900;
  font-size: 22px;
}
.cr-rotate-l i:before {
  content: '↺';
}
.cr-rotate-r i:before {
  content: '↻';
}
.profile-image-upload-modal .preview-description {
  font-size: 12px;
  padding-top: 10px;
}
.profile-image-upload-modal .image-upload-placeholder-wrapper .image-upload-placeholder {
  width: 200px;
  height: 200px;
  display: block;
  background: #666666 url('../images/upload-an-image.png') no-repeat center;
  color: transparent;
  margin: auto;
}
.content-is-locked-modal-window .content-is-locked-modal .modal-body .icon-big {
  color: #ccc;
  padding: 10px;
  text-align: center;
  position: relative;
}
.content-is-locked-modal-window .content-is-locked-modal .modal-body .icon-big .fa-7x {
  position: relative;
  text-align: center;
}
.content-is-locked-modal-window .content-is-locked-modal .modal-body .content {
  margin: 0 auto;
  width: 200px;
}
.clear-button-appearance {
  color: #428bca;
}
/* -- Global styles -- */
/* core html */
html {
  overflow-y: scroll;
}
body {
  color: #333;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  font-weight: 300;
}
body > .container {
  overflow-x: hidden;
}
body.modal-open {
  overflow: visible;
  -ms-overflow-style: none;
}
body.modal-open .sticky-footer-wrapper {
  overflow: hidden;
}
body.modal-open .modal {
  -ms-overflow-style: scrollbar;
}
html,
body {
  height: 100%;
}
h1,
h2,
h3,
h4,
h5 {
  color: #333;
}
hr {
  border-top-color: #aaa;
}
textarea {
  max-width: 100%;
  resize: vertical;
}
/* common elements and modules */
.container {
  background-color: #fff;
  padding: 0;
}
.popover {
  max-width: 999999px;
}
.popover .list-group-item {
  word-wrap: break-word;
}
.popover .main-container {
  overflow-y: hidden;
}
.popover label {
  margin-bottom: 0;
}
.popover .more-content-info {
  width: 250px;
}
@media all and (max-width: 600px), all and (max-height: 600px) {
  .popover .more-content-info {
    width: 200px;
  }
}
.popover .info-details {
  margin-bottom: 8px;
}
.spinnerWrapper {
  position: relative;
}
.browse-segments .drop-down-label {
  margin-top: 25px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
}
.browse-segments .drop-down-select .select-wrapper {
  margin-top: 5px;
  margin-bottom: 10px;
}
.content-area {
  padding: 0 20px;
}
.main-nav {
  margin: 20px 0;
  width: 100%;
}
.main-nav a.btn {
  width: 25%;
}
.nav-buttons a.btn {
  padding: 0;
  display: block;
  outline: none !important;
  line-height: 2em;
  color: #333;
  text-decoration: none !important;
}
.nav-buttons a.btn:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}
.nav-buttons a.btn.active {
  background-color: #333;
  border-color: #333;
  color: #fff;
}
.text-link {
  font-weight: 500;
  color: #F37131;
  text-decoration: none;
}
.text-link:hover,
.text-link:active,
.text-link:focus {
  color: #F37131;
  text-decoration: underline;
}
.link-pills {
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 0 -0.35em 14.65px;
}
.link-pills .link-pill,
.link-pills .expandable-collection {
  display: inline-block;
  vertical-align: middle;
  margin: 0.35em 0.35em;
  padding: 0.25em 0.5em;
}
.link-pills .link-pill {
  border: 1px solid #fcdfd0;
  border-radius: 4px;
}
.link-pills .link-pill a,
.link-pills .link-pill .text-link {
  font-weight: 400;
}
.sort-arrow {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.sort-arrow::after {
  /* core      */
  content: '';
  width: 0;
  height: 0;
  display: inline-block;
  border-style: solid;
  margin-left: 0.5em;
  /* triangle  */
  border-width: 0 6px 10.39230485px 6px;
  border-color: transparent transparent #ccc transparent;
  /* animation */
  transition: transform 0.5s ease-in-out, border-bottom-color 0.5s ease-in-out;
  transform-origin: 50% 67%;
  /* hack      */
  transform: rotateX(1deg);
  margin-right: -20px;
}
.sort-arrow.reverse::after {
  transform: rotateX(180deg) translateY(4px);
}
.sort-arrow.is-active::after {
  border-bottom-color: #333;
}
.full-width {
  width: 100%;
}
.learner-dashboard .help-block {
  color: #fff;
}
#segno-img-l {
  margin-top: 42px;
}
.margin-tentop {
  margin-top: 10px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
/* views */
.view-heading,
.language-label,
.checklist-heading,
.checklist-id {
  color: #666;
  font-family: "Calibri";
}
.language-label {
  font-size: 16px;
}
.language-label-container {
  margin-bottom: 0;
}
.acknowledgement {
  font-size: 14px;
  font-family: Helvetica;
  color: #999;
  font-weight: normal;
}
.view-header {
  -ms-flex-align: baseline;
      align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.view-heading {
  font-size: 22px;
  text-transform: capitalize;
}
.view-footer {
  border: 1px solid #ccc;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.view-footer .rating {
  color: #CC9900;
  font-size: 28px;
}
.rate-cta {
  font-size: 16px;
  color: #666;
  font-family: "Helvetica Neue";
  font-weight: normal;
}
.segnom {
  width: 39%;
  margin: 40px auto 0 auto;
}
.learner-dashboard .header {
  position: relative;
}
.learner-dashboard .header p {
  font-size: 18px;
  font-weight: 300;
}
.learner-dashboard .header .help {
  font-size: 18px;
  clear: both;
  font-weight: 300;
}
.learner-dashboard h5 {
  font-weight: 700;
}
.help-modal {
  border: none;
  border-radius: 6px;
  min-height: 600px;
  width: 100%;
}
.rating {
  color: #f5aa2b;
  font-size: 1.2em;
}
.rating i,
.rating .icon,
.rating .glyphicon {
  display: inline-block;
}
.medal {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  display: inline-block;
  width: 30px;
  height: 48.48708486px;
}
.medal.level-1,
.medal.bronze {
  z-index: 20;
  background-image: url(../images/medal-empty.svg);
}
.medal.level-1.earned,
.medal.bronze.earned {
  z-index: 21;
  background-image: url(../images/medal-bronze.svg);
}
.medal.level-2,
.medal.silver {
  z-index: 19;
  background-image: url(../images/medal-empty.svg);
}
.medal.level-2.earned,
.medal.silver.earned {
  z-index: 22;
  background-image: url(../images/medal-silver.svg);
}
.medal.level-3,
.medal.gold {
  z-index: 18;
  background-image: url(../images/medal-empty.svg);
}
.medal.level-3.earned,
.medal.gold.earned {
  z-index: 23;
  background-image: url(../images/medal-gold.svg);
}
.medal-count {
  margin-right: 0.25em;
}
.medal-count::after {
  width: 22px;
  height: 35.55719556px;
  content: '';
  display: inline-block;
  vertical-align: top;
  margin-left: 0.1em;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  background-image: url(../images/medal-empty.svg);
}
.medal-count.gold::after {
  background-image: url(../images/medal-gold.svg);
}
.medal-count.silver::after {
  background-image: url(../images/medal-silver.svg);
}
.medal-count.bronze::after {
  background-image: url(../images/medal-bronze.svg);
}
.rank-up,
.rank-down,
.rank-no-change {
  font-size: 12px;
}
.rank-up::before {
  /* core     */
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  display: inline-block;
  /* triangle */
  /* hack     */
  transform: rotateX(1deg);
  border-width: 0 5px 8.66025404px 5px;
  border-color: transparent transparent #8dc63f transparent;
}
.rank-down::before {
  /* core     */
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  display: inline-block;
  /* triangle */
  /* hack     */
  transform: rotateX(1deg);
  border-width: 8.66025404px 5px 0 5px;
  border-color: #ed1c24 transparent transparent transparent;
}
.rank-no-change::before {
  content: '';
  position: relative;
  display: inline-block;
  background-color: #6d6d6d;
  top: -0.3em;
  width: 1em;
  height: 2px;
  margin-left: 0.3em;
}
.saved-views-options .opt-selected {
  color: #F37131 !important;
}
.saved-views-options .opt-selected a {
  color: #F37131 !important;
}
.saved-views-details {
  margin-left: 20px;
  border-left: 1px solid #999;
  padding-left: 20px;
}
/* Error States */
.has-error-border {
  border: 1px solid #f00 !important;
}
.has-error .form-control {
  border: 1px solid #f00 !important;
}
.has-error {
  border-color: #f00 !important;
}
.submit-error-msg {
  color: #f00;
}
.error-msg {
  position: absolute;
  top: 55px;
  left: 0;
  text-align: center;
  background: #fff;
  overflow: hidden;
  opacity: 0;
  width: 0;
  border-radius: 5px;
  padding: 0;
  transition: opacity 1s;
}
.error-msg.opened {
  width: 100%;
  opacity: 1;
  padding: 5px;
  z-index: 2;
  color: black;
}
/* helpers */
.clear {
  clear: both;
}
.gimme-a-break {
  white-space: pre;
}
.clickable {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.conditional-margin-top {
  margin-top: 10px;
}
.conditional-margin-right {
  margin-right: 10px;
}
.conditional-margin-down {
  margin-down: 10px;
}
.prevent-jump {
  min-height: 3500px;
}
.conditional-margin-left {
  margin-left: 10px;
}
/* bootstrap overrides */
.margin-top-override {
  margin-top: 0 !important;
}
.margin-right-override {
  margin-right: 0 !important;
}
.margin-bottom-override {
  margin-bottom: 0 !important;
}
.margin-left-override {
  margin-left: 0 !important;
}
.accordion-toggle {
  cursor: pointer;
  display: block;
}
/* button color tweaks */
.btn {
  color: #fff;
  max-height: 35px;
}
.btn.btn-default,
.btn.btn-highlight {
  border-color: #333;
  background-color: #fff;
  color: #333;
  text-transform: uppercase;
  font-weight: 300;
}
.btn.btn-default .fa {
  color: #333;
}
.btn.btn-primary {
  border-color: #333;
  background-color: #333;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
}
.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus {
  background-color: #595959;
  border-color: #595959;
}
.btn.btn-highlight {
  background-color: #F37131;
  border-color: #F37131;
  color: #fff;
}
.btn.btn-back {
  text-align: left;
}
.btn.btn-back::before {
  font-family: 'icomoon';
  vertical-align: bottom;
  padding: 0 10px 0 15px;
}
.btn.btn-widget {
  border-radius: 0;
  background-color: #F37131;
  border-color: #F37131;
  color: #fff;
  text-transform: uppercase;
}
.btn.btn-widget:hover,
.btn.btn-widget :active,
.btn.btn-widget :focus {
  background-color: #F37131;
  color: #cccccc;
}
.btn-default {
  background-color: #fff;
  color: #333;
  border-color: #333;
}
.btn-default:hover,
.btn-default:active,
.btn-default:focus,
.btn.btn-highlight:hover,
.btn.btn-highlight:active,
.btn.btn-highlight:focus {
  background-color: #333;
  color: #fff;
  border-color: #333;
  transition: all 0.3s ease 0s;
}
.button.clear-appearance {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  outline-style: none;
}
/* button position tweaks */
.btn:not(.pull-right):not(.btn-block) + .btn:not(.pull-right):not(.btn-block) {
  margin-left: 10px;
}
.btn.pull-right {
  margin-left: 10px;
}
.btn.pull-left {
  margin-right: 10px;
}
.ng-hide + .input-group-btn .btn {
  border-radius: 4px;
}
/* calendar */
.calendar.input-group .datepicker-container {
  width: 240px;
}
.calendar.input-group .dropdown-menu {
  padding: 0;
  border-left: none;
  border-right: none;
}
.calendar.input-group .dropdown-menu .well {
  margin-bottom: 0;
}
.calendar.hidden-calendar-input {
  position: relative;
}
.calendar.hidden-calendar-input input {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  padding: 0;
  border: 0;
}
.calendar.hidden-calendar-input .btn {
  margin-left: 0 !important;
  border-left: 0;
}
.calendar .well .btn-default {
  background-color: #fff;
  color: #333;
  border-color: #333;
}
.calendar .well .btn-default:hover,
.calendar .well .btn-default:active,
.calendar .well .btn-default:focus {
  background-color: #808080;
  color: #fff;
  border-color: #b3b3b3;
}
.calendar .well table {
  margin: 0 auto;
  width: 100%;
}
.calendar .well table th {
  width: 14.28571429%;
}
.calendar .well .btn {
  display: block;
  padding: 0;
  width: 100%;
  height: 2.5em;
  line-height: 2.5em;
  pointer-events: auto;
  font-weight: bold;
  font-size: 0.9em;
}
.calendar .well .btn.calendar-disabled {
  opacity: 0.3;
}
.calendar .well .btn.active,
.calendar .well .btn .text-info {
  background-color: #F37131;
  color: #fff;
}
.calendar .well .btn.text-muted {
  opacity: 0.08;
}
.calendar .well .calendar-title {
  text-align: center;
}
.calendar .well .calendar-arrow {
  background: none;
  padding: 0;
  border: none;
  text-align: center;
  font-size: 11px;
}
.calendar .well .calendar-arrow::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1em;
  border-radius: 0;
  display: block;
}
.calendar .well .calendar-arrow.left {
  float: left;
}
.calendar .well .calendar-arrow.left::before {
  border-color: transparent #fff transparent transparent;
}
.calendar .well .calendar-arrow.left:hover::before,
.calendar .well .calendar-arrow.left:active::before,
.calendar .well .calendar-arrow.left:focus::before {
  border-color: transparent #808080 transparent transparent;
}
.calendar .well .calendar-arrow.right {
  float: right;
}
.calendar .well .calendar-arrow.right::before {
  border-color: transparent transparent transparent #fff;
}
.calendar .well .calendar-arrow.right:hover::before,
.calendar .well .calendar-arrow.right:active::before,
.calendar .well .calendar-arrow.right:focus::before {
  border-color: transparent transparent transparent #808080;
}
.calendar .well .month-year-switcher {
  background-color: transparent;
  border: 0;
  cursor: default;
  color: #fff !important;
}
/* table striping */
.table-striped > tbody > tr:nth-child(2n+1) > td,
.table-striped > tbody > tr:nth-child(2n+1) > th {
  background-color: transparent;
}
.table-striped > tbody > tr:nth-child(2n) > td,
.table-striped > tbody > tr:nth-child(2n) > th,
.table-striped > tbody > tr.loading-row > td,
.table-striped > tbody > tr.loading-row > th {
  background-color: #f0f0f0;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  border-top: none;
}
/* dark background containers */
.well,
.pop-out,
.dark-bg {
  background-color: #333;
  color: #fff;
}
.well h1,
.pop-out h1,
.dark-bg h1,
.well h2,
.pop-out h2,
.dark-bg h2,
.well h3,
.pop-out h3,
.dark-bg h3,
.well h4,
.pop-out h4,
.dark-bg h4,
.well h5,
.pop-out h5,
.dark-bg h5 {
  color: #fff;
}
.well .btn-default,
.pop-out .btn-default,
.dark-bg .btn-default {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.well .btn-default:hover,
.pop-out .btn-default:hover,
.dark-bg .btn-default:hover,
.well .btn-default:active,
.pop-out .btn-default:active,
.dark-bg .btn-default:active,
.well .btn-default:focus,
.pop-out .btn-default:focus,
.dark-bg .btn-default:focus {
  background-color: #fff;
  color: #333;
  border-color: #333;
}
.well {
  padding: 5px;
  border-radius: 0;
}
/* modal */
.modal {
  z-index: 999999 !important;
  overflow-y: auto;
}
.modal-header button.icon-Close {
  background: transparent;
  border: none;
  position: relative;
  float: right;
  z-index: 1;
  padding: 3px;
  color: #000;
  font-size: 18px;
}
.modal-body {
  font-size: 16px;
}
.modal-body .rating-wrapper {
  margin-top: 20px;
}
.modal-body textarea.form-control {
  min-height: 20vh;
}
/* list-group */
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
  background-color: #333 !important;
  border-color: #333 !important;
  color: #fff !important;
}
a.list-group-item:hover,
a.list-group-item:focus {
  background-color: #eee !important;
  color: #333 !important;
}
/* pagination */
.pagination {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.pagination > li > a,
.pagination > li > span {
  color: #333;
  background-color: #fff;
  border-color: #333;
  margin-left: 0;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.pagination > li + li > a,
.pagination > li + li > span {
  border-left: none;
}
.pagination > li.active > a,
.pagination > li.active > span,
.pagination > li.active > a:hover,
.pagination > li.active > span:hover,
.pagination > li.active > a:focus,
.pagination > li.active > span:focus {
  color: #fff;
  background-color: #333;
  border-color: #333;
  cursor: pointer;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #333;
  background-color: #fff;
  border-color: #333;
  opacity: 0.3;
}
/* misc */
.form-control,
.input-group-addon {
  border-color: #333;
}
.new-content {
  display: inline-block;
  background: #37C37A;
  border-radius: 4px;
  color: white;
  font-weight: 400;
  margin-top: 5px;
  margin-right: 15px;
  padding: 2px 20px;
  text-transform: uppercase;
}
.view-section,
.button-wrapper,
.wrapper {
  display: -ms-flexbox;
  display: flex;
}
.view-section.columns,
.button-wrapper.columns,
.wrapper.columns {
  -ms-flex-direction: row;
      flex-direction: row;
}
.view-section.rows,
.button-wrapper.rows,
.wrapper.rows {
  -ms-flex-direction: column;
      flex-direction: column;
}
.base {
  -ms-flex-align: baseline;
      align-items: baseline;
}
.wrapped {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.full-width {
  width: 100%;
}
.clear-input {
  border-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline-width: 1px;
  background-color: transparent;
}
.row-disabled {
  opacity: 0.5;
}
/* -- debuggery -- */
html.dbmq {
  /* html { //<---uncomment this line, comment the line above to turn debugging on */
  /* bootstrap media query */
  /* debug columns not in rows */
  /* debug row children that aren't columns */
}
html.dbmq::before {
  /* layout */
  position: fixed;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
  padding: 0.5em;
  z-index: 999999999;
  box-shadow: 0 0 4px 0 #000;
  opacity: 0.7;
  /* text   */
  color: #fff;
  text-align: center;
  font-family: roboto;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000;
}
@media (max-width: 767px) {
  html.dbmq::before {
    background-color: rgba(255, 255, 0, 0.8);
    content: 'XS PHONE / 0 - 767px';
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  html.dbmq::before {
    background-color: rgba(255, 165, 0, 0.8);
    width: 768px;
    content: 'SM TABLET / 768px - 991px';
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  html.dbmq::before {
    background-color: rgba(255, 0, 0, 0.8);
    width: 992px;
    content: 'MD DESKTOP / 992px - 1199px';
  }
}
@media (min-width: 1200px) {
  html.dbmq::before {
    background-color: rgba(128, 0, 128, 0.8);
    width: 1200px;
    content: 'LG LARGE DESKTOP / 1200px - \221E';
  }
}
html.dbmq :not(.row) > [class*="col-"] {
  box-shadow: 0 0 10px red;
}
html.dbmq .row > :not([class*="col-"]) {
  box-shadow: 0 0 10px green;
}
.no-x::-ms-clear {
  display: none;
}
/* -- Map Responsibilities */
.responsibility-item {
  border: 1px solid #aaa;
  padding: 5px 15px 15px 15px;
  margin-bottom: 15px;
}
.responsibility-item .business-units {
  padding: 10px 0px 10px 0px;
}
.responsibilities .panel-title {
  font-size: 13px;
}
.responsibilities .panel-heading {
  background-color: #FFF;
  padding: 0px;
}
.responsibilities .panel-default {
  border-color: #FFF;
}
.responsibilities .panel-group .panel-heading + .panel-collapse .panel-body {
  border: 0px;
}
.capitalize {
  text-transform: capitalize;
}
.bold {
  font-weight: 600;
}
.skinny-weight {
  font-weight: 200;
}
.normal-weight {
  font-weight: normal;
}
.accessibility {
  position: absolute;
  z-index: -50;
  font-size: 1px;
  color: transparent;
}
.display-inline-block-override {
  display: inline-block !important;
}
.disableable .mask {
  height: 0;
  overflow: hidden;
  padding: 0 15px;
  display: none;
}
.disableable.disabled {
  opacity: 0.4;
}
.disableable.disabled .mask {
  background: rgba(255, 255, 255, 0.1);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  font-size: 8rem;
  color: #666;
  border: 0px;
}
.disableable.disabled .mask i {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -7px;
}
.disableable.disabled .mask .message {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
.disableable .completed {
  color: green;
}
.restricted-content-alert-img {
  display: inline-block;
  padding: 0 15px 0 0;
}
.restricted-content-alert-msg {
  display: inline-block;
  width: 80%;
  vertical-align: middle;
}
a:focus,
button:focus {
  /* Hide orange focus borders on touch devices */
  /* Works on Android Default, Android Chrome and iOS Safari */
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
  /* Hide blue focus borders on desktop */
  outline: none !important;
}
.label-xs {
  font-size: 10px;
  margin: 10px;
}
.label-sm {
  font-size: 12px;
  margin: 10px;
}
.label-md {
  font-size: 16px;
  margin: 10px;
}
.label-lg {
  font-size: 20px;
  margin: 10px;
}
