/* ***** Notes *****

1. The main value for each colour is set at the top of each set
Then, the mix property is used to create shades and tints of each colour
This is useful for rapidly creating lighter or darker versions of the original colour
For example, $primary-clr-400 is aa mix, 75% the original colour, and 25% white

***** ***** ***** */
/* ***** Notes *****

1. This file is for all variables that don't need their own dedicated file
It is here to provide variables for often repetative tasks, like overriding the default outline style

***** ***** ***** */
/* ***** Notes *****

1. These Breakpoints are mobile first
This means no breakpoint applied styles the design for the smallest screens
Then, the 'small-screen' breakpoint styles 26.25em, or 420px and above
These values can be changes per project

***** ***** ***** */
/* ***** Notes *****

1. Most of this reset is from https://piccalil.li/blog/a-modern-css-reset with some adjustments
2. If anything in this reset is messing with other styles, they can be adjusted or removed
3. I have added some useful resets, such as a reset to the focus outline and highlighting of elements

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul */
ul[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
::selection {
  background: #fa5c47;
}

.cm-content .accent {
  color: #2c3b3b;
}
.cm-content .required {
  color: #781c7d;
}
.cm-content a {
  text-decoration: none;
  font-weight: inherit;
}

.cm-content.cm-myaccount-template a,
.cm-content .products-related .relatedcolor {
  text-decoration: none;
  font-weight: inherit;
}

/* ***** Notes *****

1. By default the mixin 'primary-button' is applied to all buttons and inputs (equal to submit)
Any changes made to the mixin will automatically apply to all buttons and inputs
The mixin uses colors set in 'base/_colors' and transitions set in 'base/_variables'

***** ***** ***** */
.cm-primary-btn {
  display: inline-block;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  text-decoration: none !important;
  user-select: none;
  background-color: #781c7d;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 10px 25px;
  font-family: "Avenir Next", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 34.15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  user-select: text;
  transition: 150ms all ease;
}
.cm-primary-btn:hover, .cm-primary-btn:focus {
  cursor: pointer;
  text-decoration: none;
  background-color: #422670;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transform: translateY(-2px);
}

.cm-content button,
.cm-content input[type=submit],
.cm-content a.login-button,
.cm-content .cm-product-list-add-to-waiting-list,
.cm-content .login-link {
  display: inline-block;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  text-decoration: none !important;
  user-select: none;
  background-color: #781c7d;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 10px 25px;
  font-family: "Avenir Next", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 34.15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  user-select: text;
  transition: 150ms all ease;
}
.cm-content button:hover, .cm-content button:focus,
.cm-content input[type=submit]:hover,
.cm-content input[type=submit]:focus,
.cm-content a.login-button:hover,
.cm-content a.login-button:focus,
.cm-content .cm-product-list-add-to-waiting-list:hover,
.cm-content .cm-product-list-add-to-waiting-list:focus,
.cm-content .login-link:hover,
.cm-content .login-link:focus {
  cursor: pointer;
  text-decoration: none;
  background-color: #422670;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transform: translateY(-2px);
}

.cm-content input.cm_button_continue_shopping,
.cm-content input.cm_button_recalculate,
.cm-content input.cm_button_cancel,
.cm-content .cm-cart-remove-button-style {
  display: inline-block;
  color: #781c7d;
  text-align: center;
  vertical-align: middle;
  text-decoration: none !important;
  user-select: none;
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 10px 25px;
  font-family: "Avenir Next", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 34.15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  user-select: text;
  transition: 150ms all ease;
}
.cm-content input.cm_button_continue_shopping:hover, .cm-content input.cm_button_continue_shopping:focus,
.cm-content input.cm_button_recalculate:hover,
.cm-content input.cm_button_recalculate:focus,
.cm-content input.cm_button_cancel:hover,
.cm-content input.cm_button_cancel:focus,
.cm-content .cm-cart-remove-button-style:hover,
.cm-content .cm-cart-remove-button-style:focus {
  cursor: pointer;
  text-decoration: none;
  color: #422670;
  background-color: #ffbdf2;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transform: translateY(-2px);
}

.cm-content .view-courses a p {
  margin-bottom: 0;
  display: inline-block;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 25px;
  font-weight: 600;
  line-height: 34.15px;
  transition: 150ms all ease;
}
.cm-content .view-courses a p:hover, .cm-content .view-courses a p:focus {
  cursor: pointer;
  text-decoration: none;
}

.cm-content input[type=text],
.cm-content input[type=password],
.cm-content input[type=email],
.cm-content select {
  padding: 0.5rem 1rem;
  border-radius: 0;
  border: 1px solid transparent;
  background-color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  transition: 150ms all ease;
}
.cm-content input[type=text]:hover, .cm-content input[type=text]:focus,
.cm-content input[type=password]:hover,
.cm-content input[type=password]:focus,
.cm-content input[type=email]:hover,
.cm-content input[type=email]:focus,
.cm-content select:hover,
.cm-content select:focus {
  border: 1px solid #ffbdf2;
  background-color: #fbfbfc;
}

.cm-search #search_box {
  padding-right: 3rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.cm-search #search_box_keyword {
  flex-grow: 1;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  transition: 150ms all ease;
}
.cm-search #search_box_keyword::placeholder {
  color: #2c3b3b;
}
.cm-search #search_box_keyword:hover, .cm-search #search_box_keyword:focus {
  border: 1px solid #ffbdf2;
  background-color: #fbfbfc;
}
.cm-search #search_box_submit {
  padding: 0.5rem 1rem;
  border-radius: 0;
  border: 1px solid transparent;
  background-color: #ffffff;
  transition: 150ms all ease;
  font-weight: 500;
  font-family: "Font Awesome 5 Pro";
}
.cm-search #search_box_submit:hover, .cm-search #search_box_submit:focus {
  background-color: #ffbdf2;
  border: 1px solid #ffbdf2;
  cursor: pointer;
}

