/*
 * Mixin for easy media queries
 * @include bp(tablet) { SCSS here };
 * Default css is for big screen > 1300px width
*/

/*
 * @font-face mixin
 * Bulletproof font-face via Font Squirrel
 * @include fontface('family', 'assets/fonts/', 'myfontname');
 */

/*
 * Mixin for CSS3 transition
 * @include transition($property:all, $duration:0.2s, $function:ease);
*/

@import url(../fonts/icomoon/style.css);

/* custom grid */

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.container::before,
.container::after {
  content: '';
  display: table;
  clear: both;
  overflow: hidden;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.wider-col {
  max-width: 700px;
}

.wider-col-2 {
  max-width: 850px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex [class*=col-] {
  flex-grow: 0;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-vrt-center,
.flex-vrt-center {
  align-items: center;
  height: 100%;
}

.flex-justify-between {
  justify-content: space-between;
}

.col-1 {
  width: 10%;
}

.col-2 {
  width: 20%;
}

.col-3 {
  width: 30%;
}

.col-4 {
  width: 40%;
}

.col-5 {
  width: 50%;
}

.col-6 {
  width: 60%;
}

.col-7 {
  width: 70%;
}

.col-8 {
  width: 80%;
}

.col-9 {
  width: 90%;
}

/* changing the background color of selection text */
::-moz-selection {
  background-color: #eee;
}
::selection {
  background-color: #eee;
}
::-moz-selection {
  background-color: #eee;
}
::selection {
  background-color: #eee;
}

#page-wrapper {
  min-height: 100%;
}

#main {
  display: flex;
  padding-top: 0.7%;
  height: calc(100vh - 83px);
  min-height: 810px;
  max-height: 1000px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(18, 27, 37, 0.1);
  position: relative;
}

#main-container {
  margin-left: 100px;
  padding: 0 15px;
  width: calc(100% - 410px);
}

#main-container.fullwidth {
  padding-bottom: 15px;
}

.fullwidth {
  width: 100% !important;
  box-sizing: border-box;
}

.shrink-content {
  max-width: 770px;
}

html {
  font-size: 10px;
}

body {
  font: 300 1.2rem/1.45 "Poppins", "Calibri", "Trebuchet MS", Arial, sans-serif;
  background: url("../images/page-bg.jpg");
  letter-spacing: normal;
  color: #41494C;
  margin: 0;
  padding: 0;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
ul,
ol,
p,
address {
  margin-bottom: 15px;
  margin-top: 0;
}

h1 {
  font-family: "Poppins", "Calibri", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.3;
  color: #677073;
  text-transform: capitalize;
}

h1::before {
  display: none !important;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Calibri", "Trebuchet MS", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #677073;
}

h2::before,
h3::before,
h4::before,
h5::before,
h6::before {
  display: none;
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.6rem;
}

h4,
h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.3rem;
}

ul,
ol {
  padding-left: 18px;
}

ul li,
ol li {
  margin-bottom: 15px;
  padding-left: 5px;
}

.text-1 {
  font-size: 2.8rem;
}

.text-2 {
  font-size: 2.4rem;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

blockquote {
  border-left: none;
  border-top: 1px solid #677073;
  border-bottom: 1px solid #677073;
  padding: 60px;
  margin: 0 auto 30px;
  font-size: 2.8rem;
  line-height: 1.55;
  max-width: 900px;
}

blockquote small {
  font-size: 1.8rem;
  color: inherit;
}

blockquote small::before {
  display: none;
}

blockquote.text-lg {
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 0;
}

strong,
b {
  font-family: "Poppins", "Calibri", "Trebuchet MS", Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0 0 20px;
  max-width: 100% !important;
}

figure img {
  display: block;
}

hr {
  border-color: #677073;
  margin: 0;
}

.btn,
.btn-reset,
input[type="button"],
input[type="submit"] {
  background: #677073;
  border: 1px solid #677073;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 5px;
  font: 1.45rem/1.3 "Poppins", "Calibri", "Trebuchet MS", Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.btn.wide,
.btn-reset.wide,
input[type="button"].wide,
input[type="submit"].wide {
  width: 100%;
  height: 54px;
  padding: 10px 25px;
  box-sizing: border-box;
}

.btn:hover,
.btn:focus,
.btn-reset:hover,
.btn-reset:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  color: #fff;
  background-color: #4f5658;
  text-decoration: none;
}

.btn[disabled],
.btn-reset[disabled],
input[type="button"][disabled],
input[type="submit"][disabled] {
  border-color: #677073 !important;
  background: #fff !important;
  color: #677073 !important;
}

.btn[disabled]:hover,
.btn[disabled]:focus,
.btn-reset[disabled]:hover,
.btn-reset[disabled]:focus,
input[type="button"][disabled]:hover,
input[type="button"][disabled]:focus,
input[type="submit"][disabled]:hover,
input[type="submit"][disabled]:focus {
  cursor: not-allowed;
}

.btn.btn-lg,
.btn-reset.btn-lg,
input[type="button"].btn-lg,
input[type="submit"].btn-lg {
  font-size: 1.8rem;
  padding-left: 24px;
  padding-right: 24px;
}

.btn.btn-sm,
.btn-reset.btn-sm,
input[type="button"].btn-sm,
input[type="submit"].btn-sm {
  font-size: 1.4rem;
  padding-left: 16px;
  padding-right: 16px;
}

.btn.btn-white,
.btn-reset.btn-white,
input[type="button"].btn-white,
input[type="submit"].btn-white {
  background: #fff;
  color: #CAD6E2;
}

.btn.btn-bdr,
.btn-reset.btn-bdr,
input[type="button"].btn-bdr,
input[type="submit"].btn-bdr {
  border: 1px solid #fff;
  background: none;
}

.btn.btn-bdr:hover,
.btn.btn-bdr:focus,
.btn-reset.btn-bdr:hover,
.btn-reset.btn-bdr:focus,
input[type="button"].btn-bdr:hover,
input[type="button"].btn-bdr:focus,
input[type="submit"].btn-bdr:hover,
input[type="submit"].btn-bdr:focus {
  background-color: rgba(0, 0, 0, 0.4);
  border-color: transparent;
  color: #fff;
}

.button-wrapper {
  padding-top: 20px;
}

.button-wrapper .btn {
  margin: 0 5px 10px;
}

input[type="button"] {
  font-size: 1.5rem;
  padding: 13px 25px;
}

.btn-reset {
  background: none;
  color: #121B25 !important;
}

.btn-reset:hover,
.btn-reset:focus {
  background: rgba(0, 0, 0, 0.03);
}

a {
  color: #0574D8;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:hover,
a:focus {
  color: #0459a6;
  text-decoration: underline;
  outline: none;
}

.link {
  text-decoration: none;
  margin-right: 0;
  font-size: 1.68rem;
  font-family: "Poppins", "Calibri", "Trebuchet MS", Arial, sans-serif;
}

.link:hover,
.link:focus {
  text-decoration: none;
}

.link.ext-link {
  margin-right: 2px;
}

.link.ext-link::after {
  content: '\e917';
  font-size: 2.0rem;
}

.section-header {
  margin-bottom: 45px;
}

.h-section {
  padding: 60px 0;
}

.h-section::before,
.h-section::after {
  clear: both;
  content: '';
  display: table;
}

.no-marg-btm {
  margin-bottom: 0 !important;
}

.no-marg-top {
  margin-top: 0 !important;
}

.no-marg-left {
  margin-left: 0 !important;
}

.no-marg-right {
  margin-right: 0 !important;
}

.no-pad-btm {
  padding-bottom: 0 !important;
}

.no-pad-top {
  padding-top: 0 !important;
}

.no-pad-left {
  padding-left: 0 !important;
}

.no-pad-right {
  padding-right: 0 !important;
}

.no-bdr {
  border: none !important;
}

.no-bdr-top-btm {
  border-top: none !important;
  border-bottom: none !important;
}

.no-left {
  border-left: none !important;
}

.no-right {
  border-right: none !important;
}

.no-float {
  float: none;
}

.marg-btm-1 {
  margin-bottom: 1rem !important;
}

.marg-btm-2 {
  margin-bottom: 2rem !important;
}

.marg-btm-3 {
  margin-bottom: 3rem !important;
}

.marg-btm-4 {
  margin-bottom: 4rem !important;
}

.marg-btm-6 {
  margin-bottom: 6rem !important;
}

.marg-btm-8 {
  margin-bottom: 8rem !important;
}

.marg-btm-9 {
  margin-bottom: 9rem !important;
}

.marg-btm-10 {
  margin-bottom: 10rem !important;
}

.pad-top-1 {
  padding-top: 1rem;
}

.pad-top-2 {
  padding-top: 2rem;
}

.pad-top-3 {
  padding-top: 3rem;
}

.pad-top-4 {
  padding-top: 3rem;
}

.pad-btm-2 {
  padding-bottom: 2rem;
}

.pad-btm-3 {
  padding-bottom: 3rem;
}

.pad-btm-6 {
  padding-bottom: 6rem !important;
}

.pad-btm-8 {
  padding-bottom: 8rem !important;
}

.pad-btm-9 {
  padding-bottom: 9rem;
}

.hidden {
  display: none !important;
}

.date-time {
  font-size: 1.4rem;
  font-family: "Poppins", "Calibri", "Trebuchet MS", Arial, sans-serif;
  color: #CAD6E2;
  margin-bottom: 10px;
}

.tag-wrapper {
  margin-bottom: 30px;
}

.tag-wrapper span {
  font-size: 1.2rem;
  padding: 8px 13px 7px;
}

.tag {
  background: #677073;
  color: #CAD6E2;
  padding: 8px 13px 7px;
  font-size: 1.4rem;
  line-height: 1.21;
  border-radius: 20px;
  margin-right: 5px;
  display: inline-block;
  margin-bottom: 1px;
}

a.tag {
  text-decoration: none;
}

a.tag:hover,
a.tag:focus {
  text-decoration: none;
  background: #677073;
  color: #121B25;
}

.pub-date {
  color: #CAD6E2;
  font-size: 1.4rem;
}

.tag-loc {
  background: none;
}

.col {
  float: left;
}

.alert {
  background: #CAD6E2;
  padding: 60px;
  text-align: center;
  border-radius: 0;
}

div.image,
figure.image {
  margin-bottom: 24px;
}

.image-120 img {
  max-width: 120px;
}

.image-240 img {
  max-width: 240px;
}

.image-responsive {
  margin-bottom: 15px;
  overflow: hidden;
}

.image-responsive img {
  display: block;
  margin: 0 auto;
}

.image-responsive.float-left {
  float: left;
  margin-right: 15px;
}

.image-responsive.float-right {
  float: right;
  margin-left: 15px;
}

.tbl {
  display: table;
  width: 100%;
}

.tbl .tbl-cell {
  display: table-cell;
  float: none;
}

.tbl .tbl-cell.align-middle {
  vertical-align: middle;
}

.tbl .tbl-cell.align-bottom {
  vertical-align: bottom;
}

.tbl .tbl-cell .intro {
  padding: 0;
}

.cta-block small {
  font-size: 80%;
}

.cta-block .btn {
  margin-bottom: 3rem;
}

dl {
  line-height: 1.55;
}

dl dd:last-child {
  margin-bottom: 0;
}

dt {
  font-family: "Poppins", "Calibri", "Trebuchet MS", Arial, sans-serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

dd {
  margin-bottom: 30px;
}

.page-intro {
  margin-top: 20px;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.page-intro h1 {
  color: #fff;
  margin: 15px 10px;
}

.intro-image img {
  max-width: 200px;
}

.defualt-container {
  padding: 15px 30px 15px 43px;
  position: relative;
}

.defualt-container::before {
  display: none;
}

.defualt-container.box {
  margin-bottom: 0;
}

.course-container {
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 20px);
  min-height: calc(100% - 70px);
  box-sizing: border-box;
}

.course-container:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '';
  height: 5px;
  width: 100%;
  background-color: #677073;
}

.fullwidth .course-container {
  padding: 30px 30px;
  height: 100%;
}

.content {
  padding: 10px 0 0;
}
.fullwidth .course-container .content,
.fullwidth .course-container .content .module-list{
  height: 100%;
}

.scroll-content {
  overflow: hidden;
  height: 165px;
  padding: 0;
  margin-bottom: 20px;
}

.inner-scroll-content {
  max-width: 95%;
}

#sidebar .scrollable .viewport .overview{
  width: 100%;
}

.scrollable .scroll-bar {
  background-color: #E0E0E0;
  border-radius: 20px;
}

.scrollable .scroll-bar .thumb {
  background-color: #677073;
  border-radius: 20px;
}

.scrollable .scroll-bar.vertical {
  width: 5px;
}

.image-content-alt figure img {
  max-height: 250px;
}

.note {
  font-size: small;
}

.note ul li::before {
  display: none;
}

.note ul li a {
  text-decoration: none;
}

.highlight {
  color: #0574D8;
}

.image-content-alt::after {
  content: '';
  display: block;
  clear: both;
}

.image-content-alt .content-holder {
  overflow: hidden;
  padding-top: 10%;
}

/* overriding parent style */

.wp-caption.aligncenter {
  position: static;
  transform: translateX(0);
}

img.aligncenter {
  display: block;
  margin: 0 auto;
}

img.alignleft {
  display: block;
  float: left;
  margin-right: 10px;
}

img.alignright {
  float: right;
  margin-left: 10px;
}

.wp-caption-text {
  font-size: small;
  text-align: center;
}

.flex-grow {
  flex-grow: 1;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-align-right {
  justify-content: flex-end;
}

.flex-item-right {
  margin-left: auto;
}

.block-elem {
  display: block;
  text-align: center;
  padding-bottom: 25px;
}

.loading {
  position: relative;
  transition: all 0.1s ease;
}

.loading::before {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.5);
}

.loading::after {
  position: fixed;
  content: "\e909";
  font-family: 'icomoon';
  font-size: 5rem;
  line-height: 1;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  color: #4A5882;
  z-index: 1001;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  -webkit-transform-origin: 25px 25px;
  transform-origin: 25px 25px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0);
  }

  100% {
    -moz-transform: rotate(360deg);
  }
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 63px;
  right: 50px;
  z-index: 100;
  width: 240px;
  background-color: #4A5882;
  color: #fff;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
}

