/**
 * Reset
 *
 * @format
 */

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

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas {
  /* display: block; */
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

iframe {
  display: block;
  width: 100%;
}

/* Fonts */

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

/* Site */

:root {
  --red: hsla(8, 74%, 47%, 1);
  --light-red: hsla(8, 74%, 47%, 0.05);
  --blue: hsla(217, 59%, 27%, 1);
  --light-blue: hsla(217, 59%, 27%, 0.05);
  --cpr-blue: hsla(207, 86%, 32%, 1);
  --green: hsla(75, 72%, 25%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --light-gray: hsla(218, 11%, 85%, 1);
  --text: hsla(0, 0%, 10%, 1);
  --primary-bg: hsla(210, 20%, 98%, 1);
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background-color: hsl(210, 20%, 98%);
}

.form-group.required label:after {
  color: var(--red);
  content: "*";
  position: absolute;
  margin-left: 5px;
}

/* Links */

a,
.btn-link {
  color: var(--blue);
  text-decoration: none;
  cursor: pointer;
}
/* a:visited,
.btn-link:visited {
  color: var(--blue);
} */
a:hover,
.btn-link:hover {
  color: var(--red);
  text-decoration: none;
  cursor: pointer;
}
a:focus,
.btn-link:focus {
  color: var(--red);
  text-decoration: none;
}
a:active,
.btn-link:active {
  color: var(--red);
}

a.link-red {
  color: var(--red);
  text-decoration: none;
}
a.link-red:visited {
  color: var(--red);
}
a.link-red:hover {
  color: var(--blue);
  text-decoration: none;
}
a.link-red:active {
  color: var(--blue);
}

a.card-link {
  color: var(--blue);
  text-decoration: none;
}
a.card-link:visited {
  color: var(--blue);
}
a.card-link:hover {
  color: var(--blue);
  text-decoration: none;
}
a.card-link:active {
  color: var(--blue);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--text);
  font-weight: 900;
  margin-top: 0;
  line-height: 1.1;
}

@media (min-width: 0.0625em) {
  h1,
  .h1 {
    font-size: calc(1rem + ((1vw - 0.000625rem) * 2.0017));
    min-height: 0vw;
  }
}
@media (min-width: 75em) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 0.0625em) {
  h2,
  .h2 {
    font-size: calc(1rem + ((1vw - 0.000625rem) * 1.3344));
    min-height: 0vw;
  }
}
@media (min-width: 75em) {
  h2,
  .h2 {
    font-size: 2rem;
  }
}
@media (min-width: 0.0625em) {
  h3,
  .h3 {
    font-size: calc(1rem + ((1vw - 0.000625rem) * 1.0008));
    min-height: 0vw;
  }
}
@media (min-width: 75em) {
  h3,
  .h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 0.0625em) {
  h4,
  .h4 {
    font-size: calc(1rem + ((1vw - 0.000625rem) * 0.6672));
    min-height: 0vw;
  }
}
@media (min-width: 75em) {
  h4,
  .h4 {
    font-size: 1.5rem;
  }
}
@media (min-width: 0.0625em) {
  h5,
  .h5 {
    font-size: calc(1rem + ((1vw - 0.000625rem) * 0.3336));
    min-height: 0vw;
  }
}
@media (min-width: 75em) {
  h5,
  .h5 {
    font-size: 1.25rem;
  }
}
@media (min-width: 0.0625em) {
  h6,
  .h6 {
    font-size: calc(0.75rem + ((1vw - 0.000625rem) * 0.3336));
    min-height: 0vw;
  }
}
@media (min-width: 75em) {
  h6,
  .h6 {
    font-size: 1rem;
  }
}
.serif {
  font-family: "IBM Plex Serif", serif;
}

.giga {
  font-size: 72px;
}

.mega {
  font-size: 60px;
}

.kilo {
  font-size: 48px;
}

.fs-60 {
  font-size: 60px;
}

.fs-50 {
  font-size: 50px;
}

.fs-42 {
  font-size: 42px;
}

.fs-40 {
  font-size: 40px;
}

.fs-38 {
  font-size: 38px;
}

.fs-36 {
  font-size: 36px;
}

.fs-32 {
  font-size: 32px;
}

.fs-28 {
  font-size: 28px;
}

.fs-26 {
  font-size: 26px;
}

.fs-24 {
  font-size: 24px;
}

.fs-22 {
  font-size: 22px;
}

.fs-20 {
  font-size: 20px;
}

.fs-18 {
  font-size: 18px;
}

.fs-17 {
  font-size: 17px;
}

.fs-14 {
  font-size: 14px;
}

.fs-13 {
  font-size: 13px;
}

.fs-12 {
  font-size: 12px;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.lh-1 {
  line-height: 1;
}

.lh-1-2 {
  line-height: 1.2;
}

h1.blog-page-title {
  margin-bottom: 20px;
  color: var(--text);
  text-align: left;
}

.x-small {
  font-size: 0.625rem;
}

.interior-page-title-content {
  margin-bottom: 1.5rem;
  background-color: transparent;
}

.interior-page-title {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 20px;
  font-size: 36px;
  background-color: var(--light-blue);
}

.interior-page-subtitle {
  font-size: 24px;
  color: var(--text);
}

.section-title {
  position: relative;
  color: var(--text);
  font-size: 20px;
}

@media (max-width: 1200px) {
  .course-page-heading {
    font-size: calc(1.375rem + 1.5vw);
  }
}
.sub-heading {
  font-size: 1.5rem;
  color: var(--red);
}

blockquote {
  padding: 1.25rem 1rem;
  font-family: "IBM Plex Serif", serif;
  font-weight: 400;
  border-left: 5px solid var(--blue);
  background-color: var(--light-blue);
}

blockquote:before {
  color: #b1cbe7;
  font-family: "IBM Plex Serif", serif;
  content: open-quote;
  font-size: 3rem;
  line-height: 0;
  margin-right: 0.25rem;
  vertical-align: -1rem;
}

blockquote p:first-of-type {
  display: inline;
}

.hr-red {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid var(--red);
}

.hr-red--heavy {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 4px solid var(--red);
}

.hr-blue {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid var(--blue);
}

.hr-light-blue {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #c5d8ed;
}

.hr-blue--heavy {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 4px solid var(--blue);
}

.caption {
  color: #888;
  text-align: center;
  font-size: 0.75rem;
}

/* Buttons */

.btn,
button {
  font-weight: 700;
}

.btn-circle {
  border-radius: 50%;
}

button {
  display: inline-block;
  text-align: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  border: 1px solid transparent;
}

.btn-primary,
button {
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
}

.btn-primary:hover,
button:hover,
.btn-primary:active,
button:hover,
.btn-primary:focus,
button:hover {
  background-color: var(--blue);
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--blue);
}

.btn-secondary {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
}

.btn-secondary:visited {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
  background-color: var(--red);
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--red);
}

a.btn.btn-blue.btn-sm.login-button {
  margin-top: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1.5;
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
}
a.btn.btn-blue.btn-sm.login-button:visited {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
}
a.btn.btn-blue.btn-sm.login-button:hover,
a.btn.btn-blue.btn-sm.login-button:active,
a.btn.btn-blue.btn-sm.login-button:focus {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
  text-decoration: none;
}
@media (max-width: 1200px) {
  a.btn.btn-blue.btn-sm.login-button {
    margin-left: 15px;
    margin-bottom: 15px;
  }
}

a.btn.btn-primary.btn-sm.action-button {
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1.5;
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
}
a.btn.btn-primary.btn-sm.action-button:visited {
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
}
a.btn.btn-primary.btn-sm.action-button:hover,
a.btn.btn-primary.btn-sm.action-button:active,
a.btn.btn-primary.btn-sm.action-button:focus {
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  text-decoration: none;
}

.btn-blue {
  color: var(--white);
  background-color: var(--blue);
  border: 1px solid var(--blue);
}

.btn-blue:hover,
.btn-blue:active,
.btn-blue:focus {
  background-color: var(--red);
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--red);
}

.btn-white {
  color: var(--blue);
  background-color: var(--white);
  border: 1px solid var(--blue);
  transition: none;
}

.btn-white:hover,
.btn-white:active,
.btn-white:focus {
  background-color: var(--red) !important;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--red) !important;
  background: var(--red) !important;
  transition: none;
}

.btn-white-border {
  color: var(--white);
  background-color: transparent;
  border: 1px solid var(--white);
  transition: none;
}

.btn-white-border:hover,
.btn-white-border:active,
.btn-white-border:focus {
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--white);
  background: var(--red);
  border: 1px solid var(--red);
}

.btn-borderless {
  border: none !important;
}
.btn-borderless:visited {
  border: none !important;
}
.btn-borderless:hover,
.btn-borderless:active,
.btn-borderless:focus {
  border: none !important;
}

.btn-transparent {
  color: var(--blue);
  text-transform: uppercase;
  background-color: var(--white);
  border: 1px solid #c5cbd2;
}
.btn-transparent:visited {
  color: var(--blue);
  background-color: var(--white);
  border: 1px solid var(--blue);
}
.btn-transparent:hover,
.btn-transparent:active,
.btn-transparent:focus {
  background-color: var(--blue);
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--blue);
}

.btn-borderless {
  border: none;
}
.btn-borderless:visited {
  border: none;
}
.btn-borderless:hover,
.btn-borderless:active,
.btn-borderless:focus {
  border: none;
}

.btn-pill {
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--red);
  border: 1px solid var(--red);
  border-radius: 26px;
  cursor: pointer;
}

.btn-pill:hover,
.btn-pill:active,
.btn-pill:focus {
  background-color: var(--blue);
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--blue);
}

.btn-pill--white {
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #3b3d3f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--white);
  border: 1px solid #c5cbd2;
  border-radius: 26px;
  cursor: pointer;
}

.btn-pill--white:hover,
.btn-pill--white:active,
.btn-pill--white:focus {
  background-color: var(--white);
  color: var(--blue);
  text-decoration: none;
  border: 1px solid #9ea2a8;
}

.full-width {
  width: 100%;
}

.btn-sm-block {
  display: block;
  margin: 20px auto 20px;
}
@media screen and (min-width: 768px) {
  .btn-sm-block {
    display: inline-block;
    margin: 0;
  }
}

/* Forms */

