@charset "UTF-8";
h1 {
  color: #e19118;
  font-size: 1.9rem;
}

h1.lesson-step-title {
  font-weight: bold;
  text-align: center;
  font-size: 2.5rem;
}

h1.lesson-step-title .lesson-number {
  font-weight: normal;
  color: #9EDEE2;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Ubuntu Condensed", sans-serif;
}

h2.lesson-title, h2.lesson-subtitle {
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

h2.lesson-title .lesson-number, h2.lesson-subtitle .lesson-number {
  font-weight: normal;
  color: #9ea991;
}

h3 {
  font-size: 1.2rem;
}

h3.latest-activity {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.2rem;
}

.congrads-title {
  margin-bottom: 1rem;
}

a, a:visited, a:link {
  color: #e19118;
  font-weight: 700;
  text-decoration: none;
}

a, a:visited, a:link {
  text-decoration: none;
}

a {
  color: #e19118;
  text-decoration: none;
}

a.no-decoration {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

a.no-decoration:hover, a.no-decoration:focus, a.no-decoration:active {
  color: inherit;
  text-decoration: none;
}

.node h1 {
  font-size: 2.5rem;
}

.node h1.title,
.node h2.title {
  font-family: "Ubuntu Condensed", sans-serif;
}

.node h3, .node h4 {
  font-family: "Ubuntu Condensed", sans-serif;
}

.lesson-title {
  color: #e19118;
  font-weight: bold;
  border-bottom: 2px solid #e19118;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.answer-questions {
  color: #4A494A;
  font-size: 1.2rem;
  border-bottom: 2px solid #E6ECEE;
  padding-bottom: 0.6rem;
}

.quiz-title {
  color: #e19118;
  font-weight: bold;
  margin-bottom: 0rem;
}

.booklet-title-wrapper {
  font-style: italic;
}

:lang(hu) .booklet-title-wrapper {
  margin-left: 10px;
}

:lang(zh) i,
:lang(zh) em,
:lang(zh) .booklet-title-wrapper {
  font-style: normal;
}

.intro-quiz .quiz-container {
  margin-top: 0;
}

.intro-quiz #quiz-counter {
  margin-bottom: 2rem;
  color: #B3B1B2;
}

body {
  font-family: "Open Sans", sans-serif;
}

.center {
  text-align: center;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 25px;
  height: 12px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 25px;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -5px;
}

.hamburger-inner::after {
  bottom: -5px;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1px;
}

.hamburger--slider .hamburger-inner::before {
  top: 5px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}

.hamburger--slider .hamburger-inner::after {
  top: 10px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-3.57143px, -3px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-90deg);
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.banner-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 55px;
}

@media (min-width: 576px) {
  .banner-wrapper {
    z-index: 1000;
    height: 86px;
  }
}

.banner-wrapper.to-the-back {
  z-index: 1;
}

.banner-wrapper .profile {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
}

@media (min-width: 576px) {
  .banner-wrapper .profile {
    right: 0;
    top: 1rem;
  }
}

.banner-wrapper .profile .sign-in-link {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  -moz-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  font-size: 0.7rem;
  padding-right: 1rem;
}

.banner-wrapper .profile img {
  border-radius: 100px;
}

.banner-wrapper > .container {
  position: relative;
}

.banner {
  padding-top: 0.4rem;
}

.banner .row {
  height: 65px;
}

.site-logo {
  float: left;
  display: inline-block;
}

.site-logo-text {
  height: 50px;
  margin-left: 0.4rem;
  margin-top: 0.6rem;
}

@media (min-width: 768px) {
  .site-logo-text {
    margin-top: 0.1rem;
    height: 65px;
  }
}

.small-booklet {
  max-height: 31px;
}

.course-card {
  margin-bottom: 1rem;
}

.front main {
  background: none;
}

.front .course-hamburger {
  font-weight: bold;
}

@media (min-width: 576px) {
  .front .course-hamburger {
    padding-top: 0.4rem;
  }
}

.front .landing-banner-container .landing-banner-body {
  -webkit-flex: 0 0 45%;
  -ms-flex: 0 0 45%;
  -moz-flex: 0 0 45%;
  -o-flex: 0 0 45%;
  flex: 0 0 45%;
  z-index: 1;
}