.dropdown-menu::before {
  position: absolute;
  width: 0;
  height: 0;
  content: '';
  border: 12px solid transparent;
  border-bottom-color: #4A5882;
  top: -24px;
  right: 0;
}

.dropdown-menu a {
  color: #fff;
  text-decoration: none;
}

.dropdown-menu ul {
  list-style: none;
  margin-bottom: 0;
  padding: 10px 0;
}

.dropdown-menu ul li {
  border-bottom: 1px solid #6474A6;
  margin-bottom: 0;
}

.dropdown-menu ul li a {
  padding: 10px 15px;
  display: block;
  line-height: 1;
  font-size: 10px;
}

.dropdown-menu ul li:last-child {
  border-bottom: none;
}

.box {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  border: 1px solid #E8E8E8;
  margin-bottom: 20px;
}

.box-header {
  padding: 15px 20px;
  color: #fff;
  background-color: #677073;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.box-header .box-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}

.box-header p {
  margin-bottom: 0;
}

.box-body {
  padding: 10px 0;
}

.box-inner {
  padding: 10px 20px;
}

.list-num {
  counter-reset: my-badass-counter;
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-num li {
  padding: 10px 30px 10px 35px;
  border-bottom: 1px solid #F6F6F6;
  position: relative;
  margin-bottom: 0;
  min-height: 34px;
  display: flex;
  align-items: center;
}

.list-num li::before {
  content: counter(my-badass-counter);
  counter-increment: my-badass-counter;
  position: absolute;
  left: 0;
  top: 14px;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-weight: 500;
  text-align: center;
}

.list-num li:last-child {
  border-bottom: none;
}

.list-bullet {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.list-bullet li {
  position: relative;
  padding-left: 22px;
}

.list-bullet li::before {
  content: '';
  margin-right: 5px;
  font-size: 3rem;
  position: absolute;
  left: 0;
  top: 5px;
  line-height: 1;
  height: 10px;
  width: 10px;
  background: #757575;
  border-radius: 50%;
}

.list-bullet li a {
  color: #41494C;
  text-decoration: none;
}

.list-bullet li a:hover,
.list-bullet li a:focus {
  color: black;
}

ul.bullet-tick {
  list-style: none;
  padding: 0;
}

ul.bullet-tick li {
  padding-left: 30px;
  position: relative;
}

ul.bullet-tick li:before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  content: '\e905';
  font: 2rem/1 "icomoon";
  color: #677073;
}

ul.bullet-tick li h3 {
  font-size: 1.8rem;
  font-family: "Poppins", "Calibri", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.7;
}

ul.bullet-tick li a {
  color: #41494C;
}

ul.bullet-tick li a:hover,
ul.bullet-tick li a:focus {
  text-decoration: none;
}

ul.list-normal {
  list-style: none;
  padding: 0;
}

ul.list-normal li {
  padding: 0;
  line-height: 1.5;
}

.video-wrapper {
  margin-bottom: 1.5%;
  position: relative;
  /* max-height: 380px;
  overflow: hidden; */
}

.video-wrapper:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.2%;
  width: 99.6%;
  height: 10px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.video-thumb {
  display: block;
  text-decoration: none;
  height: 100%;
}

.video-thumb img {
  display: block;
  width: 100%;
}

.video-thumb i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -80px;
  margin-left: -80px;
  color: #fff;
  border-radius: 50%;
  font-size: 16rem;
  line-height: 1;
  opacity: 0.8;
}

.video-thumb:hover i,
.video-thumb:focus i {
  opacity: 0.95;
}

.wpcw_fe_progress_box_wrap {
  display: none;
}

.wpcw_fe_outer_wrap {
  display: none;
}

.tooltip {
  display: none;
  position: absolute;
  top: 25px;
  left: -66px;
  width: 150px;
  min-height: 20px;
  z-index: 11;
  background: #fff;
  color: #677073;
  padding: 10px 10px 10px 37px;
  font-size: 0.9rem;
  line-height: 1.2;
  text-transform: capitalize;
  text-align: left;
  box-shadow: 0 0 3px rgba(112, 112, 112, 0.4);
  border-radius: 2px;
  box-sizing: border-box;
}

.tooltip span {
  color: #121B25;
  display: block;
  font-weight: normal;
}

.tooltip .tt-title {
  margin-bottom: 2px;
  font-weight: 600;
}

.tooltip:before {
  content: "\e908";
  font: 0.9rem/1.6 icomoon;
  color: #fff;
  background-color: #979797;
  border-radius: 50%;
  padding: 3px;
  height: 18px;
  width: 18px;
  text-align: center;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -10px;
}

.tooltip:after {
  content: "\e902";
  font: 4rem/1 icomoon;
  position: absolute;
  top: -23px;
  left: 50%;
  margin-left: -20px;
  color: #fff;
  text-shadow: 0px -3px 5px rgba(112, 112, 112, 0.2);
  z-index: -1;
}

.module-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.module-progress .lbl {
  font-weight: 600;
  color: #677073;
  margin-right: 5px;
}

.module-navigation {
  display: inline-flex;
  position: relative;
  align-items: center;
}

.module-navigation::before {
  content: '';
  position: absolute;
  width: calc(100% - 26px);
  height: 1px;
  top: 48%;
  left: 12px;
  z-index: 0;
  background-color: #979797;
}

.module-state {
  width: 15px;
  height: 15px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  margin: 0 10px;
  cursor: pointer;
  position: relative;
}

.module-state:last-child {
  margin-right: 0;
}

.module-state::before {
  content: '';
  font: 1rem/15px 'icomoon';
  display: block;
}

.module-state:hover,
.module-state:focus {
  color: white;
  text-decoration: none;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.module-state:hover .tooltip,
.module-state:focus .tooltip {
  display: block;
}

.module-state.edge-item:last-child:hover .tooltip:after{
  left: 100%;
  margin-left: -36px;
}
.module-state.edge-item:nth-last-child(2):hover .tooltip:after{
  margin-left: 4px;
}

.module-state.theme1 {
  background-color: #4A5882;
}

.module-state.theme1 .tooltip .tt-title {
  color: #4A5882;
}

.module-state.theme1 .tooltip:before {
  background-color: #4A5882;
}

.module-state.theme2 {
  background-color: #6474A6;
}

.module-state.theme2 .tooltip .tt-title {
  color: #6474A6;
}

.module-state.theme2 .tooltip:before {
  background-color: #6474A6;
}

.module-state.theme3 {
  background-color: #C21E76;
}

.module-state.theme3 .tooltip .tt-title {
  color: #C21E76;
}

.module-state.theme3 .tooltip:before {
  background-color: #C21E76;
}

.module-state.theme4 {
  background-color: #0077DD;
}

.module-state.theme4 .tooltip .tt-title {
  color: #0077DD;
}

.module-state.theme4 .tooltip:before {
  background-color: #0077DD;
}

.module-state.theme5 {
  background-color: #9643B1;
}

.module-state.theme5 .tooltip .tt-title {
  color: #9643B1;
}

.module-state.theme5 .tooltip:before {
  background-color: #9643B1;
}

.module-state.theme6 {
  background-color: #54C97B;
}

.module-state.theme6 .tooltip .tt-title {
  color: #54C97B;
}

.module-state.theme6 .tooltip:before {
  background-color: #54C97B;
}

.module-state.theme7 {
  background-color: #6474A6;
}

.module-state.theme7 .tooltip .tt-title {
  color: #6474A6;
}

.module-state.theme7 .tooltip:before {
  background-color: #6474A6;
}

.module-state.theme8 {
  background-color: #4A5882;
}

.module-state.theme8 .tooltip .tt-title {
  color: #4A5882;
}

.module-state.theme8 .tooltip:before {
  background-color: #4A5882;
}

.module-state.state-locked {
  background-color: #979797;
}

.module-state.state-locked::before {
  content: '\e906';
}

.module-state.state-locked .tooltip .tt-title {
  color: #121B25;
}

.module-state.state-locked .tooltip:before {
  background-color: #979797;
}

.module-controls {
  display: flex;
  justify-content: flex-end;
  padding: 0 20px;
  position: absolute;
  top: 542px;
  right: 313px;
}
@media (max-width:1500px){
  .module-controls {
    top: 587px;
  }
}

.module-controls .btn {
  display: inline-block;
  margin: 0 4px;
  padding: 5px 15px;
  border-radius: 3px;
  font-size: 1.1rem;
}

.state-completed::before {
  content: '\e908';
  font-size: 0.75rem;
}

.state-current {
  width: 26px;
  height: 26px;
}

.state-current::before {
  content: '\e90d';
  font-size: 1.2rem;
  line-height: 26px;
}

.state-current .tooltip {
  top: 35px;
  left: -60px;
}

.state-current .tooltip::before {
  content: '\e90d';
}

.state-locked .tooltip:before {
  content: '\e906';
}

.course-container .module-navigation::before {
  display: none;
}

.course-container .module-state {
  background-color: #757575;
}

.course-container .module-state:after {
  content: '';
  position: absolute;
  border: 1px solid transparent;
  width: 100%;
  height: 100%;
  padding: 3px;
  border-radius: 50%;
  top: -4px;
  left: -4px;
  box-sizing: content-box;
}

.course-container .module-state:after .tooltip::before {
  content: "" !important;
}

.course-container .state-incompleted::before {
  content: '';
}

.course-container .state-incompleted .tooltip .tt-title {
  color: #757575;
}

.course-container .state-incompleted .tooltip:before {
  content: '';
  background-color: #757575;
}

.course-container .state-current {
  height: 15px;
  width: 15px;
  background-color: #757575 !important;
}

.course-container .state-current:after {
  border-color: #757575 !important;
}

.course-container .state-current::before {
  content: '';
}

.course-container .state-current .tooltip {
  top: 29px;
  left: -66px;
}

.course-container .state-current .tooltip .tt-title {
  color: #757575;
}

.course-container .state-current .tooltip:before {
  content: '';
  background-color: #757575;
}

.current-module-info {
  position: relative;
  padding: 7px 5px 7px 42px;
  margin: 0 5px;
}

.current-module-info .lbl {
  line-height: 1;
}

.current-module-info .module-title {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.current-module-info i {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #677073;
  left: 0;
  top: 50%;
  margin-top: -15px;
  border: 2px solid white;
}

.current-module-info i::after {
  content: '';
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: -1;
  border-radius: 50%;
  background: #ccc;
}

.current-module-info i.iconImg--pre-test:before,
.current-module-info i.iconImg--intro:before,
.current-module-info i.iconImg--resources:before,
.current-module-info i.iconImg--post-test:before {
  width: 15px;
  height: 15px;
}

.current-module-info i.iconImg--intro:before {
  width: 17px;
}

.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  height: auto;
}

#header {
  background-color: #fff;
  color: #677073;
  position: relative;
  padding: 0;
  height: 74px;
  border-bottom: 1px solid #E8E8E8;
  z-index: 100;
}

#header .container {
  max-width: calc(100% - 40px);
  padding: 0 15px;
  height: 100%;
}

#header .row {
  height: 100%;
}

#header a {
  text-decoration: none;
}

.navbar-default {
  background: none;
  border: none;
}