/* Utilities */
.text-balance {
  text-wrap: balance;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.explanation {
  border: 3px solid var(--green);
  padding: 1rem;
  margin: 1rem 0;
}

.grayscale {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.brightness {
  filter: brightness(0.95);
}

.image-gray {
  filter: brightness(90%) grayscale(1);
}

.bg--blue {
  background-color: var(--blue);
}

.bg--light-blue {
  background-color: var(--light-blue);
}

.bg--very-light-blue {
  background-color: #f9fbfd;
}

.bg--red {
  background-color: var(--red);
}

.bg--red-tint-100 {
  background-color: #faeae6;
}

.bg--white {
  background-color: var(--white);
}

.bg--light-green {
  background-color: #eaf6ec;
}

.bg--primary-tint-500 {
  background-color: #9ebee2;
}

.bg--gray-tint-000 {
  background-color: #f9fafb;
}

.bg--gray-tint-100 {
  background-color: #f3f5f6;
}

.bg--gray-tint-200 {
  background-color: #eeeff2;
}

.bg--gray-tint-300 {
  background-color: #e8eaed;
}

.bg--gray-tint-500 {
  background-color: #dce0e4;
}

.bg--graph {
  background-image: url(../images/graph-bg.svg);
}

.bg--user-tile {
  background-image: url("../images/user-tile.svg");
}

.border-1-light-gray {
  border: 1px solid #ccc;
}

.border-top-red--heavy {
  border-top: 4px solid var(--red);
}

.border-bottom-red--heavy {
  border-bottom: 4px solid var(--red);
}

@media only screen and (min-width: 992px) {
  .text-border-right-lg--gray {
    margin-right: 0.3rem;
    padding-right: 0.3rem;
    border-right: 1px solid #d1d5db;
  }
}
.u-clear {
  clear: both;
}

.u-strike {
  text-decoration: line-through;
}

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

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

.u-color-blue {
  color: var(--blue);
}

.u-color-red,
.u-color-card-red {
  color: var(--red);
}

.u-color-gray {
  color: #888;
}

.u-color-light-gray {
  color: #ccc;
}

.u-color-dark-gray {
  color: #333;
}

.u-color-card-green,
.u-color-green {
  color: hsl(154, 55%, 41%);
}

.u-color-card-blue {
  color: var(--cpr-blue);
}

.u-color-card-navy-blue {
  color: hsl(202, 99%, 38%);
}

.u-color-card-orange {
  color: hsl(26, 93%, 55%);
}

.u-color-card-purple {
  color: hsl(256, 49%, 38%);
}

.u-text-color {
  color: var(--text);
}

.u-text-white {
  color: var(--white);
}

.u-red-underline {
  text-decoration-color: var(--red);
  text-decoration-thickness: 0.125em;
  text-underline-offset: 1.5px;
}

@media only screen and (min-width: 992px) {
  .heading-name::after {
    content: ",";
  }
}
.ellipses {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.no-wrap {
  white-space: nowrap;
}

.break-character {
  word-break: break-all;
}

.word-wrap {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.opacity-0 {
  opacity: 0;
}

.opacity-1 {
  opacity: 0.2;
}

.opacity-2 {
  opacity: 0.4;
}

.opacity-3 {
  opacity: 0.6;
}

.opacity-4 {
  opacity: 0.8;
}

.opacity-5 {
  opacity: 1;
}

.multiply {
  mix-blend-mode: multiply;
}

.m-none {
  margin: 0;
}

.m-1 {
  margin: 1x;
}

.m-5 {
  margin: 5px;
}

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

.m-30 {
  margin: 30px;
}

.m-40 {
  margin: 40px;
}

.m-50 {
  margin: 50px;
}

.m-60 {
  margin: 60px;
}

.m-80 {
  margin: 80px;
}

.m-100 {
  margin: 100px;
}

.m-120 {
  margin: 120px;
}

.m-v-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.m-v-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.m-v-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.m-v-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.m-v-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.m-v-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.m-v-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.m-v-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.m-v-120 {
  margin-top: 120px;
  margin-bottom: 120px;
}

.m-r-none {
  margin-right: 0;
}

.m-r-1 {
  margin-right: 1px;
}

.m-r-5 {
  margin-right: 5px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-r-20 {
  margin-right: 20px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-r-40 {
  margin-right: 40px;
}

.m-r-60 {
  margin-right: 60px;
}

.m-r-80 {
  margin-right: 80px;
}

.m-r-100 {
  margin-right: 100px;
}

.m-r-120 {
  margin-right: 120px;
}

.m-l-none {
  margin-left: 0;
}

.m-l-5 {
  margin-left: 5px;
}

.m-l-10 {
  margin-left: 10px;
}

.m-l-15 {
  margin-left: 15px;
}

.m-l-20 {
  margin-left: 20px;
}

.m-l-30 {
  margin-left: 30px;
}

.m-l-40 {
  margin-left: 40px;
}

.m-l-60 {
  margin-left: 60px;
}

.m-l-80 {
  margin-left: 80px;
}

.m-l-100 {
  margin-left: 100px;
}

.m-l-120 {
  margin-left: 120px;
}

.m-r-n-1 {
  margin-right: -1px;
}

.m-r-n-5 {
  margin-right: -5px;
}

.m-r-n-10 {
  margin-right: -10px;
}

.m-r-n-15 {
  margin-right: -15px;
}

.m-r-n-20 {
  margin-right: -20px;
}

.m-r-n-30 {
  margin-right: -30px;
}

.m-r-n-40 {
  margin-right: -40px;
}

.m-r-n-60 {
  margin-right: -60px;
}

.m-r-n-80 {
  margin-right: -80px;
}

.m-r-n-100 {
  margin-right: -100px;
}

.m-r-n-120 {
  margin-right: -120px;
}

.m-l-n-1 {
  margin-left: -1px;
}

.m-l-n-5 {
  margin-left: -5px;
}

.m-l-n-10 {
  margin-left: -10px;
}

.m-l-n-15 {
  margin-left: -15px;
}

.m-l-n-20 {
  margin-left: -20px;
}

.m-l-n-30 {
  margin-left: -30px;
}

.m-l-n-40 {
  margin-left: -40px;
}

.m-l-n-60 {
  margin-left: -60px;
}

.m-l-n-80 {
  margin-left: -80px;
}

.m-l-n-100 {
  margin-left: -100px;
}

.m-l-n-120 {
  margin-left: -120px;
}

.m-t-none {
  margin-top: 0;
}

.m-t-1 {
  margin-top: 1px;
}

.m-t-5 {
  margin-top: 5px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-t-60 {
  margin-top: 60px;
}

.m-t-80 {
  margin-top: 80px;
}

.m-t-100 {
  margin-top: 100px;
}

.m-t-120 {
  margin-top: 120px;
}

.m-t-140 {
  margin-top: 140px;
}

.m-t-160 {
  margin-top: 160px;
}

.m-t-180 {
  margin-top: 180px;
}

.m-t-200 {
  margin-top: 200px;
}

.m-t-n-1 {
  margin-top: -1px;
}

.m-t-n-5 {
  margin-top: -5px;
}

.m-t-n-10 {
  margin-top: -10px;
}

.m-t-n-15 {
  margin-top: -15px;
}

.m-t-n-20 {
  margin-top: -20px;
}

.m-t-n-30 {
  margin-top: -30px;
}

.m-t-n-40 {
  margin-top: -40px;
}

.m-t-n-60 {
  margin-top: -60px;
}

.m-t-n-80 {
  margin-top: -80px;
}

.m-t-n-100 {
  margin-top: -100px;
}

.m-t-n-120 {
  margin-top: -120px;
}

.m-b-none {
  margin-bottom: 0;
}

.m-b-1 {
  margin-bottom: 1px;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-b-60 {
  margin-bottom: 60px;
}

.m-b-80 {
  margin-bottom: 80px;
}

.m-b-100 {
  margin-bottom: 100px;
}

.m-b-120 {
  margin-bottom: 120px;
}

.m-b-n-1 {
  margin-bottom: -1px;
}

.m-b-n-5 {
  margin-bottom: -5px;
}

.m-b-n-10 {
  margin-bottom: -10px;
}

.m-b-n-15 {
  margin-bottom: -15px;
}

.m-b-n-md {
  margin-bottom: -20px;
}

.m-b-n-20 {
  margin-bottom: -30px;
}

.m-b-n-40 {
  margin-bottom: -40px;
}

.m-b-n-60 {
  margin-bottom: -60px;
}

.m-b-n-80 {
  margin-bottom: -80px;
}

.m-b-n-100 {
  margin-bottom: -100px;
}

.m-b-n-120 {
  margin-bottom: -120px;
}

.p-1 {
  padding: 1px;
}

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.p-60 {
  padding: 60px;
}

.p-80 {
  padding: 80px;
}

.p-100 {
  padding: 100px;
}

.p-120 {
  padding: 120px;
}

.p-140 {
  padding: 120px;
}

.p-160 {
  padding: 120px;
}

.p-180 {
  padding: 120px;
}

.p-200 {
  padding: 120px;
}

.p-220 {
  padding: 120px;
}

.p-v-1 {
  padding-top: 1px;
  padding-bottom: 1px;
}

.p-v-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-v-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.p-v-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.p-v-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-v-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-v-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.p-v-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.p-v-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-v-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.p-v-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.p-v-140 {
  padding: 140px;
  padding-bottom: 140px;
}

.p-v-160 {
  padding-top: 160px;
  padding-bottom: 160px;
}

.p-v-180 {
  padding-top: 180px;
  padding-bottom: 180px;
}

.p-v-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.p-v-220 {
  padding-top: 220px;
  padding-bottom: 220px;
}

.p-h-1 {
  padding-left: 1px;
  padding-right: 1px;
}

.p-h-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.p-h-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.p-h-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.p-h-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.p-h-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.p-h-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.p-h-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.p-h-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.p-h-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.p-h-120 {
  padding-left: 120px;
  padding-right: 120px;
}

.p-r-none {
  padding-right: 0;
}

.p-r-1 {
  padding-right: 1px;
}

.p-r-5 {
  padding-right: 5px;
}

.p-r-10 {
  padding-right: 10px;
}

.p-r-15 {
  padding-right: 15px;
}

.p-r-20 {
  padding-right: 20px;
}

.p-r-30 {
  padding-right: 30px;
}

.p-r-40 {
  padding-right: 40px;
}

.p-r-60 {
  padding-right: 60px;
}

.p-r-80 {
  padding-right: 80px;
}

.p-r-100 {
  padding-right: 100px;
}

.p-r-120 {
  padding-right: 120px;
}

.p-l-none {
  padding-left: 0;
}

.p-l-1 {
  padding-left: 1px;
}

.p-l-5 {
  padding-left: 5px;
}

.p-l-10 {
  padding-left: 10px;
}

.p-l-15 {
  padding-left: 15px;
}

.p-l-20 {
  padding-left: 20px;
}

.p-l-30 {
  padding-left: 30px;
}

.p-l-40 {
  padding-left: 40px;
}

.p-l-60 {
  padding-left: 60px;
}

.p-l-80 {
  padding-left: 80px;
}

.p-l-100 {
  padding-left: 100px;
}

.p-l-120 {
  padding-left: 120px;
}

.p-t-none {
  padding-top: 0;
}

.p-t-1 {
  padding-top: 1px;
}

.p-t-5 {
  padding-top: 5px;
}

.p-t-10 {
  padding-top: 10px;
}

.p-15 {
  padding-top: 15px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-t-30 {
  padding-top: 30px;
}

.p-t-40 {
  padding-top: 40px;
}

.p-t-50 {
  padding-top: 50px;
}

.p-t-60 {
  padding-top: 60px;
}

.p-t-80 {
  padding-top: 80px;
}

.p-t-100 {
  padding-top: 100px;
}

.p-t-120 {
  padding-top: 120px;
}

.p-t-140 {
  padding-top: 140px;
}

.p-t-160 {
  padding-top: 160px;
}

.p-t-180 {
  padding-top: 180px;
}

.p-t-200 {
  padding-top: 200px;
}

.p-t-220 {
  padding-top: 220px;
}

.p-b-none {
  padding-bottom: 0;
}

.p-b-1 {
  padding-bottom: 1px;
}

.p-b-5 {
  padding-bottom: 5px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-b-30 {
  padding-bottom: 30px;
}

.p-b-40 {
  padding-bottom: 40px;
}

.p-b-50 {
  padding-bottom: 50px;
}

.p-b-60 {
  padding-bottom: 60px;
}

.p-b-80 {
  padding-bottom: 80px;
}

.p-b-100 {
  padding-bottom: 100px;
}

.p-b-120 {
  padding-bottom: 120px;
}

.p-b-140 {
  padding-bottom: 140px;
}

.p-b-160 {
  padding-bottom: 160px;
}

.p-b-180 {
  padding-bottom: 180px;
}

.p-b-200 {
  padding-bottom: 200px;
}

.p-b-220 {
  padding-bottom: 220px;
}

@media only screen and (max-width: 1199px) {
  .pt-m-110 {
    padding-top: 110px;
  }
}
@media only screen and (max-width: 1199px) {
  .pt-m-120 {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 1200px) {
  .pt-d-120 {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 1200px) {
  .pt-d-140 {
    padding-top: 140px;
  }
}
@media only screen and (min-width: 1200px) {
  .pt-d-150 {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .pt-m-10 {
    padding-top: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .pt-d-40 {
    padding-top: 40px;
  }
}

/* Header */

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
}

.logged-in header {
  margin-top: 32px;
}

.top-bar {
  display: none;
}

.top-bar-inner {
  max-width: 1140px;
  display: flex;
  justify-content: space-between;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

@media only screen and (min-width: 1200px) {
  .top-bar {
    display: block;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    background-color: var(--blue);
  }
}
.navbar > .container,
.navbar > .container-fluid {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  position: relative;
}

.navbar-brand {
  background-image: url("../images/header-logo-small.svg");
  background-repeat: no-repeat;
  width: 215px;
  height: 41px;

  background-size: 215px 41px;
}

@media only screen and (min-width: 370px) {
  .navbar-brand {
    background-image: url("../images/new_header_logo.svg");
    background-repeat: no-repeat;
    width: 263px;
    height: 50px;
    background-size: 263px 50px;
  }
}

/* Hero */

@media only screen and (min-width: 1440px) {
  .hero-container {
    max-width: 1380px;
  }
}

.hero {
  padding-top: 160px;
  padding-bottom: 40px;
  background-image: linear-gradient(#f4f6f8 1px, transparent 1px),
    linear-gradient(to right, #f4f6f8 1px, transparent 1px);
  background-size: 10px 10px;
  background-color: #f9fafb;
}

@media only screen and (min-width: 992px) {
  .hero {
    padding-top: 180px;
    padding-bottom: 100px;
  }
}

.hero-list {
  padding-left: 0;
  list-style-type: none;
}

.hero-list li {
  margin-bottom: 0.75rem;
}

.hero-list svg {
  margin-right: 1rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 1.4545rem + 2.7273vw, 3.5rem);
  line-height: 1;
}

.hero-lead {
  font-size: clamp(1rem, 0.7273rem + 1.3636vw, 1.75rem);
  font-weight: 700;
}

.hero-bar {
  padding: 1.5rem;
  background-color: var(--blue);
}

.hero--dark-blue {
  background-image: url("../images/hero-dark-blue.jpg");
  background-size: cover;
}

/* .front-video-container {
  padding: 1rem;
  background-color: var(--white);
  border-radius: 12px;
  -webkit-box-shadow: 3px 3px 9px 1px hsla(218, 21%, 93%, 1);
  -moz-box-shadow: 3px 3px 9px 1px hsla(218, 21%, 93%, 1);
  box-shadow: 3px 3px 9px 1px hsla(218, 21%, 93%, 1);
} */

.front-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  margin-bottom: 1rem;
  height: 0;
  z-index: 0;
}
.front-video-container img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}
.front-video-container:after {
  content: "";
  position: absolute;
  background: url("../images/youtube-play.svg") no-repeat 0 0;
  top: 50%;
  left: 50%;
  width: 66px;
  height: 66px;
  transform: translate(-50%, -50%);
  z-index: 30;
  cursor: pointer;
}
.front-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* image poster clicked, player class added using js */
.front-video-container.player img {
  display: none;
}
.front-video-container.player:after {
  display: none;
}

/* aclscertification style edits 30-10 */
.certify-ad__title {
  color: var(--text);
  font-weight: 800;
  margin-top: 0;
  line-height: 1.2;
  min-height: 0vw;
}

.cust-table.table td,
.cust-table.table th {
  vertical-align: middle;
  border-right: 1px solid var(--light-gray);
}
.cust-table.table td:last-child,
.cust-table.table th:last-child {
  border-right: 0px;
}

.anchor:before {
  content: "";
  display: block;
  position: relative;
  width: 0;
  height: 104px;
  margin-top: -104px;
}

.ccm-toolbar-visible .anchor:before {
  content: "";
  display: block;
  position: relative;
  width: 0;
  height: 152px;
  margin-top: -152px;
}

.navbar-default .navbar-nav > li > a.current-page {
  color: var(--red);
}

.force-scroll {
  overflow-y: scroll;
  height: 400px;
}

@media only screen and (min-width: 768px) {
  .force-scroll {
    overflow-y: auto;
    height: auto;
  }
}

#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 950;
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}

#search input[type="search"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: white;
  background: rgba(0, 0, 0, 0);
  font-size: 4vmin;
  text-align: center;
  border: 0;
  margin: 0 auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
}

#search .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 60px;
  margin-left: -45px;
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
  opacity: 1;
  padding: 10px 17px;
  font-size: 27px;
}

.page-footer {
  font-size: 14px;
  background-color: var(--blue);
  color: var(--white);
}

.footer-copyright a {
  color: var(--white);
  text-decoration: none;
}
.footer-copyright a:visited {
  color: var(--white);
}
.footer-copyright a:hover {
  color: var(--light-gray);
  text-decoration: none;
}
.footer-copyright a:active {
  color: var(--light-gray);
}

.footer-signup h2 {
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--white);
}

.footer-signup p {
  margin-bottom: 30px;
}

.footer-signup p:last-of-type {
  margin-bottom: 0;
}

.footer-bottom {
  padding-bottom: 60px;
  background-color: var(--text);
}

.footer-copyright {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  border-top: 1px solid var(--white);
  /* background: var(--text); */
}

.sidebar-component .btn-default {
  background-color: #446ea9;
  color: var(--white);
}

.sidebar-prevnext-nav {
  list-style-type: none;
  margin-top: 0;
  padding-left: 0;
  margin-bottom: 20px;
}

.sidebar-prevnext-nav li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  list-style-type: none;
  border-bottom: 1px solid #efc1b5;
}

a.sidebar-nav--selected {
  color: var(--red);
  text-decoration: none;
}
a.sidebar-nav--selected:visited {
  color: var(--red);
}
a.sidebar-nav--selected:hover {
  color: var(--blue);
  text-decoration: none;
}
a.sidebar-nav--selected:active {
  color: var(--blue);
}

.top-bar a {
  color: var(--white) fff;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
}
.top-bar a:visited {
  color: var(--white) fff;
}
.top-bar a:hover {
  color: rgb(255 255 255 / 87%);
  text-decoration: none;
}
.top-bar a:active {
  color: rgb(255 255 255 / 87%);
}

.top-nav-container {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 14px;
  text-transform: uppercase;
  background-color: var(--white);
}

.navbar {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  background-color: #f9fbfd;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.fixed-navbar {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 2;
}

.navbar-brand {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  margin-right: 0.8rem;
}

.navbar-collapse {
  flex-grow: 0;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
.dropdown-menu {
  font-size: 14px;
}

a.dropdown-item,
.navbar-light .navbar-nav .nav-link {
  color: #3b3d3f;
  font-weight: 700;
  text-decoration: none;
}
a.dropdown-item:visited,
.navbar-light .navbar-nav .nav-link:visited {
  color: #3b3d3f;
}
a.dropdown-item:hover,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--red);
  text-decoration: none;
}
a.dropdown-item:active,
.navbar-light .navbar-nav .nav-link:active {
  color: var(--red);
}

.dropdown-item:active {
  background-color: #f8f9fa;
}

.navbar-light .navbar-nav .nav-link:focus {
  outline: none;
}

@media only screen and (max-width: 1199px) {
  .main-nav {
    padding-top: 1rem;
  }
}
.footer-nav-title {
  display: block;
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 16px;
  font-weight: 700;
  border-top: 1px solid var(--light-gray);
}

a.footer-nav-title,
#footer-menu-1 a,
#footer-menu-2 a,
#footer-menu-3 a,
#footer-menu-4 a {
  color: var(--white);
  text-decoration: none;
}
a.footer-nav-title:visited,
#footer-menu-1 a:visited,
#footer-menu-2 a:visited,
#footer-menu-3 a:visited,
#footer-menu-4 a:visited {
  color: var(--white);
}
a.footer-nav-title:hover,
#footer-menu-1 a:hover,
#footer-menu-2 a:hover,
#footer-menu-3 a:hover,
#footer-menu-4 a:hover {
  color: var(--light-gray);
  text-decoration: none;
}
a.footer-nav-title:active,
#footer-menu-1 a:active,
#footer-menu-2 a:active,
#footer-menu-3 a:active,
#footer-menu-4 a:active {
  color: var(--light-gray);
}

a.footer-nav-title::after {
  content: "-";
  position: absolute;
  right: 1rem;
}

a.footer-nav-title.collapsed::after {
  content: "+";
  position: absolute;
  right: 1rem;
}

.footer-nav-vertical {
  margin-bottom: 0;
  padding-left: 0;
  font-size: 16px;
  list-style-type: none;
}

.footer-nav-vertical li {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #3b3d3f;
}

.footer-nav-vertical li:last-of-type {
  border-bottom: 0;
}

.footer-nav {
  padding-left: 0;
  list-style-type: none;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a,
.footer-contact-list a {
  color: var(--white);
  text-decoration: none;
}
.footer-nav a:visited,
.footer-contact-list a:visited {
  color: var(--white);
}
.footer-nav a:hover,
.footer-contact-list a:hover {
  color: var(--light-gray);
  text-decoration: none;
}
.footer-nav a:active,
.footer-contact-list a:active {
  color: var(--light-gray);
}

.footer-nav-horizontal {
  padding-left: 0;
  list-style-type: none;
}

.footer-nav-horizontal li {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 992px) {
  .footer-nav-horizontal {
    display: flex;
    font-size: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--white);
  }

  .footer-nav-horizontal li {
    margin-right: 10px;
    margin-bottom: 0;
    padding-right: 10px;
    position: relative;
  }

  .footer-nav-horizontal li:after {
    content: "|";
    width: 14px;
    height: 16px;
    position: absolute;
    top: 0;
    right: -10px;
  }

  .footer-nav-horizontal li:last-of-type {
    margin-right: 0;
  }

  .footer-nav-horizontal li:last-of-type:after {
    display: none;
  }
}
.footer-nav-horizontal a {
  color: var(--white);
  text-decoration: none;
}
.footer-nav-horizontal a:visited {
  color: var(--white);
}
.footer-nav-horizontal a:hover {
  color: var(--light-gray);
  text-decoration: none;
}
.footer-nav-horizontal a:active {
  color: var(--light-gray);
}

.study-guide-nav {
  margin-bottom: 40px;
}

.study-guide-nav {
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style-type: none;
  border-top: 4px solid var(--blue);
}

.study-guide-nav > li {
  margin-bottom: 1rem;
}

.study-guide-nav li a {
  display: block;
  position: relative;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  font-size: 1.25rem;
  background-color: var(--light-blue);
}

.study-guide-nav__dropdown > ul li a::before {
  position: absolute;
  left: 2rem;
  content: "›";
}

.study-guide-nav__dropdown > ul li a:hover::before {
  position: absolute;
  left: 2rem;
  content: "»";
}

a.study-guide-nav__dropdown {
  color: var(--red);
  font-weight: 700;
}

a.study-guide-nav__dropdown:hover {
  cursor: default;
}

.study-guide-nav__dropdown > ul {
  padding-left: 0;
  list-style-type: none;
}

.study-guide-nav__dropdown ul li a {
  padding-left: 3rem;
  list-style-type: none;
  font-size: 1rem;
  background-color: #f9fbfd;
  border-bottom: 1px solid #d8e5f3;
}

.study-guide-nav__dropdown ul li a:hover,
.study-guide-nav__dropdown ul li a:focus {
  display: block;
  color: var(--red);
  background-color: #fdf6f4;
  cursor: pointer;
}

.previous-content {
  display: flex;
  align-items: center;
}

.next-content {
  display: flex;
  align-items: center;
}

.previous-content a {
  padding-left: 8px;
}

.next-content a {
  padding-right: 8px;
}

a.sidebar-nav--selected::before {
  padding-right: 0.5rem;
  content: "›";
}

.footer-prevnext-nav {
  list-style-type: none;
  margin-top: 0;
  padding: 1rem;
  background-color: var(--light-blue);
}

.footer-prevnext-nav li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  list-style-type: none;
  border-bottom: 1px solid #c5d8ed;
}

.back-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: #f9fafb;
}

.back-nav > span {
  color: #8a8e93;
}

.back-nav > span::before {
  padding-right: 0.5rem;
  display: inline-block;
  vertical-align: middle;
  content: url("../images/icon-back.svg");
}

.back-nav > span {
  color: #8a8e93;
}

.next-previous-wrapper {
  padding: 1rem;
  background-color: #f9fafb;
}

.main-breadcrumb {
  margin-bottom: 30px;
  padding: 0;
  font-size: 14px;
  list-style: none;
  background-color: transparent;
}

.main-breadcrumb > li {
  display: inline-block;
}

.main-breadcrumb > .active {
  color: var(--text);
}

.main-breadcrumb > li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}