.body-background {
  background: url(/FURL/imagecache/cropfit@cr=1,241,1022,517@qa=85/data/www.humanrights.org/files/cloudy-sky.png) no-repeat center top #fff;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

[canvas="container"] {
  background: transparent;
}

img {
  max-width: 100%;
}

main {
  position: relative;
  padding-top: 1rem;
  background: white;
  margin-top: 2.6rem;
}

@media (min-width: 575px) {
  main {
    margin-top: 0rem;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 768px) {
  main {
    margin-top: 2.7rem;
  }
  .front main {
    margin-top: 5.7rem;
  }
}

.hidden {
  display: none !important;
}

.large-card {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -o-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
  background: white;
  border-radius: 6px;
  box-shadow: 0 0 20px 0 rgba(32, 159, 166, 0.4);
  transition: box-shadow 0.2s ease;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 768px) {
  .large-card {
    padding: 48px 60px;
  }
}

.large-card .large-card-body {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 768px) {
  .large-card .large-card-body {
    -webkit-display: flex;
    -ms-display: flex;
    -moz-display: flex;
    -o-display: flex;
    display: flex;
    position: relative;
  }
}

.large-card .large-card-inner {
  position: relative;
}

.medium-card {
  position: relative;
  background: white;
  border-radius: 6px;
  box-shadow: 0 0 20px 0 rgba(32, 159, 166, 0.4);
  transition: box-shadow 0.2s ease;
}

.medium-card .medium-card-body {
  padding: 30px 60px;
}

.medium-card .small-title {
  font-size: 1rem;
}

.medium-card p {
  line-height: 1.3rem;
  font-size: 0.9rem;
  color: #58646d;
}

.medium-card .side-image {
  position: absolute;
  max-height: 80px;
  top: 14px;
  left: -5.7rem;
}

.course-progress-bar-container {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  position: absolute;
  bottom: 0.7rem;
  left: 4rem;
}

.course-progress-bar-container .progress-bar {
  width: 80px;
  height: 4px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #dbe2e8;
}

.course-progress-bar-container .progress-bar-inner {
  border-radius: 5px;
  background: #15c26b;
  width: 0%;
  height: 100%;
}

.course-progress-bar-container .progress-bar-completion-amount {
  margin-left: 8px;
}

.course-duration-details {
  position: absolute;
  bottom: 0.7rem;
  right: 3.6rem;
}

.subtle-text {
  color: #7d97ad;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 16px;
  font-weight: normal;
}

.main-button {
  -webkit-transition: box-shadow 0.25s ease-in-out;
  -ms-transition: box-shadow 0.25s ease-in-out;
  -moz-transition: box-shadow 0.25s ease-in-out;
  -o-transition: box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out;
  -webkit-box-shadow: 0 0 4px 0 black;
  -ms-box-shadow: 0 0 4px 0 black;
  -moz-box-shadow: 0 0 4px 0 black;
  -o-box-shadow: 0 0 4px 0 black;
  box-shadow: 0 0 4px 0 black;
  color: white;
  font-family: "Ubuntu Condensed", sans-serif;
  background: #e19118;
  text-align: center;
  position: relative;
  min-width: 16rem;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  padding: 0.05rem 1rem;
  background-size: 100%;
  background-repeat: no-repeat;
  font-size: 1.3rem;
}

.main-button:lang(he), .main-button:lang(ja), .main-button:lang(nl) {
  font-size: 1.1rem;
}

.main-buttonbutton {
  line-height: 0;
}

.main-button:hover {
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  .main-button {
    width: 90%;
  }
}

.main-button.btn {
  width: auto;
  padding: 0 1em;
  margin: 0;
}

.main-button a.no-decoration {
  -webkit-transition: color 0.5s ease;
  -ms-transition: color 0.5s ease;
  -moz-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.main-button .button-arrow {
  -webkit-transition: none;
  -ms-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.main-button:not(.disabled):hover, .main-button:not(.disabled):focus {
  color: white;
}

.main-button:not(.disabled):hover a, .main-button:not(.disabled):focus a {
  -webkit-transition: color 0.25s ease;
  -ms-transition: color 0.25s ease;
  -moz-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
  transition: color 0.25s ease;
  color: white;
}

.main-button:not(.disabled):hover .button-arrow, .main-button:not(.disabled):focus .button-arrow {
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  color: white;
}

.main-button:not(.disabled):hover .button-text:after, .main-button:not(.disabled):focus .button-text:after {
  opacity: 1;
  margin-left: 5px;
}

.main-button:not(.disabled):hover .hover-overlay, .main-button:not(.disabled):focus .hover-overlay {
  left: 0;
}

.main-button.disabled {
  background: white !important;
  cursor: inherit !important;
  z-index: 1;
}

.main-button.disabled:hover:before {
  border-width: 0;
}

.main-button.disabled .button-text {
  color: #eba741;
}

.main-button.disabled .button-arrow {
  color: #eba741;
}

.button-text {
  z-index: 2;
  cursor: pointer;
  font-weight: 400;
  margin-right: 35px;
  line-height: 1.1em;
}

.restore-password .button-text,
.sign-up .button-text {
  margin-right: auto;
}

#quiz-buttons .button-text {
  margin-right: 5px;
}

.slide-background.enabled, .slide-background:not(.disabled):hover {
  background: #e19118;
}

.slide-background.enabled:before, .slide-background:not(.disabled):hover:before {
  width: 100%;
}

.slide-background:before {
  content: '';
  z-index: -1;
  width: 0;
  height: 100%;
  background: #e19118;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.site-content {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  padding-top: 4rem;
  width: 100%;
  z-index: 1;
}

@media (min-width: 576px) {
  .site-content {
    padding-top: 7rem;
  }
}

@media (min-width: 768px) {
  .toggledMenu.content-wrapper .site-content {
    width: calc(100% - $plus 320px);
  }
  .front .site-content {
    padding-top: 1rem;
  }
}

@media (min-width: 992px) {
  .front .site-content {
    padding-top: 4rem;
  }
}

.course-video {
  width: 100%;
  margin-top: 2rem;
}

.course-video .video-js {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

@media (min-width: 768px) {
  .body-content {
    padding: 0 2rem;
  }
}

.course-footer {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}

.course-footer .button-text {
  font-size: 1.8rem;
  padding-right: 0.6rem;
  padding-bottom: 0rem;
}

@media (min-width: 768px) {
  .course-footer {
    margin-top: 3rem;
  }
}

.course-toc {
  padding: 0;
  list-style: none;
  overflow-y: scroll;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 9rem;
  padding-bottom: 3rem;
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.course-toc::-webkit-scrollbar {
  display: none;
}

.down-the-page .course-toc {
  top: 6.4rem;
}

@media (max-width: 991px) {
  .down-the-page .course-toc {
    top: 7.4rem;
  }
}

@media (max-width: 575px) {
  .course-toc {
    top: 4rem;
  }
}

.course-toc li {
  position: relative;
  color: white;
  font-size: 0.9rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  margin-top: 0.5rem;
  margin-left: 2.3rem;
}

.course-toc li.subsection {
  margin-left: 1.2rem;
  margin-bottom: -0.7rem;
  font-size: 1.1rem;
  border-top: 1px solid #b3634d;
  margin-right: 1rem;
  margin-top: 1.2rem;
}

.course-toc li.subsection:before {
  display: none;
}

.course-toc li.subsection:first-child {
  border: none;
  margin-top: 0;
}

.course-toc li.completed:after {
  position: absolute;
  left: -1.5rem;
  font-family: icomoon;
  top: 0.3rem;
  content: "\e90e";
  color: white;
  margin-right: 0.6rem;
}

.course-toc li.active:before, .course-toc li:hover:before {
  background: #b3634d;
  left: -2.3rem;
  width: calc(100% + 2.3rem);
}

.course-toc li:before {
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  content: ' ';
  position: absolute;
  top: 0;
  left: auto;
  width: 0;
  right: 0;
  height: 100%;
}

.course-toc li a {
  position: relative;
  display: block;
  width: 100%;
  color: white;
  -webkit-font-smoothing: antialiased;
}

.black-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.63);
  z-index: 1000;
}

@media (min-width: 768px) {
  .course-hamburger {
    padding: 1.1rem 0.6rem 0;
  }
}

.lesson-name {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  font-family: "Ubuntu Condensed", sans-serif;
}

@media (max-width: 575px) {
  .lesson-name {
    margin-left: 0;
  }
  .lesson-name .e-course-label {
    margin-left: 0.3rem;
    margin-right: 0.3rem;
    white-space: nowrap;
  }
  .lesson-name .course-name {
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }
}

@media (min-width: 768px) {
  .lesson-name {
    padding-left: 0;
  }
}

.resource-download-wrapper {
  text-align: right;
  margin-top: 2rem;
  margin-right: 1rem;
}

.resource-download-wrapper .icon-download {
  cursor: pointer;
  background: #cbcbcb;
  font-size: 1.2rem;
  padding: 0.3rem;
}

.checkbox {
  display: block;
  position: absolute;
  border: 3px solid #e19118;
  border-radius: 100%;
  height: 15px;
  width: 15px;
  top: 13px;
  left: 5px;
  z-index: 5;
  transition: border .25s linear;
  -webkit-transition: border .25s linear;
}

.checkbox::before {
  display: block;
  position: absolute;
  content: '';
  border-radius: 100%;
  height: 7px;
  width: 7px;
  top: 1px;
  left: 1px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

.menu-toggle-wrapper {
  -webkit-transition: background 0.5s ease-out;
  -ms-transition: background 0.5s ease-out;
  -moz-transition: background 0.5s ease-out;
  -o-transition: background 0.5s ease-out;
  transition: background 0.5s ease-out;
}

.menu-toggle-wrapper.is_stuck {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 1px 1px 20px 0px #c4c4c4;
  z-index: 10001;
}

.menu-toggle-wrapper.is_stuck .course-hamburger {
  padding-top: 0.1rem;
}

.menu-toggle-wrapper.is_stuck::before {
  filter: blur(5px);
  z-index: -1;
  display: block;
  position: absolute;
  content: ' ';
}

/* support backdrop-filter */
@supports (-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px)) {
  .menu-toggle-wrapper.is_stuck {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}

/* no support backdrop-filter */
html, body {
  width: 100%;
  min-height: 100vh;
}

/* Icons */
.icon {
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto;
  fill: currentColor;
}

.icon--inline {
  display: inline-block;
  width: 1em;
  height: 100%;
  margin: 0 0.25em 0 0;
}

/* Demo specific styles */
/* Buttons */
.btn {
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  color: inherit;
}

.btn:focus {
  outline: none;
}

.btn--trigger {
  margin: 1em;
  display: block;
  white-space: nowrap;
}

.btn--default,
.btn--trigger::before {
  font-weight: bold;
  border: 2px solid;
  text-align: center;
  text-indent: 0;
  display: inline-block;
  line-height: 1.7;
}

.btn--trigger::before {
  content: 'Press';
  width: 4em;
  height: 2em;
  margin: 0 0.75em;
}

.btn--trigger:active::before {
  content: 'Ouch!';
}

.btn--default {
  padding: 0 1em;
  margin: 2vh 0 0;
}

.btn--tool {
  display: block;
  margin: 1em 0;
  font-size: 1.3em;
  color: #8a7c78;
}

.btn--menu {
  position: absolute;
  top: 3vw;
  right: 3vw;
  color: #939391;
  pointer-events: visible;
}

.btn--close {
  position: absolute;
  top: 3vw;
  right: 3vw;
  font-size: 0.75em;
  z-index: 100;
}

@media (max-width: 575px) {
  .toggledMenu {
    position: relative;
    z-index: 1100;
  }
}

@media (min-width: 768px) {
  .content-wrapper {
    -webkit-display: flex;
    -ms-display: flex;
    -moz-display: flex;
    -o-display: flex;
    display: flex;
    min-height: 100vh;
  }
}

/* Menu */
.menu {
  -webkit-flex: 0 0 320px;
  -ms-flex: 0 0 320px;
  -moz-flex: 0 0 320px;
  -o-flex: 0 0 320px;
  flex: 0 0 320px;
  position: relative;
  min-height: 100vh;
  width: 320px;
}

@media (max-width: 575px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (min-width: 768px) {
  body.menu-open .site-content {
    -webkit-transform: translateX($plus 320px);
    -ms-transform: translateX($plus 320px);
    -moz-transform: translateX($plus 320px);
    -o-transform: translateX($plus 320px);
    transform: translateX($plus 320px);
  }
}

@media (max-width: 575px) {
  body.menu-open {
    overflow: hidden;
  }
}

.menu {
  pointer-events: none;
}

.menu.not-inited {
  visibility: hidden;
}

.menu--open {
  pointer-events: visible;
}

.menu__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: rgba(171, 135, 122, 0.95);
  overflow: hidden;
}

@supports (-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px)) {
  .menu__inner {
    background: rgba(171, 135, 122, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

.menu__item {
  transform: translate3d(-330px, 0, 0);
  transition: transform 0s 0.4s;
}

.btn--close {
  opacity: 0;
}

.menu--open .menu__item,
.menu--open .btn--close {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.4s 0.135s, transform 0.4s 0.135s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu--open .menu__item:nth-child(2) {
  transition-delay: 0.165s;
}

.menu--open .menu__item:nth-child(3) {
  transition-delay: 0.195s;
}

.menu--open .menu__item:nth-child(4) {
  transition-delay: 0.225s;
}

.menu .menu__link {
  font-size: 3.5vw;
  color: #4f4f54;
  font-weight: bold;
}

.menu .menu__link:hover,
.menu .menu__link:focus {
  outline: none;
  color: #000;
  text-decoration: line-through;
}

.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
}

@media (min-width: 1140px) {
  .course-description {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  .course-description {
    margin-bottom: 2rem;
  }
}

.row.course-row {
  border: 3px solid #855e65;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .row.course-row {
    padding-top: 2.3rem;
  }
}

@media (max-width: 575px) {
  .row.course-row .p-down-0 {
    padding: 0;
  }
}

.row.course-row .course-title {
  font-size: 1.2rem;
  margin-top: 0.7rem;
}

@media (min-width: 768px) {
  .row.course-row .course-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 992px) {
  .row.course-row .course-title {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .row.course-row .course-info {
    padding: 0 20px 20px;
  }
}

@media (min-width: 768px) {
  .row.course-row .course-info {
    margin-bottom: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 992px) {
  .row.course-row .course-info {
    margin-bottom: 3rem;
  }
}

.row.course-row .course-image {
  image-rendering: pixelated;
}

@media (max-width: 575px) {
  .row.course-row .course-image {
    text-align: center;
    margin-top: 1rem;
  }
}

.row.course-row .course-meta {
  border-top: 1px solid #E6ECEE;
  color: #b8c7cd;
  padding: 10px;
}

@media (min-width: 768px) {
  .row.course-row .course-meta {
    padding: 1rem 2rem 0.4rem;
  }
}

.row.course-row .main-button {
  margin: 0 auto;
}

.row.course-row .course-img-wrapper {
  image-rendering: pixelated;
}

.row.course-row .course-meta-item {
  margin-bottom: 0.4rem;
}

.row.course-row .course-meta-item span {
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.search-content-block {
  border-top: 2px solid #E6ECEE;
  border-bottom: 2px solid #E6ECEE;
  margin: 2rem 0;
  padding: 1.5rem 0;
}

.search-content-block .search-blurb {
  margin-bottom: 0.3rem;
}

.search-content-block div.search-input-wrapper {
  position: relative;
}

.search-content-block div.search-input-wrapper:before {
  color: #b8c7cd;
  font-family: icomoon;
  content: "\e903";
  position: absolute;
  top: 0.2rem;
  left: 0.4rem;
}

.search-content-block input {
  width: 100%;
  padding-left: 2rem;
}

.search-content-block input:focus {
  outline: none;
}

.course-lessons header {
  background-color: #f5f9fa;
}

.course-lessons header h2 {
  font-size: 1.25rem;
  color: #444;
  padding: 0.6em 0 0.6em 20px;
  display: block;
}

.course-lessons .module-lessons ul {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}

.course-lessons .module-lessons li {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  position: relative;
  border-bottom: solid 1px #e7edef;
}

.course-lessons .module-lessons li.completed .checkbox {
  display: none;
}

.course-lessons .module-lessons li.completed:before {
  position: absolute;
  left: 1rem;
  font-family: icomoon;
  content: "\e90e";
  color: #e19118;
}

.course-lessons .module-lessons li:hover {
  background: #f5f9fa;
}

.course-lessons .module-lessons li:hover .checkbox:before {
  background: #e19118;
}

.course-lessons .module-lessons li a {
  -webkit-flex: 2;
  -ms-flex: 2;
  -moz-flex: 2;
  -o-flex: 2;
  flex: 2;
  padding: 0.618em 0.618em 0.618em 2.81rem;
  font-weight: normal;
}

@media (max-width: 575px) {
  .course-lessons .module-lessons li a {
    line-height: 1.2rem;
    font-size: 0.9rem;
  }
}

.course-lessons .module-lessons .checkbox {
  left: 1rem;
}

.course-lessons .module-lessons .lesson_length {
  font-size: 0.7rem;
  text-align: right;
  margin-right: 1rem;
  color: #b8c7cd;
}

@media (min-width: 768px) {
  .course-lessons .module-lessons .lesson_length {
    font-size: 1rem;
  }
}

.sign-up-cta .signup-blurb {
  font-size: 1.1rem;
}

.sign-up-cta img {
  max-width: 60px;
  max-height: 60px;
  margin-right: 0.7rem;
}

.sign-up-cta img:lang(el), .sign-up-cta img:lang(pt_BR), .sign-up-cta img:lang(es) {
  margin-left: -30px;
}

.breadcrumb-arrow {
  font-size: 0.8rem;
  width: 10px;
  display: inline-block;
  margin-right: 0.4rem;
}

.landing-top {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  box-shadow: 0px 5px 20px #a6a6a6;
}

.landing-top.home-banner {
  min-height: 300px;
}

.landing-top.home-banner .booklet-image {
  -webkit-flex: 0 0 55%;
  -ms-flex: 0 0 55%;
  -moz-flex: 0 0 55%;
  -o-flex: 0 0 55%;
  flex: 0 0 55%;
  z-index: 1;
}

.landing-top:before {
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(/FURL/data/www.humanrights.org/files/humanrights-glass-shape.svg);
  background-size: cover;
  opacity: 0.8;
}

.progress-tooltip {
  position: absolute;
  top: -2.2rem;
  opacity: 1;
  right: -21px;
  min-width: 47px;
}

.full-width {
  position: relative;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
}

.ui-progress .progress-tooltip.tooltip-bottom {
  top: 0.6rem;
}

.side-nav .tab-content {
  background: #23878a;
}

.tooltip-inner {
  background-color: black;
  padding: 5px 10px;
  line-height: 1rem;
}

.tooltip-inner.light {
  background: white;
  color: #e19118;
  font-size: 0.8rem;
  box-shadow: 1px 1px 1px black;
}

.tooltip-inner.light:before {
  border-top-color: white !important;
  border-bottom-color: white !important;
}

.logged-in .login-only {
  display: block !important;
}

@media (min-width: 992px) {
  .landing-banner-container {
    -webkit-display: flex;
    -ms-display: flex;
    -moz-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (min-width: 992px) {
  .landing-banner-container .booklet-image {
    -webkit-display: flex;
    -ms-display: flex;
    -moz-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -moz-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -moz-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}

.landing-banner-container h1 {
  color: white;
  margin-top: 0;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .landing-banner-container h1 {
    font-size: 2rem;
  }
}

@media (min-width: 1140px) {
  .landing-banner-container h1 {
    font-size: 2.4rem;
  }
}

.landing-banner-container h3 {
  color: white;
}

.landing-banner-container p {
  color: white;
}

@media (min-width: 1140px) {
  .landing-banner-container p {
    font-size: 1.1rem;
  }
  .landing-banner-container p:lang(pt_BR), .landing-banner-container p:lang(es) {
    font-size: 1em;
  }
}

.landing-banner-container .landing-banner-body {
  -webkit-flex: 0 0 65%;
  -ms-flex: 0 0 65%;
  -moz-flex: 0 0 65%;
  -o-flex: 0 0 65%;
  flex: 0 0 65%;
  padding-top: 2rem;
  padding-right: 2rem;
}

.landing-banner-container .booklet-image {
  -webkit-flex: 0 0 35%;
  -ms-flex: 0 0 35%;
  -moz-flex: 0 0 35%;
  -o-flex: 0 0 35%;
  flex: 0 0 35%;
}

@media (max-width: 991px) {
  .landing-banner-container .booklet-image {
    margin-top: 1rem;
    text-align: center;
  }
}

.landing-banner-container .lesson-progress {
  -webkit-flex-basis: 100%;
  -ms-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -o-flex-basis: 100%;
  flex-basis: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.landing-title {
  color: rgba(45, 47, 47, 0.73);
  margin-top: 1.5rem;
}

.main-button {
  width: 17.5rem;
  margin-bottom: 1.5rem;
  padding: 0;
  background: #e19118;
}

.command-button .main-button {
  width: 100%;
  min-width: initial;
  margin-bottom: inherit;
}

.start-arrow {
  max-width: 20px;
}

.button-arrow {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  width: 30px;
  height: 100%;
}

.button-arrow svg {
  max-width: 20px;
}

.button-text {
  -webkit-flex: 1;
  -ms-flex: 1;
  -moz-flex: 1;
  -o-flex: 1;
  flex: 1;
}

.start-course-button.light .main-button {
  background: #e19118;
}

.start-course-button.light .button-text {
  -webkit-transition: color 0.25s ease-out;
  -ms-transition: color 0.25s ease-out;
  -moz-transition: color 0.25s ease-out;
  -o-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
  color: white;
}

.continue-course,
.login-only {
  display: none !important;
}

ul.overview {
  padding: 1rem;
  font-size: 1.1rem;
}

ul.overview li {
  list-style: none;
}

ul.overview li:before {
  position: relative;
  font-family: icomoon;
  content: "\e90e";
  color: #e19118;
  margin-right: 0.6rem;
}

.continue-browse {
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  position: absolute;
  left: 3.9rem;
  bottom: 1rem;
  color: #e19118;
  cursor: pointer;
}

@media (max-width: 575px) {
  .continue-browse {
    position: relative;
    left: 0;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.continue-button {
  margin: 0 auto 2rem;
  font-size: 1.8rem;
}

.continue-button .button-text {
  padding-bottom: 0rem;
}

.twitter-share {
  position: relative;
  margin-left: 2rem;
  font-style: italic;
  color: #363642;
}

.twitter-share:before {
  position: absolute;
  font-family: icomoon;
  content: "\e905";
  left: -1.6rem;
}

.share-with-friend {
  border-top: 2px solid #E6ECDF;
  padding-top: 2rem;
}

.finish-text {
  margin-top: 3rem;
}

.did-you-know,
.help-spread {
  font-weight: bold;
  font-size: 1.1rem;
}

.at-share-btn-elements {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}

.congratulations {
  padding-right: 2rem;
}

.cert-image {
  -webkit-flex: 0 0 150px;
  -ms-flex: 0 0 150px;
  -moz-flex: 0 0 150px;
  -o-flex: 0 0 150px;
  flex: 0 0 150px;
}

.cert-image img {
  border: 1px solid #b1b1b1;
}

@media (min-width: 992px) {
  .next-course .course-title {
    margin-top: 0 !important;
  }
}

.next-course .course-title a {
  color: #e19118;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .next-course .course-description {
    font-size: 1rem;
  }
}

.next-course .start-next {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 2.2rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

@media (max-width: 575px) {
  .outside-hamburger {
    margin-top: -0.3rem;
  }
}

.at-style-responsive .at-share-btn {
  -webkit-flex: 1;
  -ms-flex: 1;
  -moz-flex: 1;
  -o-flex: 1;
  flex: 1;
  border-radius: 5px !important;
}

@media (max-width: 575px) {
  .welcome-text {
    display: none;
  }
}

.read-booklet {
  color: #4A494A;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.settings-menu-container li {
  list-style: none;
  padding: 11px 15px;
  cursor: pointer;
  border-radius: 2px;
}

.settings-menu-container li.active {
  background: #e19118;
  color: white;
}

.settings-menu-container h5 {
  margin-bottom: 1rem;
}

.settings-container h6 {
  margin-bottom: 1rem;
}

.settings-container {
  background-color: #fff;
  border: solid 1px #dbe2e8;
  padding: 60px;
}

.settings-container .form-group {
  margin-bottom: 2rem;
}

.save-cancel {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 0;
}

.save-cancel .main-button {
  -webkit-flex: 0 0 150px;
  -ms-flex: 0 0 150px;
  -moz-flex: 0 0 150px;
  -o-flex: 0 0 150px;
  flex: 0 0 150px;
  width: auto;
}

.save-cancel .main-button:last-of-type {
  margin-left: 1rem;
}

[off-canvas] {
  z-index: 10;
  width: 320px;
}

.next-course-wrapper {
  width: 100%;
  border: 2px solid #855e65;
  padding: 0.8rem 1.1rem;
}

.next-course-wrapper .next-course-cta {
  margin-bottom: 0.7rem;
  font-weight: bold;
  font-size: 1.3rem;
}

.notifications-icon {
  -webkit-align-self: center;
  -ms-align-self: center;
  -moz-align-self: center;
  -o-align-self: center;
  align-self: center;
  -webkit-flex: 2;
  -ms-flex: 2;
  -moz-flex: 2;
  -o-flex: 2;
  flex: 2;
  text-align: right;
  font-size: 1.9rem;
  margin-left: 1rem;
}

.notifications-icon a:focus, .notifications-icon a:active {
  outline: none;
}

.no-notifications {
  margin: 70px auto;
  text-align: center;
  font-size: 0.75rem;
  color: #888;
  height: 150px;
}

.no-notifications .icon {
  font-size: 6rem;
  height: 9rem;
}

.popover {
  border-radius: 0;
  max-width: none;
  left: auto !important;
  right: 0;
  transform: none !important;
  top: 55px !important;
}

.popover .arrow {
  left: 95% !important;
}

.popover .popover-title {
  background-color: white;
}

.popover .popover-body {
  background-color: #f7f7f7;
  width: 350px;
}

.popover .close {
  margin-top: -3px;
}

.popover-header {
  font-size: 0.8rem;
}

.notification-text {
  font-size: 0.8rem;
  line-height: 0.9rem;
  margin-top: 0.2rem;
  color: #6A6A6A;
}

.share-with-friend {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #E6ECDF;
}

.notification-time {
  font-size: 0.5em;
}

.resume-box {
  padding: 30px;
  background: #f7f7f9;
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-top: 3rem;
}

.resume-box .lesson-no {
  line-height: 1.1;
  font-weight: bold;
}

.resume-box .assignment-title {
  -webkit-flex: 1;
  -ms-flex: 1;
  -moz-flex: 1;
  -o-flex: 1;
  flex: 1;
  font-weight: bold;
}

.lessons-wrapper .lesson-container {
  border-radius: 0;
  margin-top: 2rem;
}

.lessons-wrapper .lesson-container a {
  display: block;
  width: 100%;
  font-weight: normal;
  color: black;
}

.lessons-wrapper .lesson-container .checkbox {
  left: 11px;
  top: 14px;
  border-color: black;
}

.lessons-wrapper .lesson-container .menu-collapse:before {
  color: #e19118;
  right: 0;
  font-size: 2rem;
}

.lessons-wrapper .lesson-container .card-header.active {
  background: #e19118;
}

.lessons-wrapper .lesson-container .card-header.active a {
  color: white;
}

.lessons-wrapper .lesson-container .card-header.active a:after {
  color: white;
}

.course-overview-steps {
  list-style: none;
  padding: 0;
}

.course-overview-steps .course-item {
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: relative;
  width: 100%;
  border-top: 1px solid #E7EDEF;
}

.course-overview-steps .course-item.completed .checkbox {
  display: none;
}

.course-overview-steps .course-item.completed a {
  color: #e19118;
}

.course-overview-steps .course-item.completed:before {
  position: absolute;
  left: 1rem;
  font-family: icomoon;
  content: "\e90e";
  top: 0.6rem;
  color: #e19118;
}

.course-overview-steps .course-item a {
  width: 100%;
  display: block;
  padding: 0.618em 0.618em 0.618em 2.25rem;
}

[dir="rtl"] .course-overview-steps .course-item a {
  padding: 0.618em 2.25rem 0.618em 0.618em;
}

.course-overview-steps .course-item:hover {
  background: #f5f9fa;
}

.logged-in .guest-only,
.logged-in .hide-for-signed-in {
  display: none !important;
}

.welcome-box {
  padding: 30px;
  background: #f7f7f9;
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 2rem;
}

.start-course-button .main-button,
.continue-course-button .main-button {
  min-height: 3rem;
}

.btn-outline-primary:hover {
  background: #e19118;
}

.command-button .button-text,
.landing-banner-body .main-button .button-text {
  line-height: 1.1em;
}

.lesson-content {
  padding: 0 1.7rem;
}

@media (min-width: 576px) {
  .lesson-content {
    padding: inherit;
  }
}

.lesson-content h2 {
  margin-bottom: 1rem;
  line-height: 1.2em;
}

.lesson-content p, .lesson-content li {
  margin-bottom: 0.75rem;
  line-height: 1.5em;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #e19118;
}

@media (min-width: 576px) {
  .welcome-modal.modal.show .modal-dialog {
    -webkit-transform: translateY( calc(50vh - 100%));
    -ms-transform: translateY( calc(50vh - 100%));
    -moz-transform: translateY( calc(50vh - 100%));
    -o-transform: translateY( calc(50vh - 100%));
    transform: translateY( calc(50vh - 100%));
  }
}

.welcome-modal .modal-content {
  padding: 2rem;
}

.welcome-modal .close {
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 0.5rem;
  cursor: pointer;
}

.landing-top > .container {
  z-index: 1;
}

.newsletter-checkbox {
  width: auto !important;
  margin-right: 0.5rem !important;
  height: auto !important;
}

#pre-footer-links, #footer-center, #copyright {
  max-width: 1080px;
  width: 90%;
  margin: auto;
  padding-top: 15px;
  font-size: 11px;
}

.footer {
  background: #f2f2f2;
  margin-top: 25px;
  clear: both;
  padding-bottom: 1rem;
}

.footer a:hover {
  color: #000;
  text-decoration: underline;
}

#pre-footer-links .share-logo {
  color: #334653;
  color: rgba(0, 0, 0, 0.5);
}

#pre-footer-links .share-logo:hover {
  color: orange;
  text-decoration: none;
}

.footer-lang-he {
  font-size: 1.3em;
}

#pre-footer-links {
  border-top: none;
  padding-bottom: 0;
  padding-top: 5px;
}

#pre-footer-links .share-logo {
  display: block;
  float: right;
  height: 28px;
  line-height: 28px;
  width: 28px;
  margin-top: 10px;
  text-align: center;
  color: #eee;
  font-size: 22px;
}

#pre-footer-links .share-no-break {
  width: 150px;
  float: right;
  padding-bottom: 4px;
}

#footer-center #footer-lang {
  border-right: 1px solid #405d7b;
}

#footer-center > div {
  min-height: 320px;
  margin-bottom: 30px;
  margin-right: 20px;
}

#footer-center > div:last-child {
  border-right: none;
  margin-right: 0;
}

#footer-center a {
  display: block;
  line-height: 1.3em;
  margin-top: 5px;
  color: #327088;
}

#footer-center h5 {
  font-size: 12px;
  color: #000000;
}

:lang(de) #pre-footer-links {
  font-size: 12px;
  letter-spacing: 1px;
}

:lang(de) #footer-center {
  font-size: 12px;
  letter-spacing: 1px;
}

:lang(de) #copyright {
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-col {
  float: left;
  width: 20%;
  padding: 10px;
}

#footer-lang {
  width: 43%;
}

#footer-lang .footer-col {
  width: 50%;
  padding-left: 0;
}