.navbar-brand {
  padding: 0;
  font-size: 1.6rem;
  line-height: 20px;
  height: 48px;
  width: 179px; 
  background: url("../images/logo.png") no-repeat;
  background-size: contain;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-brand span {
  visibility: hidden;
  height: 0;
}

.navbar-brand img {
  display: block;
  height: 100%;
  width: auto;
}

.help-text,
a.help-text {
  font-size: 1.68rem;
  line-height: 1;
}

.site-controls {
  border-left: 1px solid #E8E8E8;
  border-right: 1px solid #E8E8E8;
  padding: 10px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.profile-image {
  border-radius: 50%;
  overflow: hidden;
  height: 40px;
  width: 40px;
  background: #CAD6E2;
}

.user-info-container {
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}

.user-info-container .profile-image {
  /* margin-right: 10px; */
}

.user-info-container .user-name {
  color: #677073;
  font-size: 12px;
}

.settings-control,
a.sign-out {
  color: rgba(0, 0, 0, 0.54);
  font-size: 1.8rem;
}

.settings-control:hover,
.settings-control:focus,
a.sign-out:hover,
a.sign-out:focus {
  color: black;
}

.settings-control {
  margin-left: 15px;
}

a.sign-out {
  margin-left: 10px;
  margin-right: 12px;
}

a.sign-out .logoff-text {
  font-size: 1.5rem;
  display: none;
}

.top-menu {
  margin-left: auto;
  margin-right: 10px;
}

.top-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-menu ul li {
  display: inline-block;
  padding: 5px;
  margin: 0 15px;
  font-size: 1.2rem;
  font-weight: bold;
}

.top-menu ul li a {
  color: #677073;
}

.top-menu ul li a:hover,
.top-menu ul li a:focus {
  color: #41494C;
}

.top-menu ul li.active a {
  color: #41494C;
}

.navbar {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100px;
  margin-bottom: 0px;
}

.navbar a {
  text-decoration: none;
}

.menu-toggler {
  font-family: 'icomoon';
  font-size: 3.1rem;
  line-height: 1.3;
  color: #757575;
  padding: 0 13px;
}

.menu-toggler::before {
  content: '\e91b';
}

.menu-toggler.active::before {
  content: '\e913';
}

.menu-toggler:hover,
.menu-toggler:focus {
  color: #757575;
}

.iconImg--pre-test,
.iconImg--intro,
.iconImg--newborn,
.iconImg--2m,
.iconImg--4m,
.iconImg--6m,
.iconImg--resources,
.iconImg--post-test {
  display: flex;
  align-items: center;
}

.iconImg--pre-test::before,
.iconImg--intro::before,
.iconImg--newborn::before,
.iconImg--2m::before,
.iconImg--4m::before,
.iconImg--6m::before,
.iconImg--resources::before,
.iconImg--post-test::before {
  content: '';
  display: inline-block;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 30px;
  width: 100%;
}

.iconImg--pre-test:before {
  background-image: url("../icons/pre-test.png");
}

.iconImg--intro:before {
  background-image: url("../icons/intro.png");
}

.iconImg--newborn:before {
  background-image: url("../icons/newborn.png");
}

.iconImg--2m:before {
  background-image: url("../icons/2m-baby.png");
}

.iconImg--4m:before {
  background-image: url("../icons/4m-baby.png");
}

.iconImg--6m:before {
  background-image: url("../icons/6m-baby.png");
}

.iconImg--resources:before {
  background-image: url("../icons/resources.png");
}

.iconImg--post-test:before {
  background-image: url("../icons/post-test.png");
}

.navbar-nav {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}

.navbar-nav > li {
  margin: 0;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
  flex: 1;
}



.navbar-nav > li.module-label {
  display: none;
}

.navbar-nav > li > a {
  color: #fff;
  background: #B6BDC6;
  font: 700 1.2rem/1.3 "Poppins", "Calibri", "Trebuchet MS", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 5px 0;
  height: 100%;
  position: relative;
  z-index: 100;
  box-sizing: border-box;
}

.navbar-nav > li > a .state-text {
  display: none;
}

.navbar-nav > li > a i {
  font-size: 3rem;
  padding: 10px;
  margin: 0 auto;
  width: 80px;
  color: #fff;
}

.navbar-nav > li > a i::before {
  height: 40px;
}

.navbar-nav > li > a i.iconImg--pre-test:before {
  min-width: 31px;  
}

.navbar-nav > li > a i.iconImg--intro:before {
  width: 48px;
}

.navbar-nav > li > a i.iconImg--resources:before {
  width: 32px;
}

.navbar-nav > li > a i.iconImg--post-test:before {
  height: 35px;
}

.navbar-nav > li > a.theme1,
.navbar-nav > li > a.theme1 i {
  background-color: #4A5882;
}

.navbar-nav > li > a.theme2,
.navbar-nav > li > a.theme2 i {
  background-color: #6474A6;
}

.navbar-nav > li > a.theme3,
.navbar-nav > li > a.theme3 i {
  background-color: #C21E76;
}

.navbar-nav > li > a.theme4,
.navbar-nav > li > a.theme4 i {
  background-color: #0077DD;
}

.navbar-nav > li > a.theme5,
.navbar-nav > li > a.theme5 i {
  background-color: #9643B1;
}

.navbar-nav > li > a.theme6,
.navbar-nav > li > a.theme6 i {
  background-color: #54C97B;
}

.navbar-nav > li > a.theme7,
.navbar-nav > li > a.theme7 i {
  background-color: #6474A6;
}

.navbar-nav > li > a.theme8,
.navbar-nav > li > a.theme8 i {
  background-color: #4A5882;
}

.navbar-nav > li:hover a.theme1 .arrow:after,
.navbar-nav > li:focus a.theme1 .arrow:after,
.navbar-nav > li.active a.theme1 .arrow:after {
  color: #4A5882;
}

.navbar-nav > li:hover a.theme2 .arrow:after,
.navbar-nav > li:focus a.theme2 .arrow:after,
.navbar-nav > li.active a.theme2 .arrow:after {
  color: #6474A6;
}

.navbar-nav > li:hover a.theme3 .arrow:after,
.navbar-nav > li:focus a.theme3 .arrow:after,
.navbar-nav > li.active a.theme3 .arrow:after {
  color: #C21E76;
}

.navbar-nav > li:hover a.theme4 .arrow:after,
.navbar-nav > li:focus a.theme4 .arrow:after,
.navbar-nav > li.active a.theme4 .arrow:after {
  color: #0077DD;
}

.navbar-nav > li:hover a.theme5 .arrow:after,
.navbar-nav > li:focus a.theme5 .arrow:after,
.navbar-nav > li.active a.theme5 .arrow:after {
  color: #9643B1;
}

.navbar-nav > li:hover a.theme6 .arrow:after,
.navbar-nav > li:focus a.theme6 .arrow:after,
.navbar-nav > li.active a.theme6 .arrow:after {
  color: #54C97B;
}

.navbar-nav > li:hover a.theme7 .arrow:after,
.navbar-nav > li:focus a.theme7 .arrow:after,
.navbar-nav > li.active a.theme7 .arrow:after {
  color: #6474A6;
}

.navbar-nav > li:hover a.theme8 .arrow:after,
.navbar-nav > li:focus a.theme8 .arrow:after,
.navbar-nav > li.active a.theme8 .arrow:after {
  color: #4A5882;
}

.navbar-nav > li.locked:hover > a .arrow:after,
.navbar-nav > li.locked:focus > a .arrow:after,
.navbar-nav > li.locked.active > a .arrow:after {
  color: #B6BDC6;
}

.navbar-nav > li.disabled a {
  color: #677073;
}

.logo-wrap {
  position: absolute;
  bottom: 10px;
  right: 5px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 285px;
}
#header .logo-wrap{
  position: static;
  margin-left: 5px; 
}
#main .logo-wrap, .standalone-page.page-logged-in #main .logo-wrap{
  display: none;
}
@media (max-width:991px){
  body{
    min-height: 100vh;
    background: white;
  }
}
@media (max-width:767px){
  #header .logo-wrap{
    display: none;
  }
  #main .logo-wrap, .standalone-page.page-logged-in #main .logo-wrap{
    display: flex;
  }
}

.logo-wrap figure {
  display: block;
  margin: 0 5px 3px 0;
}
#header .logo-wrap figure:last-child{
  margin-right: 0;
}


.logo-wrap img {
  display: block;
  max-height: 50px;
}

.fullwidth + .logo-wrap {
  bottom: 15px;
  right: 27px;
}

.footer-menu {
  display: none;
}

.popup-bubble {
  position: absolute;
  background: #CAD6E2;
  border-radius: 0;
}

.popup-box {
  width: 370px;
  max-width: 80%;
  margin-top: -170px;
  font-size: 1.5rem;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  padding: 20px 10px 0;
  line-height: 1.2;
}

.popup-box h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 5px;
}

.popup-box p {
  text-align: center;
  margin: 0;
  padding-top: 20px;
}

.popup-box .popup-col {
  width: 33%;
  text-align: center;
  float: left;
  padding-bottom: 20px;
}

.popup-close {
  position: absolute;
  right: 8px;
  top: 8px;
  font: bold 2.3rem/1 'icomoon';
  color: #677073;
  text-decoration: none;
}

.popup-close::before {
  content: '\e913';
}

.popup-close:hover,
.popup-close:focus {
  text-decoration: none;
}

#previewer .popup-close, #previewer + .popup-close {
  font-weight: 300;
  color: #fff;
  background: rgba(120,120,120,0.8);
  padding: 7px;
  border-radius: 50%;
  right: 20px;
  top: 20px;
  position: fixed;
  z-index: 1111;
  display: none;
}
#previewer .popup-close:hover, #previewer + .popup-close:hover {
  background: rgba(120,120,120,0.95);
  color: #fff;
  opacity: 1;
}

.popup-footer {
  font-size: 1.5rem;
  line-height: 1.3;
  color: #41494C;
  text-align: center;
  right: 25px;
  width: 180px;
  top: -95px;
  padding: 10px;
}

.popup-bubble:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: #CAD6E2;
  border-bottom: 0;
  margin-left: -20px;
  margin-bottom: -15px;
}

.popup-lightbox,
.popupbox-wrap {
  position: fixed;
  background: #fff;
  color: #677073;
  border-radius: 5px;
  z-index: 600;
  max-width: 610px;
  width: 80%;
  padding: 40px;
  left: 50%;
  top: 50%;
  font-size: 1.4rem;
  max-height: 90%;
  overflow: auto;
  box-sizing: border-box;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.popup-lightbox p:last-of-type,
.popupbox-wrap p:last-of-type {
  margin-bottom: 0;
}

.popup-lightbox i,
.popupbox-wrap i {
  color: #CAD6E2;
  margin-bottom: 20px;
  display: block;
}

.popup-lightbox .icon,
.popupbox-wrap .icon {
  font-size: 4rem;
}

.popup-lightbox .circular-num,
.popupbox-wrap .circular-num {
  margin-top: 0;
  margin-bottom: 20px;
}

.popup-lightbox a,
.popupbox-wrap a {
  color: #4A5882;
}

.popup-lightbox a:hover,
.popup-lightbox a:focus,
.popupbox-wrap a:hover,
.popupbox-wrap a:focus {
  color: #384262;
}

.popup-lightbox .shrink-content,
.popupbox-wrap .shrink-content {
  max-width: 365px;
  margin-left: auto;
  margin-right: auto;
}

#mask {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 500;
  width: 100%;
  height: 100%;
  display: none;
}

#previewer {
  width: 900px;
  max-width: 90%;
  height: 90vh;
  padding: 0;
  top: 20%;
  -webkit-transform: translate(-50%, -16%);
  -moz-transform: translate(-50%, -16%);
  transform: translate(-50%, -16%);
  display: none;
}

#previewer .previewer-content {
  height: 100%;
}

.form-wrapper {
  padding: 0 3%;
}

form {
  height: auto !important;
  font: 1.68rem/1.3 "Poppins", "Calibri", "Trebuchet MS", Arial, sans-serif;
  letter-spacing: normal;
}

form input[type="submit"] {
  background: #0077DD;
  color: #fff;
}

form .btn {
  height: 45px;
  padding: 10px 30px;
  font-weight: 600;
  min-width: 150px;
  box-sizing: border-box;
}

.option-label {
  text-align: center;
  font-size: 2rem;
}

.is-invalid label {
  opacity: 1;
  top: -20px !important;
  z-index: 11;
  font-size: 1.4rem;
  color: #41494C;
}

.is-invalid input {
  margin-top: 10px;
}

.is-invalid .centric_form_error {
  position: absolute;
}

.form_error {
  color: #d23a3e;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  width: 100%;
  height: 54px;
  padding: 5px 15px;
  font: 300 1.68rem/1.3 "Poppins", "Calibri", "Trebuchet MS", Arial, sans-serif;
  color: #31394D;
  border: 1px solid #E8E8E8;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="text"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="password"]:focus,
input[type="password"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  border: 1px solid #F6F6F6;
  color: #31394D;
  outline: none;
}

input[type="password"] {
  letter-spacing: 2px;
  font-size: 2rem;
}

input[type="password"]::placeholder {
  letter-spacing: normal;
  font-size: 1.68rem;
}

.field-group {
  margin-bottom: 25px;
  position: relative;
}

.field-group label {
  display: block;
  line-height: 1.3;
  font-weight: 500;
  font-size: 1.26rem;
  color: #748AA1;
  margin-bottom: 5px;
}

.field-group .forgot-link {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1.3;
  text-decoration: none;
  color: #748AA1;
  font-weight: 400;
}

.field-group .forgot-link:hover,
.field-group .forgot-link:focus {
  color: #5b7187;
  text-decoration: underline;
}

.field-group .field-value {
  font-size: 1.68rem;
  font-weight: 300;
  padding: 13px 0;
  display: block;
}

.custom-select {
  position: relative;
}

.custom-select::before {
  content: "\e901";
  font: 2rem/1 icomoon;
  position: absolute;
  top: 18px;
  right: 18px;
  color: #0574D8;
}

.custom-select select {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

select {
  cursor: pointer;
}

select option[value="-1"] {
  opacity: 0.8;
}

select.multi-select-box-element {
  min-height: 130px;
  height: auto;
}

select.multi-select-box-element option {
  padding: 5px 0;
}

select.multi-select-box-element + ::after {
  display: none;
}

/*the container must be positioned relative:*/

.select-box .select-selected,
.select-box .select-items,
.select-box-element .select-selected,
.select-box-element .select-items {
  display: none;
}

.custom-checkbox-asTag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.custom-checkbox-asTag label {
  position: relative;
  text-align: center;
  margin: 6px 10px;
  cursor: pointer;
  flex-grow: 1;
}

.custom-checkbox-asTag label input {
  opacity: 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
}

.custom-checkbox-asTag label span {
  position: relative;
  z-index: 0;
  display: block;
  vertical-align: middle;
  border: 2px solid #677073;
  border-radius: 10px;
  min-width: 287px;
  height: 58px;
  line-height: 1.1;
  padding: 0;
  color: #31394D;
  word-break: break-all;
  word-break: break-word;
  box-sizing: border-box;
}

.custom-checkbox-asTag label span small {
  display: block;
}

.custom-checkbox-asTag label span.tag-sm {
  min-width: 132px;
  max-width: 285px;
}

.custom-checkbox-asTag label span span {
  display: grid;
  border: none;
  padding-top: 1px;
  align-content: center;
  height: 100%;
  padding: 10px;
  min-width: 50px;
}

.custom-checkbox-asTag label input:hover + span {
  background: #677073;
}

.custom-checkbox-asTag label input:checked + span {
  background: #677073;
  border-color: #677073;
  color: #fff;
}

.custom-checkbox-asTag label input:checked + span span {
  color: #fff;
}

.form-question .field-group {
  margin-bottom: 5rem;
}

.scrollable .viewport {
  width: 100% !important;
}

#sidebar {
  width: 280px;
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

#sidebar h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

#sidebar .box {
  border-top: none;
}

#sidebar .box .logo-wrap {
  padding-bottom: 0;
}