.cm-content .login-error {
  margin: 0.25rem 0px;
  padding: 0.25rem;
  width: 100%;
  border: 1px solid #2c3b3b;
  border-radius: 0.25rem;
  background-color: #fbcace;
  text-align: left;
}
.cm-content .login-error h3 {
  color: #000000;
  font-weight: 600;
  margin-bottom: 1rem;
}
.cm-content .login-error p {
  color: #781c7d;
  margin-bottom: 0;
}

.cm-breadcrumb {
  margin: 0;
  padding: 0;
  width: 100%;
}
.cm-breadcrumb .navbar {
  margin: 0;
  padding: 0;
  height: min-content;
}
.cm-breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  list-style: none;
}
.cm-breadcrumb .breadcrumb ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.cm-breadcrumb .breadcrumb ul li {
  display: block;
  margin: 0;
  padding: 0;
  word-break: keep-all;
  font-weight: 700;
}
.cm-breadcrumb .breadcrumb ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  transition: 150ms all ease;
}
.cm-breadcrumb .breadcrumb ul li a:hover, .cm-breadcrumb .breadcrumb ul li a:focus {
  color: #fa5c47;
}
.cm-breadcrumb .breadcrumb ul .arrow.sep {
  margin: 0 0.2em 0 0.5em;
  letter-spacing: -1px;
}

.section-heading-image.pink-background .cm-breadcrumb .breadcrumb ul li a {
  color: #781c7d;
  transition: 150ms all ease;
}
.section-heading-image.pink-background .cm-breadcrumb .breadcrumb ul li a:hover, .section-heading-image.pink-background .cm-breadcrumb .breadcrumb ul li a:focus {
  color: #fa5c47;
}

.pagination-links {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-links > * {
  padding: 0.5rem;
  background-color: #f3f3f3;
}
.pagination-links a {
  color: #781c7d;
  transition: 150ms all ease;
}
.pagination-links a:hover, .pagination-links a:focus {
  color: #fa5c47;
}

.cm-cart-widget-small {
  display: inline-block;
  padding: 0 1.5rem 0 0;
}
.cm-cart-widget-small a {
  color: #ffffff;
  text-decoration: none;
}
.cm-cart-widget-small a:hover, .cm-cart-widget-small a:focus {
  color: #ffbdf2;
  text-decoration: none;
}

.cm-sidebar ul {
  list-style: none;
  padding: 0;
}
.cm-sidebar li a {
  padding: 0.25rem !important;
  transition: 150ms all ease;
}
.cm-sidebar .sidebar_category_link:first-of-type {
  display: none !important;
}
.cm-sidebar .sidebar_subcategories {
  padding-left: 0 !important;
}
.cm-sidebar .selected_sidebar_category_link {
  background-color: #045594;
  color: white !important;
  font-weight: 600;
}

.simple-product-tiles .simple-tiles-title {
  text-align: center;
}
.simple-product-tiles .site-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media (min-width: 48em) {
  .simple-product-tiles .site-section {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem 1rem;
    flex-wrap: wrap;
  }
}
@media (min-width: 64em) {
  .simple-product-tiles .site-section {
    justify-content: center;
  }
}
.simple-product-tiles .product-block,
.simple-product-tiles .product-tile {
  width: 300px;
  height: fit-content;
}
.simple-product-tiles .product-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: auto;
}
.simple-product-tiles .product-image {
  width: 300px;
  height: 200px;
  margin-bottom: 1.5rem;
}
.simple-product-tiles .course-img {
  object-fit: cover;
  width: 300px;
  height: 200px;
}
.simple-product-tiles .course-header,
.simple-product-tiles .course-main,
.simple-product-tiles .course-more-info-container,
.simple-product-tiles .click-here-info {
  display: none;
}
.simple-product-tiles .extra-product-type-info {
  font-weight: 500;
  font-size: 1rem;
}
.simple-product-tiles .text-link,
.simple-product-tiles .course-main {
  height: 100%;
}
.simple-product-tiles .course-main {
  display: flex;
  flex-direction: column;
}
.simple-product-tiles .course-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.simple-product-tiles .view-courses {
  margin-top: auto;
}