@media (max-width: 640px) {
  #footer-center {
    min-width: 175px;
  }
  #footer-center > div {
    border-right: none;
    min-height: 10px;
    margin-bottom: 0;
    margin-right: 0;
  }
  #footer-center a {
    display: inline;
    line-height: 1.2em;
    margin-top: 4px;
  }
  #footer-center a:after {
    content: " • ";
  }
  #footer-center a:last-child:after {
    content: " ";
  }
  #copyright {
    min-width: 175px;
  }
  #copyright .copyright-right {
    float: none;
  }
  .footer-col {
    width: 100%;
  }
  #footer-lang {
    width: 100%;
  }
  #footer-lang div {
    display: inline;
  }
  #footer-lang .footer-col {
    width: 100%;
    padding: 0;
    float: none;
  }
}

:lang(he) .footer a.footer-lang-en {
  direction: ltr;
  text-align: right;
}

:lang(he) .footer a.footer-lang-es {
  direction: ltr;
  text-align: right;
}

#DIV_1 {
  box-sizing: border-box;
  color: #212529;
  cursor: pointer;
  display: flex;
  height: 309px;
  text-decoration: none solid #212529;
  text-size-adjust: 100%;
  width: 359.609px;
  column-rule-color: #212529;
  -webkit-locale: "en";
  perspective-origin: 179.797px 154.5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-emphasis-color: #212529;
  -webkit-text-fill-color: #212529;
  -webkit-text-stroke-color: #212529;
  transform-origin: 179.797px 154.5px;
  caret-color: #212529;
  border: 0px none #212529;
  font: normal normal normal normal 11px / 16.5px -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  outline: #212529 none 0px;
  transition: all 0.25s ease 0s;
  -webkit-border-after: 0px none #212529;
  -webkit-border-before: 0px none #212529;
  -webkit-border-end: 0px none #212529;
  -webkit-border-start: 0px none #212529;
  -webkit-transition: all 0.25s ease 0s;
  -webkit-transform-origin: 179.797px 154.5px;
}