#sidebar .box .box-body {
  flex: 1;
}

#sidebar .box:last-child {
  margin-bottom: 0;
}

#sidebar .box .logo-wrap {
  border-top: 1px solid #F6F6F6;
}

#sidebar .scrollable .scroll-bar.vertical {
  right: 9px;
}

#sidebar .box-inner {
  padding-right: 10px;
  padding-top: 0;
}

#sidebar .box-inner .scrollable .scroll-bar.vertical {
  right: 0px;
}

.has-2-box .box-first .scroll-content {
  min-height: 165px;
  height: 100%;
}

.has-2-box .box-last .scroll-content {
  min-height: 100%;
  max-height: 100%;
}

.resource-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.resource-item .resource-info {
  /*font-size: 1rem;*/
  font-weight: 300;
}

.resource-item .resource-info p {
  margin-bottom: 0;
}

.resource-item .resource-icons {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.resource-item .resource-icons a {
  display: block;
  text-decoration: none;
  margin-left: 20px;
  font-size: 1.5rem;
  line-height: 1;
}

.resource-item .resource-icons a.previewer {
  color: #677073;
}

.resource-item .resource-icons a.downloader {
  color: #677073;
}

.resource-item .resource-icons a:hover,
.resource-item .resource-icons a:focus {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* color theme */

body.theme1 .content a {
  color: #4A5882;
}

body.theme1 .content a:hover,
body.theme1 .content a:focus {
  color: #384262;
}

body.theme1 .box-header {
  background-color: #4A5882;
}

body.theme1 .course-container:before {
  background-color: #4A5882;
}

body.theme1 .state-completed,
body.theme1 .state-current {
  background-color: #4A5882;
}

body.theme1 .module-list .wpcw_fe_unit_complete.module-item {
  border-right-color: #4A5882;
}

body.theme1 .module-list .wpcw_fe_unit_complete.module-item .module-state {
  background-color: #4A5882;
}

body.theme1 .module-list .module-item .module-icons a.downloader {
  background-color: #4A5882;
}

body.theme1 .resource-item .resource-icons a.downloader {
  color: #4A5882;
}

body.theme1 .scrollable .scroll-bar.vertical .thumb {
  background: #4A5882;
}

body.theme1 .btn:not(.btn-reset),
body.theme1 input[type="button"],
body.theme1 input[type="submit"] {
  border-color: #4A5882;
  background-color: #4A5882;
}

body.theme1 .btn:not(.btn-reset):hover,
body.theme1 .btn:not(.btn-reset):focus,
body.theme1 input[type="button"]:hover,
body.theme1 input[type="button"]:focus,
body.theme1 input[type="submit"]:hover,
body.theme1 input[type="submit"]:focus {
  background-color: #384262;
}

body.theme1 .test-header-bar .module-controls a {
  color: #4A5882;
}

body.theme1 .sa_answer-options ol li input:checked ~ label {
  background-color: #4A5882;
}

body.theme1 .tooltip::before {
  background-color: #4A5882;
}

body.theme1 #sidebar h4 {
  color: #4A5882;
}

body.theme1 .list-num li::before,
body.theme1 .icon-completed {
  border-color: #4A5882;
}

body.theme1 .icon-completed {
  color: #4A5882;
}

body.theme1 .list-bullet li:before {
  background-color: #4A5882;
}

body.theme2 .content a {
  color: #6474A6;
}

body.theme2 .content a:hover,
body.theme2 .content a:focus {
  color: #4e5d89;
}

body.theme2 .box-header {
  background-color: #6474A6;
}

body.theme2 .course-container:before {
  background-color: #6474A6;
}

body.theme2 .state-completed,
body.theme2 .state-current {
  background-color: #6474A6;
}

body.theme2 .module-list .wpcw_fe_unit_complete.module-item {
  border-right-color: #6474A6;
}

body.theme2 .module-list .wpcw_fe_unit_complete.module-item .module-state {
  background-color: #6474A6;
}

body.theme2 .module-list .module-item .module-icons a.downloader {
  background-color: #6474A6;
}

body.theme2 .resource-item .resource-icons a.downloader {
  color: #6474A6;
}

body.theme2 .scrollable .scroll-bar.vertical .thumb {
  background: #6474A6;
}

body.theme2 .btn:not(.btn-reset),
body.theme2 input[type="button"],
body.theme2 input[type="submit"] {
  border-color: #6474A6;
  background-color: #6474A6;
}

body.theme2 .btn:not(.btn-reset):hover,
body.theme2 .btn:not(.btn-reset):focus,
body.theme2 input[type="button"]:hover,
body.theme2 input[type="button"]:focus,
body.theme2 input[type="submit"]:hover,
body.theme2 input[type="submit"]:focus {
  background-color: #4e5d89;
}

body.theme2 .test-header-bar .module-controls a {
  color: #6474A6;
}

body.theme2 .sa_answer-options ol li input:checked ~ label {
  background-color: #6474A6;
}

body.theme2 .tooltip::before {
  background-color: #6474A6;
}

body.theme2 #sidebar h4 {
  color: #6474A6;
}

body.theme2 .list-num li::before,
body.theme2 .icon-completed {
  border-color: #6474A6;
}

body.theme2 .icon-completed {
  color: #6474A6;
}

body.theme2 .list-bullet li:before {
  background-color: #6474A6;
}

body.theme3 .content a {
  color: #C21E76;
}

body.theme3 .content a:hover,
body.theme3 .content a:focus {
  color: #96175b;
}

body.theme3 .box-header {
  background-color: #C21E76;
}

body.theme3 .course-container:before {
  background-color: #C21E76;
}

body.theme3 .state-completed,
body.theme3 .state-current {
  background-color: #C21E76;
}

body.theme3 .module-list .wpcw_fe_unit_complete.module-item {
  border-right-color: #C21E76;
}

body.theme3 .module-list .wpcw_fe_unit_complete.module-item .module-state {
  background-color: #C21E76;
}

body.theme3 .module-list .module-item .module-icons a.downloader {
  background-color: #C21E76;
}

body.theme3 .resource-item .resource-icons a.downloader {
  color: #C21E76;
}

body.theme3 .scrollable .scroll-bar.vertical .thumb {
  background: #C21E76;
}

body.theme3 .btn:not(.btn-reset),
body.theme3 input[type="button"],
body.theme3 input[type="submit"] {
  border-color: #C21E76;
  background-color: #C21E76;
}

body.theme3 .btn:not(.btn-reset):hover,
body.theme3 .btn:not(.btn-reset):focus,
body.theme3 input[type="button"]:hover,
body.theme3 input[type="button"]:focus,
body.theme3 input[type="submit"]:hover,
body.theme3 input[type="submit"]:focus {
  background-color: #96175b;
}

body.theme3 .test-header-bar .module-controls a {
  color: #C21E76;
}

body.theme3 .sa_answer-options ol li input:checked ~ label {
  background-color: #C21E76;
}

body.theme3 .tooltip::before {
  background-color: #C21E76;
}

body.theme3 #sidebar h4 {
  color: #C21E76;
}

body.theme3 .list-num li::before,
body.theme3 .icon-completed {
  border-color: #C21E76;
}

body.theme3 .icon-completed {
  color: #C21E76;
}

body.theme3 .list-bullet li:before {
  background-color: #C21E76;
}

body.theme4 .content a {
  color: #0077DD;
}

body.theme4 .content a:hover,
body.theme4 .content a:focus {
  color: #005caa;
}

body.theme4 .box-header {
  background-color: #0077DD;
}

body.theme4 .course-container:before {
  background-color: #0077DD;
}

body.theme4 .state-completed,
body.theme4 .state-current {
  background-color: #0077DD;
}

body.theme4 .module-list .wpcw_fe_unit_complete.module-item {
  border-right-color: #0077DD;
}

body.theme4 .module-list .wpcw_fe_unit_complete.module-item .module-state {
  background-color: #0077DD;
}

body.theme4 .module-list .module-item .module-icons a.downloader {
  background-color: #0077DD;
}

body.theme4 .resource-item .resource-icons a.downloader {
  color: #0077DD;
}

body.theme4 .scrollable .scroll-bar.vertical .thumb {
  background: #0077DD;
}

body.theme4 .btn:not(.btn-reset),
body.theme4 input[type="button"],
body.theme4 input[type="submit"] {
  border-color: #0077DD;
  background-color: #0077DD;
}

body.theme4 .btn:not(.btn-reset):hover,
body.theme4 .btn:not(.btn-reset):focus,
body.theme4 input[type="button"]:hover,
body.theme4 input[type="button"]:focus,
body.theme4 input[type="submit"]:hover,
body.theme4 input[type="submit"]:focus {
  background-color: #005caa;
}

body.theme4 .test-header-bar .module-controls a {
  color: #0077DD;
}

body.theme4 .sa_answer-options ol li input:checked ~ label {
  background-color: #0077DD;
}

body.theme4 .tooltip::before {
  background-color: #0077DD;
}

body.theme4 #sidebar h4 {
  color: #0077DD;
}

body.theme4 .list-num li::before,
body.theme4 .icon-completed {
  border-color: #0077DD;
}

body.theme4 .icon-completed {
  color: #0077DD;
}

body.theme4 .list-bullet li:before {
  background-color: #0077DD;
}

body.theme5 .content a {
  color: #9643B1;
}

body.theme5 .content a:hover,
body.theme5 .content a:focus {
  color: #77358c;
}

body.theme5 .box-header {
  background-color: #9643B1;
}

body.theme5 .course-container:before {
  background-color: #9643B1;
}

body.theme5 .state-completed,
body.theme5 .state-current {
  background-color: #9643B1;
}

body.theme5 .module-list .wpcw_fe_unit_complete.module-item {
  border-right-color: #9643B1;
}

body.theme5 .module-list .wpcw_fe_unit_complete.module-item .module-state {
  background-color: #9643B1;
}

body.theme5 .module-list .module-item .module-icons a.downloader {
  background-color: #9643B1;
}

body.theme5 .resource-item .resource-icons a.downloader {
  color: #9643B1;
}

body.theme5 .scrollable .scroll-bar.vertical .thumb {
  background: #9643B1;
}

body.theme5 .btn:not(.btn-reset),
body.theme5 input[type="button"],
body.theme5 input[type="submit"] {
  border-color: #9643B1;
  background-color: #9643B1;
}

body.theme5 .btn:not(.btn-reset):hover,
body.theme5 .btn:not(.btn-reset):focus,
body.theme5 input[type="button"]:hover,
body.theme5 input[type="button"]:focus,
body.theme5 input[type="submit"]:hover,
body.theme5 input[type="submit"]:focus {
  background-color: #77358c;
}

body.theme5 .test-header-bar .module-controls a {
  color: #9643B1;
}

body.theme5 .sa_answer-options ol li input:checked ~ label {
  background-color: #9643B1;
}

body.theme5 .tooltip::before {
  background-color: #9643B1;
}

body.theme5 #sidebar h4 {
  color: #9643B1;
}

body.theme5 .list-num li::before,
body.theme5 .icon-completed {
  border-color: #9643B1;
}

body.theme5 .icon-completed {
  color: #9643B1;
}

body.theme5 .list-bullet li:before {
  background-color: #9643B1;
}

body.theme6 .content a {
  color: #54C97B;
}

body.theme6 .content a:hover,
body.theme6 .content a:focus {
  color: #38b261;
}

body.theme6 .box-header {
  background-color: #54C97B;
}

body.theme6 .course-container:before {
  background-color: #54C97B;
}

body.theme6 .state-completed,
body.theme6 .state-current {
  background-color: #54C97B;
}

body.theme6 .module-list .wpcw_fe_unit_complete.module-item {
  border-right-color: #54C97B;
}

body.theme6 .module-list .wpcw_fe_unit_complete.module-item .module-state {
  background-color: #54C97B;
}

body.theme6 .module-list .module-item .module-icons a.downloader {
  background-color: #54C97B;
}

body.theme6 .resource-item .resource-icons a.downloader {
  color: #54C97B;
}

body.theme6 .scrollable .scroll-bar.vertical .thumb {
  background: #54C97B;
}

body.theme6 .btn:not(.btn-reset),
body.theme6 input[type="button"],
body.theme6 input[type="submit"] {
  border-color: #54C97B;
  background-color: #54C97B;
}

body.theme6 .btn:not(.btn-reset):hover,
body.theme6 .btn:not(.btn-reset):focus,
body.theme6 input[type="button"]:hover,
body.theme6 input[type="button"]:focus,
body.theme6 input[type="submit"]:hover,
body.theme6 input[type="submit"]:focus {
  background-color: #38b261;
}

body.theme6 .test-header-bar .module-controls a {
  color: #54C97B;
}