.full-width-product-tiles .product-tile {
  position: relative;
}
.full-width-product-tiles .product-image {
  position: absolute;
  top: 0;
  right: -1px;
}
.full-width-product-tiles .text-link {
  display: flex;
  flex-direction: column;
}
.full-width-product-tiles .extra-product-type-info {
  display: none;
}
.full-width-product-tiles .course-header {
  order: 1;
}
.full-width-product-tiles .course-main {
  order: 2;
}
.full-width-product-tiles .course-more-info-container {
  order: 3;
}
.full-width-product-tiles .course-img {
  display: none !important;
}
.full-width-product-tiles .course-more-info-container {
  display: none;
}

.tutor-training-course.full-width-product-tiles .product-block .product-image {
  display: none !important;
}

.cm-content.cm-login-template {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  grid-template-rows: auto;
  gap: 2rem;
  grid-template-areas: "header-section" "login-section" "account-section";
}
@media (min-width: 48em) {
  .cm-content.cm-login-template {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    grid-template-areas: "header-section header-section" "login-section account-section";
  }
}
.cm-content.cm-login-template > h1 {
  grid-area: header-section;
}
.cm-content.cm-login-template > br {
  display: none;
}
.cm-content.cm-login-template .col-sm-12:first-child {
  grid-area: login-section;
}
.cm-content.cm-login-template .col-sm-12:last-child {
  grid-area: account-section;
}
.cm-content.cm-login-template .col-sm-12 {
  width: 100%;
  max-width: 100%;
  padding: 2rem 1rem 4rem 1rem;
  background-color: #781c7d;
  background-image: url(/template/pima/images/white-footer-element.svg);
  background-repeat: no-repeat;
  background-position: 90% 100%;
}
.cm-content.cm-login-template .col-sm-12 .student_login,
.cm-content.cm-login-template .col-sm-12 .manager_login {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.cm-content.cm-login-template .col-sm-12 .student_login > br,
.cm-content.cm-login-template .col-sm-12 .manager_login > br {
  display: none;
}
.cm-content.cm-login-template .col-sm-12 h3 {
  color: #000000;
  font-weight: bold;
  font-size: 2.01875rem;
  font-weight: 300;
  padding-bottom: 1.25rem;
  text-align: center;
}
.cm-content.cm-login-template .col-sm-12 p:first-of-type {
  padding-bottom: 1.25rem;
  text-align: center;
}
.cm-content.cm-login-template .col-sm-12 p:last-of-type {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1.25rem;
  text-align: center;
}

.cm-content.cm-create-account-template {
  position: relative;
}
.cm-content.cm-create-account-template .form-element {
  text-align: left;
}
.cm-content.cm-create-account-template .account-tip {
  width: 100%;
  margin-bottom: 3rem;
}
@media (min-width: 64em) {
  .cm-content.cm-create-account-template .account-tip {
    position: sticky;
    top: 0;
    right: 0;
    width: 400px;
    left: 100%;
    min-height: 530px;
    margin-bottom: 0;
  }
}
.cm-content.cm-create-account-template .account-tip h3 {
  color: #781c7d;
}
.cm-content.cm-create-account-template .account-tip p {
  max-width: 400px;
  color: #2c3b3b;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.cm-content.cm-create-account-template .account-tip .nala-btn-main {
  text-decoration: none;
}
.cm-content.cm-create-account-template .create-account-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cm-content.cm-create-account-template .create-account-form > p:first-child {
  grid-area: header-section;
}
.cm-content.cm-create-account-template .create-account-form > div.form-line {
  grid-area: button-section;
  text-align: end;
}
.cm-content.cm-create-account-template .create-account-form > div.form-line > div.form-label {
  display: none;
}
.cm-content.cm-create-account-template .create-account-form .account_info,
.cm-content.cm-create-account-template .create-account-form .contact_info,
.cm-content.cm-create-account-template .create-account-form .terms_and_conditions {
  padding: 0;
  margin: 0;
  border: none;
}
@media (min-width: 64em) {
  .cm-content.cm-create-account-template .create-account-form .account_info {
    margin-top: -530px;
  }
}
.cm-content.cm-create-account-template .create-account-form .account_info,
.cm-content.cm-create-account-template .create-account-form .contact_info,
.cm-content.cm-create-account-template .create-account-form .terms_and_conditions {
  width: 100%;
}
@media (min-width: 64em) {
  .cm-content.cm-create-account-template .create-account-form .account_info,
.cm-content.cm-create-account-template .create-account-form .contact_info,
.cm-content.cm-create-account-template .create-account-form .terms_and_conditions {
    width: 50%;
  }
}
.cm-content.cm-create-account-template .create-account-form .contact_info .fieldset_heading {
  margin-top: 3rem;
}
@media (min-width: 64em) {
  .cm-content.cm-create-account-template .create-account-form .contact_info.contact_info_update {
    margin-top: -530px;
  }
}
.cm-content.cm-create-account-template .create-account-form .contact_info.contact_info_update .fieldset_heading {
  margin-top: 0;
}
.cm-content.cm-create-account-template .create-account-form h3 {
  margin-bottom: 1.25rem;
}
.cm-content.cm-create-account-template .create-account-form .tc-heading {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #781c7d;
}
.cm-content.cm-create-account-template .create-account-form .form-label {
  margin-top: 3rem;
  margin-bottom: 0.25em;
}
.cm-content.cm-create-account-template .create-account-form .form-label label {
  margin-bottom: 0;
}
.cm-content.cm-create-account-template .create-account-form .form-info-label {
  color: #2c3b3b;
  font-weight: 400;
  font-size: 1rem;
}
.cm-content.cm-create-account-template .create-account-form .form-hint p {
  font-size: 1rem;
  font-weight: 400;
  color: #2c3b3b;
  margin-bottom: 0.25em;
}
.cm-content.cm-create-account-template .create-account-form input[type=text],
.cm-content.cm-create-account-template .create-account-form input[type=password],
.cm-content.cm-create-account-template .create-account-form input[type=email],
.cm-content.cm-create-account-template .create-account-form select {
  width: 100%;
  padding: 1rem 1rem 1rem 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 48em) {
  .cm-content.cm-create-account-template .create-account-form input[type=text],
.cm-content.cm-create-account-template .create-account-form input[type=password],
.cm-content.cm-create-account-template .create-account-form input[type=email],
.cm-content.cm-create-account-template .create-account-form select {
    margin-bottom: 1rem;
    width: 100%;
  }
}
.cm-content.cm-create-account-template .create-account-form #username,
.cm-content.cm-create-account-template .create-account-form #password,
.cm-content.cm-create-account-template .create-account-form #password2,
.cm-content.cm-create-account-template .create-account-form #email,
.cm-content.cm-create-account-template .create-account-form #email2 {
  padding: 1rem 1rem 1rem 3rem;
}
.cm-content.cm-create-account-template .create-account-form input[type=radio],
.cm-content.cm-create-account-template .create-account-form input[type=checkbox] {
  transform: scale(1.5);
}
.cm-content.cm-create-account-template .create-account-form #ppsn_label_div {
  position: relative;
  width: auto;
}
@media (min-width: 48em) {
  .cm-content.cm-create-account-template .create-account-form #ppsn_label_div {
    width: fit-content;
  }
}
.cm-content.cm-create-account-template .create-account-form #ppsn_label_div .tooltip-container > i {
  margin-left: 1.5rem;
  color: #fa5c47;
  transition: 150ms all ease;
}
.cm-content.cm-create-account-template .create-account-form #ppsn_label_div .tooltip-container > i:hover, .cm-content.cm-create-account-template .create-account-form #ppsn_label_div .tooltip-container > i:focus {
  cursor: pointer;
  color: #422670;
}
.cm-content.cm-create-account-template .create-account-form #dateofbirth_label_div {
  position: relative;
  width: auto;
  margin-top: 3rem;
}
@media (min-width: 48em) {
  .cm-content.cm-create-account-template .create-account-form #dateofbirth_label_div {
    width: fit-content;
  }
}
.cm-content.cm-create-account-template .create-account-form #dateofbirth_label_div .tooltip-container > i {
  margin-left: 1.5rem;
  color: #fa5c47;
  transition: 150ms all ease;
}
.cm-content.cm-create-account-template .create-account-form #dateofbirth_label_div .tooltip-container > i:hover, .cm-content.cm-create-account-template .create-account-form #dateofbirth_label_div .tooltip-container > i:focus {
  cursor: pointer;
  color: #422670;
}
.cm-content.cm-create-account-template .create-account-form #dateofbirth_label_div + .form-element {
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}
.cm-content.cm-create-account-template .create-account-form #dateofbirth_label_div + .form-element .date-selection-contianer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  font-weight: 400;
  font-size: 1rem;
}
@media (min-width: 48em) {
  .cm-content.cm-create-account-template .create-account-form #dateofbirth_label_div + .form-element .date-selection-contianer {
    flex-direction: row;
    align-items: center;
  }
}
.cm-content.cm-create-account-template .create-account-form #dateofbirth_label_div + .form-element .date-selection-contianer p {
  font-weight: 400;
  font-size: 1rem;
}
.cm-content.cm-create-account-template .create-account-form #dateofbirth_label_div + .form-element .date-selection-contianer > select {
  margin-bottom: 0;
  display: block;
  width: 100%;
}
.cm-content.cm-create-account-template .create-account-form #gender_label_div {
  margin-bottom: 1rem;
}
.cm-content.cm-create-account-template .create-account-form #gender_label_div + .form-element input {
  margin-bottom: 1rem;
}
.cm-content.cm-create-account-template .create-account-form #gender_label_div + .form-element label {
  color: #000000;
  font-weight: 400;
  font-size: 1rem;
}
.cm-content.cm-create-account-template .create-account-form #gender_label_div + .form-element p {
  position: relative;
}
.cm-content.cm-create-account-template .create-account-form #gender_radio_div {
  display: flex;
  flex-direction: column;
}
.cm-content.cm-create-account-template .create-account-form #gender_radio_div > span {
  display: inline-block;
}
.cm-content.cm-create-account-template .create-account-form #distance_learner_type_hint_div {
  margin: 3rem 0;
}
.cm-content.cm-create-account-template .create-account-form #distance_learner_type_label_div {
  margin-bottom: 1rem;
}
.cm-content.cm-create-account-template .create-account-form #distance_learner_type_label_div + .form-element input {
  margin-bottom: 1rem;
}
.cm-content.cm-create-account-template .create-account-form #distance_learner_type_label_div + .form-element label {
  color: #000000;
  font-weight: 400;
  font-size: 1rem;
}
.cm-content.cm-create-account-template .create-account-form #distance_learner_type_label_div + .form-element p {
  position: relative;
  width: auto;
}
@media (min-width: 48em) {
  .cm-content.cm-create-account-template .create-account-form #distance_learner_type_label_div + .form-element p {
    width: fit-content;
  }
}
.cm-content.cm-create-account-template .create-account-form #distance_learner_type_label_div + .form-element .tooltip-container > i {
  margin-left: 1.5rem;
  color: #fa5c47;
  transition: 150ms all ease;
}
.cm-content.cm-create-account-template .create-account-form #distance_learner_type_label_div + .form-element .tooltip-container > i:hover, .cm-content.cm-create-account-template .create-account-form #distance_learner_type_label_div + .form-element .tooltip-container > i:focus {
  cursor: pointer;
  color: #422670;
}
.cm-content.cm-create-account-template .create-account-form .tooltip-container {
  display: inline-block;
}
.cm-content.cm-create-account-template .create-account-form .nala-account-tooltip {
  visibility: hidden;
  opacity: 0;
  display: block;
  position: absolute;
  width: 250px;
  padding: 0.75rem;
  bottom: 48px;
  right: 0;
  z-index: 1;
  background-color: #ffffff;
  color: #781c7d;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  font-size: 0.75rem;
  font-weight: 400;
  transition: 150ms all ease;
}
@media (min-width: 48em) {
  .cm-content.cm-create-account-template .create-account-form .nala-account-tooltip {
    width: 400px;
    padding: 1.5rem;
    bottom: 48px;
    right: -200px;
    font-size: 1rem;
  }
}
.cm-content.cm-create-account-template .create-account-form .nala-account-tooltip i {
  margin-right: 1.5rem;
  color: #fa5c47;
  transition: 150ms all ease;
}
.cm-content.cm-create-account-template .create-account-form .nala-account-tooltip i:hover, .cm-content.cm-create-account-template .create-account-form .nala-account-tooltip i:focus {
  cursor: pointer;
  color: #422670;
}
.cm-content.cm-create-account-template .create-account-form .nala-account-tooltip br {
  content: "";
  display: block;
  margin-bottom: 0.8rem;
}
.cm-content.cm-create-account-template .create-account-form .nala-account-tooltip .tooltip-accent {
  position: absolute;
  bottom: -20px;
  left: 170px;
  width: 40px;
  height: 40px;
}
.cm-content.cm-create-account-template .create-account-form #contact_time_label_div {
  margin-bottom: 1rem;
}
.cm-content.cm-create-account-template .create-account-form #contact_time_label_div + .form-element input {
  margin-bottom: 1rem;
}
.cm-content.cm-create-account-template .create-account-form #contact_time_label_div + .form-element label {
  color: #000000;
  font-weight: 400;
  font-size: 1rem;
}
.cm-content.cm-create-account-template .create-account-form #contact_time_label_div + .form-element p {
  position: relative;
}
.cm-content.cm-create-account-template .create-account-form .terms_and_conditions {
  margin-bottom: 3rem;
}
.cm-content.cm-create-account-template .create-account-form .terms_and_conditions input {
  margin-bottom: 1rem;
}
.cm-content.cm-create-account-template .create-account-form .terms_and_conditions label {
  color: #000000;
  font-weight: 400;
  font-size: 1rem;
}