/*#DIV_1*/
#DIV_2 {
  bottom: 0px;
  box-sizing: border-box;
  color: #212529;
  cursor: pointer;
  display: flex;
  height: 309px;
  left: 0px;
  min-height: auto;
  min-width: auto;
  position: relative;
  right: 0px;
  text-align: center;
  text-decoration: none solid #212529;
  text-size-adjust: 100%;
  top: 0px;
  width: 359.609px;
  column-rule-color: #212529;
  align-self: stretch;
  -webkit-locale: "en";
  perspective-origin: 179.797px 154.5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-emphasis-color: #212529;
  -webkit-text-fill-color: #212529;
  -webkit-text-stroke-color: #212529;
  transform-origin: 179.797px 154.5px;
  caret-color: #212529;
  background: white none repeat scroll 0% 0%/auto padding-box border-box;
  border-top: 5px solid #e19118;
  border-right: 1px solid #9b9b9b;
  border-bottom: 1px solid #9b9b9b;
  border-left: 1px solid #9b9b9b;
  flex-flow: column nowrap;
  font: normal normal normal normal 11px / 16.5px -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  outline: #212529 none 0px;
  padding: 15px;
  transition: background 0.25s ease 0s, box-shadow 0.25s ease 0s;
  -webkit-border-after: 1px solid #9b9b9b;
  -webkit-border-before: 5px solid #e19118;
  -webkit-border-end: 1px solid #9b9b9b;
  -webkit-border-start: 1px solid #9b9b9b;
  -webkit-transition: background 0.25s ease 0s, box-shadow 0.25s ease 0s;
  -webkit-transform-origin: 179.797px 154.5px;
}

/*#DIV_2*/
#A_3 {
  box-sizing: border-box;
  color: #48503f;
  display: block;
  height: 36px;
  min-height: auto;
  min-width: auto;
  text-align: center;
  text-decoration: none solid #48503f;
  text-size-adjust: 100%;
  touch-action: manipulation;
  width: 327.609px;
  column-rule-color: #48503f;
  -webkit-locale: "en";
  perspective-origin: 163.797px 18px;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-decorations-in-effect: none;
  -webkit-text-emphasis-color: #48503f;
  -webkit-text-fill-color: #48503f;
  -webkit-text-stroke-color: #48503f;
  transform-origin: 163.797px 18px;
  caret-color: #48503f;
  border: 0px none #48503f;
  font: normal normal normal normal 11px / 14.3px -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 5px 0px 0px;
  outline: #48503f none 0px;
  -webkit-border-after: 0px none #48503f;
  -webkit-border-before: 0px none #48503f;
  -webkit-border-end: 0px none #48503f;
  -webkit-border-start: 0px none #48503f;
  -webkit-transform-origin: 163.797px 18px;
}

/*#A_3*/
#H4_4 {
  box-sizing: border-box;
  color: #e19118;
  height: 26px;
  text-align: center;
  text-decoration: none solid #e19118;
  text-size-adjust: 100%;
  width: 327.609px;
  column-rule-color: #e19118;
  -webkit-locale: "en";
  perspective-origin: 163.797px 13px;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-emphasis-color: #e19118;
  -webkit-text-fill-color: #e19118;
  -webkit-text-stroke-color: #e19118;
  transform-origin: 163.797px 13px;
  caret-color: #e19118;
  border: 0px none #e19118;
  font: normal normal bold normal 24px / 26.4px "Ubuntu Condensed", sans-serif;
  margin: 0px 0px 10px;
  outline: #e19118 none 0px;
  -webkit-border-after: 0px none #e19118;
  -webkit-border-before: 0px none #e19118;
  -webkit-border-end: 0px none #e19118;
  -webkit-border-start: 0px none #e19118;
  -webkit-transform-origin: 163.797px 13px;
}

/*#H4_4*/
#P_5 {
  box-sizing: border-box;
  color: #212529;
  cursor: pointer;
  height: 138px;
  min-height: auto;
  min-width: auto;
  text-align: left;
  text-decoration: none solid #212529;
  text-size-adjust: 100%;
  width: 327.609px;
  column-rule-color: #212529;
  -webkit-locale: "en";
  perspective-origin: 163.797px 69px;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-emphasis-color: #212529;
  -webkit-text-fill-color: #212529;
  -webkit-text-stroke-color: #212529;
  transform-origin: 163.797px 69px;
  caret-color: #212529;
  border: 0px none #212529;
  font: normal normal normal normal 16px / 25.6px -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0px;
  outline: #212529 none 0px;
  padding: 10px 0px 0px;
  -webkit-border-after: 0px none #212529;
  -webkit-border-before: 0px none #212529;
  -webkit-border-end: 0px none #212529;
  -webkit-border-start: 0px none #212529;
  -webkit-transform-origin: 163.797px 69px;
}

/*#P_5*/
#A_6 {
  box-sizing: border-box;
  color: #48503f;
  display: inline-block;
  height: 20px;
  text-align: left;
  text-decoration: none solid #48503f;
  text-size-adjust: 100%;
  touch-action: manipulation;
  width: 77.7031px;
  column-rule-color: #48503f;
  -webkit-locale: "en";
  perspective-origin: 38.8438px 10px;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-decorations-in-effect: none;
  -webkit-text-emphasis-color: #48503f;
  -webkit-text-fill-color: #48503f;
  -webkit-text-stroke-color: #48503f;
  transform-origin: 38.8438px 10px;
  caret-color: #48503f;
  border: 0px none #48503f;
  font: normal normal normal normal 16px / 20.8px -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 5px 0px 0px;
  outline: #48503f none 0px;
  -webkit-border-after: 0px none #48503f;
  -webkit-border-before: 0px none #48503f;
  -webkit-border-end: 0px none #48503f;
  -webkit-border-start: 0px none #48503f;
  -webkit-transform-origin: 38.8438px 10px;
}

/*#A_6*/
#HR_7 {
  color: #212529;
  cursor: pointer;
  min-height: auto;
  min-width: auto;
  text-align: center;
  text-decoration: none solid #212529;
  text-size-adjust: 100%;
  width: 327.609px;
  column-rule-color: #212529;
  -webkit-locale: "en";
  perspective-origin: 163.797px 0.5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-emphasis-color: #212529;
  -webkit-text-fill-color: #212529;
  -webkit-text-stroke-color: #212529;
  transform-origin: 163.797px 0.5px;
  caret-color: #212529;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 0px none #212529;
  border-bottom: 0px none #212529;
  border-left: 0px none #212529;
  font: normal normal normal normal 11px / 16.5px -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 16px 0px;
  outline: #212529 none 0px;
  -webkit-border-after: 0px none #212529;
  -webkit-border-before: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-border-end: 0px none #212529;
  -webkit-border-start: 0px none #212529;
  -webkit-transform-origin: 163.797px 0.5px;
}

/*#HR_7*/
#A_8 {
  box-sizing: border-box;
  color: #48503f;
  display: block;
  height: 56px;
  min-height: auto;
  min-width: auto;
  text-align: center;
  text-decoration: none solid #48503f;
  text-size-adjust: 100%;
  touch-action: manipulation;
  width: 327.609px;
  column-rule-color: #48503f;
  -webkit-locale: "en";
  perspective-origin: 163.797px 28px;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-decorations-in-effect: none;
  -webkit-text-emphasis-color: #48503f;
  -webkit-text-fill-color: #48503f;
  -webkit-text-stroke-color: #48503f;
  transform-origin: 163.797px 28px;
  caret-color: #48503f;
  border: 0px none #48503f;
  font: normal normal normal normal 11px / 14.3px -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 5px 0px 0px;
  outline: #48503f none 0px;
  -webkit-border-after: 0px none #48503f;
  -webkit-border-before: 0px none #48503f;
  -webkit-border-end: 0px none #48503f;
  -webkit-border-start: 0px none #48503f;
  -webkit-transform-origin: 163.797px 28px;
}

/*#A_8*/
#IMG_9 {
  box-sizing: border-box;
  color: #48503f;
  height: 56px;
  max-width: 100%;
  text-align: center;
  text-decoration: none solid #48503f;
  text-size-adjust: 100%;
  vertical-align: middle;
  width: 327px;
  column-rule-color: #48503f;
  -webkit-locale: "en";
  perspective-origin: 163.5px 28px;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-emphasis-color: #48503f;
  -webkit-text-fill-color: #48503f;
  -webkit-text-stroke-color: #48503f;
  transform-origin: 163.5px 28px;
  caret-color: #48503f;
  border: 0px none #48503f;
  font: normal normal normal normal 11px / 14.3px -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  outline: #48503f none 0px;
  -webkit-border-after: 0px none #48503f;
  -webkit-border-before: 0px none #48503f;
  -webkit-border-end: 0px none #48503f;
  -webkit-border-start: 0px none #48503f;
  -webkit-transform-origin: 163.5px 28px;
}

/*#IMG_9*/
.menu-wrapper.not-inited {
  display: none;
}

.course-nav {
  -webkit-flex: 0 0 320px;
  -ms-flex: 0 0 320px;
  -moz-flex: 0 0 320px;
  -o-flex: 0 0 320px;
  flex: 0 0 320px;
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  color: white;
  z-index: 1000;
  width: 320px;
  -webkit-transform: translateX(-320px);
  -ms-transform: translateX(-320px);
  -moz-transform: translateX(-320px);
  -o-transform: translateX(-320px);
  transform: translateX(-320px);
  position: fixed;
  top: 0;
  bottom: 0;
}

[dir="rtl"] .course-nav {
  -webkit-transform: translateX(320px) !important;
  -ms-transform: translateX(320px) !important;
  -moz-transform: translateX(320px) !important;
  -o-transform: translateX(320px) !important;
  transform: translateX(320px) !important;
}

.course-nav.shown {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}

[dir="rtl"] .course-nav.shown {
  -webkit-transform: translateX(0px) !important;
  -ms-transform: translateX(0px) !important;
  -moz-transform: translateX(0px) !important;
  -o-transform: translateX(0px) !important;
  transform: translateX(0px) !important;
}