body.theme6 .sa_answer-options ol li input:checked ~ label {
  background-color: #54C97B;
}

body.theme6 .tooltip::before {
  background-color: #54C97B;
}

body.theme6 #sidebar h4 {
  color: #54C97B;
}

body.theme6 .list-num li::before,
body.theme6 .icon-completed {
  border-color: #54C97B;
}

body.theme6 .icon-completed {
  color: #54C97B;
}

body.theme6 .list-bullet li:before {
  background-color: #54C97B;
}

body.theme7 .content a {
  color: #6474A6;
}

body.theme7 .content a:hover,
body.theme7 .content a:focus {
  color: #4e5d89;
}

body.theme7 .box-header {
  background-color: #6474A6;
}

body.theme7 .course-container:before {
  background-color: #6474A6;
}

body.theme7 .state-completed,
body.theme7 .state-current {
  background-color: #6474A6;
}

body.theme7 .module-list .wpcw_fe_unit_complete.module-item {
  border-right-color: #6474A6;
}

body.theme7 .module-list .wpcw_fe_unit_complete.module-item .module-state {
  background-color: #6474A6;
}

body.theme7 .module-list .module-item .module-icons a.downloader {
  background-color: #6474A6;
}

body.theme7 .resource-item .resource-icons a.downloader {
  color: #6474A6;
}

body.theme7 .scrollable .scroll-bar.vertical .thumb {
  background: #6474A6;
}

body.theme7 .btn:not(.btn-reset),
body.theme7 input[type="button"],
body.theme7 input[type="submit"] {
  border-color: #6474A6;
  background-color: #6474A6;
}

body.theme7 .btn:not(.btn-reset):hover,
body.theme7 .btn:not(.btn-reset):focus,
body.theme7 input[type="button"]:hover,
body.theme7 input[type="button"]:focus,
body.theme7 input[type="submit"]:hover,
body.theme7 input[type="submit"]:focus {
  background-color: #4e5d89;
}

body.theme7 .test-header-bar .module-controls a {
  color: #6474A6;
}

body.theme7 .sa_answer-options ol li input:checked ~ label {
  background-color: #6474A6;
}

body.theme7 .tooltip::before {
  background-color: #6474A6;
}

body.theme7 #sidebar h4 {
  color: #6474A6;
}

body.theme7 .list-num li::before,
body.theme7 .icon-completed {
  border-color: #6474A6;
}

body.theme7 .icon-completed {
  color: #6474A6;
}

body.theme7 .list-bullet li:before {
  background-color: #6474A6;
}

body.theme8 .content a {
  color: #4A5882;
}

body.theme8 .content a:hover,
body.theme8 .content a:focus {
  color: #384262;
}

body.theme8 .box-header {
  background-color: #4A5882;
}

body.theme8 .course-container:before {
  background-color: #4A5882;
}

body.theme8 .state-completed,
body.theme8 .state-current {
  background-color: #4A5882;
}

body.theme8 .module-list .wpcw_fe_unit_complete.module-item {
  border-right-color: #4A5882;
}

body.theme8 .module-list .wpcw_fe_unit_complete.module-item .module-state {
  background-color: #4A5882;
}

body.theme8 .module-list .module-item .module-icons a.downloader {
  background-color: #4A5882;
}

body.theme8 .resource-item .resource-icons a.downloader {
  color: #4A5882;
}

body.theme8 .scrollable .scroll-bar.vertical .thumb {
  background: #4A5882;
}

body.theme8 .btn:not(.btn-reset),
body.theme8 input[type="button"],
body.theme8 input[type="submit"] {
  border-color: #4A5882;
  background-color: #4A5882;
}

body.theme8 .btn:not(.btn-reset):hover,
body.theme8 .btn:not(.btn-reset):focus,
body.theme8 input[type="button"]:hover,
body.theme8 input[type="button"]:focus,
body.theme8 input[type="submit"]:hover,
body.theme8 input[type="submit"]:focus {
  background-color: #384262;
}

body.theme8 .test-header-bar .module-controls a {
  color: #4A5882;
}

body.theme8 .sa_answer-options ol li input:checked ~ label {
  background-color: #4A5882;
}

body.theme8 .tooltip::before {
  background-color: #4A5882;
}

body.theme8 #sidebar h4 {
  color: #4A5882;
}

body.theme8 .list-num li::before,
body.theme8 .icon-completed {
  border-color: #4A5882;
}

body.theme8 .icon-completed {
  color: #4A5882;
}

body.theme8 .list-bullet li:before {
  background-color: #4A5882;
}

.standalone-page {
  font-size: 1.68rem;
  line-height: 1.3;
}

.standalone-page #topbar {
  border-bottom: none;
  background: none;
  height: 50px;
}

.standalone-page #topbar .container {
  padding: 0 15px;
  height: 100%;
}

.standalone-page #topbar .row {
  height: 100%;
}

.standalone-page #topbar p {
  margin-bottom: 0;
}

.standalone-page #topbar .help-text {
  font-weight: 500;
  text-decoration: underline;
}

.standalone-page .forgot-link {
  font-size: 1.26rem;
}

.standalone-page #main {
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 75px);
  background: none;
  box-shadow: none;
  padding-top: calc(5.2% - 75px);
}

.standalone-page #main > h2 {
  font-size: 2.2rem;
  color: #4A5882;
  padding: 10px 15px;
  margin-top: 10px;
  align-self: flex-start;
}

.standalone-page #header + #main {
  min-height: calc(100vh - 100px);
}

.standalone-page #main.vrt-center {
  padding-top: calc(6% - 50px);
  min-height: calc(94vh - 100px);
  height: calc(94vh - 100px);
}

.standalone-page .form-only-content {
  max-width: 642px;
  width: 100%;
  margin: 0 auto 30px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  box-sizing: border-box;
}

.standalone-page .form-only-content .box-head {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #E8E8E8;
  padding-top: 5px;
  padding-bottom: 15px;
  position: relative;
}

.standalone-page .form-only-content .navbar-brand {
  width: 148px;
  height: 40px;
}

.standalone-page .form-only-content .form {
  max-width: 480px;
  margin: 0 auto;
  padding: 30px;
}

.standalone-page .form-only-content .form h1 {
  font-weight: 600;
  font-size: 2.4rem;
  color: #31394D;
  margin-bottom: 5px;
}

.standalone-page .form-only-content .form h2 {
  font-weight: 300;
  font-size: 1.8rem;
  color: #31394D;
}

.standalone-page .form-only-content .form-header {
  margin-bottom: 40px;
}

.standalone-page .form-only-content a {
  color: #748AA1;
}

.standalone-page .form-only-content.wide {
  max-width: 100%;
  width: 975px;
  margin-left: 15px;
}

.standalone-page .form-only-content.wide .form {
  max-width: 810px;
  padding: 35px 20px;
}

.standalone-page #main .logo-wrap {
  position: static;
  border-top: 1px solid #E8E8E8;
  justify-content: center;
  padding: 10px 20px;
  width: 100%;
  display: flex;
}

.standalone-page .logo-wrap img {
  margin: 0 18px;
  max-height: none;
}

.standalone-page .profile-wrap {
  position: relative;
}

.standalone-page .profile-wrap .upload-profile-image {
  left: auto;
  right: 18px;
  color: #fff;
}

.sign-up-link {
  font-weight: 600;
  color: #748AA1;
  display: block;
  text-align: center;
  text-decoration: none;
  padding-top: 10px;
}

.sign-up-link:hover,
.sign-up-link:focus {
  color: #5b7187;
}

.no-fancy {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.08) !important;
  border-radius: 1px !important;
}

.login-page .page-intro {
  margin-top: 45px;
  margin-bottom: 45px;
}

.login-page .circular-num {
  margin: 0 auto 20px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
}

.login-page .extra-link {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 0;
}

.help-text {
  background: none;
}

.log-form-group {
  width: 100%;
  margin-bottom: 20px !important;
  padding: 0 !important;
  position: relative;
}

.log-form-group label.lbl-icon {
  background-color: #677073;
  height: 51px;
  width: 57px;
  float: left;
  cursor: pointer;
}

.log-form-group label.lbl-icon span {
  height: 0;
  width: 0;
  visibility: hidden;
  opacity: 0;
}

.log-form-group label.lbl-icon[for="userusername"]::before {
  content: '\e907';
}

.log-form-group label.lbl-icon[for="userpassword"]::before {
  content: '\e905';
}

.log-form-group input {
  height: 51px;
  padding: 5px 10px;
  border-color: #F6F6F6 !important;
  background-color: #F6F6F6;
  color: #31394D;
  font-size: 1.6rem;
}

.log-form-group label.lw-error {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  display: block;
  font-size: 1.3rem;
}

.log_forms {
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.multiple-fields > div {
  flex-grow: 1;
  margin-right: 10px;
}

.multiple-fields > div:last-child {
  margin-right: 0;
  margin-left: 10px;
}

.two-col-wrap > div {
  width: calc(50% - 10px);
}

.two-col-wrap div.left-col {
  width: calc(50% - 40px);
  margin-right: 20px;
}

.two-col-wrap div.right-col {
  width: calc(50% - 40px);
  margin-left: 20px;
}

.profile-wrap {
  padding: 20px 0 10px;
}

.profile-wrap .profile-image {
  margin: 0 auto 20px;
  height: 60px;
  width: 60px;
}

.profile-wrap .profile-image img {
  width: 100%;
}

.profile-wrap .profile-name {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0;
}

.contact-head {
  font-size: 1.4rem;
  font-weight: normal;
  color: #677073;
  padding: 20px 30px 0;
}

.contact-head h1 {
  font-size: 2.4rem;
  font-weight: 600;
}

.contact-head h3 {
  color: #41494C;
  margin-bottom: 5px;
}

.contact-head p {
  margin-bottom: 15px !important;
}

.contact-head .contactf-info {
  font-size: 1.2rem;
  font-weight: 300;
  display: inline-flex;
}

.contact-head .contactf-info span {
  margin-right: 35px;
  display: inline-flex;
  align-items: center;
}

.contact-head .contactf-info span i {
  margin-right: 10px;
  margin-bottom: 0;
  font-size: 2rem;
  color: #4A5882;
}

#contact-form {
  max-width: 100%;
}

#contact-form textarea {
  height: auto;
  background-color: rgba(65, 73, 76, 0.08);
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  resize: vertical;
  padding: 15px;
  font-size: 1.2rem;
  min-height: 320px;
}

.capcha-wrapper {
  margin-right: 25px;
}

.popup-lightbox .form-only-content {
  box-shadow: none;
}

.popup-lightbox .form-only-content .contact-head {
  padding: 0;
}

.popup-lightbox .form-only-content .form {
  padding: 20px 0;
}

.form .message-icon i {
  font-size: 12rem;
}

.form .message-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #4A5882;
}

.form .message-text {
  font-weight: 300;
}

#forgot-password-form {
  max-width: 385px;
  padding: 10% 30px;
}

.test-header-bar {
  border-top: 1px solid #F6F6F6;
  border-bottom: 1px solid #F6F6F6;
  padding: 12px 0;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #121B25;
}

.test-header-bar .module-controls {
  padding: 0;
  margin-left: auto;
  position: static;
}

.test-header-bar .module-controls .btn {
  min-width: 70px;
  text-align: center;
  padding: 8px 10px;
}

.test-header-bar .module-controls a {
  text-decoration: none;
  padding: 5px;
  font-weight: 500;
  color: #121B25;
}

.test-header-bar .module-controls a[disabled] {
  font-weight: 300;
  color: #121B25 !important;
  cursor: not-allowed;
}

.sa_question {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #121B25;
  margin-bottom: 30px;
}

.sa_answer-options {
  counter-reset: my-alpha-counter;
}

.sa_answer-options ol {
  list-style: none;
  padding: 0;
}

.sa_answer-options ol li {
  counter-increment: my-alpha-counter;
  margin-bottom: 30px;
  padding: 0;
  position: relative;
}

.sa_answer-options ol li label {
  font-weight: normal;
  display: flex;
  align-items: center;
  border: 1px solid #F6F6F6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* padding: 20px; */
  border-radius: 5px;
  min-height: 50px;
  padding: 13px 20px 13px;
  box-sizing: border-box;
  color: #121B25;
  cursor: pointer;
}

.sa_answer-options ol li label:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
}

.sa_answer-options ol li label:before {
  content: counter(my-alpha-counter, upper-alpha) ".";
  font-weight: bold;
  margin-right: 5px;
}

.sa_answer-options ol li input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.sa_answer-options ol li input:checked ~ label {
  background: #666;
  color: #fff;
}

.dashboard-header-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.dashboard-header-wrap .module-progress {
  margin-left: auto;
}

.courses-full-wrapper .row {
  margin-left: -10px;
  margin-right: -10px;
}

.courses-full-wrapper .row .box {
  margin: 0 10px 20px;
}
.courses-full-wrapper .module-list{
  height: calc(100vh - 100px);
}
@media (min-height:820px){
  .courses-full-wrapper .module-list{
    height: calc(100vh - 235px);
  }
}

.courses-full-wrapper .inner-scroll-content{
  max-width: 100%;
}
.dashboard-module-wrap{
  display: flex;
  flex-wrap: wrap;
}

.module-single-wrapper {
  text-decoration: none;
  color: #41494C;
  width: calc(25% - 20px);
}