.cm-content.cm-myaccount-template {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  grid-template-rows: auto;
  gap: 2rem;
  grid-template-areas: "header-section" "courses-section" "history-section";
}
@media (min-width: 48em) {
  .cm-content.cm-myaccount-template {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    grid-template-areas: "header-section header-section" "courses-section history-section";
  }
}
.cm-content.cm-myaccount-template > h1 {
  grid-area: header-section;
}
.cm-content.cm-myaccount-template .col-md-5:nth-child(1) {
  grid-area: courses-section;
}
.cm-content.cm-myaccount-template .col-md-5:nth-child(2) {
  grid-area: history-section;
}
.cm-content.cm-myaccount-template .col-md-5 {
  width: 100%;
  min-width: 100% !important;
  background-color: #f3f3f3;
  padding: 1.25rem;
}
.cm-content.cm-myaccount-template .col-md-5 h3 {
  margin-bottom: 1.25rem;
}
.cm-content.cm-myaccount-template .col-md-5 p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}
.cm-content.cm-myaccount-template .manager_login,
.cm-content.cm-myaccount-template .student_login {
  display: flex;
  flex-direction: column;
}

.cm-product-list-add-to-waiting-list {
  display: block;
  width: max-content;
  margin: 0 0 0 auto;
}

@media (min-width: 64em) {
  .product-description {
    display: flex;
  }
}