.member-nav-list li {
  padding: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: var(--white);
  box-shadow: 0 0 1px rgba(18, 37, 59, 0.1), 0 2px 4px rgba(18, 37, 59, 0.02);
}

.member-nav-list li:hover {
  box-shadow: 0 0 1px rgba(18, 37, 59, 0.3), 0 4px 18px rgba(18, 37, 59, 0.08);
}

.tab-content {
  padding-top: 16px;
  background-color: white;
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

.link-section {
  padding: 1rem;
  background-image: url(../images/graph-bg.svg);
  border-top: 4px solid var(--red);
}

.text-break {
  white-space: normal;
}

@media (max-width: 479px) {
  .text-break-xs {
    white-space: normal;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .text-break-sm {
    white-space: normal;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .text-break-md {
    white-space: normal;
  }
}
.social-share {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 1;
}

ul.share-buttons {
  width: 100%;
  display: flex;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.share-buttons li {
  width: 100%;
  display: flex;
  /* flex-basis: 1; */
  justify-content: center;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-right: 1px solid #ccc;
  background-color: #414141;
  transition-property: background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

ul.share-buttons li:hover {
  background-color: var(--red);
  cursor: pointer;
}

ul.share-buttons li.social-icon-bottom {
  border-bottom: 0;
  border-right: 0;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a.facebook {
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../images/facebook-f-16.svg");
  background-repeat: no-repeat;
  background-position: center;
}

a.twitter {
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../images/twitter-white-16.svg");
  background-repeat: no-repeat;
  background-position: center;
}

a.linkedin {
  display: block;
  width: 16px;
  height: 16px;
  /* background-size: 24px; */
  background-image: url("../images/linkedin-white-in-16.svg");
  background-repeat: no-repeat;
  background-position: center;
}

a.email {
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("../images/envelope-white-18.svg");
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 768px) {
  a.facebook {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("../images/facebook-f-24.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (min-width: 768px) {
  a.twitter {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("../images/twitter-white-24.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (min-width: 768px) {
  a.linkedin {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("../images/linkedin-white-in-24.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (min-width: 768px) {
  a.email {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("../images/envelope-white-32.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
}
.social-icon img {
  display: block;
}

@media (min-width: 768px) {
  ul.share-buttons {
    width: auto;
    display: block;
    position: fixed;
    left: 0;
    top: 30%;
    z-index: 1;
    list-style: none;
    padding: 0;
  }
}
@media (min-width: 768px) {
  ul.share-buttons li {
    padding-top: 0;
    padding-bottom: 0;
    border-right: 0;
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 768px) {
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
  }
}
ul.share-buttons .sr-only {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

a.button-box {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1.875rem;
  padding: 2rem;
  color: var(--white);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  background-color: #244b76;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
}
a.button-box:visited {
  color: var(--white);
}
a.button-box:hover {
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  background-color: #b62a08;
}
a.button-box:focus {
  color: var(--white);
  text-decoration: none;
  background-color: #b62a08;
}
a.button-box:active {
  color: var(--white);
  background-color: #b62a08;
}

.footer-promo {
  padding-top: 80px;
  padding-bottom: 40px;
  color: var(--white);
  text-align: center;
  background-image: url("../images/footer-promo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-promo h2 {
  color: var(--white);
  margin-bottom: 40px;
}

.footer-promo p {
  margin-bottom: 40px;
  font-size: 20px;
}

/* Sitemap */

.sitemap {
  list-style-type: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.sitemap .sub-menu {
  list-style-type: none;
}

.sitemap > li {
  margin-bottom: 1rem;
  background-color: var(--light-blue);
  border-radius: 8px;
}

.sitemap > li > a {
  padding: 1rem;
  font-weight: 700;
}

.sitemap > li > a.on {
  background-color: hsla(217, 59%, 27%, 0.0625);
  border-radius: 8px 8px 0 0;
}

.sitemap > li > ul {
  padding-bottom: 0.5rem;
  list-style-type: disc;
}

.sitemap > li > ul li::marker {
  content: "●";
  color: var(--text);
}

.sitemap > li > ul li a {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Sitemap toggle */

.sitemap a {
  display: block;
  cursor: pointer;
}

.toggle-sitemap a::before {
  content: "\25b6\fe0e";
  margin-right: 0.5em;
  color: var(--blue);
}

.toggle-sitemap a.on::before {
  content: "\25bc\fe0e";
  color: var(--blue);
}

.toggle-sitemap > .sub-menu li a::before {
  content: "";
}

.courses-form-options,
.bls-options {
  margin-bottom: 30px;
  padding: 16px;
  background-color: var(--white);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.courses-form-options-title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  text-align: center;
  border-bottom: 2px solid var(--text);
}

.arrow-box {
  position: relative;
}

.arrow-box:after {
  bottom: 100%;
  left: 6%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(254, 59, 10, 0);
  border-bottom-color: var(--red);
  border-width: 20px;
}

.courses-form-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-top: 8px;
  font-weight: 700;
  font-size: 14px;
}

.bls-addition {
  font-size: 12px;
}

.courses-form-group:nth-of-type(even) {
  margin-bottom: 0;
  border-top: 1px solid #d8e5f3;
}

.courses-form-group input[type="checkbox"] {
  margin-top: 0;
  margin-right: 4px;
  margin-left: 0;
  margin-bottom: 0;
}

.course-box {
  margin-bottom: 30px;
  padding: 16px 16px 8px 16px;
  text-align: center;
  background-color: var(--white);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.course-box__heading {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
}

.course-box__price {
  font-size: 36px;
  font-weight: 600;
}

.course-box__list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  color: var(--text);
  font-size: 0.813rem;
  font-weight: 700;
  text-align: center;
}

.course-box__list li {
  margin-bottom: 0.5rem;
}

.icon-info {
  font-size: 1.25rem;
  cursor: pointer;
}

.learning-ad {
  float: right;
  max-width: 348px;
  padding: 16px;
  text-align: center;
  background-color: var(--light-blue);
}

.learning-ad p {
  margin: 0 0 24px 0;
  padding: 8px;
  background-color: var(--white);
  border: 1px solid #c5d8ed;
}

.learning-ad p:first-of-type {
  margin-bottom: 0;
  padding-top: 0;
  background-color: var(--light-blue);
  border: 0;
}

.learning-ad p:last-of-type {
  margin-bottom: 0;
}

.course-ad {
  background-color: var(--light-blue);
}

.course-ad__content {
  padding: 16px;
}

.course-ad__title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--text);
  font-weight: 700;
}

.course-ad__list {
  padding-left: 0;
  list-style-type: none;
}

.course-ad__list li {
  margin-bottom: 10px;
  padding-left: 24px;
  color: #333;
  background-image: url("../images/icon-check.svg");
  background-repeat: no-repeat;
  background-position: 0 50%;
}

@media only screen and (min-width: 992px) {
  .course-ad__content,
  .course-ad__prices {
    float: left;
    width: 50%;
  }
}

.course-ad__price {
  padding: 32px 16px;
  background-color: #d8e5f3;
}

.course-ad__price:first-of-type {
  border-bottom: 1px solid var(--white);
}

.acls-ad,
.certify-ad {
  margin-bottom: 1.5rem;
  background-image: url(../images/graph-bg.svg);
  font-family: "IBM Plex Sans", sans-serif;
}

.acls-ad__title,
.certify-ad__title {
  margin-bottom: 0.25rem;
  padding-top: 1.25rem;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.email-opt-in p {
  line-height: 1.2;
}

.email-opt-in h2,
.email-opt-in h3 {
  color: var(--white);
  font-size: 27px;
  font-weight: 700;
}

.email-opt-in ul {
  padding-left: 1.125rem;
  list-style-type: disc;
}

.email-opt-in label {
  margin-bottom: 0.5rem;
}

.email-opt-in input {
  width: 100%;
  margin-bottom: 1rem;
}

.email-opt-in input[type="email"] {
  margin-bottom: 1.5rem;
}

.email-opt-in input[type="submit"] {
  margin-bottom: 0.5rem;
  font-size: 16px;
}

ol.breadcrumb {
  background: transparent;
  padding: 0px;
}

.elementor-text-editor table {
  width: 100% !important;
  border-collapse: collapse;
  margin-bottom: 1.5rem !important;
  border-bottom: 1px solid #dee2e6 !important;
  width: 100%;
  color: #212529;
}

.elementor-text-editor table tr {
  background-color: #d9e2f3;
}

.elementor-text-editor table tr td {
  padding: 0.75rem;
  vertical-align: top;
  border: 2px solid rgb(255 255 255 / 60%) !important;
}

.elementor-text-editor table tr:first-of-type th,
.elementor-text-editor table tr:first-of-type td,
.elementor-text-editor table tr:first-of-type h3 {
  padding: 0.75rem;
  vertical-align: middle;
  background-color: #1e3f62 !important;
  font-weight: 400 !important;
  color: var(--white);
  font-family: "Ginger";
}

.elementor-text-editor table tr:first-of-type th *,
.elementor-text-editor table tr:first-of-type td *,
.elementor-text-editor table tr:first-of-type h3 * {
  font-weight: 700 !important;
  color: var(--white) !important;
}

.elementor-text-editor table tr:nth-child(even) {
  background-color: #c0cde7;
}

.elementor-text-editor table tr td p,
.elementor-text-editor table tr th p {
  margin: 0px !important;
}

.elementor-widget-container p:empty {
  display: none;
}

.home-features__list {
  margin-bottom: 2.5rem;
  list-style-type: none;
  padding-left: 0;
}

.home-features__list li {
  margin-bottom: 2rem;
  background-color: var(--white);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--light-blue);
}

.home-features__list li::before {
  margin-right: 1rem;
  vertical-align: middle;
  content: url("../images/icon-check-round-red-24px.svg");
}

.home-features__list p {
  display: inline-block;
  margin-bottom: 0;
}

.home-features__list p + p {
  padding-left: 2.8rem;
}

.u-color-primary-shade-500 {
  color: #1e3f62;
}

.home_ipad {
  position: relative;
  background: url(../images/ipad-horizontal.min4.png) no-repeat;
  width: 745px;
  height: 550px;
  margin: auto;
}

.home_ipad .embed-responsive {
  position: absolute;
  width: 609px;
  height: 458px;
  top: 46px;
  left: 67px;
  background: var(--white);
}

.home_ipad .embed-responsive:before {
  padding: 0;
}

.bg_white {
  background-color: var(--white);
}

.wpcf7-not-valid-tip {
  font-size: 12px !important;
}
.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border: 1px solid #f00 !important;
  background-color: #e4b5b5 !important;
  padding: 8px;
  margin-bottom: 8px;
  color: #721c24;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid #05a000 !important;
  background-color: #b5ecb4 !important;
  padding: 8px;
  margin-bottom: 8px;
}

.wpcf7-form br {
  display: none;
}

.testimonialContainer {
  background: var(--white);
  margin-bottom: 20px;
  padding: 20px 30px;
  position: relative;
  border-radius: 8px;
}

.testimonialContainer .verified_test {
  color: var(--blue);
  font-size: 17px;
  display: block;
  width: 90px;
  height: 26px;
  margin-top: 5px;
}

.testimonialContainer .verified_test i.fa {
  margin-right: 7px;
  color: var(--blue);
}

.stars {
  color: gold;
  font-size: 1.25rem;
}

.testimonialContainer h3 {
  color: #1e3f62;
  font-size: 25px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.testimonial_page_content {
  background: var(--white);
  margin-top: -40px;
  margin-bottom: 40px;
}
.test_inner_content_sec {
  background: var(--white);
  padding: 35px 0px;
  position: relative;
  margin: 0;
  font-size: 18px;
}
.test_inner_content_sec .row {
  margin-bottom: 25px;
}

.d_star_rating {
  color: #999999;
  text-align: right;
  font-size: 36px;
}

@media only screen and (min-width: 768px) {
  .acls-ad__title,
  .certify-ad__title {
    font-size: 26px;
  }
}

@media only screen and (min-width: 1200px) {
  .acls-ad__title,
  .certify-ad__title {
    font-size: 28px;
  }
}

@media only screen and (min-width: 992px) {
  .acls-ad__prices,
  .certify-ad__prices {
    display: flex;
  }
}

.acls-ad__price,
.certify-ad__price {
  padding: 16px;
}
@media only screen and (min-width: 992px) {
  .acls-ad__price,
  .certify-ad__price {
    flex-grow: 1;
  }
}

.banner-ad {
  padding: 20px;
  background-color: #b62a08;
}

@media only screen and (min-width: 768px) {
  .banner-ad {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.banner-ad__title {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--white);
}

@media only screen and (min-width: 768px) {
  .banner-ad__title {
    margin-bottom: 0;
  }
}
.group-orders-card {
  margin-bottom: 30px;
  padding: 8px 16px;
  border-top: 4px solid var(--red);
  background-color: var(--white);
  box-shadow: 0px 0px 1px rgba(60, 125, 196, 0.2);
}

.group-orders-card__title {
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 15px;
  color: var(--blue);
  font-size: 24px;
  border-bottom: 1px solid #fd3b0b;
}

.group-orders-card__number {
  display: flex;
  margin-bottom: 8px;
  padding-top: 8px;
  font-weight: 700;
}

.group-orders-card__number:nth-of-type(even) {
  margin-bottom: 0;
  border-top: 1px solid #d8e5f3;
}

.group-orders-card input[type="number"] {
  width: 40px;
  margin-right: 8px;
  margin-bottom: 0;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 3px;
  border: 1px solid #9ebee2;
}

.group-orders-card__type {
  align-self: center;
}

.group-orders-card__price {
  align-self: center;
  margin-left: auto;
  color: var(--blue);
}

.discount-ad {
  padding: 1rem;

  background-color: #faeae6;
  background-image: url("../images/heart-bg.svg");
  background-repeat: no-repeat;
  background-position: calc(100% + 20px) 20px;
}

.discount-ad.grquiz {
  background-color: rgb(219, 247, 222);
}

.timestamp {
  color: #1e3f62;
  margin-bottom: 0.25em;
}

@media only screen and (min-width: 768px) {
  .customer-review {
    width: 60%;
  }
}
.review blockquote {
  background: var(--white);
  margin: 0;
}

.reviews-blockquote {
  border-left: 0;
  padding: 0.5em;
  position: relative;
}

.reviews-blockquote p {
  margin-bottom: 0;
}

.down-arrow {
  float: left;
  margin-left: 1em;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--white);
}

.customer {
  clear: both;
  color: #1e3f62;
}

.overall-experience {
  margin-right: 1rem;
}

.reorder {
  font-size: 1.5rem;
  color: #89c23e;
  line-height: 1;
  text-transform: capitalize;
  margin-top: 5px;
}

.reviewer {
  color: #1e3f62;
  font-weight: 700;
}
.vocation {
  display: block;
  color: #1e3f62;
}

.experience {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
}

@media only screen and (min-width: 768px) {
  .experience {
    width: 33%;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}
.summary {
  color: var(--white);
  background-color: var(--blue);
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.summary em {
  display: block;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2em;
}

@media (min-width: 960px) {
  .summary .width_locker {
    overflow: hidden;
    max-width: 818px;
    margin-left: auto;
    margin-right: auto;
  }
}
.summary-footer {
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

@media (min-width: 960px) {
  .summary-footer {
    overflow: hidden;
    max-width: 818px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    text-align: left;
  }
}
.and,
.bar_graph,
.order_again_count,
.sample_size {
  clear: both;
  text-align: center;
}

.order_again_count {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

@media (min-width: 960px) {
  .order_again_count {
    padding-left: 0;
    padding-right: 0;
  }
}
.bar_graph {
  overflow: hidden;
  width: 200px;
  padding: 0;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .sample_size {
    clear: none;
    text-align: left;
    float: left;
    line-height: 0.9em;
    margin: 20px 10px;
  }

  .bar_graph {
    clear: none;
    text-align: left;
    float: left;
    height: 1%;
    margin-bottom: 0;
    margin-left: 0.714em;
    padding: 0;
  }

  .and,
  .order_again_count {
    clear: none;
    float: left;
    margin-left: 0.714em;
    text-align: left;
    width: 14em;
  }

  .and {
    margin-top: 2em;
    width: 2.857em;
  }
}
.bar_graph li {
  display: block;
  float: left;
  margin-right: 5px;
  text-align: center;
  width: 35px;
}

.bar_graph .bar {
  background-color: #8ab1dc;
  height: 36px;
  margin: 0 auto 0.1em;
  width: 32px;
}

.bar_graph .bar .inner {
  background: url(../images/bar_gradient.gif) repeat-y scroll 0 0 transparent;
  height: 100%;
  margin: 0 auto;
  width: 26px;
}

.bar_graph .unfilled {
  width: 100%;
  background-color: #8ab1dc;
  font-size: 0;
}

.summary .and em,
.summary .sample_size em {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 0.2em;
}

.select-css {
  display: block;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 700;
  color: #444;
  line-height: 1.3;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 0.5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--white);
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"),
    linear-gradient(to bottom, var(--white) fff 0%, #e5e5e5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}

.select-css::-ms-expand {
  display: none;
}

.select-css:hover {
  border-color: #888;
}

.select-css:focus {
  border-color: #aaa;
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}

.select-css option {
  font-weight: normal;
}

.learn-cta {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background-image: url(../images/graph-bg.svg);
}

.learn-cta h2 {
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 1200px) {
  .learn-cta h2 {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .learn-cta {
    padding: 3rem;
    text-align: left;
    background-image: url(../images/graph-bg.svg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    text-align: left;
  }
}
legend {
  font-weight: 700;
}

label {
  font-weight: 700;
}

.profile-form {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: var(--white);
}

#emptycart {
  padding-left: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  background-image: url("../images/icon-exclamation--red.svg");
  background-repeat: no-repeat;
  background-position: left center;
}

ol ul {
  list-style-type: circle;
}

ol li {
  margin-bottom: 8px;
}

/* ul {
  list-style-type: disc;
} */

.ul--unstyled {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  color: #333;
  list-style-type: none;
}

.ul--unstyled li {
  margin-bottom: 8px;
}

.ul--unstyled li:last-of-type {
  margin-bottom: 0;
}

.ul--states {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.ul--states li {
  margin-bottom: 0.5em;
}

.sidebar-nav-list,
.member-page-list {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 0;
  list-style-type: none;
}

.sidebar-nav-list li,
.member-page-list li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  list-style-type: none;
  border-bottom: 1px solid #efc1b5;
}

.sidebar-nav-list li:first-of-type,
.member-page-list li:first-of-type {
  padding-top: 5px;
  border-top: 1px solid var(--red);
}

.ul--angle {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.ul--angle li {
  text-indent: -0.5em;
  padding-left: 0.5em;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .popover {
    max-width: 368px;
  }
}
.popover-header {
  font-size: 14px;
}

.popover-header .close {
  color: var(--red) !important;
  margin-left: 10px;
  position: relative;
  top: -6px;
  opacity: 1;
  right: -4px;
  z-index: 250;
  cursor: pointer;
}

.popover-list {
  margin-bottom: 0;
  padding-left: 0;
  color: var(--text);
  font-size: 12px;
  list-style-type: none;
}

.popover-list li {
  margin-bottom: 0.75rem;
  text-indent: -1rem;
  padding-left: 1rem;
}

.popover-list li:last-of-type {
  margin-bottom: 0;
}

.popover-list li:before {
  padding-right: 0.5rem;
  content: "+";
  color: var(--red);
}

.c-folding-list > .card {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: var(--white);
  border: 0;
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.c-folding-list .card-header {
  background-color: transparent;
  border-bottom: 0;
}

.card-header {
  padding: 0;
}

.c-folding-list > .card .card-body {
  padding-top: 1rem;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-right: 1.5rem !important;
}

.card-body ul:last-child {
  margin-bottom: 0;
}

.card-body p:last-child {
  margin-bottom: 0;
}

.c-folding-list > .card .card-header a.card-link {
  width: 100%;
  display: block;
  background-image: url("../images/icon-chevron-up--red.svg");
  background-repeat: no-repeat;
  background-position: right center;
}

.c-folding-list > .card .card-header a.collapsed.card-link {
  width: 100%;
  display: block;
  background-image: url("../images/icon-chevron-down--red.svg");
  background-repeat: no-repeat;
  background-position: right center;
}

.nav-list {
  list-style-type: none;
  padding-left: 0;
}

.nav-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--white);
  box-shadow: 0 0 1px rgba(18, 37, 59, 0.1), 0 2px 4px rgba(18, 37, 59, 0.02);
  transition: all 0.5s ease;
}

.nav-list li:hover {
  box-shadow: 0 0 1px rgba(18, 37, 59, 0.3), 0 4px 18px rgba(18, 37, 59, 0.08);
  background-color: var(--white);
}

.nav-list__title {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-list__button {
  flex-shrink: 0;
}

.product-details-list {
  padding-left: 0;
  text-align: center;
}

.product-details-list li {
  margin-bottom: 16px;
  display: inline-block;
  min-width: 310px;
}

.product-details-list li:before {
  margin-right: 8px;
  padding: 0.125em 0.5em;
  /* content: url("../images/icon-circle-red-8.svg"); */
  content: "+";
  color: var(--red);
  background-color: var(--white);
  border-radius: 4px;
}

/* .product-details-list li::marker {
  padding-right: 8px;
  color: hsl(26, 93%, 55%);
  font-size: 1rem;
} */

.video-details-list {
  padding-left: 0;
  list-style-type: none;
}

.video-details-list li {
  margin-bottom: 16px;
}

.video-details-list li::before {
  padding-right: 4px;
  vertical-align: middle;
  content: url("../images/icon-checkmark-circle-red-16.svg");
}

.bullet--red li {
  margin-bottom: 0.5rem;
}

.bullet--red li:last-of-type {
  margin-bottom: 0;
}

.bullet--red li::marker {
  color: var(--red);
}

.numbered--red li {
  padding-left: 0.25rem;
}

.numbered--red li::marker {
  content: counter(list-item) ". ";
  color: var(--red);
  font-weight: bold;
}

.square--red li {
  margin-bottom: 0.5rem;
  list-style-type: square;
}

.square--red li:last-of-type {
  margin-bottom: 0;
}

.square--red li::marker {
  color: var(--red);
}

.table-bordered.table-blue > tbody > tr > td {
  padding: 15px;
}

.table-bordered.table-blue > tbody > tr > td,
.table-bordered.table-blue > thead > tr > td {
  border: 1px solid var(--blue);
}

.table-bordered.table-blue > thead > tr > td {
  border-bottom: 0;
}

.table-red-border > tbody > tr > td,
.table-red-border > thead > tr > th {
  border-top: 0;
  border-bottom: 1px solid var(--red);
}

.table-fixed--1070 {
  width: 1070px;
}

.video-title {
  margin-bottom: 20px;
  padding-top: 8px;
  text-align: center;
  text-transform: uppercase;
}

.video-card {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  box-shadow: 0 0 1px rgba(18, 37, 59, 0.1), 0 2px 4px rgba(18, 37, 59, 0.02);
  transition: all 0.5s ease;
  background-color: var(--white);
  border-top: 4px solid var(--red);
}

.video-card__title {
  margin-bottom: 0;
  padding: 0.625rem 1rem;
  font-size: 18px;
  font-weight: 700;
}

.video-card__footer {
  padding: 0.625rem 1rem;
  background-color: var(--light-blue);
}

.video-card:hover {
  box-shadow: 0 0 1px rgba(18, 37, 59, 0.3), 0 4px 18px rgba(18, 37, 59, 0.08);
  background-color: var(--white);
}

.video-card-page-entry-horizontal {
  margin-bottom: 30px;
  padding: 1rem;
  background-color: var(--white);
  box-shadow: 0px 2px 6px 0px rgba(18, 37, 59, 0.1);
}

.basic-card {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  box-shadow: 0 0 1px rgba(18, 37, 59, 0.1), 0 2px 4px rgba(18, 37, 59, 0.02);
  transition: all 0.5s ease;
  background-color: var(--white);
  border-top: 4px solid var(--red);
}

.basic-card:hover {
  box-shadow: 0 0 1px rgba(18, 37, 59, 0.3), 0 4px 18px rgba(18, 37, 59, 0.08);
  background-color: var(--white);
}

.basic-card p {
  margin-bottom: 0;
}

.basic-card__title {
  margin-bottom: 0;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.basic-card__description {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  color: #333;
}

.basic-card__footer {
  margin-top: auto;
  padding: 10px 20px;
  background-color: var(--light-blue);
}

.basic-card-page-entry-horizontal {
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--white);
  box-shadow: 0px 2px 6px 0px rgba(18, 37, 59, 0.1);
}

.media-card__image {
  padding: 1rem;
  background-color: var(--light-blue);
  border-radius: 8px;
  width: 88px;
  height: 88px;
}

.training-card__image {
  padding: 1rem;
  background-color: var(--light-blue);
  border-radius: 8px;
  width: 88px;
  height: 88px;
}

.change-card-container {
  position: relative;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.change-card-container > img {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: 0.5s ease;
  backface-visibility: hidden;
}

.card-middle {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.change-card-container:hover img {
  opacity: 0.3;
}

.change-card-container:hover .card-middle {
  opacity: 1;
  cursor: pointer;
}

.sales-card {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.sales-card-title {
  padding-bottom: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--red);
}

.sales-card__list li:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

.plain-card {
  margin-bottom: 30px;
  padding: 1rem;
  background-color: var(--white);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.customer-testimonial-container {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.customer-testimonial {
  padding: 1rem;
  background-color: var(--white);
  border-left: 0;
}

.wedge {
  float: left;
  margin-left: 35%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--white);
}

.video-carousel-content {
  display: flex;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.carousel-control-next.video-carousel-next,
.carousel-control-prev.video-carousel-prev {
  width: auto;
}

@media screen and (max-width: 1199px) {
  #carouselContent .carousel-control-prev,
  #carouselContent .carousel-control-next {
    top: 80px !important;
  }
}
@media only screen and (min-width: 1200px) {
  #carouselContent .carousel-control-next,
  #carouselContent .carousel-control-prev {
    top: 80px !important;
  }
}
.title-box {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-image: url("../images/graph-bg.svg");
}

.video-heading {
  background-image: url(../images/graph-bg.svg);
  padding: 1rem;
  margin-bottom: 1rem;
}

.video-heading h2 {
  margin-bottom: 0;
}

.algorithm-heading {
  background-image: url(../images/graph-bg.svg);
  padding: 1rem;
  margin-bottom: 1rem;
}

.algorithm-heading h2 {
  margin-bottom: 0;
}

.megacode-heading {
  background-image: url(../images/graph-bg.svg);
  padding: 1rem;
  margin-bottom: 1rem;
}

.megacode-heading h2 {
  margin-bottom: 0;
}

.practice-tests-heading {
  background-image: url(../images/graph-bg.svg);
  padding: 1rem;
  margin-bottom: 1rem;
}

.practice-tests-heading h2 {
  margin-bottom: 0;
}

.knowledge-base-heading {
  background-image: url(../images/graph-bg.svg);
  padding: 1rem;
  margin-bottom: 1rem;
}

.knowledge-base-heading h2 {
  margin-bottom: 0;
}

.accreditation-banner {
  padding-bottom: 30px;
  background-color: var(--light-blue);
}

.accreditation-banner--heading {
  color: #1e3f62 !important;
}

h2.accreditation-banner--subheading {
  color: #12253b;
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.7;
}

.accreditation-banner p:nth-of-type(2) {
  color: #1e3f62;
  font-size: 1.125rem;
  opacity: 0.5;
}

.interior-page-heading {
  margin-top: 0;
  margin-bottom: 40px;
  padding-top: 110px;
  padding-bottom: 20px;
  text-align: center;
  background-color: var(--light-blue);
}

@media (min-width: 1200px) {
  .interior-page-heading {
    padding-top: 140px;
  }
}
a.footnotes::after {
  content: "-";
  position: absolute;
  right: 0;
}

a.footnotes.collapsed::after {
  content: "+";
  position: absolute;
  right: 0;
}

.tooltip-inner {
  padding: 0.5rem;
  color: var(--text);
  font-size: 0.875rem;
  text-align: left;
  background-color: var(--white);
  border: 1px solid #9ebee2;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

.tooltip-link {
  color: var(--blue);
}

.tooltip-link:hover {
  cursor: pointer;
}

/* Tooltip on top */
.bs-tooltip-top .arrow::before {
  border-top: 5px solid var(--blue);
}

/* Tooltip on bottom */
.bs-tooltip-bottom .arrow::before {
  border-bottom: 5px solid var(--blue);
}

/* Tooltip on left */
.bs-tooltip-left .arrow::before {
  border-left: 5px solid var(--blue);
}

/* Tooltip on right */
.bs-tooltip-right .arrow::before {
  border-right: 5px solid var(--blue);
}

.testimonial {
  max-width: 18.75rem;
  margin-left: auto;
  margin-right: auto;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%233C7CC4;%7D%0A%3C/style%3E%3Cpath class='st0' d='M13.1,0l-10,10l10,10l3.8-3.8L10.6,10l6.2-6.2L13.1,0z'/%3E%3C/svg%3E%0A");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%233C7CC4;%7D%0A%3C/style%3E%3Cpath class='st0' d='M3.1,3.8L9.4,10l-6.2,6.2L6.9,20l10-10L6.9,0L3.1,3.8z'/%3E%3C/svg%3E");
}

.c-knowledgebase {
  display: flex;
  align-items: center;
}

.highlight-phone {
  overflow: hidden;
}

.highlight-phone .iphone-mockup {
  margin-bottom: -400px;
}

.iphone-mockup-small-screen {
  margin-bottom: -400px;
}

@media (max-width: 767px) {
  .brands {
    padding: 30px 0;
  }
}
.brands {
  display: block;
  text-align: center;
  padding: 40px 0;
}

html body .brands img {
  max-width: 150px;
  display: inline-block;
  margin: 10px 20px;
  vertical-align: middle;
}

.custom-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.page-title-content {
  margin-bottom: 40px;
  padding-top: 120px;
  padding-bottom: 40px;
}

.blog-page-title-content {
  margin-bottom: 40px;
  padding-top: 20px;
}

/* .course-feature img {
  opacity: 0.5;
} */

.user-count {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  border-bottom: 2px solid var(--red);
}

.blog-feed {
  margin-top: -120px;
}

.blog-page-author {
  font-size: 0.875rem;
}

.blog-card,
.blog-post-card {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-card.col-md-6:first-of-type {
  flex: 0 0 100%;
  max-width: 100%;
}

.blog-page-list-page-entry-horizontal,
.blog-post-page-list-page-entry-horizontal {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  background-color: var(--white);
  transition: all 0.5s ease;
  box-shadow: 0px 2px 6px 0px rgba(18, 37, 59, 0.1);
}

.blog-page-list-page-entry-horizontal:hover,
.blog-post-page-list-page-entry-horizontal:hover {
  background-color: var(--white);
  box-shadow: 0px 4px 8px 0px rgba(18, 37, 59, 0.2);
}

.blog-page-list-title,
.blog-post-page-list-title {
  font-size: 22px;
  font-weight: 700;
}

.blog-page-topic {
  font-size: 0.875rem;
  font-weight: 600;
}

.topic-title {
  margin-top: -160px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.topic-title:before {
  content: "Topic: ";
}

.blog-page-list-page-entry-thumbnail,
.blog-post-block-page-list-page-entry-thumbnail {
  margin-bottom: 16px;
}

.blog-page-list-description,
.blog-post-page-list-description {
  margin-bottom: 16px;
}

.blog-page-list-footer {
  margin-top: auto;
}

.blog-feature,
.glance {
  margin-bottom: 1rem;
  padding: 1rem;
  border-top: 4px solid var(--blue);
  background-color: var(--light-blue);
}

.blog-feature li,
.glance li,
.table_of_content_wrap .table_of_content_inner .inner_content li,
.single_algo_content ul li {
  margin-bottom: 5px;
}

.blog-feature ul:last-of-type,
.glance ul:last-of-type {
  margin-bottom: 0;
}

.author-profile {
  padding: 1.5rem;
  box-shadow: 0px 2px 6px 0px rgba(18, 37, 59, 0.1);
}

.author-profile:hover {
  box-shadow: 0px 4px 8px 0px rgba(18, 37, 59, 0.2);
}

.author-profile__title {
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 1rem;
}

.author-profile .author-profile__image {
  padding-right: 1.5rem;
}

.author-profile__image img {
  max-width: 80px;
  max-height: 80px;
  border-radius: 50%;
}

.author-profile__name a {
  font-weight: 700;
}

.author-profile .author-profile__attributes {
  margin: 0;
}

.author-profile .author-profile__image,
.author-profile .author-profile__body {
  display: table-cell;
  vertical-align: top;
}

.author-profile__body p:last-of-type {
  margin-bottom: 0;
}

.main-inner {
  margin-bottom: 2.5rem;
  padding: 1.25rem;
  background-color: var(--white);
}

.single_inner_space {
  margin-bottom: 2.5rem;
  background-color: var(--white);
  padding: 1.25rem;
}

.key-block {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #faeae6;
}

.key-block__title {
  padding-left: 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  background-image: url("../images/icon-key.svg");
  background-repeat: no-repeat;
  background-position: center left;
}

.key-block p:last-of-type {
  margin-bottom: 0;
}

.chapter-intro {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: var(--light-blue);
}

.chapter-intro p:last-of-type {
  margin-bottom: 0;
}

p.starRatings {
  color: #f1d646;
  font-size: 1.5rem;
}
.carousel-item {
  height: 23rem;
}
.customer-testimonial {
  overflow: hidden;
  max-height: 10.3rem;
  text-overflow: -o-ellipsis-lastline;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.left_sidebar {
  margin-bottom: 30px;
  padding: 16px 16px 8px 16px;
  text-align: center;
  background-color: var(--white);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.about_content_sec {
  padding: 0px 15px;
}

.medical_sec h4 {
  margin-bottom: 0;
}

.medical_sec h6 {
  color: #888;
  text-transform: uppercase !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.navbar-nav ul ul ul {
  position: relative !important;
  display: block;
  left: 0;
  top: 0;
}

#menu-item-502 ul.dropdown-menu {
  width: 488px;
}

#menu-item-502 ul.dropdown-menu.show {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#menu-item-502 ul.dropdown-menu > li {
  display: inline-block;
  float: none;
  width: 50%;
}

#menu-item-502 ul.dropdown-menu > li:first-of-type {
  width: 100%;
}

#menu-item-502 ul.dropdown-menu > li:first-of-type > a,
#menu-item-489 ul.dropdown-menu > li:first-of-type > a {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 0.5rem;
  margin-top: -0.5rem;
  padding-top: 0.5rem;
}

#menu-item-502 ul.dropdown-menu ul {
  display: block;
  width: auto !important;
  position: static !important;
  border: none;
  padding: 0;
}

#menu-item-502 ul.dropdown-menu ul li {
  display: block;
  margin: 0;
  flex: none !important;
  width: 100%;
}

#menu-item-502 ul.dropdown-menu ul li a {
  border: none !important;
  margin: 0 !important;
  display: block !important;
  width: 100%;
  padding: 0.25rem 1.5rem !important;
}

@media (max-width: 1199px) {
  #menu-item-502 ul.dropdown-menu.show {
    width: auto;
  }
}

@media (max-width: 767px) {
  #menu-item-502 ul.dropdown-menu > li {
    display: block;
    width: 100%;
  }
}

.info_c strong {
  color: var(--red);
}

.salaespage_main_sec.red .u-color-red,
html body[class*="single-sfwd-"] .u-color-red {
  color: var(--red);
}

.salaespage_main_sec.purple .u-color-red,
html body[class*="single-sfwd-"] .u-color-purple {
  color: hsl(256, 49%, 38%);
}

.salaespage_main_sec.green .u-color-red,
html body[class*="single-sfwd-"] .u-color-green {
  color: hsl(154, 55%, 41%);
}

.salaespage_main_sec.blue .u-color-red,
html body[class*="single-sfwd-"] .u-color-blue {
  color: var(--cpr-blue);
}

.salaespage_main_sec.dblue .u-color-red,
html body[class*="single-sfwd-"] .u-color-dblue {
  color: hsl(202, 99%, 38%);
}

.salaespage_main_sec.orange .u-color-red,
html body[class*="single-sfwd-"] .u-color-orange {
  color: hsl(26, 93%, 55%);
}

.course_tab .tab-content > .active {
  display: block;
  opacity: 1;
}

body.page-id-1075 .tabs_sec,
body.page-id-1081 .tabs_sec {
  display: none;
}

body.page-id-1057 .bottom_course .course-box .list-unstyled,
body.page-id-1136 .bottom_course .course-box .list-unstyled {
  min-height: 124px;
}

body.page-id-1057 .bottom_course .course-box-title .fs-50,
body.page-id-1136 .bottom_course .course-box-title .fs-50 {
  font-size: 18px;
}

header .current-menu-item > a,
header .current-menu-ancestor > a {
  color: var(--red) !important;
}

header #menu-item-501.current-menu-item > a,
header #menu-item-501.current-menu-ancestor > a {
  color: var(--white) !important;
}

.hero-not-found {
  background-image: url("../images/hero-heart-only.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 880px) {
  .hero-not-found {
    background-image: url("../images/hero-icons-11.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.hero-not-found-container {
  max-width: 538px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 110px;
  padding-bottom: 30px;
}

@media only screen and (min-width: 1200px) {
  .hero-not-found-container {
    padding-top: 136px;
  }
}
.hero-not-found-content h1 {
  font-size: 48px;
}

.hero-not-found-content > p {
  font-size: 18px;
}

.hero-not-found-content p + p {
  font-size: 16px;
}

.buynow_btn > a {
  color: var(--white) !important;
  background-color: var(--red);
  border: 1px solid var(--red);
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
  line-height: 1.5;
  border-radius: 0.2rem;
  font-size: 0.875rem;
  font-weight: 700 !important;
  display: block;
  text-align: center;
  margin-left: 16px !important;
  margin-top: 2px;
  margin-right: 3px;
}

.buynow_btn > a:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--white) !important;
  text-decoration: none;
}

.medical_sec .elementor-image img {
  -moz-box-shadow: 0 4px 13px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0 4px 13px rgba(0, 0, 0, 0.16);
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.16);
  padding: 5px;
  border: 1px solid rgb(0 0 0 / 15%);
  margin-bottom: 15px;
}

.video-details-list .elementor-text-editor {
  margin-bottom: 1.5rem;
  -ms-flex-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
}
.video-details-list ul {
  padding-left: 0;
  list-style-type: none;
  margin-right: 1.5rem !important;
}

.highlight_border .elementor-widget-container {
  text-align: center;
}

.highlight_border .elementor-text-editor {
  background-color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  padding-bottom: 0.5rem !important;
  padding-top: 0.5rem !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  border-radius: 0.25rem !important;
  border: 1px solid #dee2e6 !important;
}

.add_review_sec {
  padding-bottom: 50px;
}
.stars label {
  cursor: pointer;
}
.stars label input {
  display: none;
}
.stars label i.fa {
  margin-right: 3px;
  color: #999999;
}
.stars label span {
  display: none;
}

.stars label.active i.fa,
.stars label.hover i.fa,
.stars label:hover i.fa {
  color: #ffd700;
}

.page-numbers {
  margin: 0px;
  padding: 0px;
}

.page-numbers a {
  color: var(--white) !important;
}

.reviewHolder {
  margin-bottom: 30px;
}

.faq_sec {
  padding: 40px 0px;
}

.tax-faq-categories .main_search_sec {
  padding-bottom: 20px;
}

.page-template-temp_faq-php .accreditation-banner,
.post-type-archive-acl-faq .accreditation-banner,
.tax-faq-categories .accreditation-banner {
  margin-bottom: 0px !important;
}

.faq_sec h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.faq_sec h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}

.search_faq {
  width: 447px;
  margin: auto;
}

.search_faq .form-control {
  height: 47px;
  border-radius: 8px;
  background: var(--white) fff;
}

.search_faq .btn_blue {
  margin-left: 15px;
  font-weight: 700;
  height: 47px;
}

.faq_list {
  margin-bottom: 50px;
  overflow: hidden;
}

.post-type-archive-acl-faq .faq_list,
.tax-faq-categories .faq_list {
  margin-bottom: 0px;
}

.faq_list ul {
  padding: 0;
  margin: 0px -15px;
  display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.faq_list ul li {
  list-style: none;
  padding: 0px 15px;
  -ms-flex: 0 0 100%;
  flex: 0 0 50%;
  max-width: 50%;
}

.faq_list ul li a {
  color: var(--text);
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  display: block;
  color: var(--text);
}

.faq_list ul li a:after {
  content: "\f0f6";
  font: normal normal normal 14px/1 FontAwesome;
  color: #999999;
  font-size: 16px;
  width: 14px;
  height: 16px;
  position: absolute;
  top: 6px;
  left: 0;
}

.faq_list ul li a:hover {
  color: var(--blue);
}

.acl_green_msg {
  border: 1px solid #05a000 !important;
  background-color: #b5ecb4 !important;
  padding: 10px 15px;
  margin-bottom: 8px;
  color: rgb(0 0 0 / 72%);
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

span.search-excerpt {
  background-color: #eff5a9;
}

body.single-acl-faq {
  background-color: var(--white);
}

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

.faq_content_wrap h1 {
  margin-bottom: 30px;
}

.faq_content_bottom {
  margin-bottom: 40px;
  color: #888888;
}

.faq_content_bottom p {
  color: #888888;
}

p:empty {
  display: none;
  margin: 0pc;
}

@media (min-width: 75em) {
  .about_inner_heading_1 h2 {
    font-size: 2rem;
  }

  .about_inner_heading_2 h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.single-acl-accreditation .accreditation-banner--heading {
  color: var(--text);
}

.ccm-custom-style-main-7554 .course-box-title .fs-50 {
  font-size: 18px;
}

.featured_course_shortcode .elementor-icon-list-item {
  align-items: center !important;
}

.five_el .elementor-icon-list-item {
  align-items: center !important;
}

.three_el h2 {
  font-size: 23px;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .medical_sec {
    padding: 0px 15px;
  }

  .medical_sec:nth-child(odd) .elementor-column:last-of-type {
    -ms-flex-order: -1;
    order: -1;
  }

  .medical_sec .elementor-image {
    text-align: center;
  }

  .medical_sec h6,
  .medical_sec h4 {
    text-align: center;
  }

  .elementor-column-gap-default
    > .elementor-row
    > .elementor-column
    > .elementor-element-populated {
    padding: 0px 15px !important;
  }

  .page-template-temp_about .accreditation-banner + .container {
    padding: 0px;
  }

  .elementor-448 .elementor-element.elementor-element-1ee12f1 {
    margin-bottom: 0px !important;
  }

  .elementor-column-gap-narrow
    > .elementor-row
    > .elementor-column
    > .elementor-element-populated {
    padding: 0px !important;
  }
}

@media (max-width: 767px) {
  .elementor-col-50 img {
    width: 100%;
  }

  .elementor-element-852525c {
    padding: 0px 40px !important;
  }

  .acl_video_shortcode .elementor-element-7a358dd p {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .course-box-title .fs-50 {
    font-size: 40px !important;
  }

  .ccm-custom-style-main-10812 p + p {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  body.single-acl-accreditation .about_content_sec h2 {
    font-size: calc(1rem + ((1vw - 0.000625rem) * 1.3344));
  }

  .video-details-list .elementor-text-editor {
    justify-content: left;
    display: flex;
    flex-wrap: wrap;
  }

  .video-details-list ul {
    margin-right: 0 !important;
    flex: 0 50%;
    box-sizing: border-box;
    max-width: 50%;
    margin: 0;
  }
  .us_shortcode .elementor-row {
    flex-direction: column-reverse;
  }
  .us_shortcode .elementor-row .elementor-column:last-of-type {
    padding-bottom: 20px !important;
  }
  .sales_health_shortcode .elementor-row .elementor-column:first-of-type {
    padding-bottom: 20px !important;
  }

  body.home .info_c {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
    line-height: 1.5 !important;
  }

  .home_online_training h2 {
    font-size: 23px !important;
    margin-bottom: 1rem;
  }

  .three_el .elementor-container {
    flex-direction: column-reverse;
  }

  .three_el .elementor-container h2 {
    font-size: 23px;
    text-align: left;
    margin-bottom: 1rem;
  }

  .three_el .elementor-container p {
    text-align: left;
  }
}

@media (max-width: 650px) {
  body.single-acl-accreditation .about_content_sec h2 {
    font-size: calc(1rem + ((1vw - 0.000625rem) * 1.3344));
  }

  .elementor-element-852525c {
    padding: 0px 0px !important;
  }
}

.footer-copyright i.fa,
body.home .elementor-icon-list-items i.fas {
  font: normal normal normal 14px/1 FontAwesome !important;
  font-size: inherit !important;
}

.home_courses .fa-plus:before {
  padding-right: 4px;
  background: url("../images/icon-plus-blue.svg");
  content: "";
  width: 17px;
  height: 21px;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-left: -15px;
  margin-top: 10px;
}

.sample_size em,
.summary em,
.summary .and em,
.summary .sample_size em {
  font-weight: 600 !important;
}

.lsm_lesson_content_1 {
  font-size: 12px;
}

.ld-tabs-content h3 {
  font-size: 1.75rem;
  color: var(--blue);
}

.ld-tabs-content h4 {
  font-size: 1.5rem;
  color: var(--blue);
}

.email-opt-in {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  color: var(--white);
  background-color: var(--blue);
  background-image: url(../images/icon-study-guide-100.svg);
  background-repeat: no-repeat;
  background-size: 80px 80px;
  background-position: 60% 30%;
}

@media only screen and (min-width: 992px) {
  .email-opt-in {
    background-position: 80% 40%;
  }
}
@media only screen and (max-width: 767px) {
  .d_star_rating {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .faq_list ul li {
    width: 100%;
    float: none;
  }

  .search_faq {
    width: 100% !important;
    margin: auto;
  }
}

.key-block {
  margin-bottom: 20px;
}
.key-block br {
  display: none;
}

.course_ipad_sec {
  width: 100%;
}

.page-template-temp_courses-php .highlight_border .elementor-text-editor {
  display: none;
}

.page-template-temp_courses-php .elementor-element-3ef728f3 {
  display: none;
}

.fs-23 {
  font-size: 23px;
}

html body .tml-links {
  display: none;
}

html body .tml-field,
html body .input-text {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

html body .tml-field:focus,
html body .input-text:focus {
  color: #495057;
  background-color: var(--white);
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

/* html body .tml-button {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
  font-weight: 700;
}

html body .tml-button:hover {
  color: var(--white);
  background-color: #0069d9;
  border-color: #0062cc;
}

.tml-lostpassword .tml-button {
  display: block;
  width: 100%;
} */

html body .woocommerce-error,
html body .woocommerce-info,
html body .woocommerce-message {
  background-color: var(--white);
}

.woocommerce-MyAccount-navigation {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 0;
  list-style-type: none;
}

.woocommerce-MyAccount-navigation ul {
  padding: 0px;
  border-bottom: 1px solid #e3e3e3fa;
  padding-bottom: 20px;
}
.woocommerce-MyAccount-navigation li {
  list-style-type: none;
}

.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a.current-page,
.woocommerce-MyAccount-navigation li a.current-page:before,
.woocommerce-MyAccount-navigation li a:hover:before {
  color: var(--red);
}

html .woocommerce #respond input#submit,
html .woocommerce a.button,
html .woocommerce button.button,
html .woocommerce input.button {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
  font-weight: 700;
}

html .woocommerce #respond input#submit:hover,
html .woocommerce a.button:hover,
html .woocommerce button.button:hover,
html .woocommerce input.button:hover {
  color: var(--white);
  background-color: #1e3f62;
  border-color: #1e3f62;
}

.woocommerce-MyAccount-content legend {
  font-weight: 700;
}

.woocommerce-MyAccount-content form .form-row,
.woocommerce form .form-row {
  display: block;
}

.woocommerce-account h1.page-title {
  margin-bottom: 25px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: block !important;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  max-width: 48%;
}

.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  max-width: 48%;
}

.woocommerce-account fieldset {
  margin-top: 25px;
}

.woocommerce form .form-row em {
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.footer-nav-horizontal li:last-of-type {
  border: none !important;
}

input[type="submit"] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html
  body
  .elementor-1226
  .elementor-element.elementor-element-14f88ab
  .elementor-heading-title {
  font-family: "IBM Plex Sans", Sans-serif;
  font-weight: 700;
  color: #3b3d3f;
  text-transform: uppercase;
  background-color: var(--white);
  padding: 0.438rem 0.75rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  font-size: 1rem;
}
.px-3.text-center {
  width: 100%;
}

.px-3.text-center {
  width: 100%;
}

.foter_widget_2 .textwidget {
  display: flex !important;
  flex-direction: row;
}

.tml-login h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

html body .tml-rememberme-wrap label {
  font-weight: 400;
}

.tml .tml-action-confirmaction .success,
.tml .tml-error,
.tml .tml-message,
.tml .tml-success {
  background-color: var(--white);
}

html body .woocommerce .woocommerce-orders-table {
  margin-bottom: 1.5rem !important;
  border-bottom: 1px solid #dee2e6 !important;
  width: 100%;
  color: #212529;
  background-color: var(--white);
  border-radius: 0px;
  margin: 0;
  font-size: 16px;
  border-collapse: collapse;
}

html body .woocommerce .woocommerce-orders-table tr th,
html body .woocommerce .woocommerce-orders-table tr td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

html body .woocommerce .woocommerce-orders-table tr th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

html body .woocommerce .woocommerce-Address header {
  position: static;
}

html body .woocommerce .woocommerce-Address address {
  padding: 20px;
  background-color: var(--white);
  box-shadow: 0px 2px 8px rgb(0 0 0 / 10%);
}

html body.woocommerce-account .addresses .title h3 {
  font-weight: 600;
  font-size: 24px;
}
html body.woocommerce-account .addresses .title .edit {
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 7px 15px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
  line-height: 1;
  font-size: 14px;
}

html body.woocommerce-account .addresses .title .edit:hover {
  color: var(--white);
  background-color: #1e3f62;
  border-color: #1e3f62;
}

html .woocommerce .col2-set,
html .woocommerce-page .col2-set {
  width: 100%;
  margin-top: 25px;
}

body.page-id-1038 .cls-1 {
  fill: var(--red);
}

body.page-id-1038 .cls-2 {
  fill: var(--white);
}

.page-id-739 .course-box__heading p:first-of-type,/* ACLS */
.page-id-1091 .course-box__heading p:first-of-type,/* ACLS Recert */
.page-id-1013 .course-box__heading p:first-of-type,/* PALS */
.page-id-1097 .course-box__heading p:first-of-type,/* PALS Recert */
.page-id-1038 .course-box__heading p:first-of-type,/* BLS */
.page-id-1124 .course-box__heading p:first-of-type,/* BLS Recert*/
.page-id-1032 .course-box__heading p:first-of-type,/* Neonatal */
.page-id-1106 .course-box__heading p:first-of-type/* Neonatal Recert*/ {
  font-size: 50px;
}

@media only screen and (max-width: 768px) {
  .woocommerce .col2-set .col-1,
  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-1,
  .woocommerce-page .col2-set .col-2 {
    max-width: 100% !important;
    margin-bottom: 35px;
  }
}

@media (min-width: 1200px) {
  .navbar .shoping_cart_icon {
    position: absolute;
    right: 0;
  }

  .navbar .buynow_btn {
    margin-right: 3rem !important;
  }
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

.navbar-toggle {
  border: none;
  background: transparent !important;
  padding-right: 6px;
  padding-left: 6px;
  border: none;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
  background: transparent !important;
  outline: none !important;
  border: none;
}

.navbar-toggle .icon-bar {
  background-color: var(--text);
}

.navbar-toggle .icon-bar {
  width: 22px;
  transition: all 0.2s;
}

.navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggle .middle-bar {
  opacity: 0;
}

.navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggle.collapsed .middle-bar {
  opacity: 1;
}

.navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}

#menu-item-504 > a,
#menu-item-505 > a {
  cursor: default;
  pointer-events: none;
  background: transparent;
  color: #3b3d3f;
}

.hover_thumb img.rounded-circle {
  border-radius: 0px !important;
  max-width: 80px;
  max-height: 80px;
}

.hover_thumb p.h6 a br {
  display: none;
}

.youtubeBlockResponsive16by9,
.youtubeBlockResponsive4by3 {
  position: relative;
  height: 0;
}
.youtubeBlockResponsive16by9 iframe,
.youtubeBlockResponsive4by3 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.youtubeBlockResponsive16by9 {
  padding-bottom: 56.25%;
}

.youtubeBlockResponsive4by3 {
  padding-bottom: 75%;
}

.ccm-edit-mode-disabled-item.youtubeBlockResponsive16by9 {
  padding-top: 28.125%;
  padding-bottom: 28.125%;
}

.ccm-edit-mode-disabled-item.youtubeBlockResponsive4by3 {
  padding-top: 37.5%;
  padding-bottom: 37.5%;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.single-acls-algorithm .embed-responsive-16by9 {
  margin-bottom: 1rem;
}

.single-acls-algorithm .video-carousel-content .embed-responsive-16by9 {
  margin-bottom: 0rem;
}

.single_algo_content blockquote {
  font-family: "IBM Plex Sans";
}

.single_algo_content blockquote strong {
  display: block;
}

.additional-price span.original.slashed {
  color: var(--red);
}

.type-name,
.type-name em {
  white-space: break-spaces;
}

.type-name strong {
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

.existing-user span {
  font-size: 1.25rem;
  padding-bottom: 1rem;
}

.message-welcome {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #eef3f5;
}

.message-important {
  padding: 1rem;
  background-color: #fdd;
}

.message {
  display: inline-block;
  padding: 0.5rem;
  background-color: #eaf6ec;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.discount-line,
.sub-total-line,
.groupon-line {
  text-align: right;
}

.savings,
.subtotal {
  float: right;
}

.quantity:focus {
  border-color: #faa;
}

.remove {
  background: url("images/trashcan-icon.png");
  width: 12px;
  height: 15px;
  display: inline-block;
  cursor: pointer;
  background-position: center center;
  padding: 1rem;
  background-repeat: no-repeat;
}

.checklist {
  padding-left: 0;
  list-style-type: none;
}

.checklist li {
  margin-bottom: 0;
  padding-left: 2.5rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("images/icon-checkmark.svg");
  background-repeat: no-repeat;
  background-position: 0.5rem center;
}

.checklist li:nth-of-type(odd) {
  background-color: var(--light-blue);
}

.checklist .count,
.checklist .red {
  color: var(--red);
}

.hidden {
  display: none;
}

.total-container {
  background-color: var(--light-blue);
  padding: 1em;
  margin-bottom: 21px;
  margin-bottom: 1.5rem;
}

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

div#totalpreview {
  /* border: 1px solid #c5d8ed; */
  text-align: center;
  font-size: 2rem;
  background-color: var(--light-blue);
}

.additional-course span {
  float: right;
}

.additional-course label {
  display: inline-block;
}

.additional-course-select label {
  margin-bottom: 0px;
  border-radius: 4px;
  border: 1px solid #ca2f09;
  opacity: 1;
  color: rgba(202, 47, 9, 1);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  min-width: 100px;
  text-align: center;
  padding: 6px 5px;
  position: relative;
}

.additional-course-select label input {
  display: none;
}

.additional-course-select label.active {
  opacity: 1;
  background-color: #ca2f09;
  color: var(--white);
}

.additional-course-select label.active:before {
  content: "";
  background: url(../images/icon-check-white-24.svg) no-repeat;
  width: 16px;
  height: 16px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.additional-course-select {
  min-width: 10rem;
  display: inline-block;
  background: var(--white);
  color: var(--text);
  margin: 0;
  border-radius: 4px;
  text-align: center;
}

span.addition-course-title {
  font-weight: 400;
  opacity: 1;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
  line-height: 16px;
}

@media only screen and (min-width: 768px) {
  .exclusive-checkboxes.scroll-checkboxes {
    margin-left: auto;
  }
}

.additional-courses-list {
  display: inline-block;
  width: 100%;
}

.additional-courses-list {
  clear: both;
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgb(0 0 0 / 10%);
  opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  padding: 0px 20px;
}

.additional-courses-list * {
  cursor: pointer;
}

.additional-course-container {
  width: 100%;
  padding: 11px 0;
  border-bottom: 1px solid #c5d8ed;
}

.additional-course-container:last-of-type {
  border-bottom: none;
}

@media only screen and (min-width: 768px) {
  .additional-course-container {
    display: flex;
    align-items: center;
  }
}

.additional-course-container-label {
  font-size: 1rem;
  font-weight: bold;
  padding: 9px 12px;
}

.container-label-right {
  display: none;
  float: right;
}

@media only screen and (min-width: 768px) {
  .container-label-right {
    display: block;
    margin-right: 0.5rem;
  }
}

span.container-label-cert {
  width: 10rem;
  text-align: center;
}

.cert-titles {
  display: block;
  margin-bottom: 7px;
  margin-bottom: 0.5rem;
  font-size: 14px;
  font-size: 1rem;
  font-weight: 700;
}

.cert-title {
  display: inline-block;
  margin-right: 21px;
  margin-right: 1.5rem;
}

@media screen and (min-width: 768px) {
  .cert-titles,
  .cert-title {
    display: none;
  }
}

div#payment-processing {
  background-color: #eaf6ec;
  display: inline-block;
  padding: 0.5rem 1rem;
  vertical-align: middle;
}

div#payment-processing p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

@media (min-width: 991px) {
  .page-template-temp_cart .default_sec .container {
    max-width: 950px;
  }
}

.cart_wrap_new {
  margin-bottom: 35px;
}

.cart_wrap_new table.cart tbody {
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgb(0 0 0 / 10%);
  opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  padding: 5px 15px;
}

.cart_wrap_new td.product-thumbnail,
.cart_wrap_new th.product-thumbnail,
.cart_wrap_new th.product-subtotal,
.cart_wrap_new td.product-subtotal {
  display: none;
}

html body .cart_wrap_new .quantity .qty {
  border-radius: 4px;
  border: 1px solid rgba(206, 212, 218, 1);
  background-color: rgba(255, 255, 255, 1);
  width: 50px;
  padding: 0.375rem 0.45rem;
  color: rgba(108, 117, 125, 1);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
  line-height: 12px;
}

html body .cart_wrap_new a.remove {
  background: url(../images/remove_icon.svg) no-repeat center center;
  width: 16px;
  height: 16px;
  display: block;
  cursor: pointer;
  text-indent: -99999px;
  border-radius: 0px;
  padding: 1rem;
}

html body .cart_wrap_new a.remove:hover {
  background: url(../images/remove_icon.svg) no-repeat center center;
  border-radius: 0px;
}

.cart_wrap_new * {
  border-color: #c5d8ed !important;
}

.cart_wrap_new tr:first-child td {
  border-top: none !important;
}
.cart_wrap_new td.product-name a {
  opacity: 1;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
  line-height: 16px;
}
.cart_wrap_new th.product-price {
  text-align: right;
  padding-right: 19px !important;
}
.cart_wrap_new td.product-price {
  opacity: 1;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  text-align: right;
  line-height: 16px;
  padding-right: 19px !important;
}

.cart_wrap_new td.product-name a:hover {
  color: var(--red);
}

html body .cart_wrap_new table.cart {
  border-radius: 0px;
  padding: 0;
  border: none;
}

.woocommerce table.shop_table th {
  padding: 6px 12px;
}
.cart_checklist_wrap {
  box-shadow: 0px 2px 8px rgb(0 0 0 / 10%);
  border-radius: 4px;
}

.cart_checklist_wrap ul {
  list-style: none;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.cart_checklist_wrap ul li {
  margin-bottom: 0;
  padding-left: 2.9rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  list-style: none;
  opacity: 1;
  color: rgba(25, 25, 25, 1);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cart_checklist_wrap ul li .count {
  padding: 0px 5px;
}
.cart_checklist_wrap ul li:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.cart_checklist_wrap ul li:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cart_checklist_wrap ul li:after {
  content: "";
  background: url(../images/icon-check-red-24.svg) no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  background-size: contain;
  left: 15px;
}

.cart_checklist_wrap li:nth-of-type(odd) {
  background-color: #eeeff2;
}

.cart_check_row {
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  margin-bottom: 35px;
}

.cart_check_row label {
  margin: 0;
  cursor: pointer;
  padding: 13px 20px;
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}

.cart_check_row label input {
  position: absolute;
  left: 20px;
}

.cart_check_row label span {
  opacity: 1;
  color: rgba(25, 25, 25, 1);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
  margin-left: 30px;
}

.cart_check_row label strong {
  opacity: 1;
  color: rgba(25, 25, 25, 1);

  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
}

.cart_total_price {
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(25, 25, 25, 1);
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  padding: 9px 20px;
  text-align: right;
  margin-bottom: 35px;
}

.cart_total_price.clone {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart_total_price.clone span:last-of-type {
  opacity: 1;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
}
.acc_login_info {
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgb(0 0 0 / 10%);
  opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  padding: 20px;
  margin-bottom: 35px;
}

.payment_method_wrap {
  margin-bottom: 35px;
}

#customer_details,
.woocommerce-checkout-payment,
.order_review_wrap {
  border-radius: 4px !important;
  box-shadow: 0px 2px 8px rgb(0 0 0 / 10%);
  background: var(--white) !important;
  padding: 20px;
  margin-bottom: 35px;
}

.cart_checkout_wrap img.credit-cards {
  width: 200px;
}

.cart_checkout_wrap .checkout_btn {
  width: 100%;
  opacity: 1;
  padding: 0.7rem 1rem;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  text-align: center;
  line-height: 26px;
}
.cart_checkput_form {
  margin-bottom: 30px;
}
.cart_checkput_form .woocommerce-form-coupon-toggle {
  display: none;
}

html body .cart_checkput_form .col2-set .col-1,
html body .cart_checkput_form .col2-set .col-1,
html body .cart_checkput_form .col2-set .col-2,
html body .cart_checkput_form .col2-set .col-2 {
  flex: 0 0 100%;
  max-width: 100%;
  float: none;
  width: 100%;

  padding: 0;
}

html body .cart_checkput_form .col2-set,
html html body .cart_checkput_form .col2-set {
  margin-top: 0px;
}

html body .cart_checkput_form .woocommerce-billing-fields h3,
html body .cart_checkput_form h3,
html body .cart_checkput_form .woocommerce-shipping-fields h3,
html body .cart_checkput_form .woocommerce-additional-fields h3,
html body .cart_checkput_form #order_review_heading {
  font-weight: 700;
  font-size: 1.5rem;
}

html body .cart_checkput_form #order_review_heading {
  margin-top: 0;
}

html body .cart_checkput_form .woocommerce-additional-fields {
  margin-top: 0;
}

html body .cart_checkput_form .woocommerce-checkout #payment {
  background: transparent;
}

html body .cart_checkput_form .form-row select {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (max-width: 767px) {
  html body .cart_wrap_new .quantity .qty {
    position: relative;
    left: 15px;
  }
}

.transfer_c_wrap {
  margin-top: 0px !important;
}
.feildset_tab_wrap {
  font-size: 14px;
}
.feildset_tab_wrap .nav-tabs {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-image: url(../images/graph-bg.svg);
  border-bottom: 0px;
  flex-wrap: nowrap;
  box-shadow: 0px 1px 2px rgb(0 0 0 / 10%);
}

.feildset_tab_wrap .mainacl fieldset {
  margin-top: 0px;
}

.feildset_tab_wrap .nav-tabs .nav-link {
  opacity: 1;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
  line-height: 16px;
}

.feildset_tab_wrap .nav-tabs .nav-link:hover,
.feildset_tab_wrap .nav-tabs .nav-link.active {
  color: var(--red);
}

.credit_tags_wrap {
  display: flex;
  margin-bottom: 30px;
}

.credit_tags_wrap .creditTags {
  color: var(--white) fff;
  background: var(--red);
  margin-right: 15px;
  border-radius: 0.2rem;
  padding: 8px 11px;
  font-size: 14px;
}

.credit_tags_wrap .creditTags em {
  background: var(--white) fff;
  color: var(--red);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  padding: 1px 3px;
  border-radius: 0.2rem;
  margin-left: 5px;
  line-height: 1;
}

.feildset_tab_wrap .tab-content {
  background: transparent;
  border: none;
}

.feildset_tab_wrap .nav-tabs .nav-item {
  margin-bottom: 0px;
  padding: 0;
  font-size: 17px;
  flex: none;
  background: transparent;
  border: none;
  margin-right: 20px;
  font-weight: 800;
}

.page-id-1695.woocommerce-account fieldset {
  margin-top: 0px;
}

.feildset_tab_wrap .tranfer_link {
  font-weight: 400;
  font-size: 13px;
  margin-right: 2px;
}

.loader_wrap {
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 999999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgb(0 0 0 / 80%);
  display: none;
}

.spinner {
  width: 77px;
  height: 27px;
  text-align: center;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.spinner > div {
  width: 20px;
  height: 20px;
  background-color: var(--red);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.cart_checkput_form #place_order {
  width: 100%;
  opacity: 1;
  padding: 0.7rem 1rem;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  text-align: center;
  line-height: 26px;
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
}

.cart_checkput_form #place_order:hover {
  background-color: var(--blue);
  color: var(--white);
  text-decoration: none;
}

.cart_checkput_form .about_paypal {
  display: none;
}

.cart_checkput_form .woocommerce-form-login-toggle {
  display: none !important;
}

.cart_checkput_form form.login {
  display: block !important;
}

html body .cart_checkput_form .woocommerce form.login {
  display: block !important;
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

html .woocommerce #respond input#submit,
html .woocommerce a.button,
html .woocommerce button.button,
html .woocommerce input.button {
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
}

html .woocommerce #respond input#submit:hover,
html .woocommerce a.button:hover,
html .woocommerce button.button:hover,
html .woocommerce input.button:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  text-decoration: none;
}

.cart_checkput_form .checkout_login {
  margin-bottom: 35px;
  display: none;
}
.cart_checkput_form .select2-container--default .select2-selection--single {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.cart_checkput_form #ship-to-different-address {
  margin-top: 0;
}
.woocommerce-cart .cart_checkput_form #payment ul.payment_methods,
.woocommerce-checkout .cart_checkput_form #payment ul.payment_methods {
  padding: 0px;
  border: none;
}

.cart_checkput_form .woocommerce-terms-and-conditions-wrapper {
  display: none;
}

.cart_checkput_form .woocommerce-info {
  display: none !important;
}

.woocommerce-checkout .cart_checkput_form #payment div.payment_box::before {
  display: none;
}

.woocommerce-checkout .cart_checkput_form #payment div.payment_box {
  padding: 0;
  background: transparent;
  padding: 0px;
  border: none;
}

html body .ld-course-navigation-heading .ld-expand-button {
  display: none;
}

/* QUIZ CSS */

.practice_question_quiz ol.wpProQuiz_list .wpProQuiz_listItem {
  padding: 1rem;
  background-color: var(--white);
  margin-bottom: 1.5rem;
}

.practice_question_quiz .wpProQuiz_content h2 {
  display: none;
}

.practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_question {
  padding-bottom: 0px;
  margin-top: 0px !important;
}

.practice_question_quiz div:empty {
  display: none;
}

.practice_question_quiz .wpProQuiz_content .wpProQuiz_question_text {
  margin-bottom: 0.5rem;
}

.practice_question_quiz .wpProQuiz_content .wpProQuiz_question_text p {
  margin-bottom: 0px;
  font-weight: bold;
  color: var(--text);
  text-align: justify;
}

.practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_questionListItem {
  padding: 0px;
  margin: 0;
}

.practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_questionListItem
  label {
  display: block;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 0px;
  border: none;
  color: inherit;
  font-weight: 400;
}

.practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_questionListItem
  label:hover,
.practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_questionListItem
  label.is-selected {
  background-color: var(--light-blue);
  color: inherit;
  font-weight: 400;
}

.practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_questionListItem
  label
  input {
  display: none;
}

.practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_header {
  margin-top: 0px;
}

html
  body
  .practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_button.wpProQuiz_QuestionButton,
html
  body
  .practice_question_quiz
  .learndash-wrapper
  .ld-quiz-actions
  input[name="reShowQuestion"],
html
  body
  .practice_question_quiz
  .learndash-wrapper
  .ld-quiz-actions
  input[name="restartQuiz"],
html
  body
  .practice_question_quiz.learndash-wrapper
  .ld-quiz-actions
  input[name="reShowQuestion"],
html
  body
  .practice_question_quiz.learndash-wrapper
  .ld-quiz-actions
  input[name="restartQuiz"] {
  float: none !important;

  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-weight: 700;
}
html
  body
  .practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_button.wpProQuiz_QuestionButton {
  margin-bottom: 30px;
}

html
  body
  .practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_button
  .wpProQuiz_QuestionButton:hover,
html
  body
  .practice_question_quiz
  .learndash-wrapper
  .ld-quiz-actions
  input[name="reShowQuestion"]:hover,
html
  body
  .practice_question_quiz
  .learndash-wrapper
  .ld-quiz-actions
  input[name="restartQuiz"]:hover,
html
  body
  .practice_question_quiz.learndash-wrapper
  .ld-quiz-actions
  input[name="reShowQuestion"]:hover,
html
  body
  .practice_question_quiz.learndash-wrapper
  .ld-quiz-actions
  input[name="restartQuiz"]:hover {
  background-color: var(--blue) !important;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--blue);
}

html
  body
  .practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_response {
  background-color: transparent;
  border: none;
  text-align: left;
  font-style: italic;
  color: #777;
  margin-top: 0;
  padding: 0px 0.5rem;
  position: relative;
  padding-left: 35px;
}

html
  body
  .practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_response:before {
  padding-right: 0.25rem;
  content: url(../images/icon-info-16.svg);
  display: inline-block;
  width: 20px;
  height: 24px;
  position: absolute;
  left: 0.5rem;
  top: 3px;
}

html body .wpProQuiz_results {
  padding: 1rem;
  background-color: #faeae6;
  background-image: url(../images/heart-bg.svg);
  background-repeat: no-repeat;
  background-position: calc(100% + 20px) 20px;
  margin-bottom: 1.5rem !important;
}

html body .wpProQuiz_results.passed {
  background-color: rgb(219, 247, 222);
}

html body .learndash-wrapper .wpProQuiz_graded_points,
html body .learndash-wrapper .wpProQuiz_points {
  background-color: transparent;
  border: none !important;
  text-align: left;
  margin-top: 0;
  padding: 0;
  position: relative;
  color: var(--text);
}

html body .practice_question_quiz .learndash-wrapper .wpProQuiz_quiz_time {
  color: var(--text);
}

html body .practice_question_quiz .learndash-wrapper .ld-quiz-actions {
  background: transparent;
  border: none;
  padding-top: 0;
}

html
  body
  .practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_questionListItem.wpProQuiz_answerCorrectIncomplete
  label {
  background-color: #e6f9ea;
}

html
  body
  .practice_question_quiz
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_questionListItem.wpProQuiz_answerIncorrect
  label {
  background-color: #faeae6;
}

@media (max-width: 768px) {
  html body .woocommerce table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive tr {
    display: inherit !important;
  }

  html body .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    display: revert !important;
    text-align: left !important;
  }

  html body .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    display: none;
  }

  html body .woocommerce table.shop_table td.product-subtotal,
  html body .woocommerce table.shop_table td.product-thumbnail {
    display: none !important;
  }

  html body .woocommerce table.shop_table_responsive tr.actions {
    display: none !important;
  }
}

a > svg {
  display: inline !important;
}

.social-link-icon {
  fill: var(--blue);
}
.btn-read-more {
  display: inline-flex;
  text-transform: uppercase;
  font-weight: 700;
}
.btn-read-more::before {
  padding-right: 0.5rem;
  content: url(../images/icon-arrow-right-rb-24.svg);
}

@media (min-width: 768px) {
  .medical_board_sec .container:nth-child(even) .row {
    flex-direction: row-reverse;
  }
}

.algorithm_meta_title_wrap br {
  display: none;
}
.default_sec {
  padding-top: 120px;
  padding-bottom: 50px;
}

html body .container.new-p-t-120 {
  padding-top: 120px;
}

html body.woocommerce-account .woocommerce {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

html body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  float: none;
}

html body.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  float: none;
}

html body.woocommerce-account .content_area > h1.page-title {
  display: none;
}

.sidebar-card {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: var(--white);
  box-shadow: 0px 2px 8px rgb(0 0 0 / 10%);
}

html body.woocommerce-order-received .cart_checklist_wrap,
html body.woocommerce-order-received .cart_additional_course_wrap,
html body.woocommerce-order-received .cart_check_row,
html body.woocommerce-order-received .cart_total_price,
html body.woocommerce-order-received h2,
html body.woocommerce-order-received .shop_table,
html body.woocommerce-order-received .woocommerce-column--1,
html body.woocommerce-order-received .woocommerce-column--2,
html body.woocommerce-order-received .message-important,
html body.woocommerce-order-received .woocommerce-info,
html body.woocommerce-order-received .wc-backward,
html body.woocommerce-order-received .woocommerce-order-details,
html body.woocommerce-order-received .woocommerce-customer-details {
  display: none;
}

html body.woocommerce-order-received .woocommerce ul.order_details li {
  margin-bottom: 20px;
}

html body.woocommerce-order-received p.woocommerce-thankyou-order-received {
  margin-bottom: 20px;
}

html body.woocommerce-order-received ul.order_details {
  margin: 0px;
  padding: 0px;
}
.woocommerce-checkout
  p.woocommerce-invalid-required-field
  .woocommerce-input-wrapper {
  position: relative;
}

.woocommerce-checkout
  p.woocommerce-invalid-required-field
  .woocommerce-input-wrapper:after {
  width: 16px;
  height: 16px;
  content: "!";
  position: absolute;
  top: 11px;
  right: 12px;
  border: 2px solid var(--red);
  border-radius: 50%;
  font-weight: 900;
  text-align: center;
  font-size: 11px;
  color: var(--red);
  line-height: 1.2;
}
.woocommerce-checkout p.woocommerce-invalid-required-field span.error {
  opacity: 1;
  color: var(--red);
  font-size: 12.8px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.29px;
  text-align: left;
  display: block !important;
  margin-top: 5px;
}

html .woocommerce form .form-row.woocommerce-validated .select2-container,
html .woocommerce form .form-row.woocommerce-validated input.input-text,
html .woocommerce form .form-row.woocommerce-validated select {
  border-color: #ced4da !important;
}

html .woocommerce form .form-row.woocommerce-invalid label {
  color: var(--text);
}

html .woocommerce form .form-row.woocommerce-invalid .select2-container,
html .woocommerce form .form-row.woocommerce-invalid input.input-text,
html .woocommerce form .form-row.woocommerce-invalid select,
html
  .woocommerce
  form
  .form-row.woocommerce-invalid
  .select2-container--default
  .select2-selection--single {
  border-color: var(--red) !important;
}

html .woocommerce form .form-row .required {
  color: var(--red);
}

html body .cvs_modal {
  position: absolute;
  bottom: -21px;
  right: 120px;
  font-weight: 700;
  font-size: 14px;
}

html body.woocommerce-checkout .woocommerce-notices-wrapper {
  display: none !important;
}

html #add_payment_method #payment div.payment_box,
html .woocommerce-cart #payment div.payment_box,
html .woocommerce-checkout #payment div.payment_box {
  background: transparent;
  padding: 0;
  margin-bottom: 10px;
}

html body.woocommerce-checkout .payment_method_woocommerce_payments {
  position: relative;
  margin-bottom: 10px;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

html .woocommerce-checkout #payment div.payment_box {
  margin-top: 0px;
}

html .woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 0.2em 0 0;
}

.woocommerce-checkout .acc_login_box {
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgb(0 0 0 / 10%);
  background: var(--white);
  padding: 20px;
  margin-bottom: 35px;
  overflow: hidden;
}

#wcpay-payment-request-button-separator {
  display: none !important;
}

#wcpay-payment-request-wrapper {
  padding-top: 0 !important;
  margin-bottom: 20px !important;
}

#payment div.payment_box .woocommerce-SavedPaymentMethods {
  padding: 0px;
}

html .woocommerce-checkout #payment .payment_method_paypal img {
  height: 24px;
}

#ship-to-different-address label {
  font-weight: 400;
  margin: 0;
}

html body .shop_table.woocommerce-checkout-review-order-table {
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgb(0 0 0 / 10%);
  opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  padding: 5px 15px;
  margin-bottom: 35px;
}
html body .shop_table.woocommerce-checkout-review-order-table tr td,
html body .shop_table.woocommerce-checkout-review-order-table tr th {
  opacity: 1;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  padding: 11px 12px;
  line-height: 16px;
}
html
  body
  .shop_table.woocommerce-checkout-review-order-table
  tr
  th:nth-child(2),
html
  body
  .shop_table.woocommerce-checkout-review-order-table
  tr
  td:nth-child(2) {
  text-align: right;
}

html body .form-row.place-order {
  padding: 0;
  padding-top: 1em;
  margin: 0;
}

.check_wrap_new {
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: top;
  position: relative;
  top: 5px;
  margin-left: 2px !important;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Style the checkmark/indicator */
.check_wrap_new .checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.check_wrap_new input ~ .checkmark {
  background-color: #2196f3;
  border-radius: 2px;
}

/* Show the checkmark when checked */
.check_wrap_new input ~ .checkmark:after {
  display: block;
}

.check_wrap_new input:checked ~ .checkmark {
  background: var(--white);
  border: 1px solid #888888;
  border-radius: 2px;
}

/* Show the checkmark when checked */
.check_wrap_new input:checked ~ .checkmark:after {
  display: none;
}

@media (max-width: 767px) {
  html body .cvs_modal {
    right: 60px !important;
  }
}

@media (max-width: 766px) {
  html body .cvs_modal {
    right: 133px;
  }

  .cert-title {
    min-width: 10rem;
    margin-right: 0;
    text-align: center;
  }

  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last,
  .woocommerce-page form .form-row-first,
  .woocommerce-page form .form-row-last {
    width: 100% !important;
    float: none !important;
  }

  .woocommerce-page .col2-set .col-1 {
    margin-bottom: 0px !important;
  }
}

@media (max-width: 600px) {
  html body .cvs_modal {
    display: none !important;
  }
  .cart_wrap_new td.product-name a {
    font-size: 14px;
  }
}

.member_breadcrumbs {
  background-color: var(--light-blue);
  padding: 0.7em 1em;
  margin-bottom: 20px;
}

.member_breadcrumbs * {
  margin-bottom: 0px !important;
}

html body .woocommerce-MyAccount-navigation li a i.fa {
  display: none;
}

html body .woocommerce-MyAccount-navigation h2.serif {
  font-family: "IBM Plex Serif", serif;
  font-weight: 800;
}

html body .woocommerce-MyAccount-navigation li a {
  font-size: 1rem;
  color: var(--blue);
}
html body .woocommerce-MyAccount-navigation li a:before {
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

html
  body
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--referral_coupons
  a::before {
  content: "\e012" !important;
}
html body .woocommerce-MyAccount-navigation li a:before {
  color: #900;
  padding-right: 0.5em;
  content: "\e012";
}

html body .woocommerce-MyAccount-navigation .member-sidebar {
  margin-bottom: 30px;
}
html body .woocommerce-MyAccount-navigation .member-sidebar ul li a:before {
  padding-right: 0.5em;
  content: "\e018";
  color: var(--blue);
}

html
  body
  .woocommerce-MyAccount-navigation
  .member-sidebar
  ul
  li
  a:hover:before {
  color: var(--red);
}

/* learndash customize */

.wpProQuiz_text,
.ld-course-status,
.ld-content-actions .sfwd-mark-complete,
.ld-content-actions .ld-course-step-back,
.ld-focus-header {
  display: none !important;
}

.learndash-wrapper .wpProQuiz_content .wpProQuiz_questionListItem label input {
  display: none;
}

.learndash-wrapper .wpProQuiz_content .wpProQuiz_questionListItem label em {
  font-style: normal;
  margin-right: 5px;
}

html body.single-sfwd-topic .embed-responsive {
  margin-bottom: 1.2rem !important;
}

html body.single-sfwd-topic p.caption {
  margin-top: -5px;
}

.social_share_wrap {
  display: none;
}

body[class*="single-sfwd-"] .social_share_wrap,
.page-template-temp_free_training_center .social_share_wrap,
.page-template-temp_videos .social_share_wrap,
.single-acls-video .social_share_wrap,
.tax-video .social_share_wrap,
.page-template-temp_knowledge_base .social_share_wrap,
.tax-knowledge-base .social_share_wrap,
.single-acls-knowledge-base .social_share_wrap,
.page-template-temp_practice .social_share_wrap,
.tax-practice-test .social_share_wrap,
.single-acls-practice-test .social_share_wrap,
.page-template-temp_mega_simulators .social_share_wrap,
.page-template-temp_algorithms .social_share_wrap,
.tax-algorithm .social_share_wrap,
.single-acls-algorithm .social_share_wrap,
.page-template-temp_study_guide .social_share_wrap,
.page-template-temp_flashcard .social_share_wrap,
.single-acl-falshcard .social_share_wrap,
.page-template-temp_games .social_share_wrap,
.single-megacode-simulator .social_share_wrap {
  display: block;
}

html
  body
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_questionListItem
  label.is-selected,
html
  body
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_questionListItem
  label:focus-within {
  border-color: #3d7cc4;
}
.learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_questionListItem.wpProQuiz_answerIncorrect
  .wpProQuiz_sortable,
.learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_questionListItem.wpProQuiz_answerIncorrect
  label {
  border-color: #f11414 !important;
}

.quiz_continue_link {
  display: none !important;
}

@media (max-width: 1472px) {
  .focus_mode_main .col-lg-9 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .focus_mode_main .col-lg-3 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 1230px) {
  .focus_mode_main [class*="col-"] {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 1199px) {
  html body .focus_mode_main.default_sec {
    margin-top: 60px !important;
  }
  html body .buynow_btn > a {
    margin-left: 0px !important;
  }
}

@media (max-width: 768px) {
  html body .focus_mode_main.default_sec {
    margin-top: 100px !important;
  }

  html body .learndash-wrapper .ld-focus .ld-focus-header {
    display: flex !important;
    background-color: #eeeff2;
  }

  html body .learndash-wrapper .ld-focus .ld-focus-header .ld-progress {
    display: none !important;
  }
}

@media (max-width: 640px) {
  html body .focus_mode_main.default_sec {
    margin-top: 80px !important;
  }
}

@media (max-width: 413px) {
  html
    body
    .learndash-wrapper
    .ld-focus
    .ld-focus-sidebar
    .ld-course-navigation-heading,
  html body .learndash-wrapper .ld-focus .ld-focus-sidebar {
    width: 320px;
  }

  html body .learndash-wrapper .ld-focus .ld-focus-header {
    top: 79px;
  }
}

.social-link-icon:hover {
  fill: var(--red);
}

.page-template-temp_member_area .woocommerce-address-fields label {
  display: block;
}

body.woocommerce-edit-address .woocommerce-address-fields {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: var(--white);
}

body.woocommerce-edit-address #billing_email_field + h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
html .woocommerce form .form-row-first,
html .woocommerce form .form-row-last,
html .woocommerce-page form .form-row-first,
html .woocommerce-page form .form-row-last {
  width: calc(50% - 5px);
}

body.woocommerce-edit-address #billing_city_field,
body.woocommerce-edit-address #billing_state_field,
body.woocommerce-edit-address #billing_country_field,
body.woocommerce-edit-address #shipping_city_field,
body.woocommerce-edit-address #shipping_state_field,
body.woocommerce-edit-address #shipping_country_field {
  width: 33.3333%;
  float: left;
  padding-right: 5px;
  padding-left: 5px;
}

body.woocommerce-edit-address #billing_postcode_field,
body.woocommerce-edit-address #shipping_postcode_field,
body.woocommerce-edit-address .woocommerce-MyAccount-content legend {
  clear: both;
}

html
  body.woocommerce-edit-address
  .select2-container--default
  .select2-selection--single {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  height: 38px;
}

html
  body.woocommerce-edit-address
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #495057;
  line-height: 38px;
}

html body.woocommerce-edit-address .woocommerce form .form-row {
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}

html body.woocommerce-edit-address .woocommerce form .form-row label {
  line-height: 1;
}

@media (max-width: 991px) {
  html body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation,
  html body.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    float: none;
  }

  html body.woocommerce-account .woocommerce {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  body.woocommerce-edit-address #billing_city_field,
  body.woocommerce-edit-address #billing_state_field,
  body.woocommerce-edit-address #billing_country_field,
  body.woocommerce-edit-address #shipping_city_field,
  body.woocommerce-edit-address #shipping_state_field,
  body.woocommerce-edit-address #shipping_country_field {
    width: 100%;
    float: none;
    padding-right: 0px;
    padding-left: 0px;
  }
}

html
  body
  .select2-container--default
  .select2-results__option--highlighted[aria-selected],
html
  body
  .select2-container--default
  .select2-results__option--highlighted[data-selected] {
  background-color: var(--blue);
}

html
  body
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border: solid #495057;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  margin-left: -6px;
  margin-top: 0px;
}

html
  body
  .select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: inherit;
  border-width: 0 2px 2px 0;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  margin-top: 4px;
}

html body.woocommerce-account .table tbody th {
  font-weight: 400;
}

html body.woocommerce-account .table tbody th:first-child {
  width: 150px;
}
html body.woocommerce-account .table thead th:last-child {
  text-align: center !important;
}
html body.woocommerce-account .table tbody th:last-child .download_cert,
html body.woocommerce-account .table tbody td:last-child .download_cert {
  display: block;
  text-align: center;
}

html body.woocommerce-account .table tbody th:last-child,
html body.woocommerce-account .table tbody td:last-child {
  text-align: center;
  width: 200px;
}
html body.woocommerce-account .table .download_cert:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
  width: 14px;
  height: 16px;
  content: "\f01a";
  color: var(--blue);
  margin-right: 5px;
}

html body.woocommerce-account .table .download_cert:hover::before {
  color: var(--red);
}

.knowledge_related_post p.fs-12 a br {
  display: none;
}

html body .learndash-wrapper .ld-lesson-status {
  border-radius: 0px;
}

html
  body
  .learndash-wrapper
  .ld-breadcrumbs
  .ld-breadcrumbs-segments
  span:after {
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  color: #6c757d;
  content: "/";
}

html body .learndash-wrapper .ld-breadcrumbs .ld-breadcrumbs-segments span a {
  color: var(--blue) !important;
  font-weight: 400;
}

html
  body
  .learndash-wrapper
  .ld-breadcrumbs
  .ld-breadcrumbs-segments
  span
  a:hover {
  color: var(--red) !important;
}

html
  body
  .learndash-wrapper
  .ld-breadcrumbs
  .ld-breadcrumbs-segments
  span:last-of-type
  a {
  color: #6c757d !important;
  cursor: default;
  pointer-events: none;
}

html body .learndash-wrapper .wpProQuiz_points {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  margin: 0px;
}

html body .learndash-wrapper .wpProQuiz_points br {
  display: none;
}
html body .learndash-wrapper .wpProQuiz_points .r_pass {
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  display: block;
  position: relative;
}

html body .learndash-wrapper .wpProQuiz_points .r_pass:before {
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 7px;
  font-family: "Font Awesome 5 Free";
  content: "\f091";
  font-size: 20px;
}

html body .learndash-wrapper .wpProQuiz_points .r_fail {
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  display: block;
}

html body .wpProQuiz_results .ld-quiz-actions {
  display: none !important;
}

html body .learndash-wrapper .wpProQuiz_points .r_fail:last-of-type {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  margin: 0px;
  display: inline;
}

html body .learndash-wrapper .ld-topic-status {
  border-radius: 0px;
}

html body.ld-in-focus-mode .ld-quiz-status {
  margin-bottom: 20px;
}

html body.ld-in-focus-mode .ld-quiz-status .ld-breadcrumbs {
  border-radius: 0px;
}
html body.ld-in-focus-mode .ld-topic-status,
html body.ld-in-focus-mode .ld-lesson-status {
  margin-bottom: 20px;
}

html body.ld-in-focus-mode .ld-topic-status .ld-progress {
  display: none;
}

.ld-in-focus-mode .social_share_wrap {
  display: none !important;
}

/* LMS Footer hack */

html body.ld-in-focus-mode .learndash-wrapper .ld-focus .ld-focus-sidebar {
  position: absolute;
  top: 0;
  margin-top: 55px;
}

@media (max-width: 1199px) {
  html body.ld-in-focus-mode .learndash-wrapper .ld-focus .ld-focus-sidebar {
    margin-top: 28px;
  }
}

@media (max-width: 768px) {
  html body.ld-in-focus-mode .learndash-wrapper .ld-focus .ld-focus-sidebar {
    margin-top: 69px;
  }
}
html body.ld-in-focus-mode .learndash-wrapper .ld-focus .ld-focus-sidebar {
  border-right: none;
}

html
  body.ld-in-focus-mode
  .learndash-wrapper
  .ld-focus
  .ld-focus-sidebar
  .ld-course-navigation {
  border-right: 1px solid #e2e7ed;
}

html
  body.ld-in-focus-mode
  .learndash-wrapper
  .ld-focus
  .ld-focus-sidebar
  .ld-focus-sidebar-wrapper {
  height: auto;
}
.stepTitle {
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  background-color: #eaf6ec;
  border-radius: 0.25rem;
}
.questionText {
  font-size: 1.25rem;
  font-weight: bold;
  /* background-color: #eaf6ec; */
  /* background-color: #f3f5f6; */
  border-radius: 0.25rem;
}

[data-target="#ipad-modal"] {
  margin-top: -10px;
  margin-bottom: -10px;
}

.social_pop {
  display: flex;
}

.social_pop a:nth-child(2) img {
  width: 37px;
  margin-left: 6px;
}

@media only screen and (min-width: 1800px) {
  html body .learndash-wrapper .ld-focus .ld-focus-main {
    margin: auto;
    flex: none;
    max-width: 1210px;
  }
}

.rational_overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
  display: none;
}

.flash_wrap_modal {
  position: relative;
}

.rational_modal_main {
  display: none;
}
.rational_modal {
  position: absolute;
  z-index: 999999;
  top: auto;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.rational_modal .inner_wrap {
  background: var(--white);
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

body.single-acls-algorithm .carousel-item {
  height: auto;
}

.quiz_progress_bar {
  margin-bottom: 1rem;
  padding: 15px 20px;
  font-size: 1.25rem;
  font-weight: bold;
  background-color: #eaf6ec;
  border-radius: 4px;
}
.learndash-wrapper .quiz_progress_bar .ld-progress {
  margin: 0;
}
.learndash-wrapper .quiz_progress_bar .ld-progress .ld-progress-bar {
  height: 20px;
  border-radius: 10px;
}

.learndash-wrapper
  .quiz_progress_bar
  .ld-progress
  .ld-progress-bar
  .ld-progress-bar-percentage {
  height: 20px;
  display: flex;
  font-weight: 600;
  font-size: 13px;
  margin: 0;
  align-items: center;
  color: var(--white);
  background: var(--blue) !important;
  border-radius: 10px;
}

.learndash-wrapper
  .quiz_progress_bar
  .ld-progress
  .ld-progress-bar
  .ld-progress-bar-percentage
  span {
  margin-left: 8px;
  margin-right: 3px;
}

html
  body
  .learndash-wrapper
  .quiz_progress_bar
  .ld-progress
  .ld-progress-bar
  .ld-progress-bar-percentage.zero_progress {
  color: var(--text);
}

html body .fingerHelper i.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.single-megacode-simulator
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_questionListItem:hover
  label {
  background-color: var(--light-blue);
  cursor: pointer;
}

html body .learndash-wrapper .wpProQuiz_content .wpProQuiz_response {
  text-align: left;
}

@media (max-width: 640px) {
  html
    body
    .learndash-wrapper
    .ld-item-list
    .ld-item-list-item
    .ld-item-list-item-preview
    .ld-item-details
    .ld-expand-button {
    margin-top: 7px;
  }
}

@media only screen and (max-width: 1199px) {
  #menu-main-menu {
    padding-top: 1rem;
  }
}

html body .dropdown-toggle::after {
  margin-left: 0.455em !important;
}

.d-item-block {
  display: block;
}

#menu-item-502 ul.dropdown-menu.show {
  overflow-y: scroll;
  height: 400px;
}

@media only screen and (min-width: 768px) {
  #menu-item-502 ul.dropdown-menu.show {
    overflow-y: auto;
    height: auto;
  }
}

html body ol.wp-paginate a {
  position: relative;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: var(--blue);
  background-color: var(--white);
  border: 1px solid #dee2e6;
}

html body ol.wp-paginate .current,
html body ol.wp-paginate a:hover,
html body ol.wp-paginate a:active {
  color: var(--white);
  background: var(--blue) !important;
  color: white !important;
  border: 1px solid #007bff;
  padding: 0.5rem 0.75rem;
}

html body .wpProQuiz_results {
  background-color: rgb(219, 247, 222);
}

html body .learndash-wrapper .ld-focus .ld-focus-header .ld-mobile-nav {
  margin: 5px 0px;
}

.u-color-v-red {
  color: var(--red);
}

.u-color-v-blue {
  color: var(--cpr-blue);
}

.u-color-v-navy-blue {
  color: hsla(202, 99%, 38%, 1);
}

.u-color-v-purple {
  color: hsla(256, 49%, 38%, 1);
}

.u-color-v-green {
  color: hsla(154, 55%, 41%, 1);
}

.u-color-v-orange {
  color: hsla(26, 93%, 55%, 1);
}

html body :focus {
  outline: none !important;
}

@media (min-width: 392px) {
  .d-vs-item-none {
    display: none;
  }
}

@media (max-width: 393px) {
  .shoping_cart_icon {
    display: none !important;
  }
}

.youtube-container {
  display: block;
  width: 100%;
  position: relative;
}

.youtube-container .youtube-player {
  display: block;
  margin: 20px auto;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: hand;
  cursor: pointer;
  display: block;
}

.youtube-container img.youtube-thumbnail {
  bottom: 0;
  display: block;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  height: auto;
  z-index: 99;
}

.youtube-container div#mute,
.youtube-container .mute {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: url(../images/video_icon.png) no-repeat center center;
  background-size: 72px 72px;
  z-index: 350;
  cursor: pointer;
}

.youtube-container .youtube-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.single-medical-board .heading-name:after {
  display: none !important;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

html body .learndash-wrapper .wpProQuiz_content .wpProQuiz_time_limit:before {
  z-index: 2;
}

html
  body
  .learndash-wrapper
  .wpProQuiz_content
  .wpProQuiz_time_limit
  .wpProQuiz_progress {
  z-index: 4;
}

html body .knowledge_related_post img {
  height: 155px;
  object-fit: cover;
  display: block;
  margin: auto;
  width: 100%;
}

@media (max-width: 767px) {
  .medical_board_sec {
    margin-top: -30px;
  }

  html body .single_blue_medical_page {
    padding-top: 120px;
    padding-bottom: 20px;
  }
}

body.postid-529 .col-xl-6 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.to-top__button {
  position: fixed;
  right: 24px;
  bottom: 64px;
  z-index: 250;
  display: none;
}

@media (max-width: 767px) {
  .to-top__button img {
    width: 40px;
    height: 40px;
  }

  .single_inner_space {
    margin-bottom: 0px;
  }
}

.knowledge_related_post .basic-card p {
  font-size: 14px;
}

html body .youtubeBlockResponsive16by9 {
  clip-path: inset(1px 1px);
}

.shoping_cart_icon em {
  font-style: normal;
}

.shoping_cart_icon_mobile em {
  position: relative;
  display: inline-block;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
}

.shoping_cart_icon span,
.shoping_cart_icon_mobile span {
  position: absolute;
  top: -6px;
  right: 0px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  text-align: center;
  z-index: 10;
  font-weight: 700;
  line-height: 16px;
}
@media (max-width: 392px) {
  .navbar-collapse.collapse.show .shoping_cart_icon_mobile {
    display: block !important;
  }
}

html
  body
  .learndash-wrapper
  .ld-focus-main
  .ld-content-actions
  .ld-content-action {
  padding: 0px !important;
}

html body .woocommerce-error {
  display: none;
}

@media (max-width: 640px) {
  body.ld-in-focus-mode
    .learndash-wrapper
    .ld-content-actions
    .ld-content-action
    a.ld-button {
    margin-top: 10px;
  }

  body.ld-in-focus-mode
    .learndash-wrapper
    .ld-content-actions
    .ld-content-action:last-child
    a.ld-button {
    margin-top: 10px;
  }

  body.ld-in-focus-mode .learndash-wrapper .ld-content-actions {
    padding-top: 4px;
  }

  .learndash-wrapper .ld-focus .ld-focus-main .ld-focus-content,
  .learndash-wrapper
    .ld-focus.ld-focus-sidebar-collapsed
    .ld-focus-main
    .ld-focus-content {
    margin: 15px auto 0 !important;
    margin-bottom: 0px !important;
  }
}
/* @media (max-width: 768px){
  html body .learndash-wrapper .ld-focus .ld-focus-sidebar{ left: 0px;}

  html body .learndash-wrapper .ld-focus.ld-focus-sidebar-collapsed .ld-focus-sidebar{
    left: -350px;

  }

} */

#ship-to-different-address-checkbox {
  position: relative;
  top: -3px;
}

.woocommerce table.shop_table tr:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.woocommerce table.shop_table tr:first-child td:first-child {
  border-top-left-radius: 4px;
}

.woocommerce table.shop_table tr:first-child td:last-child {
  border-top-right-radius: 4px;
}

.woocommerce table.shop_table tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
}

.woocommerce table.shop_table tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
}

.woocommerce table.shop_table tr:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.woocommerce table.shop_table tr td.product-name {
  font-weight: 400;
}

.woocommerce table.shop_table tr td.product-name strong {
  font-weight: 400;
}

.page-template-temp_cart .count {
  color: #ca2f09;
  font-style: normal;
}

html body .learndash-wrapper .ld-focus .ld-focus-header .ld-content-actions {
  display: none;
}

.border-heavy-light-blue {
  border: 4px solid var(--light-blue);
}

.free_resource_new_column .bg--light-blue {
  margin: -1px -0.5px;
}

.free_resource_new_column ul {
  margin-left: 1rem !important;
  padding-left: 1rem !important;
  margin-bottom: 0 !important;
}

.free_resource_new_column ul li:last-child {
  margin-bottom: 0px !important;
}

@media (max-width: 767px) {
  .free_resource_new_column ul {
    margin-left: 2px !important;
  }
}

.algorithm_meta_title_wrap {
  line-height: 1.9;
}
.title-box .dropdown {
  margin-left: 70px;
}

@media (max-width: 767px) {
  html body .basic-card__title {
    height: auto !important;
  }

  .title-box .dropdown {
    margin-left: 0px;
  }
}

@media (max-width: 600px) {
  .certify-ad__title .cta_new_line {
    display: block;
  }
}

.table_of_content_wrap {
  background-color: var(--light-blue);
}

.table_of_content_wrap h4 {
  padding: 1rem 20px;
  color: var(--blue);
  margin: 0;
  position: relative;
}

.table_of_content_wrap h4 span {
  color: var(--text);
}

.table_of_content_wrap h4 .footnotes {
  display: block;
  color: var(--blue);
}

.table_of_content_wrap a.footnotes.collapsed::after,
.table_of_content_wrap a.footnotes::after {
  right: 20px;
}

.table_of_content_wrap .table_of_content_inner {
  margin-bottom: 0;
}

.table_of_content_wrap .table_of_content_inner .inner_content {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 20px;
}

.table_of_content_wrap .table_of_content_inner br {
  display: none;
}

.table_of_content_wrap .table_of_content_inner a {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  position: relative;
  text-decoration: none;
}

.table_of_content_wrap .table_of_content_inner a:hover,
.table_of_content_wrap .table_of_content_inner li.active a,
.table_of_content_wrap .table_of_content_inner li a.active {
  color: var(--red);
}

html body.page-template-temp_salespage-php .product-details-list {
  padding-bottom: 44px;
  margin-bottom: 0;
}

html body .d-flex.flex-column.flex-sm-row br {
  display: none;
}
@media (max-width: 700px) {
  .knowledge_related_post .basic-card p {
    font-size: 13px;
  }
}

.woocommerce table.shop_table td.product-total .woocommerce-Price-amount {
  font-weight: 400;
}

.single-sfwd-quiz .wpProQuiz_question_text ol {
  padding: 0;
  padding-left: 16px;
}

/* Reviews */

.glsr-review {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.wp-block-button__link {
  background-color: var(--red) !important;
  border-color: var(--red);
  border-radius: 0.25rem !important;
}

.wp-block-button__link:visited {
  background-color: var(--red) !important;
  border-color: var(--red);
}

.wp-block-button__link:hover,
.wp-block-button__link:focus {
  background-color: var(--blue) !important;
  border-color: var(--blue);
}

.wp-block-button__link:active {
  background-color: var(--blue) !important;
  border-color: var(--blue);
}

.glsr-review-author {
  font-weight: 700;
}