.module-single-wrapper .logo-holder {
  padding: 23px 20px;
  background-color: #677073;
  color: #fff;
  text-align: center;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-single-wrapper .logo-holder i {
  font-size: 7rem;
}

.module-single-wrapper .logo-holder img {
  max-height: 85px;
  max-width: 120px;
}

.module-single-wrapper .module-body {
  padding: 11px 13px 20px;
}

.module-single-wrapper .module-title {
  text-transform: capitalize;
  color: #121B25;
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
}

.module-single-wrapper .module-status {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  line-height: 1;
}

.module-single-wrapper .module-status .status {
  color: #41494C;
  font-size: 1rem;
  margin-left: auto;
}

.module-single-wrapper .complete-meter {
  width: calc(100% - 20px);
  height: 10px;
  background-color: #677073;
  border-radius: 10px;
}

.module-single-wrapper .complete-meter .meter-reading {
  height: 100%;
  border-radius: 10px;
}

.module-single-wrapper .btn {
  border-radius: 5px;
  font-size: 1.2rem;
  min-width: 110px;
  display: inline-block;
  text-align: center;
}

.module-single-wrapper span {
  line-height: 1.3;
}

.module-single-wrapper:hover,
.module-single-wrapper:focus {
  text-decoration: none;
}

.module-single-wrapper.theme1 .meter-reading,
.module-single-wrapper.theme1 .logo-holder {
  background-color: #4A5882;
}

.module-single-wrapper.theme1 .btn {
  background-color: #4A5882;
  border-color: #4A5882;
}

.module-single-wrapper.theme1.wpcw_fe_unit_complete .module-status .status:before {
  background-color: #4A5882;
}

.module-single-wrapper.theme1:hover .btn,
.module-single-wrapper.theme1:focus .btn {
  background-color: #384262;
}

.module-single-wrapper.theme2 .meter-reading,
.module-single-wrapper.theme2 .logo-holder {
  background-color: #6474A6;
}

.module-single-wrapper.theme2 .btn {
  background-color: #6474A6;
  border-color: #6474A6;
}

.module-single-wrapper.theme2.wpcw_fe_unit_complete .module-status .status:before {
  background-color: #6474A6;
}

.module-single-wrapper.theme2:hover .btn,
.module-single-wrapper.theme2:focus .btn {
  background-color: #4e5d89;
}

.module-single-wrapper.theme3 .meter-reading,
.module-single-wrapper.theme3 .logo-holder {
  background-color: #C21E76;
}

.module-single-wrapper.theme3 .btn {
  background-color: #C21E76;
  border-color: #C21E76;
}

.module-single-wrapper.theme3.wpcw_fe_unit_complete .module-status .status:before {
  background-color: #C21E76;
}

.module-single-wrapper.theme3:hover .btn,
.module-single-wrapper.theme3:focus .btn {
  background-color: #96175b;
}

.module-single-wrapper.theme4 .meter-reading,
.module-single-wrapper.theme4 .logo-holder {
  background-color: #0077DD;
}

.module-single-wrapper.theme4 .btn {
  background-color: #0077DD;
  border-color: #0077DD;
}

.module-single-wrapper.theme4.wpcw_fe_unit_complete .module-status .status:before {
  background-color: #0077DD;
}

.module-single-wrapper.theme4:hover .btn,
.module-single-wrapper.theme4:focus .btn {
  background-color: #005caa;
}

.module-single-wrapper.theme5 .meter-reading,
.module-single-wrapper.theme5 .logo-holder {
  background-color: #9643B1;
}

.module-single-wrapper.theme5 .btn {
  background-color: #9643B1;
  border-color: #9643B1;
}

.module-single-wrapper.theme5.wpcw_fe_unit_complete .module-status .status:before {
  background-color: #9643B1;
}

.module-single-wrapper.theme5:hover .btn,
.module-single-wrapper.theme5:focus .btn {
  background-color: #77358c;
}

.module-single-wrapper.theme6 .meter-reading,
.module-single-wrapper.theme6 .logo-holder {
  background-color: #54C97B;
}

.module-single-wrapper.theme6 .btn {
  background-color: #54C97B;
  border-color: #54C97B;
}

.module-single-wrapper.theme6.wpcw_fe_unit_complete .module-status .status:before {
  background-color: #54C97B;
}

.module-single-wrapper.theme6:hover .btn,
.module-single-wrapper.theme6:focus .btn {
  background-color: #38b261;
}

.module-single-wrapper.theme7 .meter-reading,
.module-single-wrapper.theme7 .logo-holder {
  background-color: #6474A6;
}

.module-single-wrapper.theme7 .btn {
  background-color: #6474A6;
  border-color: #6474A6;
}

.module-single-wrapper.theme7.wpcw_fe_unit_complete .module-status .status:before {
  background-color: #6474A6;
}

.module-single-wrapper.theme7:hover .btn,
.module-single-wrapper.theme7:focus .btn {
  background-color: #4e5d89;
}

.module-single-wrapper.theme8 .meter-reading,
.module-single-wrapper.theme8 .logo-holder {
  background-color: #4A5882;
}

.module-single-wrapper.theme8 .btn {
  background-color: #4A5882;
  border-color: #4A5882;
}

.module-single-wrapper.theme8.wpcw_fe_unit_complete .module-status .status:before {
  background-color: #4A5882;
}

.module-single-wrapper.theme8:hover .btn,
.module-single-wrapper.theme8:focus .btn {
  background-color: #384262;
}

.wpcw_fe_unit_complete .status-icon::before {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  content: "\e908";
}

.wpcw_fe_unit_complete .module-status .status > span {
  display: none;
}

.wpcw_fe_unit_complete .module-status .status::before {
  content: '\e908';
  font-family: 'icomoon';
  color: white;
  font-size: 0.58rem;
  border-radius: 50%;
  padding: 4px;
}

.wpcw_fe_unit_pending .complete-meter {
  width: calc(100% - 30px);
}

.wpcw_fe_unit_incomplete .complete-meter .meter-reading {
  background-color: #41494C;
}

.wpcw_fe_unit_incomplete .module-status .status > span {
  display: none;
}

.wpcw_fe_unit_incomplete .module-status .status::before {
  content: '\e906';
  font-family: 'icomoon';
  font-size: 1.38rem;
  color: #677073;
}

.wpcw_fe_unit_incomplete .btn {
  background-color: #fff !important;
  border-color: #CAD6E2 !important;
  color: #677073 !important;
  cursor: not-allowed;
}

#profile .content {
  padding-top: 0;
}

#profile .profile-wrap {
  border-top: 1px solid #F6F6F6;
  border-bottom: 1px solid #F6F6F6;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 0;
  position: relative;
}

#profile .profile-image {
  margin: 0 20px 0 0;
}

#profile .profile-name {
  color: #677073;
}

.upload-profile-image {
  position: absolute;
  z-index: 1;
  top: 56px;
  left: 40px;
  font-size: 1.3rem;
  line-height: 2.1;
  border-radius: 50%;
  background-color: #0574D8;
  height: 25px;
  width: 25px;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.upload-profile-image:hover,
.upload-profile-image:focus {
  background-color: #0459a6;
  color: #fff;
  text-decoration: none;
}

.btn-download {
  position: absolute;
  width: 160px;
  text-align: center;
  right: 45px;
  top: 50%;
  margin-top: -35px;
  border-color: #0077DD;
  background: #0077DD;
  color: #FFF !important;
  font-size: 1.8rem;
  font-weight: 300;
  padding: 5px 10px;
}

.btn-download:hover,
.btn-download:focus {
  background-color: #0077DD;
  color: #fff !important;
}

.module-list {
  height: calc(100vh - 230px);
  width: 100%;
}

.module-list .scroll-content {
  min-height: 100%;
}

.module-list .scroll-content .overview {
  width: 100%;
}

.module-list .module-item {
  border: 1px solid #E8E8E8;
  border-right: 5px solid #677073;
  box-shadow: -1px 2px 7px rgba(0, 0, 0, 0.1);
  padding: 5px 6px;
  padding-right: 25px;
  margin-bottom: 20px;
  color: #677073 !important;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.module-list .module-item .module-info * {
  color: inherit;
}

.module-list .module-item h4 {
  margin-bottom: 5px;
}

.module-list .module-item .module-status span {
  margin-left: 5px;
}

.module-list .module-item .module-icons {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.module-list .module-item .module-icons a {
  display: block;
  text-decoration: none;
  margin: 0 10px;
}

.module-list .module-item .module-icons a.previewer {
  font-size: 2.1rem;
  line-height: 1;
  color: #677073;
}

.module-list .module-item .module-icons a.previewer:hover,
.module-list .module-item .module-icons a.previewer:focus {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.module-list .module-item .module-icons a.downloader {
  background-color: #677073;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 1.9;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 50%;
}

.module-list .module-item .module-icons a.downloader:hover,
.module-list .module-item .module-icons a.downloader:focus {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.module-list .module-item .module-state {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.module-list .module-item .module-state::before {
  content: '\f04b';
  font-size: 1.5rem;
  line-height: inherit;
  margin-left: 2px;
}

.module-list .module-item .module-state::after {
  display: none;
}

.module-list .module-item.wpcw_fe_unit_complete .module-state::before {
  content: '\e908';
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: 0;
}

.module-list .module-item:hover,
.module-list .module-item:focus {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.module-list .module-item:hover .video-thumb i,
.module-list .module-item:focus .video-thumb i {
  opacity: 1;
}

.module-list .module-item:hover .module-state,
.module-list .module-item:focus .module-state {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.module-thumb {
  max-width: 215px;
  margin-right: 30px;
  min-height: 114px;
  position: relative;
}

.module-thumb .video-thumb i {
  font-size: 4.7rem;
  margin-top: -23px;
  margin-left: -23px;
}

.message-container {
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  font-weight: normal;
  color: #677073;
  max-width: 474px;
}

.message-container p {
  margin-bottom: 30px;
}

.message-container .btn {
  margin-bottom: 20px;
  font-size: 1.68rem;
  font-weight: 600;
}

.message-icon i {
  font-size: 7.4rem;
  color: #4A5882;
  display: block;
  text-align: center;
  margin: 0 auto 40px;
  border-radius: 50%;
}

.icon-completed {
  height: 166px;
  width: 166px;
  line-height: 150px;
  border: 10px solid #4A5882;
}

.message-title {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.certificate-template {
  background: white;
  padding: 0;
  text-align: center;
  color: black;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: normal;
  
  margin: 0;
}

.certificate-template .report-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #0077DD url("../images/bg-curve.png");
  padding: 40px;
  height: 933px;
  box-sizing: border-box;
}

.certificate-template .report-wrapper .inner-wrapper {
  background: white;
  padding: 60px 50px 40px;
  height: calc(100% - 175px);
}

.certificate-template h1 {
  margin: 0 0 15px;
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1.3;
  color: black;
}

.certificate-template h2 {
  color: #0077DD;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.certificate-template p {
  margin-bottom: 20px;
}

.certificate-template .header,
.certificate-template .content {
  max-width: 680px;
  margin: 0 auto;
}

.certificate-template .content {
  padding-left: 30px;
  padding-right: 30px;
}

.certificate-template .top-content {
  padding: 50px 70px 0;
}

.certificate-template .bottom-content {
  margin-bottom: 30px;
  max-width: 695px;
}

.certificate-template .bottom-content p {
  margin-bottom: 8px;
}

.certificate-template .input-block {
  height: 50px;
  border-bottom: 1px solid black;
  margin-bottom: 20px;
}

.certificate-template span.input-block {
  display: inline-block;
  min-width: 100px;
  margin: 0 10px;
  height: 15px;
}

.certificate-template .footer {
  background: white;
  padding: 0 15px 15px;
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.2;
}

.certificate-template .footer .inner-wrapper {
  background: #ebebeb;
  padding: 0;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.certificate-template .footer .col {
  width: 33%;
  padding: 20px 20px 15px;
  position: relative;
  box-sizing: border-box;
}

.certificate-template .footer .col:first-child:after {
  content: '';
  position: absolute;
  height: calc(100% - 50px);
  width: 1px;
  top: 25px;
  right: 0;
  background-color: black;
}

.certificate-template .footer p {
  margin-bottom: 7px;
}

.certificate-template .footer address {
  font-style: normal;
  margin-bottom: 0;
}

.certificate-template .footer .lbl {
  font-weight: bold;
  color: #0077DD;
  margin-bottom: 10px;
}

.certificate-template .footer .logos {
  background-color: #0077DD;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.certificate-template .footer .logos img {
  display: block;
  margin: 5px auto;
  width: 210px;
}

h3 {
  font-size: 2rem;
  line-height: 1.25;
  margin: 0px 10px 15px;
}


/* landing page */
/* ------------ */
.landing-page{
  background: white;
}
.landing-page #header{
  margin-bottom: 0;
  border-bottom: none;
  box-shadow: 0 1px 20px rgba(0,0,0,0.1);
}
.banner{
  padding: 70px 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner .container, 
#landing-main .container, 
.footer .container{
  max-width: 1165px;
}

.banner .logo{
  max-width: 460px;
}
.banner-content{
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.login-content{
  background-color: #fff;
  padding: 30px 6% 20px;
  border-radius: 10px;
  width: 580px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.login-content h2{
  font-size: 24px;
  color: #31394D;
  line-height: 1;
  margin-bottom: 10px;
}
.login-content .form-header{
  margin-bottom: 30px;
}
.login-content p{
  color: #666;
}
.login-content .forgot-link{
  font-size: 12px;
}

.login-content .button-wrapper{
  padding-top: 10px;
}
.login-content .block-elem{
  margin-top: 50px;
  padding-bottom: 0;
}

#landing-main{
  font-size: 1.8rem;
  overflow: hidden;
}

#landing-main .section-group{
  padding: 20px;
}
#landing-main .intro{
  padding-top: 50px;
  font-size: 2.0rem;
}

#landing-main h2{
  font-size: 3.4rem;
  color: #0077DD;
}
.box-module-wrap{
  justify-content: space-between;
}

#landing-main .module-single-wrapper{
  background-color: #e0edf9;
  color: black;
  text-align: center;
  font-size: 1.8rem;
  box-shadow: none;
}
#landing-main .module-single-wrapper .logo-holder{
  background-color: #0077DD;
}

#landing-main .module-single-wrapper .module-body{
  padding: 20px 20px;
}

#landing-main .module-single-wrapper p:last-child{
  margin-bottom: 0;
}
#landing-main .video-wrapper{
  margin-bottom: 50px;
}
#landing-main .video-wrapper:after{
  display: none;
}
.module-userinfo{
  justify-content: space-evenly;
}
.module-userinfo .userinfo-item{
  width: calc(50% - 30px);
  max-width: 355px;
  margin: 0 15px 35px;
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.userinfo-item:before{
  height: 133px;
  background: url('../images/curve-strip.jpg') repeat-x center;
  position: absolute;
  left: 0;
  top: 17px;
  z-index: -1;
}
.userinfo-item:nth-child(odd):before{
  content: '';
  width: 150vw;
  transform: translateX(-25%);
}
.userinfo-item:nth-child(even):before{
  /* transform: translateX(23vw); */
}

.module-userinfo .userinfo-item p{
  font-style: italic;
  margin-bottom: 10px;
}
.module-userinfo .userinfo-item p:last-child{
  margin-bottom: 0;
}
.userinfo-item h3{
  font-size: 2.2rem;
  color: black;
}

.module-userinfo .user-photo{
  margin-bottom: 30px;
}
.module-userinfo .user-photo img{
  border-radius: 50%;
  overflow: hidden;
}

.note-box{
  background-color: #d9e8f4;
  color: #222;
  padding: 20px 30px 10px;
  font-size: 1.2rem;
}

.note-box h5{
  font-size: 1.2rem;
  margin-bottom: 0px;
  margin-top: 10px;
  color: black;
}

#landing-main .logo-wrap{
  display: none;
}