.video-description-container {
  margin-bottom: 3rem;
}
@media (min-width: 64em) {
  .video-description-container {
    width: 60%;
  }
}

.product-video {
  margin-bottom: 3rem;
}

.product-main-info h2 {
  margin-bottom: 3rem;
}
.product-main-info p {
  margin-top: 1.5rem;
  color: #2c3b3b;
}

.product-aside-info {
  height: max-content;
  background-color: #ffbdf2;
  padding: 1.5rem;
  margin-bottom: 3rem;
  border-radius: 6px 6px 6px 6px;
}
@media (min-width: 64em) {
  .product-aside-info {
    margin-left: 10%;
    width: 30%;
    padding: 3rem 1.5rem;
  }
}
.product-aside-info div {
  margin-bottom: 1.5rem;
}
@media (min-width: 64em) {
  .product-aside-info div {
    margin-bottom: 3rem;
  }
}
.product-aside-info div:last-of-type {
  margin-bottom: 0;
}
.product-aside-info img {
  mix-blend-mode: multiply;
}

.product-store-managed {
  width: 100%;
}
.product-store-managed td {
  display: flex;
  border: none;
}
.product-store-managed .product-price {
  display: none;
}
.product-store-managed .product-details-quantity-container {
  display: block;
  width: 100%;
  margin-bottom: 1.25rem;
}
.product-store-managed .product-details-quantity-container input {
  margin-left: 0.75rem;
}
.product-store-managed .product-details-order-button-container {
  margin-top: 1.5rem;
  display: block;
  width: fit-content;
}

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