@media (max-width: 575px) {
  .course-nav.shown {
    -webkit-transform: translateX(0px) !important;
    -ms-transform: translateX(0px) !important;
    -moz-transform: translateX(0px) !important;
    -o-transform: translateX(0px) !important;
    transform: translateX(0px) !important;
    width: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

.course-nav.not-inited {
  visibility: hidden;
}

.course-nav:before {
  -webkit-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  content: ' ';
  position: absolute;
  left: -1000px;
  right: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.24);
  z-index: -1;
}

.course-nav.transition-completed:before {
  left: -15px;
}

@media (max-width: 575px) {
  .course-nav {
    position: fixed;
    top: 0;
    height: 100vh;
  }
}

.course-nav .nav-tabs {
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  font-size: 1.3rem;
  border: none;
}

.course-nav .nav-tabs .nav-item {
  -webkit-flex: 1;
  -ms-flex: 1;
  -moz-flex: 1;
  -o-flex: 1;
  flex: 1;
  text-align: center;
}

.course-nav .nav-tabs .nav-link {
  padding: 0.3rem 0;
  color: black;
}

.course-nav .nav-tabs .nav-link.active {
  background: none;
  border: none;
  border-bottom: 2px solid white;
  color: white;
}

.course-nav .nav-tabs .nav-link.active:focus, .course-nav .nav-tabs .nav-link.active:hover {
  border-bottom: 2px solid white;
}

.course-nav .nav-tabs .nav-link:focus, .course-nav .nav-tabs .nav-link:hover {
  border: none;
}

.course-nav .nav-tabs .nav-link.toc-toggler {
  padding-top: 0.6rem;
}

.course-nav .nav-tabs .nav-link.toc-toggler .icon-book {
  font-size: 1.5rem;
  padding-top: 3.9rem;
}

.course-nav .nav-tabs-wrapper {
  border-bottom: 1px solid #1c262f;
  border-top: 1px solid #1c262f;
}

.course-nav .nav {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  padding: 0 2em;
  list-style: none;
}

@keyframes toggleSidebar {
  from {
    margin-left: -320px;
  }
  to {
    margin-left: 0px;
  }
}

.side-nav {
  -webkit-transition: padding 0.25s ease-out;;
  -ms-transition: padding 0.25s ease-out;;
  -moz-transition: padding 0.25s ease-out;;
  -o-transition: padding 0.25s ease-out;;
  transition: padding 0.25s ease-out;;
  background: #ab877a;
  padding-top: 5.3rem;
  min-height: 100%;
}

.side-nav.down-the-page {
  padding-top: 0;
}

@media (max-width: 575px) {
  .side-nav .sidebar-header {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .side-nav {
    padding-top: 5.5rem;
  }
  .side-nav.down-the-page {
    padding-top: 0.2rem;
  }
}

@media (max-width: 575px) {
  .side-nav {
    padding-top: 0rem;
  }
  .side-nav.down-the-page {
    padding-top: 0rem;
  }
}

.sidebar-header {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  position: relative;
  font-family: "Ubuntu Condensed", sans-serif;
  line-height: 1.5rem;
  overflow: hidden;
  padding: 0 1rem;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

@media (min-width: 768px) {
  .sidebar-header {
    padding: 0 1rem 1rem;
    padding-bottom: 0;
  }
}

.sidebar-header span {
  display: block;
}

.sidebar-header .sidebar-header-title {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  overflow: hidden;
  text-transform: uppercase;
}

.sidebar-header .hamburger .hamburger-inner, .sidebar-header .hamburger .hamburger-inner::before, .sidebar-header .hamburger .hamburger-inner::after {
  background-color: white;
}

.downloads li {
  list-style: none;
  position: relative;
}

.downloads li:after {
  position: absolute;
  top: 0.2rem;
  right: 1rem;
  font-family: icomoon;
  content: "\e90c";
}

.front .menu-toggle-wrapper.is_stuck {
  position: absolute !important;
  background: none !important;
}

.front .outside-hamburger {
  display: none;
}

@media (max-width: 575px) {
  .front .lesson-name {
    padding-left: 1rem;
  }
}

.menu-toggle-wrapper {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 10;
  top: 55px;
}

.front .menu-toggle-wrapper {
  position: absolute !important;
  background: none !important;
  top: 77px;
}

@media (min-width: 768px) {
  .menu-toggle-wrapper {
    top: 71px;
  }
  .front .menu-toggle-wrapper {
    top: 80px;
  }
}

@media (min-width: 992px) {
  .menu-toggle-wrapper {
    top: 77px;
  }
  .front .menu-toggle-wrapper {
    top: 110px;
  }
}

.lesson-progress-wrapper {
  -webkit-transition: 0.75s all ease-out;
  -ms-transition: 0.75s all ease-out;
  -moz-transition: 0.75s all ease-out;
  -o-transition: 0.75s all ease-out;
  transition: 0.75s all ease-out;
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  -moz-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 100;
  background: #ab877a;
  box-shadow: -2px 2px 14px 0px black;
  height: 39px;
  padding-bottom: 0.8rem;
  z-index: 211;
}

.lesson-progress-wrapper.hidden-bar {
  -webkit-transform: translateY(250px);
  -ms-transform: translateY(250px);
  -moz-transform: translateY(250px);
  -o-transform: translateY(250px);
  transform: translateY(250px);
}

@media (max-width: 575px) {
  .lesson-progress-wrapper {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.banner-progress-wrapper {
  width: 100%;
  z-index: 1;
}

@media (max-width: 575px) {
  .lesson-progress {
    padding: 0 1.3rem;
  }
}

.lesson-progress .progress-bar {
  position: relative;
  background: #fff;
  height: 11px;
  border: 3px solid #d5d5d5;
  border-radius: 15px;
  background: repeating-linear-gradient(to right, #fff, #fff 40px, #e6d1b3 40px, #e6d1b3 42px);
  background: -moz-repeating-linear-gradient(to right, #fff, #fff 40px, #e6d1b3 40px, #e6d1b3 42px);
  background: -webkit-repeating-linear-gradient(to right, #fff, #fff 40px, #e6d1b3 40px, #e6d1b3 42px);
  background: -webkit-repeating-linear-gradient(to right, #fff, #fff 40px, #e6d1b3 40px, #e6d1b3 42px);
  background: -o-repeating-linear-gradient(to right, #fff, #fff 40px, #e6d1b3 40px, #e6d1b3 42px);
  background: -ms-repeating-linear-gradient(to right, #fff, #fff 40px, #e6d1b3 40px, #e6d1b3 42px);
}

@media (min-width: 768px) {
  .lesson-progress .progress-bar {
    height: 15px;
  }
}

.lesson-progress .progress-bar .ui-progress {
  position: absolute;
  background: #e19118;
  background: repeating-linear-gradient(to right, #e19118, #e19118 40px, #e6d1b3 40px, #e6d1b3 42px);
  background: -moz-repeating-linear-gradient(to right, #e19118, #e19118 40px, #e6d1b3 40px, #e6d1b3 42px);
  background: -webkit-repeating-linear-gradient(to right, #e19118, #e19118 40px, #e6d1b3 40px, #e6d1b3 42px);
  background: -webkit-repeating-linear-gradient(to right, #e19118, #e19118 40px, #e6d1b3 40px, #e6d1b3 42px);
  background: -o-repeating-linear-gradient(to right, #e19118, #e19118 40px, #e6d1b3 40px, #e6d1b3 42px);
  background: -ms-repeating-linear-gradient(to right, #e19118, #e19118 40px, #e6d1b3 40px, #e6d1b3 42px);
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.lesson-progress-wrapper-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.video-js .vjs-menu-button-inline.vjs-slider-active, .video-js .vjs-menu-button-inline:focus, .video-js .vjs-menu-button-inline:hover {
  width: 10em;
}

.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 10em;
}

.video-js .vjs-controls-disabled .vjs-big-play-button {
  display: none !important;
}

.video-js .vjs-control {
  width: 3em;
}

.video-js .vjs-menu-button-inline:before {
  width: 1.5em;
}

.video-js .vjs-poster {
  background-color: #fff;
}

.vjs-menu-button-inline .vjs-menu {
  left: 3em;
}

.vjs-paused.vjs-has-started.video-js .vjs-big-play-button {
  display: block;
}

.video-js.vjs-ended .vjs-big-play-button, .video-js.vjs-paused .vjs-big-play-button {
  display: block;
}

.video-js .vjs-load-progress div {
  display: none !important;
}

.vjs-seeking .vjs-big-play-button, .vjs-waiting .vjs-big-play-button {
  display: none !important;
}

.video-js {
  font-size: 14px;
  overflow: hidden;
}

.video-js .vjs-mouse-display:after, .video-js .vjs-play-progress:after {
  padding: 0 0.4em 0.3em;
}

.video-js.vjs-ended .vjs-loading-spinner {
  display: none;
}

.video-js.vjs-ended .vjs-big-play-button {
  display: block !important;
}

.video-js *, .video-js:after, .video-js:before {
  box-sizing: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.video-js.vjs-fullscreen {
  width: 100% !important;
  height: 100% !important;
}

.video-js.vjs-fullscreen .vjs-tech {
  width: 100% !important;
  height: 100% !important;
}

.video-js .vjs-control {
  color: inherit;
}

.video-js .vjs-menu-button-inline:hover, .video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 8.35em;
}

.video-js .vjs-volume-menu-button.vjs-volume-menu-button-horizontal:hover .vjs-menu .vjs-menu-content {
  height: 3em;
  width: 6.35em;
}

.video-js .vjs-control:focus:before, .video-js .vjs-control:hover:before {
  text-shadow: 0 0 1em #fff, 0 0 1em #fff, 0 0 1em #fff;
}

.video-js .vjs-spacer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.video-js .vjs-time-control {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-flex: 0 1 auto;
  -moz-box-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: auto;
}

.video-js .vjs-time-control.vjs-time-divider {
  width: 14px;
}

.video-js .vjs-time-control.vjs-time-divider div {
  width: 100%;
  text-align: center;
}

.video-js .vjs-time-control.vjs-current-time {
  margin-left: 1em;
}

.video-js .vjs-time-control .vjs-current-time-display, .video-js .vjs-time-control .vjs-duration-display {
  width: 100%;
}

.video-js .vjs-time-control .vjs-current-time-display {
  text-align: right;
}

.video-js .vjs-time-control .vjs-duration-display {
  text-align: left;
}

.video-js .vjs-play-progress:before, .video-js .vjs-progress-control .vjs-play-progress:before, .video-js .vjs-remaining-time {
  display: none;
}

.video-js .vjs-volume-level:after, .video-js .vjs-volume-level:before {
  display: none;
}

.video-js.vjs-live .vjs-time-control.vjs-current-time, .video-js.vjs-live .vjs-time-control.vjs-duration, .video-js.vjs-live .vjs-time-control.vjs-time-divider {
  display: none;
}

.video-js.vjs-no-flex .vjs-time-control {
  display: table-cell;
  width: 4em;
}

.video-js.vjs-no-flex .vjs-time-control.vjs-remaining-time {
  display: none;
}

.video-js .vjs-progress-control {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: .5em;
  top: -0.5em;
}

.video-js .vjs-progress-control .vjs-load-progress, .video-js .vjs-progress-control .vjs-play-progress {
  height: 100%;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  height: 100%;
  margin: 0;
}

.video-js .vjs-progress-control:hover {
  height: 1.5em;
  top: -1.5em;
}

.video-js .vjs-control-bar {
  -webkit-transition: -webkit-transform .1s ease 0s;
  -moz-transition: -moz-transform .1s ease 0s;
  -ms-transition: -ms-transform .1s ease 0s;
  -o-transition: -o-transform .1s ease 0s;
  transition: transform 0.1s ease 0s;
}

.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-active .vjs-control-bar, .video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-inactive .vjs-control-bar {
  visibility: visible;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(3em);
  -moz-transform: translateY(3em);
  -ms-transform: translateY(3em);
  -o-transform: translateY(3em);
  transform: translateY(3em);
  -webkit-transition: -webkit-transform 1s ease 0s;
  -moz-transition: -moz-transform 1s ease 0s;
  -ms-transition: -ms-transform 1s ease 0s;
  -o-transition: -o-transform 1s ease 0s;
  transition: transform 1s ease 0s;
}

.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-active .vjs-control-bar, .video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-control-bar {
  visibility: visible;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(3em);
  -moz-transform: translateY(3em);
  -ms-transform: translateY(3em);
  -o-transform: translateY(3em);
  transform: translateY(3em);
  -webkit-transition: -webkit-transform 1s ease 0s;
  -moz-transition: -moz-transform 1s ease 0s;
  -ms-transition: -ms-transform 1s ease 0s;
  -o-transition: -o-transform 1s ease 0s;
  transition: transform 1s ease 0s;
}

.video-js.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-control-bar {
  visibility: visible;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(3em);
  -moz-transform: translateY(3em);
  -ms-transform: translateY(3em);
  -o-transform: translateY(3em);
  transform: translateY(3em);
  -webkit-transition: -webkit-transform 1s ease 0s;
  -moz-transition: -moz-transform 1s ease 0s;
  -ms-transition: -ms-transform 1s ease 0s;
  -o-transition: -o-transform 1s ease 0s;
  transition: transform 1s ease 0s;
}

.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-active .vjs-progress-control, .video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-inactive .vjs-progress-control {
  height: .25em;
  top: -.25em;
  pointer-events: none;
  -webkit-transition: height 1s,top 1s;
  -moz-transition: height 1s,top 1s;
  -ms-transition: height 1s,top 1s;
  -o-transition: height 1s,top 1s;
  transition: height 1s, top 1s;
}

.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-active .vjs-progress-control, .video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-progress-control {
  height: .25em;
  top: -.25em;
  pointer-events: none;
  -webkit-transition: height 1s,top 1s;
  -moz-transition: height 1s,top 1s;
  -ms-transition: height 1s,top 1s;
  -o-transition: height 1s,top 1s;
  transition: height 1s, top 1s;
}

.video-js.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-progress-control {
  height: .25em;
  top: -.25em;
  pointer-events: none;
  -webkit-transition: height 1s,top 1s;
  -moz-transition: height 1s,top 1s;
  -ms-transition: height 1s,top 1s;
  -o-transition: height 1s,top 1s;
  transition: height 1s, top 1s;
}

.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-active.vjs-fullscreen .vjs-progress-control, .video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-inactive.vjs-fullscreen .vjs-progress-control {
  opacity: 0;
  -webkit-transition: opacity 1s ease 1s;
  -moz-transition: opacity 1s ease 1s;
  -ms-transition: opacity 1s ease 1s;
  -o-transition: opacity 1s ease 1s;
  transition: opacity 1s ease 1s;
}

.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-active.vjs-fullscreen .vjs-progress-control, .video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-inactive.vjs-fullscreen .vjs-progress-control {
  opacity: 0;
  -webkit-transition: opacity 1s ease 1s;
  -moz-transition: opacity 1s ease 1s;
  -ms-transition: opacity 1s ease 1s;
  -o-transition: opacity 1s ease 1s;
  transition: opacity 1s ease 1s;
}

.video-js.vjs-has-started.vjs-playing.vjs-user-inactive.vjs-fullscreen .vjs-progress-control {
  opacity: 0;
  -webkit-transition: opacity 1s ease 1s;
  -moz-transition: opacity 1s ease 1s;
  -ms-transition: opacity 1s ease 1s;
  -o-transition: opacity 1s ease 1s;
  transition: opacity 1s ease 1s;
}

.video-js.vjs-live .vjs-live-control {
  margin-left: 1em;
}

.video-js .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-left: -1em;
  margin-top: -1em;
  width: 2em;
  height: 2em;
  line-height: 2em;
  border: none;
  border-radius: 50%;
  font-size: 3.5em;
  background-color: rgba(0, 0, 0, 0.45);
  color: #fff;
  -webkit-transition: border-color .4s,outline .4s,background-color .4s;
  -moz-transition: border-color .4s,outline .4s,background-color .4s;
  -ms-transition: border-color .4s,outline .4s,background-color .4s;
  -o-transition: border-color .4s,outline .4s,background-color .4s;
  transition: border-color 0.4s, outline 0.4s, background-color 0.4s;
}

.video-js .vjs-menu-button-popup .vjs-menu {
  left: -3em;
}

.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: transparent;
  width: 12em;
  left: -1.5em;
  padding-bottom: 0.5em;
}

.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-item, .video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-title {
  background-color: #151b17;
  margin: .3em 0;
  padding: .5em;
  border-radius: 0.3em;
}

.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-item.vjs-selected {
  background-color: #2483d5;
}

.video-js .vjs-big-play-button {
  background-color: rgba(0, 0, 0, 0.45);
  font-size: 2.5em;
  border-radius: 50%;
  height: 2em !important;
  line-height: 2em !important;
  margin-top: -1em !important;
}

.video-js:hover .vjs-big-play-button {
  background-color: rgba(225, 145, 24, 0.9);
}

.video-js .vjs-big-play-button:focus, .video-js .vjs-big-play-button:active {
  background-color: rgba(158, 169, 145, 0.9);
}

.video-js .vjs-loading-spinner {
  border-color: rgba(36, 131, 213, 0.8);
}

.video-js .vjs-control-bar2 {
  background-color: #000000;
}

.video-js .vjs-control-bar {
  background-color: rgba(0, 0, 0, 0.3) !important;
  color: #ffffff;
  font-size: 14px;
}

.video-js .vjs-play-progress, .video-js .vjs-volume-level {
  background-color: #2483d5;
}

.restore-modal,
.login-modal {
  margin: 0 auto;
  max-width: 700px;
}

@media (max-width: 575px) {
  .restore-modal,
  .login-modal {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

.restore-modal .modal-dialog,
.login-modal .modal-dialog {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .restore-modal .modal-dialog,
  .login-modal .modal-dialog {
    position: absolute;
    left: calc(50% - 286px);
    top: calc(50% - 322px);
  }
}

.restore-modal .close,
.login-modal .close {
  position: absolute;
  color: white;
  top: -1.6rem;
  right: -2rem;
  cursor: pointer;
}

.restore-modal .close:focus, .restore-modal .close:hover,
.login-modal .close:focus,
.login-modal .close:hover {
  outline: none;
}

@media (max-width: 575px) {
  .restore-modal .close,
  .login-modal .close {
    top: 10px;
    right: 10px;
    color: black;
  }
}

.restore-modal .nav-item,
.login-modal .nav-item {
  -webkit-flex: 1;
  -ms-flex: 1;
  -moz-flex: 1;
  -o-flex: 1;
  flex: 1;
  text-align: center;
}

.restore-modal .nav-item .nav-link,
.login-modal .nav-item .nav-link {
  border-radius: 0;
}

@media (min-width: 576px) {
  .restore-modal .nav-item .nav-link,
  .login-modal .nav-item .nav-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.restore-modal .tab-content,
.login-modal .tab-content {
  padding: 1rem;
}

@media (min-width: 576px) {
  .restore-modal .tab-content,
  .login-modal .tab-content {
    padding: 50px 60px 60px 60px;
    min-width: 510px;
  }
}

.restore-modal .log-in-header,
.login-modal .log-in-header {
  text-align: center;
  font-size: 2rem;
  font-variant: small-caps;
  margin-bottom: 0.5rem;
}

.restore-modal .log-in-description,
.login-modal .log-in-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #525c65;
  max-width: 460px;
  margin: 20px auto;
  text-align: center;
}

.restore-modal input,
.login-modal input {
  width: 100%;
  height: 44px;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  border: 1px solid #dbe2e8;
  font-size: 14px;
  box-shadow: 0 2px 2px 0 rgba(46, 60, 73, 0.05);
  border-radius: 2px;
  color: #2e3d49;
}

.restore-modal input:lang(el),
.login-modal input:lang(el) {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 13px;
}

.restore-modal input:focus, .restore-modal input:active,
.login-modal input:focus,
.login-modal input:active {
  outline: none;
}

.restore-modal .forgot-password,
.login-modal .forgot-password {
  text-align: center;
  margin-top: 0.4rem;
  font-size: 0.8rem;
}

.restore-modal hr,
.login-modal hr {
  width: 100%;
  height: 1px;
  background-color: #dbe2e8;
  border: none;
  margin: 30px 0;
}

.restore-modal .social-buttons,
.login-modal .social-buttons {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  margin-top: 0.6rem;
}

.restore-modal .social-button,
.login-modal .social-button {
  width: 100%;
  border: 1px solid #dbe2e8 !important;
  color: #757c81;
  height: 44px;
  padding: 0 25px;
  border-radius: 4px;
  background: transparent;
}

.restore-modal .social-button + button,
.login-modal .social-button + button {
  margin-left: 20px;
}

.restore-modal .button-label,
.login-modal .button-label {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  font-size: 0.8rem;
}

.restore-modal .button-label img,
.login-modal .button-label img {
  width: 24px;
  margin-right: 15px;
}

.round-number {
  display: inline-block;
  padding: 0.25rem;
  color: #fff;
  border-radius: 2em;
  border: 1px solid #e19118;
  background-color: #e19118;
  font-size: 0.8rem;
  height: 25px;
  width: 25px;
  margin-right: 0.5rem;
  font-family: "Ubuntu Condensed", sans-serif;
}

.faded {
  color: #777;
}

#quiz-counter {
  color: #e19118;
}

.quiz-container {
  padding: 0.25em;
  max-width: 650px;
  margin: 0 auto;
}

.quiz-container .lesson-progress {
  margin-top: 2rem;
}

.quiz-container a {
  text-decoration: none;
  color: #333;
}

#quiz-start-screen,
#quiz-results-screen,
#quiz-counter {
  text-align: center;
}

.question {
  font-size: 1.25em;
  font-weight: bold;
}

.answers {
  list-style: none;
  padding: 0;
}

.answers li {
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: relative;
}

.answers li.selected, .answers li:hover {
  background: #ccc;
}

.answers li.selected .checkbox::before, .answers li:hover .checkbox::before {
  background: #b3634d;
}

.answers .answer-option {
  -webkit-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  display: block;
  padding: 0.5em 1em 0.5em 2rem;
  margin-bottom: 0.5em;
  font-weight: normal;
  cursor: pointer;
  z-index: 20;
  position: relative;
}

[dir="rtl"] .answers .answer-option {
  padding: 0.5em 2rem 0.5em 1em;
}

#quiz-response {
  max-width: 400px;
  margin: 0 auto;
  font-size: 1.1rem;
}

#quiz-response .correct-answer,
#quiz-response .incorrect-answer {
  display: none;
  margin-top: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

#quiz-response.success {
  color: green;
}

#quiz-response.success .correct-answer {
  position: relative;
  display: block;
  clear: both;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

#quiz-response.incorrect {
  color: #c00;
}

#quiz-response.incorrect .incorrect-answer {
  position: relative;
  display: block;
  clear: both;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

#quiz-controls {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

.quiz-response-wrapper {
  position: relative;
  z-index: 100;
  background: #fafafa;
  color: #111;
  padding: 1rem;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  width: 100%;
  left: 0;
}

@media (min-width: 576px) {
  .quiz-response-wrapper {
    width: 36rem;
    left: calc(50% - 18rem);
  }
}

#quiz-results {
  font-size: 1.25em;
}

#quiz-buttons .main-button {
  margin: 1rem auto 0;
}

/* Quiz State Overrides */
.quiz-results-state #quiz-controls {
  background: none;
  padding: 0;
}

.quiz-results-state #quiz-buttons a {
  background: #e19118;
  color: #fff;
}

correct-answers {
  display: block;
  margin-bottom: 3rem;
}

correct-answers .question {
  margin-top: 1rem;
}

correct-answers .answers .answer-option {
  border-top: 1px solid #ddd;
  margin-bottom: 0;
  color: #000;
  cursor: default;
}

correct-answers .answers .list-group-item-warning:before {
  font-family: icomoon;
  content: "\e912";
  position: absolute;
  left: 0.7rem;
  font-size: 0.8rem;
  top: 0.7rem;
  color: #be0000;
}

correct-answers .answers .list-group-item-success:before {
  font-family: icomoon;
  content: "\e90e";
  position: absolute;
  left: 0.7rem;
  font-size: 0.8rem;
  top: 0.7rem;
  color: green;
}

correct-answers .answers li:hover {
  background: none;
}

.alert {
  border-radius: 0;
}

raw {
  display: inline-block;
}

.reference-link {
  text-align: right;
  font-size: 0.7rem;
  margin-top: 1rem;
  padding-right: 1rem;
  position: relative;
}

.reference-link a {
  color: #000;
}

.reference-link .reference-arrow {
  position: absolute;
  right: 2px;
  width: 11px;
}

.gcui-preset-gcui_inline_small {
  width: 140px;
  margin: 4px 20px 4px 0;
}

[dir="rtl"] .gcui-preset-gcui_inline_small {
  margin: 4px 0 4px 20px;
}

.gcui-preset-gcui_inline_default {
  width: 280px;
  margin: 4px 20px 4px 0;
}

[dir="rtl"] .gcui-preset-gcui_inline_default {
  margin: 4px 0 4px 20px;
}

.gcui-preset-gcui_inline_medium {
  width: 220px;
  margin: 4px 20px 4px 0;
}

[dir="rtl"] .gcui-preset-gcui_inline_medium {
  margin: 4px 0 4px 20px;
}

.caption-box {
  background-color: #f0f0f0;
  font-size: .8em;
  line-height: 1.3em;
  padding: .5em 1em;
  margin-bottom: 10px;
}

.gcui-inline-image {
  margin: 4px 20px 4px 0;
  float: left;
  clear: left;
  display: block;
}

[dir="rtl"] .gcui-inline-image {
  margin: 4px 0 4px 20px;
}

@media (min-width: 1140px) {
  body:not(.path-news):not(.path-newsletter) .gcui-preset-gcui_inline_small,
  body:not(.path-news):not(.path-newsletter) .gcui-inline-image {
    margin-left: -70px;
  }
}

@media (max-width: 374px) {
  .gcui-inline-image.gcui-preset-gcui_inline_medium div.image,
  .gcui-inline-image.gcui-preset-gcui_inline_medium div.caption {
    width: 220px;
    margin: 0 auto;
  }
  .gcui-inline-image {
    width: 220px;
    float: none;
  }
}

.non-visible-footnote {
  visibility: hidden;
  display: none;
}

.end-of-text-center {
  font-size: 1.8rem;
  padding: 1.5rem 0;
  font-family: "Ubuntu Condensed", sans-serif;
  text-align: center;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  margin: 0 auto;
  line-height: 43px;
  font-size: 1.6em;
}

/* Add empty space before footnotes and a black line on top. */
.footnotes {
  clear: both;
  margin-top: 2em;
  padding-top: 1em;
  margin-bottom: 2em;
}

#see_footnote {
  font-family: georgia,times new roman,times,serif;
  font-size: 12px !important;
  font-weight: 400;
  text-decoration: none;
  vertical-align: super;
}

/* Make footnotes appear in a smaller font */
.footnotes {
  font-size: 0.9em;
}

/*
  Make the footnote a supertext^1
  */
.see_footnote {
  vertical-align: top;
  position: relative;
  top: -0.25em;
  font-size: 0.6em;
}

/* Hide the actual number of the OL list of footnotes*/
ol.footnotes {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

ol.footnotes li {
  margin-left: 2.5em;
  font-size: 0.9rem;
}

/* Move the footnote number outside of the margin for footnote text (hanging indent) */
ol.footnotes {
  /* This is apparently very needed for the "position: absolute;" below to work correctly*/
  position: relative;
}

.footnotes .footnote {
  position: absolute;
  left: 0px;
  z-index: 2;
}

/* woodwing styles */
.Skew-10,
.Skew,
.Book-italic,
.Book-Italic,
.Italic-bold,
.italics {
  font-style: italic;
}

.Really {
  color: #333;
  text-transform: none;
}

.Page-4_Back-page-subheads {
  /*margin-bottom: -15px;*/
  font-size: 1.2em;
}

.Page-4_Facts-Section--Digits- {
  font-size: 1.2em;
  margin: 0px;
}

.Page-4_Facts-Heading-below-digits {
  font-size: 0.9em;
  margin: 0px;
}

.Page-4_Sentinel-Book-10pt {
  font-size: 0.75em;
  margin: 0px;
}

.Page-4_Page-4-Body-Text-Sub-header {
  margin: 15px 0 0;
  font-weight: bold;
}

.facts-sections {
  width: 125%;
}

.facts-sections p {
  text-align: center;
  line-height: 1.2rem;
  /*background: transparent url("{{.FURL "/imagecache/cropfit@/data/www.humanrights.org/files/newsletters/2016-04/new-hr-icons.jpg"}}") ;*/
}

@media (max-width: 1200px) {
  .facts-sections {
    width: 100%;
    /*        outline: 1px dotted red;*/
  }
}

.bs .facts-sections .Basic-Text-Frame {
  max-width: 350px;
  min-height: 220px;
}

.fact-img {
  margin: 10px auto 5px;
  display: block;
}

.news-deck.left-img {
  margin: 10px 4% 20px 55%;
}

@media (max-width: 767px) {
  .news-deck.left-img {
    font-style: italic;
    font-size: 18px;
    margin: 10px 3% 15px 3%;
  }
}

.gcui-inline-image.right {
  margin: 4px 0 4px 20px;
  float: right;
  clear: right;
  margin-left: auto !important;
  margin-right: -70px;
}

ul.milestones {
  padding: 0 20px 0 0;
}

ul.milestones {
  padding: 0 0 0 20px;
}

ul.nobullet {
  list-style-type: none;
}

.milestones li .news-deck .italics {
  font-style: normal;
}

img.left, img.right {
  margin-bottom: 5px;
}

img.left {
  margin-right: 1em;
}

.border1 {
  border: 1px solid #ddd;
}

.left {
  float: left;
}

.right {
  float: right;
}

.mb2, .mbm {
  margin-bottom: 20px;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.txtleft {
  text-align: left;
}

.txtright {
  text-align: right;
}

.txtcenter {
  text-align: center;
}

/* blocks widths (percentages and pixels) */
.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w33 {
  width: 33.3333%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w66 {
  width: 66.6666%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.w50p {
  width: 50px;
}

.w100p {
  width: 100px;
}

.w150p {
  width: 150px;
}

.w200p {
  width: 200px;
}

.w300p {
  width: 300px;
}

.w400p {
  width: 400px;
}

.w500p {
  width: 500px;
}

.w600p {
  width: 600px;
}

.w700p {
  width: 700px;
}

.w800p {
  width: 800px;
}

.w960p {
  width: 960px;
}

.mw960p {
  max-width: 960px;
}

.w1140p {
  width: 1140px;
}

.mw1140p {
  max-width: 1140px;
}

@media (min-width: 1200px) {
  .path-thewaytohappiness .gcui-inline-image {
    margin-left: -105px;
  }
}

.lesson-content div.links {
  display: none;
}

@media (max-width: 575px) {
  .gcui-inline-image.gcui-preset-gcui_inline_small div.image,
  .gcui-inline-image.gcui-preset-gcui_inline_small div.caption {
    width: 140px;
    margin: 0 auto;
  }
  .gcui-inline-image.gcui-preset-gcui_inline_medium div.image,
  .gcui-inline-image.gcui-preset-gcui_inline_medium div.caption {
    width: 100%;
    margin: 0 auto;
  }
  .gcui-inline-image.gcui-preset-gcui_inline_default div.image,
  .gcui-inline-image.gcui-preset-gcui_inline_default div.caption {
    width: 280px;
    margin: 0 auto;
  }
  .gcui-preset-gcui_inline_medium {
    width: 100%;
  }
  .end-of-text-center {
    font-size: 1.3em;
    line-height: 1.5em;
  }
}

.left {
  float: left;
}

@media (min-width: 768px) {
  .left {
    margin-right: 1rem;
  }
}

.right {
  float: right;
}

@media (min-width: 768px) {
  .right {
    margin-left: 1rem;
  }
}

@media (min-width: 768px) {
  .right, .left {
    width: 400px;
  }
}

@media (min-width: 768px) {
  .large {
    width: 500px;
  }
}

.half {
  width: 50%;
}

.left_half {
  width: 50%;
  float: left;
  margin-right: 1rem;
}

.right_half {
  width: 50%;
  float: right;
  margin-left: 1rem;
}

@media (min-width: 768px) {
  .short {
    width: 28%;
  }
}

@media (min-width: 768px) {
  .long {
    width: 72%;
  }
}

@media (min-width: 768px) {
  .shorter {
    width: 38%;
  }
}

@media (min-width: 768px) {
  .longer {
    width: 62%;
  }
}

@media (min-width: 768px) {
  .fourty {
    width: 40%;
  }
}

@media (min-width: 768px) {
  .sixty {
    width: 60%;
  }
}

@media (min-width: 768px) {
  .left_out1, .left.out1 {
    margin-left: -100px;
  }
}

@media (min-width: 768px) {
  .right_out1, .right.out1 {
    margin-right: -100px;
  }
}

@media (min-width: 768px) {
  .wider, .wide.out1 {
    margin-left: -100px;
    margin-right: -100px;
  }
}

@media (min-width: 768px) {
  .left_out2, .left.out2 {
    margin-left: -190px;
  }
}

@media (min-width: 768px) {
  .right_out2, .right.out2 {
    margin-right: -190px;
  }
}

@media (min-width: 768px) {
  .col-md-3 + .col-md-7 .outer {
    margin-right: -190px;
    margin-left: -285px;
  }
}

@media (min-width: 768px) {
  .full_width {
    margin-right: calc(-50vw + 50%);
    margin-left: calc(-50vw + 50%);
  }
}

figcaption,
div.caption {
  font-size: 13px;
  line-height: 1.5em;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  color: #666;
}

h4.block-title {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}

/*
	Request free info on the home page
*/
.sidebar-block, .about-us,
.news,
.free-tools-listing {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-self: stretch;
  -ms-align-self: stretch;
  -moz-align-self: stretch;
  -o-align-self: stretch;
  align-self: stretch;
  position: relative;
  padding: 15px;
  text-align: center;
  width: 100%;
  border: 1px solid #9B9B9B;
  border-top: 5px solid #e19118;
  background: #fff;
  -webkit-transition: background 0.25s, box-shadow 0.25s;
  -ms-transition: background 0.25s, box-shadow 0.25s;
  -moz-transition: background 0.25s, box-shadow 0.25s;
  -o-transition: background 0.25s, box-shadow 0.25s;
  transition: background 0.25s, box-shadow 0.25s;
}

.sidebar-block:hover, .about-us:hover,
.news:hover,
.free-tools-listing:hover {
  background-color: #f3f3f3;
  -webkit-box-shadow: 0 0 15px #ccc;
  -ms-box-shadow: 0 0 15px #ccc;
  -moz-box-shadow: 0 0 15px #ccc;
  -o-box-shadow: 0 0 15px #ccc;
  box-shadow: 0 0 15px #ccc;
}

.sidebar-block p, .about-us p,
.news p,
.free-tools-listing p {
  padding-top: 10px;
  text-align: left;
  font-size: 0.9em;
  line-height: 1.5em;
}

.sidebar-block .learn-more, .about-us .learn-more,
.news .learn-more,
.free-tools-listing .learn-more {
  position: relative;
  padding-right: 23px;
}

.sidebar-block .learn-more:after, .about-us .learn-more:after,
.news .learn-more:after,
.free-tools-listing .learn-more:after {
  right: 0px;
}

.sidebar-block .learn-more:hover:after, .about-us .learn-more:hover:after,
.news .learn-more:hover:after,
.free-tools-listing .learn-more:hover:after {
  right: -5px;
}

.sidebar-block.request-info, .request-info.about-us,
.request-info.news,
.request-info.free-tools-listing {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  -moz-flex-flow: column;
  -o-flex-flow: column;
  flex-flow: column;
}

.sidebar-block.request-info > *, .request-info.about-us > *,
.request-info.news > *,
.request-info.free-tools-listing > * {
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -o-flex: 0 1 auto;
  flex: 0 1 auto;
}

.sidebar-block.request-info p, .request-info.about-us p,
.request-info.news p,
.request-info.free-tools-listing p {
  font-size: 1em;
  line-height: 1.6em;
}

.sidebar-block.request-info p.kit-description, .request-info.about-us p.kit-description,
.request-info.news p.kit-description,
.request-info.free-tools-listing p.kit-description {
  font-size: 1rem;
}

.sidebar-block.request-info .product-shoot, .request-info.about-us .product-shoot,
.request-info.news .product-shoot,
.request-info.free-tools-listing .product-shoot {
  margin-top: 10px;
  min-height: 165px;
}

p.kit-description {
  font-weight: normal;
}

.learn-more {
  color: #e19118;
  font-family: "Ubuntu Condensed", sans-serif;
  font-weight: normal;
  text-align: right;
  padding-right: 40px;
}

.learn-more:after {
  font-family: inherit;
  content: "»";
  right: 20px;
  top: 2px;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.learn-more:hover:after {
  right: 15px;
}

.learn-more a {
  color: #e19118 !important;
}

.learn-more a:hover {
  text-decoration: none;
}

.cta-block {
  color: black;
  opacity: 0.96;
  background: #FFFFFF;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.cta-block .cta-text-wrapper {
  border-top: 0.5rem solid #e19118;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 12 12px 1rem 12px;
  border-bottom: 0.3rem solid #e19118;
}

.cta-block .free-booklet-text {
  margin-top: 9px;
}

@media (min-width: 768px) {
  .cta-block .cta-text-wrapper {
    padding-left: 14px;
    padding-right: 14px;
  }
  .cta-block .free-booklet-text {
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  .cta-block .free-booklet-text {
    font-size: 16px;
  }
}

.cta-block .free-booklet-image {
  margin-top: 15px;
  margin-bottom: 10px;
}

.cta-block .cta-main-text-wrapper {
  font-size: 13px;
  color: #e19118;
  padding: 0 20px;
}

.cta-block .cta-button-wrapper {
  margin: 1rem auto;
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

.cta-block .cta-button-wrapper .cta-button {
  font-size: 1.2rem;
  font-family: "Ubuntu Condensed", sans-serif;
  width: 14.5rem;
  height: 3.5rem;
  background: #F8E81C;
  border: 1px solid #e19118;
  position: relative;
  overflow: hidden;
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  padding-right: 0px;
  -webkit-transition: background .25s ease, padding-right .25s ease;
  -ms-transition: background .25s ease, padding-right .25s ease;
  -moz-transition: background .25s ease, padding-right .25s ease;
  -o-transition: background .25s ease, padding-right .25s ease;
  transition: background .25s ease, padding-right .25s ease;
}

.cta-block .cta-button-wrapper .cta-button:after {
  font-family: inherit;
  content: "»";
  opacity: 0;
  top: 26%;
  z-index: 1;
  margin-left: -10px;
  -webkit-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.cta-block .cta-button-wrapper .cta-button:hover, .cta-block .cta-button-wrapper .cta-button:focus {
  background: #e19118;
  color: white;
}

.cta-block .cta-button-wrapper .cta-button:hover:after, .cta-block .cta-button-wrapper .cta-button:focus:after {
  opacity: 1;
  margin-left: 10px;
}

.cta-block .cta-button-wrapper .cta-button:hover .cta-hover-overlay, .cta-block .cta-button-wrapper .cta-button:focus .cta-hover-overlay {
  left: 0;
}

.cta-block .cta-button-wrapper .cta-button .cta-text {
  z-index: 1;
  font-weight: bold;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cta-block .cta-button-wrapper .cta-button h4 {
    margin-top: 10px;
  }
}

.cta-block h4.block-title {
  font-size: 1.7rem;
  margin-bottom: 0;
  font-weight: normal;
}

@media (min-width: 768px) {
  .cta-block h4.block-title {
    font-size: 1.3rem;
  }
}

@media (min-width: 992px) {
  .cta-block h4.block-title {
    font-size: 1.6rem;
  }
}

.cta-wrapper {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  cursor: pointer;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.cta-wrapper a {
  color: black;
}

@media (min-width: 576px) {
  .cta-wrapper:hover {
    -webkit-transform: translateY(-16px) !important;
    -moz-transform: translateY(-16px) !important;
    -ms-transform: translateY(-16px) !important;
    -o-transform: translateY(-16px) !important;
    transform: translateY(-16px) !important;
  }
}

.cta-wrapper a:hover {
  text-decoration: none;
  color: black;
}

.cta-wrapper .cta-link {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 2;
  -ms-flex: 2;
  -moz-flex: 2;
  -o-flex: 2;
  flex: 2;
}

.cta-wrapper .learn-more-wrapper {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 2;
  -ms-flex: 2;
  -moz-flex: 2;
  -o-flex: 2;
  flex: 2;
  width: 100%;
}

.cta-wrapper .learn-more-separator {
  width: 100%;
}

@media (max-width: 767px) {
  .cta-button-wrapper {
    max-width: 14.5rem;
  }
}

@media (max-width: 575px) {
  .cta-wrapper {
    margin-top: 1rem;
  }
  .cta-block {
    position: relative;
    background: none;
    margin-top: -28px;
    background: white;
  }
  .cta-block .block-title {
    background: rgba(255, 255, 255, 0.4);
  }
  .sidebar-block .learn-more, .about-us .learn-more,
  .news .learn-more,
  .free-tools-listing .learn-more {
    position: relative;
    text-align: right;
    bottom: auto;
    right: auto;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .cta-wrapper {
    margin-top: 0rem;
  }
  .cta-wrapper .cta-text-wrapper {
    padding: 15px;
    padding-bottom: 0;
  }
  .free-booklet-image {
    margin-top: 1rem;
    max-width: 65%;
  }
}

@media (min-width: 992px) {
  .cta-block {
    border-top: 0.5rem solid #e19118;
    border-bottom: 0.3rem solid #e19118;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    padding-bottom: 0rem;
  }
  .cta-block .cta-text-wrapper {
    border: none;
    box-shadow: none;
  }
}

.btn.btn-primary {
  font-family: "Ubuntu Condensed", sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  width: 14.5rem;
  height: 3.5rem;
  background: #f2a534;
  border: 1px solid #e19118;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-box-shadow: 0 0 4px 0 black;
  -ms-box-shadow: 0 0 4px 0 black;
  -moz-box-shadow: 0 0 4px 0 black;
  -o-box-shadow: 0 0 4px 0 black;
  box-shadow: 0 0 4px 0 black;
  -webkit-transition: 0.25s box-shadow ease-in-out;
  -ms-transition: 0.25s box-shadow ease-in-out;
  -moz-transition: 0.25s box-shadow ease-in-out;
  -o-transition: 0.25s box-shadow ease-in-out;
  transition: 0.25s box-shadow ease-in-out;
  color: white;
  border-radius: 0;
}

.btn.btn-primarybutton {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  line-height: 0;
}

.btn.btn-primary a {
  color: white;
}

.btn.btn-primary:hover {
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

.btn.btn-secondary {
  -webkit-transition: box-shadow 0.25s ease-in-out;
  -ms-transition: box-shadow 0.25s ease-in-out;
  -moz-transition: box-shadow 0.25s ease-in-out;
  -o-transition: box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out;
  -webkit-box-shadow: 0 0 4px 0 black;
  -ms-box-shadow: 0 0 4px 0 black;
  -moz-box-shadow: 0 0 4px 0 black;
  -o-box-shadow: 0 0 4px 0 black;
  box-shadow: 0 0 4px 0 black;
  color: white;
  font-family: "Ubuntu Condensed", sans-serif;
  font-size: 1.5em;
  background: #e19118;
  text-align: center;
  position: absolute;
  left: calc(50% - 8rem);
  width: 16rem;
  bottom: -1.3rem;
  min-height: 38px;
  border: 0;
  border-radius: 0;
  padding: 0.05rem 1rem;
  background-size: 100%;
  background-repeat: no-repeat;
  font-size: 1.3rem;
}

.btn.btn-secondary:lang(hu) {
  font-size: 1.1rem;
}

.btn.btn-secondarybutton {
  line-height: 0;
}

.btn.btn-secondary:hover {
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  .btn.btn-secondary {
    left: calc(50% - 45%);
    width: 90%;
  }
}

@font-face {
  font-family: 'icomoon';
  src:  url('/course/fonts/icomoon/icomoon.eot?regdul');
  src:  url('/course/fonts/icomoon/icomoon.eot?regdul#iefix') format('embedded-opentype'),
    url('/course/fonts/icomoon/icomoon.ttf?regdul') format('truetype'),
    url('/course/fonts/icomoon/icomoon.woff?regdul') format('woff'),
    url('/course/fonts/icomoon/icomoon.svg?regdul#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  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-notifications:before {
  content: "\e912";
}
.icon-download:before {
  content: "\e90c";
}
.icon-keyboard_arrow_right:before {
  content: "\e902";
}
.icon-speedometer:before {
  content: "\e910";
}
.icon-meter:before {
  content: "\e910";
}
.icon-gauge:before {
  content: "\e910";
}
.icon-measurement:before {
  content: "\e910";
}
.icon-folder:before {
  content: "\e90a";
}
.icon-check-alt:before {
  content: "\e90d";
}
.icon-checkmark:before {
  content: "\e90d";
}
.icon-tick:before {
  content: "\e90d";
}
.icon-stopwatch:before {
  content: "\e911";
}
.icon-time2:before {
  content: "\e911";
}
.icon-speed:before {
  content: "\e911";
}
.icon-meter2:before {
  content: "\e911";
}
.icon-chronometer:before {
  content: "\e911";
}
.icon-enter:before {
  content: "\e90f";
}
.icon-checkmark2:before {
  content: "\e90e";
}
.icon-tick2:before {
  content: "\e90e";
}
.icon-correct:before {
  content: "\e90e";
}
.icon-accept:before {
  content: "\e90e";
}
.icon-ok:before {
  content: "\e90e";
}
.icon-book:before {
  content: "\e90b";
}
.icon-file-pdf:before {
  content: "\e907";
}
.icon-file:before {
  content: "\e907";
}
.icon-file-format:before {
  content: "\e907";
}
.icon-file-text:before {
  content: "\e908";
}
.icon-file2:before {
  content: "\e908";
}
.icon-document:before {
  content: "\e908";
}
.icon-list:before {
  content: "\e908";
}
.icon-paper:before {
  content: "\e908";
}
.icon-page:before {
  content: "\e908";
}
.icon-twitter:before {
  content: "\e905";
}
.icon-brand2:before {
  content: "\e905";
}
.icon-tweet:before {
  content: "\e905";
}
.icon-social2:before {
  content: "\e905";
}
.icon-facebook2:before {
  content: "\e906";
}
.icon-brand:before {
  content: "\e906";
}
.icon-social:before {
  content: "\e906";
}
.icon-search:before {
  content: "\e903";
}
.icon-magnifier:before {
  content: "\e903";
}
.icon-magnifying-glass:before {
  content: "\e903";
}
.icon-inspect:before {
  content: "\e903";
}
.icon-find:before {
  content: "\e903";
}
.icon-clock:before {
  content: "\e901";
}
.icon-time:before {
  content: "\e901";
}
.icon-schedule:before {
  content: "\e901";
}
.icon-folder-open-o:before {
  content: "\e909";
}
.icon-facebook:before {
  content: "\e904";
}
.icon-facebook-f:before {
  content: "\e904";
}
.icon-envelope-o:before {
  content: "\f003";
}
.icon-user:before {
  content: "\f007";
}
.icon-envelope:before {
  content: "\f0e0";
}
.icon-angle-double-left:before {
  content: "\f100";
}
.icon-angle-double-right:before {
  content: "\f101";
}
.icon-angle-double-up:before {
  content: "\f102";
}
.icon-angle-double-down:before {
  content: "\f103";
}
.icon-angle-left:before {
  content: "\f104";
}
.icon-angle-right:before {
  content: "\f105";
}
.icon-angle-up:before {
  content: "\f106";
}
.icon-angle-down:before {
  content: "\f107";
}
.icon-arrow-with-circle-right:before {
  content: "\e900";
}