.footer{
  background-color: #0077DD;
  color: white;
  padding: 25px 0;
  margin-top: 20px;
}
.footer .flex{
  justify-content: space-between;
  padding: 0 20px;
}
.footer .copyright{
  font-size: 1.4rem;
  font-style: italic;
}
.footer .btn{
  background-color: white;
  color: black!important;
}
.footer .btn:hover{
  background-color: rgba(255,255,255,0.9);
}

@media screen and (min-height: 700px) and (max-width: 1200px) and (min-width:992px){
  h1{
    font-size: 3rem;
  }
  .module-single-wrapper{
    height: auto!important;
  }
  .module-single-wrapper .logo-holder{
    height: 100px;
  }
  .module-single-wrapper .logo-holder img{
    max-height: 55px;
    max-width: 100px;
  }
}
@media screen and (max-width: 1080px) and (min-width:992px){
  .module-single-wrapper .logo-holder{
    height: 75px;
  }
  .module-single-wrapper .logo-holder img{
    max-height: 45px;
    max-width: 85px;
  }

  #landing-main .module-single-wrapper .logo-holder{
    height: auto;
  }
  #landing-main .module-single-wrapper .logo-holder img{
    max-height: 85px;
    max-width: 120px;
  }

}

/* 13 inch monitor (1366px by 768px)*/
@media screen and (max-height: 850px) and (max-width: 1400px) and (min-width:1000px) {
  #main{
    /* min-height: -webkit-fill-available; */
    /* min-height: calc(100vh - 82px); */
    height: auto;
  }
  .navbar-nav > li > a i::before {
    height: 34px;
  }
  .module-single-wrapper{
    height: auto!important;
  }
  /* .module-single-wrapper .logo-holder{
    height: 75px;
  }
  .module-single-wrapper .logo-holder img{
    max-height: 45px;
    max-width: 85px;
  } */
  .module-single-wrapper .module-body{
    height: auto!important;
    padding-bottom: 10px;
  }
  .courses-full-wrapper a .module-body .content_div{
    /* min-height: 30px!important;
    max-height: 38px;
    overflow: hidden; */
  }
  /*Video page*/
  .video-wrapper{
    /* min-height: 280px!important;
    max-width: 500px!important;*/
  }
  .wistia_responsive_wrapper .wistia_embed, .wistia_responsive_wrapper .w-chrome, .wistia_responsive_wrapper .w-chrome > div, .wistia_responsive_wrapper .w-chrome > div > div:nth-child(2){
    /* height: 280px!important;  */
  }
  /*scroll content*/
  .defualt-container .scroll-content{
    height: 150px;
  }
}

@media screen and (max-height: 750px) and (min-width: 992px) {
  #main {
    height: auto;
  }

  .standalone-page #main {
    display: block;
  }

  .standalone-page #main-container.fullwidth {
    width: calc(100% - 100px) !important;
  }
}

@media (min-width: 992px) {
  .current-module-info {
    display: none;
  }

  .menu-toggler {
    display: none;
  }

  .navbar-nav > li:first-of-type {
    border-bottom: 3px solid white;
  }
  .navbar-nav > li:last-of-type {
    border-top: 3px solid white;
  }

  .navbar-nav > li:hover a,
  .navbar-nav > li:focus a,
  .navbar-nav > li.active a {
    position: relative;
  }
  .navbar-nav > li a .arrow{
    display: none;
  }
  .navbar-nav > li:hover a .arrow{
    height: 100%;
    position: absolute;
    left: 98px;
    top: 0;
    z-index: -1;
    font-size: 100px;
    line-height: 1;
    display: block;
  }
  .navbar-nav > li:hover a .arrow:after,
  .navbar-nav > li:focus a .arrow:after,
  .navbar-nav > li.active a .arrow:after {
    content: '\e912';
    font-family: 'icomoon';
    font-size: 0.983em;
    line-height: 1.03;
    color: #B6BDC6;
    text-shadow: 3px 0 4px rgba(0, 0, 0, 0.15);
  }

  .navbar-nav > li.locked > a,
  .navbar-nav > li.locked > a i {
    background: #B6BDC6;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
  #header{
    margin-bottom: 10px;
  }
  #main{
    height: calc(100vh - 120px);
  }
  #header .container {
    max-width: 1570px;
  }
}

@media (max-width: 1200px){
  .dashboard-header-wrap h1{
    font-size: 2.3rem;
  }
}

@media (max-width: 1100px){
  .banner-content{
    justify-content: center;
  }
}

@media (max-width: 991px) {
  #main {
    flex-direction: column;
    padding-top: 0;
    height: auto;
    max-height: none;
    min-height: calc(100vh - 114px);
    padding-bottom: 60px;
  }

  #main-container {
    margin-left: 0;
    padding: 0;
    width: 100%;
    flex: 1;
  }

  #main-container.fullwidth {
    width: 100% !important;
    margin-left: 0;
    padding-bottom: 5px;
  }

  h1 {
    font-size: 3.0rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .text-1 {
    font-size: 2.4rem;
  }

  .text-2 {
    font-size: 2.0rem;
  }

  blockquote {
    padding: 40px;
    font-size: 2.4rem;
    line-height: 1.66;
  }

  blockquote.text-lg {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .button-wrapper .btn {
    margin-right: 4px;
  }

  .link {
    font-size: 1.8rem;
  }

  .h-section {
    padding: 40px 0;
  }

  .pad-btm-6 {
    padding-bottom: 4rem;
  }

  .pad-btm-9 {
    padding-bottom: 5rem;
  }

  .pad-btm-8 {
    padding-bottom: 6rem !important;
  }

  .marg-btm-10 {
    margin-bottom: 6rem !important;
  }

  .no-pad-btm-sm {
    padding-bottom: 0 !important;
  }

  dt {
    font-size: 2rem;
  }

  .page-intro {
    padding-top: 30px;
    font-size: 2.0rem;
  }

  .defualt-container {
    padding: 0;
  }

  .defualt-container.box {
    box-shadow: none;
  }

  .course-container::before {
    display: none;
  }

  .fullwidth .course-container {
    padding: 0;
  }

  .content {
    padding: 10px 15px;
  }

  img.alignleft,
  img.alignright {
    float: none;
    margin: 0 0 10px;
    margin-bottom: 10px;
  }

  .loading::after {
    margin-left: 6px;
  }

  .video-thumb i {
    font-size: 12rem;
    margin-top: -60px;
    margin-left: -60px;
  }

  .module-controls {
    position: relative;
    padding: 0 9px;
    margin: 5px 0 20px;
    right: auto;
    bottom: 0;
    top: auto!important;
    justify-content: flex-start;
  }

  .course-container {
    padding: 0;
    border: none;
  }

  .course-container h1 {
    display: none;
  }

  /* .course-container .module-progress {
    position: absolute;
    top: -34px;
    right: 15px;
    z-index: 10;
  } */

  .course-container .module-progress .lbl {
    display: none;
  }

  #header a.help-text {
    color: #41494C !important;
  }

  #header {
    height: auto;
    min-height: 53px;
    padding: 0;
  }

  .navbar-brand {
    height: 25px;
    max-width: 95px;
  }

  .help-text,
  a.help-text {
    display: block;
    width: 22px;
    height: 22px;
    background: #fff;
    color: #41494C;
    border-radius: 50%;
    text-align: center;
    margin: 10px auto 0;
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .help-text span,
  a.help-text span {
    display: none;
  }

  .help-text:hover,
  .help-text:focus,
  a.help-text:hover,
  a.help-text:focus {
    text-decoration: none;
  }

  .site-controls{
    margin-left: auto;
  }
  .top-menu {
    display: none;
  }

  .navbar {
    position: relative;
    height: 50px;
    width: 100%;
    padding: 5px 0;
    border-bottom: 3px solid #677073;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }

  .navbar-nav {
    margin-top: 0;
    display: none;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: auto;
    top: calc(100% + 3px);
  }

  .navbar-nav > li {
    margin: 0;
    text-align: left;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E8E8E8;
  }

  .navbar-nav > li:last-child {
    border-bottom: none;
  }

  .navbar-nav > li.module-label {
    display: block;
    padding: 10px 13px;
    font-size: 1.4rem;
    font-weight: normal;
  }

  .navbar-nav > li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    background-color: transparent !important;
    font-size: 1.2rem;
    font-weight: 500;
    color: #677073;
    padding: 7px 13px;
    position: relative;
  }

  .navbar-nav > li a i {
    border-radius: 50%;
    height: 30px;
    width: 30px;
    margin: 0 12px 0 0;
    padding: 1px;
    position: relative;
    border: 2px solid white;
  }

  .navbar-nav > li a i:after {
    content: '';
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: -1;
    border-radius: 50%;
    background: white;
  }

  .navbar-nav > li a i.iconImg--pre-test:before,
  .navbar-nav > li a i.iconImg--intro:before,
  .navbar-nav > li a i.iconImg--resources:before,
  .navbar-nav > li a i.iconImg--post-test:before {
    width: 15px;
    height: 15px;
  }

  .navbar-nav > li a i.iconImg--intro:before {
    width: 17px;
  }

  .navbar-nav > li a .state-text {
    display: block;
    margin-left: auto;
    margin-right: 40px;
    font-weight: 300;
    min-width: 70px;
  }

  .navbar-nav > li a::after {
    content: '';
    font-size: 1.4rem;
    font-family: icomoon;
    position: absolute;
    right: 15px;
    top: 13px;
  }

  .navbar-nav > li.locked a:after {
    content: '\e906';
  }

  .navbar-nav > li:hover a i::after,
  .navbar-nav > li:focus a i::after,
  .navbar-nav > li.active a i::after {
    background: #E8E8E8;
  }

  .navbar-nav > li.active a .state-text {
    font-weight: normal;
  }

  .footer-menu {
    display: block;
    border-top: 1px solid #E8E8E8;
    padding: 7px 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 -1px 7px rgba(0,0,0,0.1);
    z-index: 100;
    box-sizing: border-box;
  }

  .footer-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }

  .footer-menu ul li {
    padding: 0 10px;
    margin-bottom: 0;
  }

  .footer-menu ul li i {
    font-size: 3rem;
    display: block;
    margin-bottom: 5px;
  }

  .footer-menu ul li a {
    display: block;
    color: #757575;
    text-decoration: none;
    font-weight: normal;
    padding: 0 10px 7px;
    text-align: center;
  }

  .footer-menu ul li a:hover,
  .footer-menu ul li a:focus {
    color: #41494C;
  }

  .footer-menu ul li.active a {
    color: #41494C;
  }

  .popup-lightbox,
  .popupbox-wrap {
    max-width: 80%;
    left: calc(50% + 40px);
  }

  #sidebar {
    width: 100%;
    display: block;
    margin-bottom: 18px;
  }

  #sidebar .box {
    display: block;
    box-shadow: none;
    border: none;
    margin-bottom: 5px;
  }

  #sidebar .box .box-body {
    display: none;
  }

  #sidebar .box-inner {
    padding-right: 20px;
  }

  #sidebar .box-header {
    position: relative;
    cursor: pointer;
    padding: 10px 15px;
  }

  #sidebar .box-header p {
    display: none;
  }

  #sidebar .box-header:after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 10px;
    border-radius: 50%;
    border: 2px solid white;
    height: 17px;
    width: 17px;
    color: white;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
  }

  #sidebar .box-header.opened:after {
    content: '-';
  }

  #sidebar .box-header.opened + .box-body {
    display: block;
  }

  #sidebar .box-inner .scrollable {
    height: auto;
    max-height: none;
    overflow: visible;
  }
  
  #sidebar .scrollable {
    overflow: visible;
    margin-bottom: 0;
  }

  #sidebar .scrollable .scroll-bar.vertical {
    display: none!important;
  }

  #sidebar .scrollable .viewport {
    height: auto !important;
    width: auto !important;
    overflow: visible !important;
  }

  #sidebar .scrollable .viewport .overview {
    height: auto !important;
    position: static;
    overflow: visible !important;
  }

  #sidebar .inner-scroll-content {
    max-width: 100%;
  }

  .has-2-box .box-first .scroll-content {
    max-height: none;
    height: auto;
  }

  body.theme1 .navbar {
    border-bottom-color: #4A5882;
  }

  body.theme1 .navbar-nav > li.active a i::after,
  body.theme1 .current-module-info i,
  body.theme1 .current-module-info i:after {
    background-color: #4A5882;
  }

  body.theme2 .navbar {
    border-bottom-color: #6474A6;
  }

  body.theme2 .navbar-nav > li.active a i::after,
  body.theme2 .current-module-info i,
  body.theme2 .current-module-info i:after {
    background-color: #6474A6;
  }

  body.theme3 .navbar {
    border-bottom-color: #C21E76;
  }

  body.theme3 .navbar-nav > li.active a i::after,
  body.theme3 .current-module-info i,
  body.theme3 .current-module-info i:after {
    background-color: #C21E76;
  }

  body.theme4 .navbar {
    border-bottom-color: #0077DD;
  }

  body.theme4 .navbar-nav > li.active a i::after,
  body.theme4 .current-module-info i,
  body.theme4 .current-module-info i:after {
    background-color: #0077DD;
  }

  body.theme5 .navbar {
    border-bottom-color: #9643B1;
  }

  body.theme5 .navbar-nav > li.active a i::after,
  body.theme5 .current-module-info i,
  body.theme5 .current-module-info i:after {
    background-color: #9643B1;
  }

  body.theme6 .navbar {
    border-bottom-color: #54C97B;
  }

  body.theme6 .navbar-nav > li.active a i::after,
  body.theme6 .current-module-info i,
  body.theme6 .current-module-info i:after {
    background-color: #54C97B;
  }

  body.theme7 .navbar {
    border-bottom-color: #6474A6;
  }

  body.theme7 .navbar-nav > li.active a i::after,
  body.theme7 .current-module-info i,
  body.theme7 .current-module-info i:after {
    background-color: #6474A6;
  }

  body.theme8 .navbar {
    border-bottom-color: #4A5882;
  }

  body.theme8 .navbar-nav > li.active a i::after,
  body.theme8 .current-module-info i,
  body.theme8 .current-module-info i:after {
    background-color: #4A5882;
  }

  .standalone-page #main {
    padding-top: 0;
    min-height: unset!important;
    height: auto!important;
    margin-top: 0;
  }

  .standalone-page #main > h2 {
    margin-bottom: 10px;
  }

  .standalone-page .form-only-content {
    border-radius: 0;
    box-shadow: none;
  }

  .standalone-page .form-only-content,
  .page-template-template-profile .container.vrt-center .form-only-content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 0!important;
  }

  .capcha-wrapper {
    margin-bottom: 20px;
  }

  .test-header-bar {
    border: none;
    padding: 0;
    margin-bottom: 10px;
  }

  .test-header-bar .module-controls {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .sa_answer-options ol li {
    margin-bottom: 20px;
  }

  #dashboard .navbar {
    display: none;
  }

  .dashboard-header-wrap {
    display: block;
  }

  .dashboard-header-wrap h1 {
    border-bottom: 1px solid #F6F6F6;
    padding: 15px 17px;
  }

  .dashboard-header-wrap .module-progress {
    border-bottom: 1px solid #F6F6F6;
    padding: 0px 15px 15px;
    justify-content: flex-start;
  }
  .module-single-wrapper {
    width: calc(50% - 20px);
  }

  #profile .content {
    padding: 0;
  }

  .btn-download {
    right: 0;
    font-size: 1.4rem;
    width: auto;
  }
  .courses-full-wrapper .module-list{
    height: auto;
  }
  .module-list {
    padding-top: 10px;
  }

  .module-list .scrollable.scroll-content {
    height: auto;
    overflow: visible;
  }

  .module-list .scrollable .scroll-bar.vertical {
    display: none;
  }

  .module-list .scrollable .viewport {
    height: auto !important;
    overflow: visible;
  }

  .module-list .scrollable .viewport .overview {
    position: static;
    height: auto !important;
    overflow: visible;
  }

  .module-list .scrollable .inner-scroll-content {
    max-width: 100%;
  }

  /* Landing page */
  .userinfo-item:before,
  .userinfo-item:nth-child(odd):before{
    width: 100vw;
    transform: translateX(-25.5%);
  }
  .userinfo-item:nth-child(even):before{
    content: '';
  }

}