.product-return-link {
  display: none;
}

.cm-content.cm-waiting-list-template h1 {
  margin-bottom: 1.25em;
}
.cm-content.cm-waiting-list-template .waiting-list-form h3 {
  margin-bottom: 1.25rem;
}
.cm-content.cm-waiting-list-template .waiting-list-form .form-label {
  margin-top: 1em;
  margin-bottom: 0.25em;
}
.cm-content.cm-waiting-list-template .waiting-list-form input[type=text],
.cm-content.cm-waiting-list-template .waiting-list-form input[type=email] {
  width: 100%;
  max-width: 400px;
}
.cm-content.cm-waiting-list-template .waiting-list-form > .form-line > .form-label {
  margin-top: 1.5em;
}

.cm-content.cm-cart-template .cm-visuallyhidden {
  display: none !important;
}
.cm-content.cm-cart-template .cart-container {
  overflow-x: scroll;
  margin-bottom: 1.25rem;
  background-color: #ffffff;
}
@media (min-width: 48em) {
  .cm-content.cm-cart-template .cart-container {
    overflow-x: initial;
  }
}
.cm-content.cm-cart-template .cart-container .cartcontent thead {
  background-color: #422670;
  color: #ffffff;
}
.cm-content.cm-cart-template .cart-container .cartcontent tbody {
  font-weight: 400;
}
.cm-content.cm-cart-template .cart-container .cartcontent .lineitem {
  border: none;
}
.cm-content.cm-cart-template .cart-container .cartcontent .lineitem td:last-of-type {
  text-align: right !important;
}
.cm-content.cm-cart-template .cart-container .cartcontent th {
  padding: 0.5rem;
}
.cm-content.cm-cart-template .cart-container .cartcontent td {
  padding: 0.3rem 0.5rem;
  border: none;
}
.cm-content.cm-cart-template .cart-container .cartcontent .cm-cart-quantity-column {
  text-align: center;
}
.cm-content.cm-cart-template .cart-container .cartcontent .cm-cart-quantity {
  border: 1px solid #ffbdf2;
}
.cm-content.cm-cart-template .cart-container .cartcontent .cm-cart-price-column,
.cm-content.cm-cart-template .cart-container .cartcontent .cm-cart-amount-column {
  text-align: end;
}
.cm-content.cm-cart-template .cart-container .cartcontent .cm-cart-table-row-totals:last-of-type .cm-cart-table-cell-totals-label,
.cm-content.cm-cart-template .cart-container .cartcontent .cm-cart-table-row-totals:last-of-type .cm-cart-table-cell-totals-value {
  font-weight: 600;
}
.cm-content.cm-cart-template .cartinfo p {
  color: #2c3b3b;
}
.cm-content.cm-cart-template .voucher-container {
  margin-top: 2.5rem;
}
.cm-content.cm-cart-template .voucher-container h3 {
  color: #781c7d;
  margin-bottom: 0.75rem;
}
.cm-content.cm-cart-template .voucher-container p {
  color: #2c3b3b;
  margin-bottom: 0.75rem;
}
.cm-content.cm-cart-template .voucher-container input[type=text] {
  width: 100%;
}
@media (min-width: 28em) {
  .cm-content.cm-cart-template .voucher-container input[type=text] {
    width: auto;
  }
}
.cm-content.cm-cart-template .buttons {
  padding: 0.5rem 0;
  text-align: end;
}
.cm-content.cm-cart-template .buttons .cm_button_continue_shopping,
.cm-content.cm-cart-template .buttons .cm_button_recalculate,
.cm-content.cm-cart-template .buttons .cm_button_checkout {
  display: block;
  width: 100%;
  margin-bottom: 0.4rem;
}
@media (min-width: 28em) {
  .cm-content.cm-cart-template .buttons .cm_button_continue_shopping,
.cm-content.cm-cart-template .buttons .cm_button_recalculate,
.cm-content.cm-cart-template .buttons .cm_button_checkout {
    display: inline-block;
    width: auto;
    margin-left: 0.75rem;
  }
}

