/*----------------------------
*** MEDIA-QUERY 
** Break points-
* 0 - 600px: phone,
* 600px - 769px : ipad,
* 769px - 1040px: ipad-pro,
* 1040px - 1280px : laptop,
* 1280px > : large -screen 
------------------------------
*/
html {
  /**
      * size is measure in the basis of REMs, (easier for responsive layout)
      * default font size 16px = 100% (i.e 1rem = 16px)
      * here default font size set to 62.5%, (i.e 1rem = 10px),
      * this makes easier to calculate rem in the basis of 10px = 1rem,
      * e.g 13px = (13/10)rem = 1.3rem  ( >> this is super easy then calcualte 13px = 13/16 = 0.8125rem )
         */
  font-size: 62.5;
  /* 1 */
  -webkit-text-size-adjust: 62.5;
  /* 2 */
  -ms-text-size-adjust: 62.5;
  /* 2 */
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0 !important; }
  @media (min-width: 115em) {
    html {
      font-size: 62.5%; } }
  @media (max-width: 115em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 65em) {
    html {
      font-size: 46.88%; } }
  @media (max-width: 49em) {
    html {
      font-size: 43.75%; } }
  @media (max-width: 37.5em) {
    html {
      font-size: 55%; } }

html,
body {
  height: 100%;
  min-height: 100vh; }

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: #666666 !important;
  background-color: #f7f9fa !important;
  position: relative;
  display: flex;
  flex-direction: column; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none; }