@media (max-width: 767px) {
  .flex-sm-stop {
    display: block;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  ul,
  ol,
  p,
  address {
    margin-bottom: 20px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .text-1 {
    font-size: 1.8rem;
  }

  .text-2 {
    font-size: 1.8rem;
  }

  blockquote {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }

  blockquote.text-lg {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  blockquote.text-lg small {
    font-size: 1.4rem;
  }

  .marg-btm-4 {
    margin-bottom: 3rem !important;
  }

  .marg-btm-6 {
    margin-bottom: 3rem !important;
  }

  .marg-btm-8 {
    margin-bottom: 3rem !important;
  }

  .marg-btm-10 {
    margin-bottom: 4rem !important;
  }

  .pad-btm-6 {
    padding-bottom: 4rem !important;
  }

  .pad-btm-8 {
    padding-bottom: 4rem !important;
  }

  .pad-btm-9 {
    padding-bottom: 4rem;
  }

  .tag-wrapper {
    margin-bottom: 15px;
  }

  .alert {
    padding: 40px;
  }

  table {
    font-size: 1.4rem;
  }

  .site-controls {
    width: auto;
    border: none;
    padding-top: 8px;
    padding-bottom: 9px;
  }

  .user-info-container .profile-image {
    margin-right: 0;
    height: 35px;
    width: 35px;
  }

  .user-info-container .user-name {
    display: none;
  }

  a.sign-out {
    margin-left: 10px;
    margin-right: 0;
  }

  .logo-wrap {
    bottom: 0;
    position: static;
    margin-top: 0;
    margin-bottom: 15px;
    justify-content: flex-end;
    width: calc(100% - 10px);
    z-index: 1;
  }

  .logo-wrap figure {
    margin-left: 10px;
  }

  .logo-wrap img {
    max-height: 55px;
  }

  .module-controls + .logo-wrap {
    bottom: 20px;
    margin-top: -35px;
    margin-bottom: 0;
    position: relative;
    right: auto;
  }

  .cta-block .btn {
    margin-bottom: 2.0rem;
  }

  .intro-image img {
    max-height: 140px;
  }

  .popup-box {
    margin-top: -210px;
  }

  .popup-lightbox,
  .popupbox-wrap {
    left: calc(50%);
    top: 14%;
    font-size: 1.6rem;
    padding: 30px 25px;
  }

  .standalone-page .form-only-content .box-head {
    justify-content: flex-start;
  }

  .two-col-wrap div.left-col,
  .two-col-wrap div.right-col {
    width: 100%;
  }

  .two-col-wrap div.left-col {
    margin-right: 0;
  }

  .two-col-wrap div.right-col {
    margin-left: 0;
  }

  .module-list .grid-thumb {
    grid-area: thumb;
  }

  .module-list .grid-info {
    grid-area: info;
  }

  .module-list .grid-icon {
    grid-area: icon;
  }

  .module-list .module-item.item-resource {
    padding-right: 0;
    display: grid;
    grid-template-areas: 'thumb info info' 'thumb icon icon';
  }

  .module-list .module-item.item-resource .module-icons {
    margin-right: auto;
    margin-left: 0;
  }

  .module-list .module-item.item-resource .module-icons a:first-child {
    margin-left: 0;
  }

  .module-thumb {
    width: 145px;
    min-height: 75px;
    margin-right: 16px;
  }

  .module-thumb .video-thumb i {
    font-size: 3.1rem;
    margin-top: -15px;
    margin-left: -15px;
  }

  /* Landing page */
  .landing-page #header .container{
    height: 53px;
  }
  #landing-main .logo-wrap{
    display: flex;
    margin-bottom: 0;
    justify-content: center;
  }

  .footer .flex{
    flex-direction: column;
    align-items: center;
  }
  .footer .copyright{
    display: block;
    margin-bottom: 20px;
  }

}

@media (max-height: 500px) and (max-width: 767px) {
  #header {
    overflow: auto;
  }
}

@media (max-width: 540px) {
  .text-lg {
    font-size: 2.0rem;
  }

  .text-right {
    text-align: left;
  }

  .h-section {
    padding: 30px 0;
  }

  .tag {
    font-size: 1.1rem;
    padding: 6px 12px;
  }

  .image-responsive.float-left,
  .image-responsive.float-right {
    float: none;
    margin-right: 0px;
    margin-left: 0px;
  }

  dt {
    font-size: 1.8rem;
  }

  dd {
    font-size: 1.6rem;
  }

  .page-intro {
    padding: 20px 10px 10px;
    font-size: 1.7rem;
  }

  .intro-image img {
    max-height: 100px;
  }

  ul.bullet-tick li {
    margin-bottom: 8px;
  }

  ul.bullet-tick li h3 {
    font-size: 1.6rem;
    margin-bottom: 0;
  }

  .module-controls {
    justify-content: center;
  }

  /* .module-progress {
    display: block;
  } */

  .module-progress .lbl {
    display: block;
    margin-bottom: 5px;
  }

  .module-state:first-child {
    margin-left: 0;
  }

  .help-text,
  a.help-text {
    width: 18px;
    height: 18px;
    font-size: 1.1rem;
    line-height: 1.7;
  }

  #header .help-text {
    line-height: 1.4;
  }

  .logo-wrap {
    position: static;
    margin: 0 auto 15px;
    justify-content: center;
  }

  .logo-wrap figure {
    margin: 0 10px;
  }

  .module-controls + .logo-wrap {
    margin-top: 0;
    position: static;
    margin-bottom: 15px;
  }

  .footer-menu ul {
    justify-content: space-between;
  }

  .custom-checkbox-asTag label {
    margin: 6px 2px;
  }

  .custom-checkbox-asTag label span {
    min-width: 200px;
  }

  .multiple-fields > div {
    margin-right: 0;
  }

  .multiple-fields > div:last-child {
    margin-left: 0;
  }

  .two-col-wrap > div {
    width: 100%;
  }

  .form .btn {
    width: 100%;
    margin: 0 0 5px;
  }

  .courses-full-wrapper .row {
    margin-left: 0;
    margin-right: 0;
  }

  #dashboard .content {
    padding: 5px 15px;
  }

  #main-container.fullwidth {
    padding-bottom: 10px;
  }
  
  .dashboard-header-wrap h1 {
    font-size: 1.4rem;
  }

  .module-single-wrapper {
    width: 100%;
    padding: 12px 12px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .module-single-wrapper .logo-holder {
    float: left;
    height: 54px;
    width: 54px;
    margin: 0 15px 15px 0;
    padding: 10px;
  }

  .module-single-wrapper .logo-holder img {
    max-width: 100%;
    max-height: 32px;
  }
  .module-single-wrapper .module-title{
    margin-top: 9px;
  }
  .module-single-wrapper .module-body {
    padding: 0;
  }
  .courses-full-wrapper .module-single-wrapper .module-body .content_div{
    clear: both;
    min-height: 50px;
  }
  .module-single-wrapper .module-body p {
    clear: both;
  }

  /* Landing page */
  #landing-main .module-single-wrapper{
    padding: 0;
  }
  #landing-main .module-single-wrapper .logo-holder{
    float: none;
    width: auto;
    margin: 0;
    padding: 23px;
    height: auto;
  }
  #landing-main .module-single-wrapper .logo-holder img{
    max-height: 85px;
  }

  .module-userinfo .userinfo-item{
    width: calc(100% - 30px);
  }
  .userinfo-item:before, .userinfo-item:nth-child(odd):before{
    transform: translateX(-13.5%);
  }

}

@media (max-width: 420px) {
  .button-wrapper .btn {
    margin-right: 0;
  }
  .standalone-page .profile-wrap{
    margin-bottom: 50px!important;
  }
  .btn-download{
    right: 50%;
    top: 179px;
    margin-right: -60px;
  }

  .marg-btm-6 {
    margin-bottom: 4rem !important;
  }

  .pad-btm-9 {
    padding-bottom: 3rem;
  }

  .marg-btm-10 {
    margin-bottom: 4rem !important;
  }

  .module-list .module-item {
    padding-right: 15px;
  }

  .module-thumb {
    width: 100px;
    margin-right: 10px;
  }
  .module-info{
    width: calc(100% - 110px);
    margin-right: 5px;
  }
}

@media screen and (min-height: 1001px) {
  .navbar-nav > li:hover a::after,
  .navbar-nav > li:focus a::after,
  .navbar-nav > li.active a::after {
    font-size: 12.6rem;
  }
}

@media print {
  #wpexperts_pdf_generate_file {
    display: none;
  }
  @page {
    margin-bottom: 0;
  }
  title, #content .post-title{
    display: none;
  }
  a[href]:after {
    content: none !important;
  }
}