.cm-content.cm-checkout-template .cart-container {
  overflow-x: scroll;
  margin-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 48em) {
  .cm-content.cm-checkout-template .cart-container {
    overflow-x: initial;
  }
}
.cm-content.cm-checkout-template .cart-container .cartcontent thead {
  background-color: #422670;
  color: #ffffff;
}
.cm-content.cm-checkout-template .cart-container .cartcontent tbody {
  background-color: #f3f3f3;
  font-weight: 400;
}
.cm-content.cm-checkout-template .cart-container .cartcontent .lineitem {
  border: none;
}
.cm-content.cm-checkout-template .cart-container .cartcontent .lineitem td:last-of-type {
  text-align: right !important;
}
.cm-content.cm-checkout-template .cart-container .cartcontent th {
  padding: 0.5rem;
}
.cm-content.cm-checkout-template .cart-container .cartcontent td {
  padding: 0.3rem 0.5rem;
  border: none;
}
.cm-content.cm-checkout-template .cart-container .cartcontent .cm-cart-quantity-column {
  text-align: center;
}
.cm-content.cm-checkout-template .cart-container .cartcontent .cm-cart-quantity {
  border: 1px solid #ffbdf2;
}
.cm-content.cm-checkout-template .cart-container .cartcontent .cm-cart-price-column,
.cm-content.cm-checkout-template .cart-container .cartcontent .cm-cart-amount-column {
  text-align: end;
}
.cm-content.cm-checkout-template .cart-container .cartcontent .cm-cart-table-row-totals:last-of-type .cm-cart-table-cell-totals-label,
.cm-content.cm-checkout-template .cart-container .cartcontent .cm-cart-table-row-totals:last-of-type .cm-cart-table-cell-totals-value {
  font-weight: 600;
}
.cm-content.cm-checkout-template .invoice_details {
  padding: 1.25rem;
  background-color: #f3f3f3;
  border: 0;
  margin-bottom: 3rem;
  width: 100%;
}
@media (min-width: 48em) {
  .cm-content.cm-checkout-template .invoice_details {
    width: 70%;
  }
}
.cm-content.cm-checkout-template .invoice_details h3 {
  margin-bottom: 1.25rem;
}
.cm-content.cm-checkout-template .invoice_details .form-label {
  margin-top: 1em;
  margin-bottom: 0.25em;
}
.cm-content.cm-checkout-template .invoice_details input[type=text],
.cm-content.cm-checkout-template .invoice_details input[type=password],
.cm-content.cm-checkout-template .invoice_details input[type=email],
.cm-content.cm-checkout-template .invoice_details select {
  width: 100%;
  padding: 1rem 1rem 1rem 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 48em) {
  .cm-content.cm-checkout-template .invoice_details input[type=text],
.cm-content.cm-checkout-template .invoice_details input[type=password],
.cm-content.cm-checkout-template .invoice_details input[type=email],
.cm-content.cm-checkout-template .invoice_details select {
    margin-bottom: 3rem;
    width: 70%;
  }
}
.cm-content.cm-checkout-template .invoice_details #postcode {
  max-width: 180px;
}
.cm-content.cm-checkout-template .payment_gateways {
  padding: 1.25rem;
  background-color: #f3f3f3;
  border: 0;
  margin-bottom: 3rem;
  width: 100%;
}
@media (min-width: 48em) {
  .cm-content.cm-checkout-template .payment_gateways {
    width: 70%;
  }
}
.cm-content.cm-checkout-template .payment_gateways h3 {
  margin-bottom: 1.25rem;
}
.cm-content.cm-checkout-template .terms_and_conditions {
  padding: 1.25rem;
  background-color: #f3f3f3;
  border: 0;
  margin-bottom: 3rem;
  width: 100%;
}
@media (min-width: 48em) {
  .cm-content.cm-checkout-template .terms_and_conditions {
    width: 70%;
  }
}
.cm-content.cm-checkout-template .terms_and_conditions h3 {
  margin-bottom: 1.25rem;
}
.cm-content.cm-checkout-template .terms_and_conditions .form-element {
  margin-bottom: 0.5em;
}
.cm-content.cm-checkout-template .terms_and_conditions label {
  display: inline;
  color: #000000;
}
.cm-content.cm-checkout-template .terms_and_conditions .popupinline {
  font-size: inherit;
}
.cm-content.cm-checkout-template .buttons {
  margin-top: 3rem;
}
.cm-content.cm-checkout-template .cm_button_proceed {
  margin-left: 1rem;
}