h1,
h2,
h3,
h4 {
  font-weight: 400 !important;
  color: #333; }

a {
  text-decoration: none; }
  a:hover {
    color: #51c53e;
    cursor: pointer !important; }

p {
  line-height: 3rem; }

input,
button,
div {
  box-sizing: border-box !important; }

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
  box-shadow: none !important;
  padding: 1rem 1rem !important;
  height: 5.5rem !important;
  outline: none;
  border: 1px solid #eee !important;
  border-bottom-color: #51c53e !important;
  display: block;
  width: 100%;
  font-size: 1.7rem !important;
  color: #333;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  textarea:focus {
    border-color: #51c53e !important; }
  input[type="text"]::placeholder,
  input[type="password"]::placeholder,
  input[type="email"]::placeholder,
  textarea::placeholder {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    color: rgba(17, 17, 17, 0.5) !important; }

textarea {
  height: auto !important; }

.main {
  flex: 1 1; }

.page-header {
  background-color: #ffffff; }
  .page-header__wraper {
    padding: 1rem 0; }
    .page-header__wraper .logo {
      width: 32rem;
      line-height: 0; }
      .page-header__wraper .logo img {
        width: 100%; }
    .page-header__wraper nav.main-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      @media (max-width: 65em) {
        .page-header__wraper nav.main-nav {
          display: none; } }
      .page-header__wraper nav.main-nav a {
        text-transform: uppercase;
        color: #111; }
        .page-header__wraper nav.main-nav a:hover {
          color: #51c53e; }
        @media (max-width: 65em) {
          .page-header__wraper nav.main-nav a {
            color: #ffffff; } }
      .page-header__wraper nav.main-nav li {
        position: relative;
        margin-right: 2rem;
        padding: 1.5rem 2rem 1.5rem 0; }
        @media (max-width: 65em) {
          .page-header__wraper nav.main-nav li {
            margin-right: 0;
            padding: 1.5rem 2rem;
            margin-bottom: 1rem; } }
        .page-header__wraper nav.main-nav li::after {
          content: "";
          height: 4rem;
          width: 1px;
          background-color: rgba(17, 17, 17, 0.06);
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          -o-transform: translateY(-50%); }
          @media (max-width: 65em) {
            .page-header__wraper nav.main-nav li::after {
              content: none; } }
        .page-header__wraper nav.main-nav li i,
        .page-header__wraper nav.main-nav li .dashicons {
          margin-right: 1rem; }
          @media (max-width: 65em) {
            .page-header__wraper nav.main-nav li i,
            .page-header__wraper nav.main-nav li .dashicons {
              display: none; } }
      .page-header__wraper nav.main-nav .menu-public-container ul#menu-public {
        display: flex;
        align-items: center;
        justify-content: center; }
        .page-header__wraper nav.main-nav .menu-public-container ul#menu-public li:last-child {
          margin-right: 0;
          padding-right: 0; }
          .page-header__wraper nav.main-nav .menu-public-container ul#menu-public li:last-child::after {
            content: none; }
      .page-header__wraper nav.main-nav #menu-admin li.active a,
      .page-header__wraper nav.main-nav #menu-private li.active a,
      .page-header__wraper nav.main-nav #menu-public li.active a {
        color: #51c53e; }
        @media (max-width: 65em) {
          .page-header__wraper nav.main-nav #menu-admin li.active a,
          .page-header__wraper nav.main-nav #menu-private li.active a,
          .page-header__wraper nav.main-nav #menu-public li.active a {
            color: #111; } }
      .page-header__wraper nav.main-nav .menu-admin-container #menu-admin,
      .page-header__wraper nav.main-nav .menu-admin-container #menu-private,
      .page-header__wraper nav.main-nav .menu-private-container #menu-admin,
      .page-header__wraper nav.main-nav .menu-private-container #menu-private {
        display: flex;
        align-items: center; }
        @media (max-width: 65em) {
          .page-header__wraper nav.main-nav .menu-admin-container #menu-admin,
          .page-header__wraper nav.main-nav .menu-admin-container #menu-private,
          .page-header__wraper nav.main-nav .menu-private-container #menu-admin,
          .page-header__wraper nav.main-nav .menu-private-container #menu-private {
            flex-direction: column; } }
        @media (max-width: 65em) {
          .page-header__wraper nav.main-nav .menu-admin-container #menu-admin li a,
          .page-header__wraper nav.main-nav .menu-admin-container #menu-private li a,
          .page-header__wraper nav.main-nav .menu-private-container #menu-admin li a,
          .page-header__wraper nav.main-nav .menu-private-container #menu-private li a {
            color: #ffffff; } }
        @media (max-width: 65em) {
          .page-header__wraper nav.main-nav .menu-admin-container #menu-admin li.front-dash,
          .page-header__wraper nav.main-nav .menu-admin-container #menu-private li.front-dash,
          .page-header__wraper nav.main-nav .menu-private-container #menu-admin li.front-dash,
          .page-header__wraper nav.main-nav .menu-private-container #menu-private li.front-dash {
            display: none; } }
        .page-header__wraper nav.main-nav .menu-admin-container #menu-admin li.front-dash a,
        .page-header__wraper nav.main-nav .menu-admin-container #menu-private li.front-dash a,
        .page-header__wraper nav.main-nav .menu-private-container #menu-admin li.front-dash a,
        .page-header__wraper nav.main-nav .menu-private-container #menu-private li.front-dash a {
          background-color: #ffffff;
          height: 5.5rem;
          line-height: 5.3rem;
          padding: 0 3rem;
          outline: none;
          cursor: pointer;
          box-sizing: border-box;
          display: flex;
          align-items: center;
          -webkit-box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
          -moz-box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
          box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
          border-radius: 30px;
          -webkit-border-radius: 30px;
          -moz-border-radius: 30px;
          -ms-border-radius: 30px;
          -o-border-radius: 30px;
          transition: 0.2s; }
          .page-header__wraper nav.main-nav .menu-admin-container #menu-admin li.front-dash a span,
          .page-header__wraper nav.main-nav .menu-admin-container #menu-private li.front-dash a span,
          .page-header__wraper nav.main-nav .menu-private-container #menu-admin li.front-dash a span,
          .page-header__wraper nav.main-nav .menu-private-container #menu-private li.front-dash a span {
            color: #ffe400;
            font-size: 3rem;
            margin-right: 2rem;
            line-height: 2rem !important; }
          .page-header__wraper nav.main-nav .menu-admin-container #menu-admin li.front-dash a em,
          .page-header__wraper nav.main-nav .menu-admin-container #menu-private li.front-dash a em,
          .page-header__wraper nav.main-nav .menu-private-container #menu-admin li.front-dash a em,
          .page-header__wraper nav.main-nav .menu-private-container #menu-private li.front-dash a em {
            text-decoration: none;
            padding: 0 1rem;
            text-transform: lowercase; }
          .page-header__wraper nav.main-nav .menu-admin-container #menu-admin li.front-dash a:hover,
          .page-header__wraper nav.main-nav .menu-admin-container #menu-private li.front-dash a:hover,
          .page-header__wraper nav.main-nav .menu-private-container #menu-admin li.front-dash a:hover,
          .page-header__wraper nav.main-nav .menu-private-container #menu-private li.front-dash a:hover {
            -webkit-box-shadow: 0 0 50px rgba(17, 17, 17, 0.12);
            -moz-box-shadow: 0 0 50px rgba(17, 17, 17, 0.12);
            box-shadow: 0 0 50px rgba(17, 17, 17, 0.12); }
      .page-header__wraper nav.main-nav .head-profile-nav {
        position: relative; }
        .page-header__wraper nav.main-nav .head-profile-nav:hover .child-nav {
          display: block; }
        .page-header__wraper nav.main-nav .head-profile-nav .parent-item .icon-user {
          height: 5rem;
          width: 5rem;
          border-radius: 10rem;
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: #ffe400;
          color: #ffffff;
          margin-right: 1rem; }
        .page-header__wraper nav.main-nav .head-profile-nav .parent-item i.fa-chevron-down {
          padding-left: 1rem; }
        @media (max-width: 65em) {
          .page-header__wraper nav.main-nav .head-profile-nav a:hover, .page-header__wraper nav.main-nav .head-profile-nav a:active {
            color: #111; } }
        .page-header__wraper nav.main-nav .head-profile-nav .child-nav {
          display: none;
          background-color: #ffffff;
          -webkit-box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
          -moz-box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
          box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
          border-radius: 6px;
          -webkit-border-radius: 6px;
          -moz-border-radius: 6px;
          -ms-border-radius: 6px;
          -o-border-radius: 6px;
          padding: 0 1rem;
          width: 21rem;
          position: absolute;
          left: 6rem;
          z-index: 25555; }
          @media (max-width: 115em) {
            .page-header__wraper nav.main-nav .head-profile-nav .child-nav {
              left: 2rem; } }
          @media (max-width: 65em) {
            .page-header__wraper nav.main-nav .head-profile-nav .child-nav {
              display: block;
              width: 20rem;
              left: 50% !important;
              top: 112%;
              background-color: transparent;
              box-shadow: none !important;
              transform: translateX(-50%);
              -webkit-transform: translateX(-50%);
              -moz-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
              -o-transform: translateX(-50%); } }
          .page-header__wraper nav.main-nav .head-profile-nav .child-nav__item {
            border-bottom: 1px solid rgba(17, 17, 17, 0.08);
            border-right: none;
            padding: 0 !important;
            margin-right: 0; }
            @media (max-width: 65em) {
              .page-header__wraper nav.main-nav .head-profile-nav .child-nav__item {
                background-color: #ffffff;
                margin-bottom: 5px;
                border-bottom: none !important; } }
            .page-header__wraper nav.main-nav .head-profile-nav .child-nav__item::after {
              content: none; }
            .page-header__wraper nav.main-nav .head-profile-nav .child-nav__item:last-child {
              border-bottom: none; }
            .page-header__wraper nav.main-nav .head-profile-nav .child-nav__item a {
              padding: 1.5rem 1rem;
              display: block;
              text-transform: none;
              text-align: center;
              font-weight: 400; }
              @media (max-width: 65em) {
                .page-header__wraper nav.main-nav .head-profile-nav .child-nav__item a {
                  color: #333 !important; } }
  .page-header #toggle-open-main-nav,
  .page-header #toggle-close-main-nav {
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 5rem;
    height: 5rem; }
  .page-header #toggle-open-main-nav {
    display: none; }
    @media (max-width: 65em) {
      .page-header #toggle-open-main-nav {
        display: flex; }
        .page-header #toggle-open-main-nav i {
          font-size: 4rem; } }
  .page-header #toggle-close-main-nav {
    display: none; }
  .page-header .active-mobile-nav {
    display: block !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: #36bc21;
    z-index: 25555555;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column; }
    .page-header .active-mobile-nav ul.menu {
      flex-flow: column;
      width: 100%;
      padding: 8rem 2rem 0; }
      .page-header .active-mobile-nav ul.menu li {
        padding: 0;
        margin: 0;
        width: 100%; }
        .page-header .active-mobile-nav ul.menu li a {
          color: #ffffff;
          padding: 2rem 1.5rem;
          text-align: center;
          display: block;
          color: #ffffff !important; }
        .page-header .active-mobile-nav ul.menu li .btn--secondary {
          background: transparent !important;
          box-shadow: none !important; }
        .page-header .active-mobile-nav ul.menu li ul.child-nav {
          left: 50%;
          transform: translateX(-50%);
          -webkit-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          -o-transform: translateX(-50%);
          background-color: transparent;
          width: 100%;
          box-shadow: none !important;
          border: 1px solid rgba(0, 0, 0, 0.04);
          border-radius: 0;
          -webkit-border-radius: 0;
          -moz-border-radius: 0;
          -ms-border-radius: 0;
          -o-border-radius: 0; }
          .page-header .active-mobile-nav ul.menu li ul.child-nav a {
            text-align: center;
            color: #333 !important;
            padding: 2rem 1.5rem; }
          .page-header .active-mobile-nav ul.menu li ul.child-nav li {
            background-color: #ffffff; }
    .page-header .active-mobile-nav #toggle-close-main-nav {
      display: flex;
      height: 6rem;
      width: 6rem;
      position: absolute;
      right: 3rem;
      top: 2rem;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px; }
      .page-header .active-mobile-nav #toggle-close-main-nav i {
        font-size: 4rem;
        color: #df554a; }

.page-footer {
  background-color: #eee;
  color: #333; }
  .page-footer p {
    line-height: 3rem;
    margin: 0; }
  .page-footer a.link-page {
    color: #333;
    font-weight: 400; }
    .page-footer a.link-page:hover {
      text-decoration: underline;
      color: #51c53e; }
  .page-footer .footer-top {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.07); }
    @media (max-width: 37.5em) {
      .page-footer .footer-top {
        padding-bottom: 0; } }
    .page-footer .footer-top .col-wrapper {
      margin-left: 0;
      margin-right: 0; }
      @media (max-width: 37.5em) {
        .page-footer .footer-top .col-wrapper {
          flex-flow: column; } }
    .page-footer .footer-top .col-item {
      position: relative;
      padding: 0 4rem; }
      @media (max-width: 37.5em) {
        .page-footer .footer-top .col-item {
          width: 100%;
          border-bottom: 1px solid rgba(17, 17, 17, 0.07);
          padding-bottom: 2rem;
          margin-bottom: 2rem; } }
      @media (max-width: 37.5em) {
        .page-footer .footer-top .col-item:last-child {
          border-bottom: none;
          margin-bottom: 0;
          padding-bottom: 0; } }
      .page-footer .footer-top .col-item::after, .page-footer .footer-top .col-item:first-child::before {
        content: "";
        background-color: rgba(17, 17, 17, 0.07);
        height: 100%;
        width: 1px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%); }
        @media (max-width: 37.5em) {
          .page-footer .footer-top .col-item::after, .page-footer .footer-top .col-item:first-child::before {
            content: none; } }
      .page-footer .footer-top .col-item::after {
        right: 0; }
      .page-footer .footer-top .col-item:first-child a {
        color: #51c53e;
        font-weight: 400; }
      .page-footer .footer-top .col-item:first-child::before {
        left: 0; }
      .page-footer .footer-top .col-item:first-child p {
        margin: 0 0 2rem; }
      .page-footer .footer-top .col-item:nth-child(2) a {
        position: relative;
        display: inline-block; }
        .page-footer .footer-top .col-item:nth-child(2) a:first-child {
          padding-right: 1rem;
          margin-right: 1rem; }
          .page-footer .footer-top .col-item:nth-child(2) a:first-child::after {
            content: "";
            position: absolute;
            height: 2rem;
            width: 1px;
            background-color: rgba(17, 17, 17, 0.1);
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%); }
      .page-footer .footer-top .col-item a {
        color: #333; }
        .page-footer .footer-top .col-item a:hover {
          color: #51c53e;
          text-decoration: underline; }
      .page-footer .footer-top .col-item h3 {
        margin-bottom: 4rem;
        font-size: 1.8rem !important; }
      .page-footer .footer-top .col-item ul.contact-lists li {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 3rem; }
        .page-footer .footer-top .col-item ul.contact-lists li p {
          line-height: initial; }
        .page-footer .footer-top .col-item ul.contact-lists li i {
          color: #36bc21;
          margin-right: 2rem; }
  .page-footer .footer-btm {
    padding: 3rem 0; }
    .page-footer .footer-btm p {
      color: rgba(17, 17, 17, 0.55); }

.flex {
  display: flex; }

.flex-aFE {
  display: flex;
  align-items: flex-end; }

.flex-aFS {
  display: flex;
  align-items: flex-start; }

.flex-aC {
  display: flex;
  align-items: center; }

.flex-jFE {
  display: flex;
  justify-content: flex-end; }

.flex-jFS {
  display: flex;
  justify-content: flex-start; }

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

.flex-jSA {
  display: flex;
  justify-content: space-around; }

.flex-jC {
  display: flex;
  justify-content: center; }

.flex-ffC {
  display: flex;
  flex-flow: column; }

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

.flex-ffRR {
  display: flex;
  flex-flow: row-reverse; }

.flex-aFS-jFS {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start; }

.flex-aFS-jC {
  display: flex;
  align-items: flex-start;
  justify-content: center; }

.flex-aFS-jFE {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end; }

.flex-aFS-jSB {
  display: flex;
  align-items: flex-start;
  justify-content: space-between; }

.flex-aFS-jSA {
  display: flex;
  align-items: flex-start;
  justify-content: space-around; }

.flex-aFE-jFS {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start; }

.flex-aFE-jC {
  display: flex;
  align-items: flex-end;
  justify-content: center; }

.flex-aFE-jFE {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end; }

.flex-aFE-jSB {
  display: flex;
  align-items: flex-end;
  justify-content: space-between; }

.flex-aFE-jSA {
  display: flex;
  align-items: flex-end;
  justify-content: space-around; }

.flex-aC-jC {
  display: flex;
  align-items: center;
  justify-content: center; }

.flex-aC-jFS {
  display: flex;
  align-items: center;
  justify-content: flex-start; }

.flex-aC-jFE {
  display: flex;
  align-items: center;
  justify-content: flex-end; }

.flex-aC-jSB {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.flex-aC-jSA {
  display: flex;
  align-items: center;
  justify-content: space-around; }

/*
    COL-WRAPPER
*/
.col-wrapper {
  display: flex;
  flex: 1;
  margin-left: -1.5rem;
  margin-right: -1.5rem; }

/*
    COL-ITEM
*/
.col-item {
  padding-left: 1.5rem;
  padding-right: 1.5rem; }

.col-item--lg-1 {
  flex: 1 1 8.33333%; }

.col-item--lg-2 {
  flex: 1 1 16.66666%; }

.col-item--lg-3 {
  flex: 1 1 25%; }

.col-item--lg-4 {
  flex: 1 1 33.33333%; }

.col-item--lg-5 {
  flex: 1 1 41.66666%; }

.col-item--lg-6 {
  flex: 1 1 50%; }

.col-item--lg-7 {
  flex: 1 1 58.33333%; }

.col-item--lg-8 {
  flex: 1 1 66.66666%; }

.col-item--lg-9 {
  flex: 1 1 75%; }

.col-item--lg-10 {
  flex: 1 1 83.333333%; }

.col-item--lg-11 {
  flex: 1 1 83.333333%; }

.col-item--lg-12 {
  flex: 1 1 100%; }

.container {
  max-width: 180rem;
  margin: auto; }
  @media (max-width: 115em) {
    .container {
      max-width: 90%; } }

.btn,
button,
input[type="submit"] {
  height: 5.5rem !important;
  line-height: 5.3rem;
  min-width: 20rem;
  padding: 0 1.5rem !important;
  text-align: center;
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  transition: 0.2s;
  background-color: #51c53e !important;
  font-size: 1.7rem !important; }
  .btn:hover,
  button:hover,
  input[type="submit"]:hover {
    -webkit-box-shadow: 0 0 50px rgba(17, 17, 17, 0.12);
    -moz-box-shadow: 0 0 50px rgba(17, 17, 17, 0.12);
    box-shadow: 0 0 50px rgba(17, 17, 17, 0.12); }

button {
  color: #ffffff !important; }

.btn--primary {
  background-color: #51c53e;
  color: #ffffff !important;
  border: 1px solid #51c53e; }
  .btn--primary:hover {
    background-color: #36bc21; }

.btn--secondary {
  background-color: #ffffff !important;
  color: #51c53e !important;
  -webkit-box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
  -moz-box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
  box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
  border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  -ms-border-radius: 30px !important;
  -o-border-radius: 30px !important; }
  .btn--secondary:hover {
    -webkit-box-shadow: 0 0 50px rgba(17, 17, 17, 0.12);
    -moz-box-shadow: 0 0 50px rgba(17, 17, 17, 0.12);
    box-shadow: 0 0 50px rgba(17, 17, 17, 0.12); }

.btn--tertiary {
  background-color: #eee !important;
  border: 1px solid #eee;
  color: #333 !important;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: relative; }
  .btn--tertiary:hover {
    color: #51c53e !important; }

input[type="submit"].btn-logout {
  background-color: transparent !important;
  border: none;
  color: #333;
  font-size: 1.7rem;
  padding: 0;
  min-width: auto;
  width: 100%;
  height: auto !important; }
  input[type="submit"].btn-logout:hover {
    box-shadow: none !important;
    color: #51c53e !important; }

.lp-btn-finish-course {
  background-color: #55c1ff !important; }

#popup-header .lp-btn-finish-course {
  background-color: transparent !important;
  min-width: 15rem !important;
  line-height: 2rem !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important; }

.btn-no,
.modal-button-cancel {
  background-color: #ebebeb !important;
  color: #333 !important;
  min-width: auto !important; }

.btn-yes,
.modal-button-ok {
  background-color: #55c1ff !important;
  min-width: auto !important; }

.section-item__loadmore button {
  background-color: #f7f7f7 !important;
  font-size: 1.7rem !important;
  box-shadow: none !important;
  color: #333 !important;
  margin: 0 !important; }

#popup-sidebar .section-item__loadmore button {
  width: 100% !important;
  margin: 5px 1rem !important; }

.curriculum-more__button {
  text-transform: uppercase;
  font-size: 1.6rem !important; }

.section-head {
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 13rem;
  margin-bottom: 2rem; }
  .section-head .container {
    flex: 1; }
  .section-head .page-title {
    color: #ffffff;
    margin: 0;
    padding: 0; }

.lp-overlay .lp-modal-content button {
  width: auto;
  color: #ffffff;
  min-width: auto !important; }

.lp-overlay .lp-modal-content .lp-modal-header {
  background-color: #51c53e !important; }

.lp-overlay .lp-modal-content .lp-modal-footer {
  padding-top: 1rem; }

.matnorge-lms-body .learn-press-breadcrumb {
  background-color: #55c1ff;
  background-color: #ffe400;
  background-color: #333;
  min-height: 13rem;
  width: 100%;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 4rem 0;
  display: flex;
  align-items: center; }
  .matnorge-lms-body .learn-press-breadcrumb .container {
    height: 100%; }
  .matnorge-lms-body .learn-press-breadcrumb__wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    z-index: 2555;
    padding: 1.5rem 0;
    max-width: 180rem;
    min-width: 180rem;
    margin: auto; }
    @media (max-width: 115em) {
      .matnorge-lms-body .learn-press-breadcrumb__wrap {
        max-width: 93%;
        min-width: 93%; } }
    .matnorge-lms-body .learn-press-breadcrumb__wrap li a,
    .matnorge-lms-body .learn-press-breadcrumb__wrap li span {
      color: #ffffff !important;
      font-weight: 400 !important;
      font-size: 2.5rem !important; }
    .matnorge-lms-body .learn-press-breadcrumb__wrap li a {
      line-height: 2.2rem; }
      .matnorge-lms-body .learn-press-breadcrumb__wrap li a:hover {
        cursor: pointer; }
        .matnorge-lms-body .learn-press-breadcrumb__wrap li a:hover span {
          color: #51c53e !important; }
      .matnorge-lms-body .learn-press-breadcrumb__wrap li a span {
        color: #ffffff !important; }
    .matnorge-lms-body .learn-press-breadcrumb__wrap li i {
      margin: 0 1rem;
      font-size: 1.7rem; }
    .matnorge-lms-body .learn-press-breadcrumb__wrap li span,
    .matnorge-lms-body .learn-press-breadcrumb__wrap li i {
      color: rgba(255, 255, 255, 0.5); }

.gtranslate_wrapper .gt_switcher_wrapper {
  width: 14rem;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  z-index: 25555 !important; }
  @media (max-width: 37.5em) {
    .gtranslate_wrapper .gt_switcher_wrapper {
      width: 8rem !important; } }

.gtranslate_wrapper .gt_selected a,
.gtranslate_wrapper .gt_option a {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-transform: uppercase;
  font-size: 1.3rem !important; }
  .gtranslate_wrapper .gt_selected a img,
  .gtranslate_wrapper .gt_option a img {
    margin-right: 5px !important; }
  @media (max-width: 37.5em) {
    .gtranslate_wrapper .gt_selected a,
    .gtranslate_wrapper .gt_option a {
      padding-top: 3px !important;
      padding-bottom: 3px !important;
      font-size: 0 !important; } }

.gtranslate_wrapper .gt_switcher {
  background: #343541;
  width: 100% !important;
  display: flex;
  flex-flow: column-reverse; }
  .gtranslate_wrapper .gt_switcher .gt_selected {
    background: #343541 !important; }
    .gtranslate_wrapper .gt_switcher .gt_selected a {
      width: auto !important;
      border: none !important;
      color: #ffffff;
      padding: 5px 1rem !important; }
      .gtranslate_wrapper .gt_switcher .gt_selected a:hover {
        background-color: rgba(81, 197, 62, 0.99) !important; }
      .gtranslate_wrapper .gt_switcher .gt_selected a.open {
        background-color: #51c53e; }

.gtranslate_wrapper .gt_option {
  border: none !important;
  width: 100% !important;
  padding: 0 1rem; }
  .gtranslate_wrapper .gt_option a {
    border-bottom: 1px solid rgba(17, 17, 17, 0.5);
    padding: 5px 0 !important; }
    .gtranslate_wrapper .gt_option a:last-child {
      border-bottom: none !important; }
  .gtranslate_wrapper .gt_option .gt_selected,
  .gtranslate_wrapper .gt_option a:hover,
  .gtranslate_wrapper .gt_option a {
    padding: 0;
    background-color: transparent !important; }
    @media (max-width: 37.5em) {
      .gtranslate_wrapper .gt_option .gt_selected,
      .gtranslate_wrapper .gt_option a:hover,
      .gtranslate_wrapper .gt_option a {
        justify-content: center !important; }
        .gtranslate_wrapper .gt_option .gt_selected img,
        .gtranslate_wrapper .gt_option a:hover img,
        .gtranslate_wrapper .gt_option a img {
          margin-right: 0 !important; } }

.cky-modal button.cky-btn,
.cky-consent-container button.cky-btn {
  border: none !important;
  margin-bottom: 1rem; }

.cky-modal button.cky-btn-customize,
.cky-consent-container button.cky-btn-customize {
  background-color: #eee !important;
  color: #333 !important; }

.cky-modal button.cky-btn-reject,
.cky-consent-container button.cky-btn-reject {
  background-color: #333 !important;
  color: #ffffff !important; }

.cky-modal .cky-btn-close,
.cky-consent-container .cky-btn-close {
  background-color: #df554a !important;
  color: #ffffff; }

div[data-cky-tag="detail-powered-by"] {
  display: none !important; }

@media (max-width: 37.5em) {
  .cky-notice {
    padding: 0 2rem; } }

.cky-consent-container {
  width: 97% !important; }
  .cky-consent-container .cky-notice-group {
    display: flex; }
    @media (max-width: 37.5em) {
      .cky-consent-container .cky-notice-group {
        flex-flow: column; } }
    .cky-consent-container .cky-notice-group .cky-notice-des {
      width: 70%;
      padding-right: 5rem; }
      @media (max-width: 37.5em) {
        .cky-consent-container .cky-notice-group .cky-notice-des {
          width: 100%;
          padding: 0; } }
    .cky-consent-container .cky-notice-group .cky-notice-btn-wrapper {
      margin-top: 0;
      width: 30%; }
      @media (max-width: 37.5em) {
        .cky-consent-container .cky-notice-group .cky-notice-btn-wrapper {
          width: 100%;
          padding: 0; } }

.page-public {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  padding: 0 0; }
  .page-public--reset-password #password-lost-form-wrap {
    background-color: #ffffff; }
    .page-public--reset-password #password-lost-form-wrap form#lostpasswordform legend,
    .page-public--reset-password #password-lost-form-wrap form#resetpasswordform legend {
      display: none; }
    .page-public--reset-password #password-lost-form-wrap form#lostpasswordform .somfrp-lost-pass-form-text,
    .page-public--reset-password #password-lost-form-wrap form#resetpasswordform .somfrp-lost-pass-form-text {
      margin-bottom: 3rem; }
    .page-public--reset-password #password-lost-form-wrap form#lostpasswordform fieldset,
    .page-public--reset-password #password-lost-form-wrap form#resetpasswordform fieldset {
      border: none !important; }
    .page-public--reset-password #password-lost-form-wrap form#lostpasswordform input,
    .page-public--reset-password #password-lost-form-wrap form#resetpasswordform input {
      margin-bottom: 2rem;
      width: 100%;
      max-width: 100%; }
  .page-public--confirm-sentlink .page-wrap {
    background-color: #ffffff;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .page-public--confirm-sentlink p {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #51c53e; }
  .page-public button {
    width: 100%; }
  .page-public .logo {
    width: 30rem;
    margin-bottom: 2rem; }
    .page-public .logo img {
      width: 100%; }
  .page-public .container {
    width: 60rem;
    margin: 4rem auto; }
    @media (max-width: 37.5em) {
      .page-public .container {
        margin: 2rem auto;
        width: 93%; } }
  .page-public__wrap {
    background-color: #ffffff;
    display: flex;
    flex: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    overflow: hidden;
    padding: 6rem;
    width: 100%; }
    @media (max-width: 115em) {
      .page-public__wrap {
        margin: 0; } }
    @media (max-width: 37.5em) {
      .page-public__wrap {
        width: 100%;
        padding: 2rem; } }
    .page-public__wrap h2,
    .page-public__wrap h3 {
      text-transform: uppercase; }
      @media (max-width: 37.5em) {
        .page-public__wrap h2,
        .page-public__wrap h3 {
          text-align: center; } }
    .page-public__wrap h3 {
      font-size: 1.7rem;
      margin-bottom: 1rem; }
    .page-public__wrap h2 {
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: #333; }
      .page-public__wrap h2::after {
        content: none; }
    .page-public__wrap p.info {
      margin-bottom: 5rem;
      font-size: 2rem; }
      @media (max-width: 37.5em) {
        .page-public__wrap p.info {
          text-align: center; } }
    .page-public__wrap .ln-form__group {
      margin-bottom: 3rem; }
    .page-public__wrap .ln-form input {
      box-shadow: none;
      padding: 1rem 2rem;
      height: 5.5rem;
      outline: none;
      border: 1px solid #eee;
      display: block;
      width: 100%;
      font-size: 1.7rem !important;
      color: #333; }
      .page-public__wrap .ln-form input:focus {
        border: 1px solid #51c53e; }
      .page-public__wrap .ln-form input::placeholder {
        font-size: 1.7rem;
        font-weight: 300; }
    .page-public__wrap .ln-form label {
      font-size: 1.5rem;
      color: rgba(17, 17, 17, 0.8);
      display: inline-block;
      margin-bottom: 7px; }
    .page-public__wrap .ln-form button {
      background-color: #51c53e;
      color: #ffffff;
      width: 100%;
      margin-top: 5px; }
    .page-public__wrap .ln-form .error-message {
      color: #df554a;
      font-size: 1.7rem;
      font-weight: 400;
      margin-top: -1rem !important; }
    .page-public__wrap .ln-form__reset {
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      .page-public__wrap .ln-form__reset a {
        color: #51c53e;
        text-decoration: underline; }
        .page-public__wrap .ln-form__reset a:hover {
          color: #111; }
    .page-public__wrap .ln-form--error .ln-form__group:nth-child(2), .page-public__wrap .ln-form--error .ln-form__group:nth-child(3) {
      margin-bottom: 1rem; }
  .page-public .cp {
    padding: 1rem 2rem;
    font-size: 1.5rem; }
    .page-public .cp p {
      text-align: center; }
    .page-public .cp a {
      color: #333;
      text-decoration: underline; }
      .page-public .cp a:hover {
        color: #51c53e; }

.page-section {
  padding-bottom: 8rem; }

.sect-title-prime,
.sect-title-second {
  text-transform: uppercase; }

.sect-title-prime {
  font-size: 2.5rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
  color: #111;
  margin: 1rem 0 2rem;
  position: relative;
  margin-bottom: 5rem; }
  .sect-title-prime p {
    font-size: 1.6rem;
    text-transform: capitalize;
    margin: 5px 0; }

.sect-title-second {
  color: #6e6d76;
  font-size: 1.8rem; }

.home-banner {
  height: 63rem;
  width: 100%; }
  .home-banner__wrap {
    height: 100%;
    width: 100%;
    background-color: #343541;
    position: relative;
    color: #ffffff; }
    .home-banner__wrap::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.4); }
    .home-banner__wrap .container {
      height: 100%;
      background-repeat: no-repeat;
      background-position-x: 100%;
      background-position-y: 50%;
      position: relative;
      display: flex;
      align-items: center; }
    @media (max-width: 37.5em) {
      .home-banner__wrap .btn-wraper .btn {
        margin-bottom: 1.5rem;
        width: 100%; } }
    @media (max-width: 37.5em) {
      .home-banner__wrap .container {
        background-image: none !important; } }
  .home-banner__seperator {
    position: relative;
    display: inline-block;
    margin-bottom: 6rem;
    font-size: 3rem; }
    .home-banner__seperator::after {
      right: -6rem; }
    .home-banner__seperator::before {
      left: -6rem; }
    .home-banner__seperator em {
      margin: 0 1rem; }
    .home-banner__seperator span {
      font-size: 2rem;
      margin: 0 1rem; }
  .home-banner__title-secondary {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    padding: 1rem 0;
    color: #ffffff;
    position: relative;
    z-index: 2000; }
  .home-banner__content {
    position: relative;
    z-index: 2555;
    color: #f7f9fa;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column; }
    @media (max-width: 115em) {
      .home-banner__content {
        width: 80%; } }
    @media (max-width: 37.5em) {
      .home-banner__content {
        width: 100%;
        align-items: center; } }
    .home-banner__content h2,
    .home-banner__content p {
      text-align: center; }
    .home-banner__content h1 {
      font-size: 6rem;
      margin: 0;
      line-height: 6rem;
      padding-bottom: 1rem;
      margin-bottom: 2rem;
      word-spacing: 6px;
      color: #ffffff;
      font-weight: 600 !important; }
      @media (max-width: 37.5em) {
        .home-banner__content h1 {
          text-align: center; } }
    .home-banner__content p {
      font-size: 2rem;
      text-align: center;
      line-height: 3rem;
      color: #f7f9fa; }
    .home-banner__content .txt-content {
      text-align: center;
      margin-bottom: 6rem; }
    .home-banner__content .btn {
      min-width: 25rem; }
      .home-banner__content .btn:first-child {
        margin-right: 1rem; }
      .home-banner__content .btn i {
        margin-left: 1rem; }

.faq {
  background-color: #ffffff;
  padding-top: 8rem; }
  .faq__head {
    position: relative; }
  .faq__body .wp-block-faq-block-for-gutenberg-faq {
    padding: 0;
    margin-bottom: 2rem; }
    .faq__body .wp-block-faq-block-for-gutenberg-faq h4 {
      font-size: 1.7rem !important;
      margin-bottom: 0; }
    .faq__body .wp-block-faq-block-for-gutenberg-faq .question,
    .faq__body .wp-block-faq-block-for-gutenberg-faq .answer {
      padding: 2rem; }
    .faq__body .wp-block-faq-block-for-gutenberg-faq .question {
      border: 1px solid #f9f9f9;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      transition: all 0.5s;
      border-radius: 0;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0; }
      .faq__body .wp-block-faq-block-for-gutenberg-faq .question.active, .faq__body .wp-block-faq-block-for-gutenberg-faq .question:hover {
        color: #111;
        background-color: #eee;
        border: 1px solid #eee;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0; }
    .faq__body .wp-block-faq-block-for-gutenberg-faq .answer {
      background-color: #ffffff;
      color: #333;
      border: 1px solid rgba(51, 51, 51, 0.09);
      border-top: none;
      font-size: 1.8rem;
      line-height: 3rem;
      border-radius: 0;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0; }

.page-not-found__wrap {
  padding: 7rem 0; }

.page-not-found__title {
  font-size: 3.5rem;
  color: #df554a;
  margin-bottom: 2rem;
  text-transform: uppercase; }

.page-users__header {
  min-height: 13rem;
  background-color: #333;
  display: flex; }
  .page-users__header h3 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 400; }
  .page-users__header-wrap {
    padding: 1.5rem 0;
    flex: 1; }

.page-users__search {
  margin: 2rem 0 1rem;
  position: relative; }
  .page-users__search span {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 5rem;
    background-color: #51c53e;
    display: flex;
    align-items: center;
    justify-content: center; }
    .page-users__search span i {
      color: #ffffff; }

.page-users__table {
  width: 100%;
  margin: 0 0 6rem;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px; }
  @media (max-width: 37.5em) {
    .page-users__table {
      padding: 0; } }
  .page-users__table a {
    font-weight: 400;
    color: #333;
    display: block; }
    .page-users__table a:hover {
      color: #51c53e; }
  .page-users__table th,
  .page-users__table td {
    height: 6rem;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(17, 17, 17, 0.09);
    border-bottom: 1px solid rgba(17, 17, 17, 0.09);
    text-align: left; }
    .page-users__table th:last-child,
    .page-users__table td:last-child {
      border-right: none; }
  .page-users__table th {
    font-weight: 500; }
  .page-users__table thead tr {
    background-color: #51c53e;
    border: 1px solid #000; }
  .page-users__table thead th {
    color: #ffffff;
    border-top: 1px solid #51c53e; }
  .page-users__table tbody tr:nth-child(even) {
    background-color: #eee; }
  .page-users__table tbody tr:last-child td {
    border-bottom: none; }

.matnorge-lms-body .learn-press-courses-header,
.matnorge-lms-body .lp-archive-courses-sidebar,
.matnorge-lms-body .course-info-left h1,
.matnorge-lms-body .lp-courses-bar,
.matnorge-lms-body .course-wrap-thumbnail,
.matnorge-lms-body .course-instructor,
.matnorge-lms-body .course-footer {
  display: none !important; }

.matnorge-lms-body .lp-content-area {
  max-width: 180rem !important;
  padding-bottom: 6rem;
  flex-flow: column;
  gap: 0 !important; }
  @media (max-width: 115em) {
    .matnorge-lms-body .lp-content-area {
      max-width: 93% !important; } }
  .matnorge-lms-body .lp-content-area.container {
    width: 180rem !important; }
  .matnorge-lms-body .lp-content-area__header {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .matnorge-lms-body .lp-content-area__header .search-courses {
      display: flex;
      width: 100%; }
      .matnorge-lms-body .lp-content-area__header .search-courses button {
        height: 5.5rem;
        line-height: 5.3rem;
        min-width: 7rem;
        font-size: 1.8rem;
        padding: 0 1.5rem;
        text-align: center;
        background-color: #51c53e;
        color: #ffffff;
        border: 1px solid #51c53e;
        outline: none;
        cursor: pointer;
        display: inline-block;
        box-sizing: border-box;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all 0.5s;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0; }

.matnorge-lms-body .lp-archive-courses ul.learn-press-courses,
.matnorge-lms-body ul.learn-press-courses,
.matnorge-lms-body .lp-archive-courses .learn-press-courses,
.matnorge-lms-body .learn-press-courses {
  display: flex;
  flex: 1;
  margin-left: -1%;
  margin-right: -1%; }
  .matnorge-lms-body .lp-archive-courses ul.learn-press-courses li.lp_course,
  .matnorge-lms-body ul.learn-press-courses li.lp_course,
  .matnorge-lms-body .lp-archive-courses .learn-press-courses li.lp_course,
  .matnorge-lms-body .learn-press-courses li.lp_course {
    background-color: #ffffff;
    margin-bottom: 2rem !important;
    width: 31.33%;
    margin-left: 1%;
    margin-right: 1%; }
    @media (max-width: 65em) {
      .matnorge-lms-body .lp-archive-courses ul.learn-press-courses li.lp_course,
      .matnorge-lms-body ul.learn-press-courses li.lp_course,
      .matnorge-lms-body .lp-archive-courses .learn-press-courses li.lp_course,
      .matnorge-lms-body .learn-press-courses li.lp_course {
        width: 100%;
        margin-bottom: 2rem; } }
    .matnorge-lms-body .lp-archive-courses ul.learn-press-courses li.lp_course .course-item .course-content,
    .matnorge-lms-body ul.learn-press-courses li.lp_course .course-item .course-content,
    .matnorge-lms-body .lp-archive-courses .learn-press-courses li.lp_course .course-item .course-content,
    .matnorge-lms-body .learn-press-courses li.lp_course .course-item .course-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 100%; }
      .matnorge-lms-body .lp-archive-courses ul.learn-press-courses li.lp_course .course-item .course-content .course-categories a,
      .matnorge-lms-body ul.learn-press-courses li.lp_course .course-item .course-content .course-categories a,
      .matnorge-lms-body .lp-archive-courses .learn-press-courses li.lp_course .course-item .course-content .course-categories a,
      .matnorge-lms-body .learn-press-courses li.lp_course .course-item .course-content .course-categories a {
        background-color: #ffe400;
        color: #111;
        padding: 5px 1rem; }
      .matnorge-lms-body .lp-archive-courses ul.learn-press-courses li.lp_course .course-item .course-content .course-permalink:hover h3,
      .matnorge-lms-body ul.learn-press-courses li.lp_course .course-item .course-content .course-permalink:hover h3,
      .matnorge-lms-body .lp-archive-courses .learn-press-courses li.lp_course .course-item .course-content .course-permalink:hover h3,
      .matnorge-lms-body .learn-press-courses li.lp_course .course-item .course-content .course-permalink:hover h3 {
        color: #51c53e; }
      .matnorge-lms-body .lp-archive-courses ul.learn-press-courses li.lp_course .course-item .course-content .course-readmore a,
      .matnorge-lms-body ul.learn-press-courses li.lp_course .course-item .course-content .course-readmore a,
      .matnorge-lms-body .lp-archive-courses .learn-press-courses li.lp_course .course-item .course-content .course-readmore a,
      .matnorge-lms-body .learn-press-courses li.lp_course .course-item .course-content .course-readmore a {
        width: 100%;
        background-color: #51c53e;
        height: 5rem;
        line-height: 5rem;
        min-width: 15rem;
        padding: 0 1.5rem;
        text-align: center;
        outline: none;
        border: none;
        cursor: pointer;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0; }
        .matnorge-lms-body .lp-archive-courses ul.learn-press-courses li.lp_course .course-item .course-content .course-readmore a:hover,
        .matnorge-lms-body ul.learn-press-courses li.lp_course .course-item .course-content .course-readmore a:hover,
        .matnorge-lms-body .lp-archive-courses .learn-press-courses li.lp_course .course-item .course-content .course-readmore a:hover,
        .matnorge-lms-body .learn-press-courses li.lp_course .course-item .course-content .course-readmore a:hover {
          background-color: rgba(81, 197, 62, 0.85) !important;
          box-shadow: none !important;
          opacity: 1 !important; }
        @media (max-width: 65em) {
          .matnorge-lms-body .lp-archive-courses ul.learn-press-courses li.lp_course .course-item .course-content .course-readmore a,
          .matnorge-lms-body ul.learn-press-courses li.lp_course .course-item .course-content .course-readmore a,
          .matnorge-lms-body .lp-archive-courses .learn-press-courses li.lp_course .course-item .course-content .course-readmore a,
          .matnorge-lms-body .learn-press-courses li.lp_course .course-item .course-content .course-readmore a {
            width: 100%; } }

.matnorge-lms-body .course-meta .meta-item,
.matnorge-lms-body .course-wrap-meta .meta-item {
  color: #111; }
  .matnorge-lms-body .course-meta .meta-item.meta-item-categories,
  .matnorge-lms-body .course-wrap-meta .meta-item.meta-item-categories {
    height: auto;
    border-bottom: 1px solid #ffe400;
    padding-bottom: 1rem; }
  .matnorge-lms-body .course-meta .meta-item::before,
  .matnorge-lms-body .course-wrap-meta .meta-item::before {
    color: #51c53e !important; }
  .matnorge-lms-body .course-meta .meta-item a,
  .matnorge-lms-body .course-wrap-meta .meta-item a {
    color: #111 !important;
    font-weight: 500; }

.matnorge-lms-body .course-summary-content h3 {
  font-size: 1.8rem;
  font-weight: 500 !important; }

.matnorge-lms-body .course-summary-content .course-detail-info {
  background-color: #ffffff !important;
  padding: 0 0 !important; }
  .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses {
    min-height: auto; }
    .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area {
      padding: 2rem 0; }
      @media (max-width: 65em) {
        .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area {
          padding: 3rem !important; } }
      .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area .lp-content-area__header {
        display: none; }
      .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area .course-info-left {
        color: #333 !important;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center; }
        @media (max-width: 65em) {
          .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area .course-info-left {
            flex-flow: column; } }
        .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area .course-info-left h1 {
          display: none; }
        .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area .course-info-left .meta-item {
          height: auto; }
          .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area .course-info-left .meta-item::before {
            color: #51c53e; }
          .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area .course-info-left .meta-item__value a {
            color: #333; }
        .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area .course-info-left .course-meta-wrap {
          width: 77%;
          padding-right: 6rem; }
          @media (max-width: 65em) {
            .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area .course-info-left .course-meta-wrap {
              width: 100%;
              padding-right: 0 !important; } }
        .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area .course-info-left .course-meta-primary {
          width: 23%;
          display: flex;
          justify-content: center;
          margin-bottom: 0;
          padding-left: 6rem;
          border-left: 1px solid #ffe400; }
          @media (max-width: 65em) {
            .matnorge-lms-body .course-summary-content .course-detail-info .learn-press-courses .lp-content-area .course-info-left .course-meta-primary {
              width: 100%;
              border-left: none;
              padding-left: 0;
              padding-top: 2rem;
              margin-top: 2rem;
              border-top: 1px solid #ffe400; } }
  .matnorge-lms-body .course-summary-content .course-detail-info .meta-item-instructor {
    display: none !important; }

.matnorge-lms-body .course-summary-content .lp-content-area {
  max-width: 180rem !important;
  margin: 0 auto;
  padding-bottom: 2rem; }
  @media (max-width: 115em) {
    .matnorge-lms-body .course-summary-content .lp-content-area {
      max-width: 93% !important; } }
  @media (max-width: 65em) {
    .matnorge-lms-body .course-summary-content .lp-content-area {
      padding: 0;
      width: 100%; } }
  .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left {
    padding-top: 2rem; }
    .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left.full-width {
      width: 100% !important; }
    @media (max-width: 65em) {
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left {
        margin-bottom: 0; } }
    .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left ul.course-nav-tabs li.course-nav {
      border-bottom: none !important; }
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left ul.course-nav-tabs li.course-nav label {
        font-weight: 400; }
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left ul.course-nav-tabs li.course-nav.active::before {
        background-color: #51c53e !important; }
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left ul.course-nav-tabs li.course-nav.active label {
        color: #51c53e !important; }
    .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left ul.course-nav-tabs li.course-nav-tab-instructor {
      display: none !important; }
    .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left ul.learn-press-nav-tabs {
      border: none !important; }
    .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-tab-panels {
      background-color: #ffffff;
      padding: 0 2rem 2rem 2rem;
      border-radius: 0 0 5px 5px;
      -webkit-border-radius: 0 0 5px 5px;
      -moz-border-radius: 0 0 5px 5px;
      -ms-border-radius: 0 0 5px 5px;
      -o-border-radius: 0 0 5px 5px; }
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-tab-panels h3 {
        padding-bottom: 1rem;
        font-size: 1.8rem;
        font-weight: 600 !important;
        position: relative;
        padding-left: 2rem;
        color: #111;
        padding-bottom: 0 !important;
        margin-bottom: 2rem !important; }
        .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-tab-panels h3::before {
          content: "";
          height: 3rem;
          width: 2px;
          background-color: #51c53e;
          left: 0;
          top: 50%;
          position: absolute;
          transform: translateY(-50%);
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          -o-transform: translateY(-50%); }
        .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-tab-panels h3 p {
          font-weight: 300 !important;
          color: #333;
          font-size: 1.5rem; }
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-tab-panels .section-header {
        padding-bottom: 0;
        margin-bottom: 1rem; }
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-tab-panels span.item-name {
        font-weight: 400 !important; }
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-tab-panels a.section-item-link:hover .item-name {
        color: #51c53e; }
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-tab-panels a.section-item-link::before {
        color: #51c53e; }
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-tab-panels .course-faqs-box.active label, .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-tab-panels .course-faqs-box:hover label {
        color: #51c53e; }
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-tab-panels .course-faqs-box label {
        font-size: 1.8rem !important; }
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-tab-panels .course-faqs-box__content-inner {
        font-size: 1.7rem;
        color: #333;
        font-weight: 300; }
    .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left #comments {
      border-top: 1px solid rgba(17, 17, 17, 0.09);
      padding: 3rem 0 0;
      margin: 5rem 0 3rem;
      font-weight: 500; }
    .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-extra-box {
      margin-bottom: 1rem; }
      .matnorge-lms-body .course-summary-content .lp-content-area .entry-content-left .course-extra-box ul li::before {
        color: #51c53e; }
  .matnorge-lms-body .course-summary-content .lp-content-area .course-summary-sidebar {
    padding-top: 2rem;
    margin-top: 0 !important; }
    .matnorge-lms-body .course-summary-content .lp-content-area .course-summary-sidebar.hide-sidebar {
      display: none !important; }
    .matnorge-lms-body .course-summary-content .lp-content-area .course-summary-sidebar .progress-active {
      background-color: #51c53e; }
    .matnorge-lms-body .course-summary-content .lp-content-area .course-summary-sidebar .course-sidebar-top {
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px; }
      @media (max-width: 65em) {
        .matnorge-lms-body .course-summary-content .lp-content-area .course-summary-sidebar .course-sidebar-top {
          margin-bottom: 2rem; } }
    .matnorge-lms-body .course-summary-content .lp-content-area .course-summary-sidebar .course-sidebar-preview form .button-enroll-course,
    .matnorge-lms-body .course-summary-content .lp-content-area .course-summary-sidebar .course-sidebar-preview form .lp-button {
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      background-color: #51c53e;
      color: #ffffff; }

form.post-password-form {
  max-width: 180rem !important;
  padding-bottom: 6rem;
  margin: 4rem auto;
  background-color: #ffffff;
  padding: 3rem; }
  form.post-password-form label,
  form.post-password-form input,
  form.post-password-form p {
    margin-bottom: 3rem; }
  form.post-password-form p {
    font-weight: 400; }
  form.post-password-form input[type="submit"] {
    color: #ffffff; }

.matnorge-lms-body.lp-sidebar-toggle__open #popup-course {
  flex: none !important; }

.matnorge-lms-body #popup-course {
  color: #333; }
  .matnorge-lms-body #popup-course .course-item-title {
    font-size: 2rem;
    font-weight: 600 !important; }
  .matnorge-lms-body #popup-course.course-summary #popup-header {
    background-color: #51c53e !important; }
  .matnorge-lms-body #popup-course.course-summary input[type="checkbox"]::before,
  .matnorge-lms-body #popup-course.course-summary .section-item-link::before {
    color: #51c53e !important; }
  .matnorge-lms-body #popup-course form.search-course {
    width: 100%;
    padding: 0 2rem; }
    .matnorge-lms-body #popup-course form.search-course button {
      width: auto !important;
      display: none !important; }
  .matnorge-lms-body #popup-course #popup-sidebar {
    width: 22%;
    z-index: 2500;
    position: relative;
    background-color: #ffffff; }
    @media (max-width: 65em) {
      .matnorge-lms-body #popup-course #popup-sidebar {
        width: 65%; } }
    .matnorge-lms-body #popup-course #popup-sidebar .curriculum-sections {
      background-color: #ffffff; }
    .matnorge-lms-body #popup-course #popup-sidebar .course-curriculum {
      width: 100%; }
  @media (max-width: 65em) {
    .matnorge-lms-body #popup-course #popup-header {
      left: 0;
      width: 100%; } }

.matnorge-lms-body #popup-header .popup-header__inner .course-title {
  padding-right: 4rem !important; }
  .matnorge-lms-body #popup-header .popup-header__inner .course-title a:hover {
    color: #333 !important; }

.matnorge-lms-body #popup-header .popup-header__inner .items-progress .learn-press-progress__active {
  background-color: #ffe400 !important; }

.matnorge-lms-body #popup-content {
  padding: 0 !important;
  margin: 0 !important;
  width: 78%;
  flex: none; }
  @media (max-width: 37.5em) {
    .matnorge-lms-body #popup-content {
      width: 100%; } }
  .matnorge-lms-body #popup-content #learn-press-content-item {
    padding: 7rem !important; }
    @media (max-width: 65em) {
      .matnorge-lms-body #popup-content #learn-press-content-item {
        padding: 5rem 0 0 !important; } }
    .matnorge-lms-body #popup-content #learn-press-content-item .content-item-wrap {
      width: 100% !important;
      padding-bottom: 3rem !important; }
      .matnorge-lms-body #popup-content #learn-press-content-item .content-item-wrap .content-item-description {
        overflow: hidden;
        margin-bottom: 0; }
      .matnorge-lms-body #popup-content #learn-press-content-item .content-item-wrap .learn-press-message {
        margin: 3rem 0 2rem 0; }
      @media (max-width: 37.5em) {
        .matnorge-lms-body #popup-content #learn-press-content-item .content-item-wrap .content-item-summary {
          padding: 5rem 2rem 2rem !important; } }
      .matnorge-lms-body #popup-content #learn-press-content-item .content-item-wrap .content-item-summary .form-button-finish-course {
        float: none;
        margin-top: 1rem; }
  .matnorge-lms-body #popup-content #learn-press-item-comments {
    border-top: 1px solid rgba(17, 17, 17, 0.05);
    padding-top: 5rem;
    background-color: #f7f9fa;
    padding: 7rem; }
    @media (max-width: 65em) {
      .matnorge-lms-body #popup-content #learn-press-item-comments {
        padding: 2rem !important; } }
  .matnorge-lms-body #popup-content #learn-press-quiz-app .quiz-buttons {
    justify-content: flex-start !important; }
    .matnorge-lms-body #popup-content #learn-press-quiz-app .quiz-buttons .button-right {
      text-align: left; }
  .matnorge-lms-body #popup-content #learn-press-quiz-app .quiz-result {
    max-width: 50% !important;
    margin: 0 0 3rem 0; }
  .matnorge-lms-body #popup-content #learn-press-quiz-app .quiz-status > div {
    background-color: #ffe400; }
    .matnorge-lms-body #popup-content #learn-press-quiz-app .quiz-status > div button {
      height: auto !important;
      background-color: transparent !important;
      min-width: auto !important; }
  .matnorge-lms-body #popup-content .learn-press-comments {
    width: 100%;
    max-width: 100% !important; }
    .matnorge-lms-body #popup-content .learn-press-comments .form-submit input[type="submit"] {
      background-color: #51c53e;
      height: 5.5rem; }
  .matnorge-lms-body #popup-content .quiz-buttons .button-left.fixed {
    height: auto !important;
    margin-bottom: 1rem !important;
    -webkit-box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
    -moz-box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
    box-shadow: 0 0 20px rgba(17, 17, 17, 0.08); }
    @media (max-width: 115em) {
      .matnorge-lms-body #popup-content .quiz-buttons .button-left.fixed {
        left: 45% !important; } }
  .matnorge-lms-body #popup-content .quiz-buttons .questions-pagination {
    height: auto !important; }
  .matnorge-lms-body #popup-content iframe {
    margin: 0 !important; }
    .matnorge-lms-body #popup-content iframe body {
      margin: 0 !important; }
  .matnorge-lms-body #popup-content form[name="learn-press-form-complete-lesson"] {
    margin: 3rem 3rem 0; }

.matnorge-lms-body #popup-footer {
  max-width: 100% !important;
  background-color: #ebebeb !important;
  left: 0 !important;
  right: 0 !important;
  height: 6.5rem !important;
  display: flex;
  align-items: center;
  justify-content: flex-end; }
  .matnorge-lms-body #popup-footer .course-item-nav {
    justify-content: center !important;
    align-items: center; }
    .matnorge-lms-body #popup-footer .course-item-nav .prev a, .matnorge-lms-body #popup-footer .course-item-nav .prev::before,
    .matnorge-lms-body #popup-footer .course-item-nav .next a,
    .matnorge-lms-body #popup-footer .course-item-nav .next::before {
      color: #51c53e !important; }
    .matnorge-lms-body #popup-footer .course-item-nav .prev:hover a, .matnorge-lms-body #popup-footer .course-item-nav .prev:hover::before,
    .matnorge-lms-body #popup-footer .course-item-nav .next:hover a,
    .matnorge-lms-body #popup-footer .course-item-nav .next:hover::before {
      color: #51c53e !important; }
    .matnorge-lms-body #popup-footer .course-item-nav .prev {
      margin-left: 5rem;
      margin-right: 2rem; }
    .matnorge-lms-body #popup-footer .course-item-nav .next {
      margin-right: 5rem;
      margin-left: 2rem; }
    .matnorge-lms-body #popup-footer .course-item-nav .prev .course-item-nav__name,
    .matnorge-lms-body #popup-footer .course-item-nav .next .course-item-nav__name {
      background-color: #51c53e !important;
      color: #ffffff !important;
      border-radius: 2px;
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      -ms-border-radius: 2px;
      -o-border-radius: 2px; }
    .matnorge-lms-body #popup-footer .course-item-nav .prev .course-item-nav__name {
      left: 50% !important;
      transform: translateX(-50%) !important; }
    .matnorge-lms-body #popup-footer .course-item-nav .next .course-item-nav__name {
      right: 50% !important;
      transform: translateX(50%) !important; }

.lp-sidebar-toggle__close #popup-content {
  width: 100% !important; }

.matnorge-lms-body .learnpress #learn-press-profile {
  margin-bottom: 3rem; }
  .matnorge-lms-body .learnpress #learn-press-profile ul.learn-press-courses {
    margin: 0 !important;
    min-height: auto !important; }
    .matnorge-lms-body .learnpress #learn-press-profile ul.learn-press-courses li {
      height: auto !important; }
      .matnorge-lms-body .learnpress #learn-press-profile ul.learn-press-courses li .course-item .course-content .separator {
        display: none !important; }
      .matnorge-lms-body .learnpress #learn-press-profile ul.learn-press-courses li .course-item .course-content .course-categories {
        top: 0 !important; }
        .matnorge-lms-body .learnpress #learn-press-profile ul.learn-press-courses li .course-item .course-content .course-categories a {
          padding: 5px 2.5rem; }
  .matnorge-lms-body .learnpress #learn-press-profile .lp-profile-content-area.lp-content-area {
    border: 1px solid rgba(51, 51, 51, 0.05);
    margin-bottom: 2rem; }
  .matnorge-lms-body .learnpress #learn-press-profile .lp-content-area {
    width: 100% !important;
    max-width: 100% !important;
    padding: 3rem !important;
    background-color: #ffffff; }
    @media (max-width: 65em) {
      .matnorge-lms-body .learnpress #learn-press-profile .lp-content-area {
        display: flex;
        flex-flow: column;
        padding: 0 !important; } }
  .matnorge-lms-body .learnpress #learn-press-profile .lp-content-area__header {
    display: none !important; }
  .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar {
    width: 22% !important;
    padding-right: 3rem;
    margin-top: 0;
    border: none !important;
    border-right: 1px solid rgba(17, 17, 17, 0.09) !important;
    padding-right: 3rem; }
    @media (max-width: 65em) {
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar {
        width: 100% !important;
        padding-right: 0;
        border-right: none;
        border-right: 0 !important; } }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .lp-content-area {
      padding: 0 !important; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header {
      background-color: #ffffff !important; }
      @media (max-width: 65em) {
        .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header {
          margin-bottom: 3.5rem; } }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header .lp-content-area {
        display: flex;
        flex-direction: column; }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header .lp-profile-left {
        margin-bottom: 2rem;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: none;
        border-bottom: 1px solid rgba(51, 51, 51, 0.05) !important;
        max-width: 100% !important;
        width: 100% !important; }
        .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header .lp-profile-left .lp-user-profile-avatar {
          border: 1px solid rgba(52, 53, 65, 0.1) !important;
          overflow: hidden;
          margin-bottom: 1.5rem;
          padding: 5px;
          overflow: hidden;
          border-radius: 50%;
          -webkit-border-radius: 50%;
          -moz-border-radius: 50%;
          -ms-border-radius: 50%;
          -o-border-radius: 50%; }
          .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header .lp-profile-left .lp-user-profile-avatar img {
            height: 100%;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%; }
        .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header .lp-profile-left .lp-user-profile-socials {
          margin: 0 !important; }
          .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header .lp-profile-left .lp-user-profile-socials a {
            border-radius: 0 !important;
            border: none !important;
            font-size: 2rem;
            background-color: #343541;
            color: #ffffff; }
            .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header .lp-profile-left .lp-user-profile-socials a:hover {
              background-color: #51c53e; }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header .lp-profile-right {
        padding: 0 1rem;
        text-align: center;
        margin-bottom: 1rem; }
        .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header .lp-profile-right .lp-profile-username {
          color: #333 !important;
          padding-bottom: 0 !important;
          margin-bottom: 1rem;
          text-align: center; }
          .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header .lp-profile-right .lp-profile-username::before, .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header .lp-profile-right .lp-profile-username::after {
            content: none; }
        .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar .wrapper-profile-header .lp-profile-right .lp-profile-user-bio p {
          color: #333;
          margin-bottom: 1rem; }
    @media (max-width: 65em) {
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar #profile-nav {
        border-bottom: 1px solid rgba(0, 0, 0, 0.03); } }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs li.settings {
      display: none !important; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs > li > a {
      padding-left: 4rem !important; }
      @media (max-width: 37.5em) {
        .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs > li > a {
          padding: 1rem 3rem !important; } }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs > li > a i {
        left: 1rem !important; }
        @media (max-width: 37.5em) {
          .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs > li > a i {
            font-size: 2rem;
            left: 50% !important;
            top: 50%;
            transform: translateXY(-50%);
            -webkit-transform: translateXY(-50%);
            -moz-transform: translateXY(-50%);
            -ms-transform: translateXY(-50%);
            -o-transform: translateXY(-50%); } }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs > li > ul {
      -webkit-box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
      -moz-box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
      box-shadow: 0 0 20px rgba(17, 17, 17, 0.08); }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs > li > ul a {
        padding-left: 1rem !important; }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs > li > ul i {
        margin-right: 1rem; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs li.active {
      background-color: #36bc21 !important; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs li.active a i, .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs li:hover a i {
      color: #ffffff; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs li:hover {
      background-color: #51c53e !important; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs li a i {
      color: #36bc21; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li i,
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li a {
      color: #333 !important; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li i {
      background-color: transparent !important; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li:hover,
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li a:hover, .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li.active, .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li.active:hover {
      background-color: #51c53e !important; }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li:hover i,
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li:hover a,
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li a:hover i,
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li a:hover a, .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li.active i,
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li.active a, .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li.active:hover i,
      .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li.active:hover a {
        color: #f7f9fa !important; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-sidebar ul.lp-profile-nav-tabs ul.profile-tab-sections li a:hover {
      color: #f7f9fa !important; }
  .matnorge-lms-body .learnpress #learn-press-profile #profile-content {
    width: 78% !important;
    padding-top: 0;
    padding-left: 3rem !important; }
    @media (max-width: 37.5em) {
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content {
        overflow: auto; } }
    @media (max-width: 65em) {
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content {
        width: 100% !important;
        padding: 1rem !important;
        padding-left: 1rem !important; } }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content #dashboard-statistic .dashboard-statistic__row {
      justify-content: flex-start;
      background-color: #ffffff; }
      @media (max-width: 65em) {
        .matnorge-lms-body .learnpress #learn-press-profile #profile-content #dashboard-statistic .dashboard-statistic__row {
          justify-content: center;
          display: flex;
          flex-flow: row wrap; } }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content #dashboard-statistic .dashboard-statistic__row .statistic-box {
        margin-bottom: 1.5rem;
        border: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-flow: column-reverse;
        background-color: #f7f9fa; }
        @media (max-width: 65em) {
          .matnorge-lms-body .learnpress #learn-press-profile #profile-content #dashboard-statistic .dashboard-statistic__row .statistic-box {
            width: auto !important;
            padding: 1rem; } }
        .matnorge-lms-body .learnpress #learn-press-profile #profile-content #dashboard-statistic .dashboard-statistic__row .statistic-box__text {
          font-size: 1.7rem !important;
          font-weight: 500; }
        .matnorge-lms-body .learnpress #learn-press-profile #profile-content #dashboard-statistic .dashboard-statistic__row .statistic-box__number {
          height: 4rem;
          width: 4rem;
          background-color: #333;
          color: #ffffff;
          border: 1px solid #333;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 1rem; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-profile-course__statistic #dashboard-statistic {
      margin-bottom: 2.2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #ddd; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content ul.learn-press-profile-course__tab__inner {
      margin-top: 0 !important; }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content ul.learn-press-profile-course__tab__inner li a {
        font-weight: 400;
        font-size: 300; }
        .matnorge-lms-body .learnpress #learn-press-profile #profile-content ul.learn-press-profile-course__tab__inner li a.active {
          color: #333; }
          .matnorge-lms-body .learnpress #learn-press-profile #profile-content ul.learn-press-profile-course__tab__inner li a.active::before {
            background-color: #51c53e; }
    @media (max-width: 37.5em) {
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress {
        overflow: auto; } }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress {
      border: 1px solid #36bc21; }
    @media (max-width: 37.5em) {
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .learn-press-course-tab__filter__content {
        min-width: 600px; } }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item {
      grid-template-columns: 1fr 80px 190px 140px !important;
      font-size: 1.7rem; }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item a {
        color: #333;
        font-size: 1.7rem;
        font-weight: 400; }
        .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item a:hover {
          color: #51c53e; }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item.lp_profile_course_progress__header {
        background-color: #36bc21;
        color: #ffffff;
        border-top: none !important; }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item td,
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item th {
        border: none !important;
        text-align: left;
        padding: 1.5rem 0.8rem; }
        .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item td:first-child,
        .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item th:first-child {
          display: none !important; }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item td {
        border-bottom: 1px solid #eee !important; }
      @media (max-width: 37.5em) {
        .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item {
          display: flex !important;
          justify-content: flex-start; }
          .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item div:nth-child(1) {
            display: none; }
          .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item div:nth-child(2) {
            width: 40%; }
          .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item div:nth-child(3) {
            width: 10%; }
          .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item div:nth-child(4) {
            width: 25%; }
          .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-enrolled .learn-press-profile-course__progress .lp_profile_course_progress__item div:nth-child(5) {
            width: 25%; } }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-created .course-wrap-thumbnail {
      display: none !important; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-created .course-item:hover {
      -webkit-box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
      -moz-box-shadow: 0 0 20px rgba(17, 17, 17, 0.08);
      box-shadow: 0 0 20px rgba(17, 17, 17, 0.08); }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-created .course-item .course-content {
      border: 1px solid #f0f0f0;
      padding: 1.5rem !important;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px; }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-created .course-item .course-content .course-permalink {
        margin-bottom: 0 !important;
        height: auto !important; }
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-created .course-item .course-content .seperator {
        display: none !important; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-course-tab-created .learn-press-courses[data-layout="grid"] .course-item {
      border: none !important; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-filters > li a {
      font-weight: 400; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-filters > li span,
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-filters a.active {
      color: #51c53e; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-filters a:hover {
      color: #51c53e;
      cursor: pointer; }
    @media (max-width: 37.5em) {
      .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-filters {
        display: flex;
        flex-wrap: wrap; }
        .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-filters > li {
          margin-bottom: 5px;
          margin-right: 5px;
          margin-left: 5px; }
          .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-filters > li a {
            border: 1px solid #eee;
            padding: 5px 1rem; } }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-tabs ul.learn-press-tabs__nav li a {
      font-weight: 400 !important; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-tabs ul.learn-press-tabs__nav li.active::before {
      background-color: #51c53e; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content .learn-press-tabs ul.learn-press-tabs__nav li.active label a {
      color: #333; }
    .matnorge-lms-body .learnpress #learn-press-profile #profile-content #learnpress-avatar-upload img {
      padding: 2rem;
      max-width: 20rem;
      max-height: 20rem;
      border: 1px solid rgba(17, 17, 17, 0.09);
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px; }

#learn-press-course-tabs .course-description,
#popup-content {
  font-size: 1.7rem !important;
  line-height: 3rem !important; }
  #learn-press-course-tabs .course-description h3,
  #popup-content h3 {
    font-size: 1.7rem;
    font-weight: 500;
    color: #333; }
    #learn-press-course-tabs .course-description h3.section-title,
    #popup-content h3.section-title {
      margin-bottom: 1rem;
      font-weight: 400; }
  #learn-press-course-tabs .course-description p,
  #popup-content p {
    margin-bottom: 2rem;
    display: block;
    overflow: hidden; }
  #learn-press-course-tabs .course-description a:hover,
  #popup-content a:hover {
    cursor: pointer;
    color: #51c53e; }
  #learn-press-course-tabs .course-description img,
  #learn-press-course-tabs .course-description iframe,
  #popup-content img,
  #popup-content iframe {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    vertical-align: top;
    float: left;
    margin: 2rem 2rem 2rem 0;
    min-width: 25%;
    vertical-align: middle;
    white-space: 0; }
  #learn-press-course-tabs .course-description img,
  #popup-content img {
    height: auto !important; }
  #learn-press-course-tabs .course-description iframe,
  #popup-content iframe {
    width: 100% !important;
    min-height: 65rem;
    padding: 0;
    border: none;
    float: none !important; }
  #learn-press-course-tabs .course-description code,
  #popup-content code {
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    margin: 0 1rem; }
  #learn-press-course-tabs .course-description .content-item-wrap ul,
  #popup-content .content-item-wrap ul {
    margin-bottom: 3rem; }
    #learn-press-course-tabs .course-description .content-item-wrap ul li,
    #popup-content .content-item-wrap ul li {
      margin-bottom: 1rem;
      position: relative;
      padding: 0.5rem 1rem 0.5rem 3rem; }
      #learn-press-course-tabs .course-description .content-item-wrap ul li::before,
      #popup-content .content-item-wrap ul li::before {
        font-weight: 900;
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        position: absolute;
        color: #36bc21;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%); }

ol.commentlist li {
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  font-weight: 500;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px; }
  ol.commentlist li .comment-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem; }
    ol.commentlist li .comment-author .fn {
      margin-right: 1rem; }
    ol.commentlist li .comment-author img {
      border: 1px solid #f7f9fa;
      padding: 5px;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      margin-right: 1rem; }

ol.commentlist .commentmetadata {
  margin-bottom: 1rem; }
  ol.commentlist .commentmetadata a {
    color: rgba(17, 17, 17, 0.5); }

ol.commentlist a {
  color: #36bc21;
  font-weight: 300; }

ol.commentlist a.comment-reply-link {
  display: block;
  margin-top: 1rem;
  color: #55c1ff; }

ol.commentlist .comment-author img {
  min-width: auto !important;
  padding: 0 !important;
  border: none !important; }

.comment-respond {
  padding: 2rem;
  background-color: #ffffff;
  margin-bottom: 4rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px; }
  .comment-respond .comment-reply-title {
    font-size: 1.8rem !important;
    font-weight: 500 !important; }
  @media (max-width: 65em) {
    .comment-respond {
      margin-bottom: 1rem; } }

#respond .logged-in-as {
  display: none !important; }

#popup-content ol.commentlist li {
  border: 1px solid rgba(17, 17, 17, 0.1); }

#popup-content #comments {
  margin-bottom: 3rem;
  font-weight: 500;
  font-size: 1.7re; }