.cm-content.cm-manage-template h3 {
  margin-bottom: 1.25rem;
}
.cm-content.cm-manage-template .licenses-list {
  overflow-x: scroll;
}
@media (min-width: 48em) {
  .cm-content.cm-manage-template .licenses-list {
    overflow-x: initial;
  }
}
.cm-content.cm-manage-template .cm-manage-table {
  margin-bottom: 1.25rem;
  width: 100%;
  background-color: #f3f3f3;
}
.cm-content.cm-manage-template .cm-manage-table .cm-manage-table-titlebar {
  border-bottom: 1px solid #045594;
}
.cm-content.cm-manage-template .cm-manage-table td {
  padding: 5px;
  border: none;
}
.cm-content.cm-manage-template .order-student-add {
  margin-bottom: 1.25rem;
}
.cm-content.cm-manage-template .order-student-add input[type=text] {
  display: block;
  max-width: 100%;
}
.cm-content.cm-manage-template .order-items-container {
  overflow-x: scroll;
  margin-bottom: 1.25rem;
  background-color: #f3f3f3;
}
@media (min-width: 48em) {
  .cm-content.cm-manage-template .order-items-container {
    overflow-x: initial;
  }
}
.cm-content.cm-manage-template .order-items-container .cartcontent thead {
  border-bottom: 1px solid #045594;
}
.cm-content.cm-manage-template .order-items-container .cartcontent .lineitem.rowodd {
  border-bottom: 1px solid #bc8ebe;
}
.cm-content.cm-manage-template .order-items-container .cartcontent th {
  padding: 0.5rem;
}
.cm-content.cm-manage-template .order-items-container .cartcontent td {
  padding: 0.3rem 0.5rem;
  border: none;
}
.cm-content.cm-manage-template .order-items-container .cartcontent .cm-align-center {
  text-align: center;
}
.cm-content.cm-manage-template .order-items-container .cartcontent .cm-align-right {
  text-align: end;
}
.cm-content.cm-manage-template .order-items-container .cartcontent .cm-order-items-table-row-totals:last-of-type {
  font-weight: 600;
}

.cm-search-template #page_search_form {
  margin-top: 5rem;
}
.cm-search-template #page_search_form tr td:first-of-type {
  padding-top: 0.7em;
}
.cm-search-template #page_search_form div[role=radiogroup] {
  padding: 0.75em 0;
}
.cm-search-template #page_search_form .smfont {
  display: inline-block;
  margin-right: 0.4em;
}
.cm-search-template #page_search_form .smfont input {
  margin-right: 0.15em;
}
.cm-search-template input[type=text],
.cm-search-template select {
  width: 100%;
  border: 1px solid #ffbdf2;
}

.cm-content.cm-minimal-template .my-account-orders-list-orders-block #order-list-form > div {
  overflow-x: scroll;
}
@media (min-width: 48em) {
  .cm-content.cm-minimal-template .my-account-orders-list-orders-block #order-list-form > div {
    overflow-x: initial;
  }
}
.cm-content.cm-minimal-template .my-account-orders-list-orders-block .my-account-orders-list-report-name-heading {
  color: #045594;
  font-weight: 600;
}
.cm-content.cm-minimal-template .my-account-orders-list-orders-block .my-account-order-list-table {
  background-color: #f3f3f3;
}
.cm-content.cm-minimal-template .my-account-orders-list-orders-block .my-account-order-list-table td {
  border: none;
}
.cm-content.cm-minimal-template .my-account-orders-list-orders-block + br + form > div {
  overflow-x: scroll;
}
@media (min-width: 48em) {
  .cm-content.cm-minimal-template .my-account-orders-list-orders-block + br + form > div {
    overflow-x: initial;
  }
}
.cm-content.cm-minimal-template .my-account-orders-list-orders-block + br + form .largetable td {
  border: none;
}
.cm-content.cm-minimal-template .my-account-orders-list-orders-block + br + form .largetable td select:last-child {
  margin-top: 4px;
}
.cm-content.cm-minimal-template .my-account-orders-list-no-orders-block + br + form > div {
  overflow-x: scroll;
}
@media (min-width: 48em) {
  .cm-content.cm-minimal-template .my-account-orders-list-no-orders-block + br + form > div {
    overflow-x: initial;
  }
}
.cm-content.cm-minimal-template .my-account-orders-list-no-orders-block + br + form .largetable td {
  border: none;
}
.cm-content.cm-minimal-template .my-account-orders-list-no-orders-block + br + form .largetable td select:last-child {
  margin-top: 4px;
}

.order-items-container .cartcontent td {
  border: none;
}

/*# sourceMappingURL=cm-main.css.map */
