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

body {
  min-height: calc(100vh - 33px); /* minus footer gap */
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin-bottom: 30px;
}

a {
  transition: all 0.75s;
}
a:hover {
  text-decoration: none;
}

button, input[type=submit], input[type=button] {
  cursor: pointer;
}

form span.message {
  margin: 5px;
  padding: 0;
  font-size: 90%;
  color: #e3002b;
}
form span.message label {
  list-style: none outside;
  display: block !important;
  width: 100%;
}

input[type=text], input[type=password], input[type=email], input[type=number], textarea {
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  padding: 15px 20px;
  width: 100%;
  font-family: sans-serif;
  font-size: 14px;
  resize: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ffffff url("../images/icon-select.svg") no-repeat 97% center;
  background-size: 20px;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  height: 50px;
  padding: 0 5% 0 15px;
}

[class*=col-], [class*=col_], [class~=col] {
  padding: 0;
}

.grid {
  width: 100%;
  margin: 0;
}

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

.button {
  border-radius: 5px;
  padding: 10px 35px;
  color: #ffffff;
  border: none;
  max-width: 100%;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: inline-block;
}
.button.primary {
  background: #25368F;
}
.button.primary2 {
  background: #012043;
}
.button.secondary {
  background: #4CB6FF;
}
.button.tertiary {
  background: #575757;
}
.button.action {
  background: #45BF5C;
}
.button:hover {
  color: #ffffff;
  text-decoration: none;
}
.button[disabled=disabled] {
  pointer-events: none;
  opacity: 40%;
}

.list-item {
  display: list-item;
}

.bottom-space {
  margin-bottom: 15px;
}

.d-block {
  display: block;
}

.hide {
  display: none !important;
}

.w60 {
  width: 180% !important;
}

.uk-modal-dialog {
  border-radius: 20px;
}
.uk-modal-dialog .uk-modal-close-default {
  background: #2591DB;
  color: #ffffff;
  padding: 10px;
  border-radius: 50%;
  right: 30px;
  top: 20px;
}

.uk-notification {
  z-index: 99999;
  width: 450px;
}
.uk-notification .uk-notification-message {
  font-size: 90%;
  text-align: center;
}
.uk-notification .uk-notification-message.uk-notification-message-success {
  background-color: #45BF5C;
  color: #ffffff;
}
.uk-notification .uk-notification-message.uk-notification-message-warning {
  background-color: #faa05a;
  color: #ffffff;
  text-align: left;
}
.uk-notification .uk-notification-message.uk-notification-message-warning ul {
  margin: 0;
  padding-top: 1em;
}
.uk-notification .uk-notification-message.uk-notification-message-warning ul li {
  font-weight: bold;
}
.uk-notification .uk-notification-message.uk-notification-message-danger {
  background-color: #f0506e;
  color: #ffffff;
}
.uk-notification .uk-notification-close {
  top: 5px;
  right: 8px;
}
.uk-notification .uk-notification-close svg {
  color: #fff;
}

.banner-message {
  background: #65B2FF;
  padding: 5px 0;
  text-align: center;
  font-size: 90%;
  color: #fff;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.banner-message p {
  margin: 0;
}
.banner-message a {
  color: #fff;
  text-decoration: underline;
}

.loading-overlay {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(255, 255, 255, 0.7);
  z-index: 9999999;
}
.loading-overlay .overlay__inner {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.loading-overlay .overlay__content {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.loading-overlay .spinner {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.05);
  border-top-color: #020F59;
  animation: spin 1s infinite linear;
  border-radius: 100%;
  border-style: solid;
}
.loading-overlay:not(.hide) {
  display: block !important;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
form label.error {
  display: none !important;
}
form input.error {
  border: 1px solid red;
}

form[name=mes-signup-form] select.select2-hidden-accessible.error ~ span.select2-container .select2-selection {
  border-color: #ff0000;
}

#floating-contact {
  position: fixed;
  z-index: 2;
  background: #5CC0FF;
  border-radius: 40px;
  bottom: 100px;
  right: 10px;
  padding: 20px 20px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  display: block !important;
}
#floating-contact:hover {
  text-decoration: none;
}
#floating-contact .icon-message {
  background: url("../images/icon-message.svg") no-repeat;
  height: 35px;
  width: 35px;
  max-width: 35px;
  max-height: 35px;
  float: left;
}
#floating-contact .floating-contact-text {
  display: none;
}

#floating-total {
  background: #D8EFFF;
  position: fixed;
  right: 5%;
  top: 45%;
  z-index: 1;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  text-align: right;
  color: #212D6C;
}
#floating-total h6 {
  margin: 0;
  color: #212D6C;
}
#floating-total > span {
  display: block;
  font-size: 80%;
}
#floating-total .vat span {
  display: inline-block;
}
#floating-total .price {
  color: #000000;
  font-size: 30px;
  font-weight: bold;
}
#floating-total .price span {
  display: inline-block;
}
#floating-total .button {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  display: inline-block;
}

.faq-mini-box-wrapper {
  display: flex;
  margin: 40px 0;
}
.faq-mini-box-wrapper.centered {
  width: 100%;
  justify-content: center;
}
.faq-mini-box-wrapper section {
  border: solid 1px #D4D4D4;
  border-radius: 20px;
  padding: 40px 60px;
}
.faq-mini-box-wrapper section h3 {
  color: #151D4A;
  font-weight: bold;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-mini-box-wrapper section a {
  font-weight: normal;
  width: fit-content;
  margin: auto;
}

.faq-response-container {
  display: none;
}

.accent-2591DB {
  color: #2591DB;
}

/* Select2 Overrides
---------------------------------------------------------------------------------------------------------*/
.select2-container--default {
  width: 100% !important;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__arrow {
  line-height: 45px;
  height: 45px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 15px;
  padding-right: 35px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  line-height: 20px;
  padding: 5px;
  font-size: 90%;
}

/* Main Header
---------------------------------------------------------------------------------------------------------*/
#main-header {
  padding: 20px 0;
  background: #FCFCFC;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 999;
  width: 100%;
}
#main-header .logo-container {
  padding-bottom: 0;
}
#main-header .logo-container img {
  max-height: 50px;
  width: auto;
  display: inline-block;
}
#main-header .menu-container {
  text-align: right;
  padding-bottom: 0;
  /* Multi-level Dropdown */
}
#main-header .menu-container nav {
  display: flex;
  justify-content: right;
  align-items: center;
  min-height: 50px;
  background: #FCFCFC;
}
#main-header .menu-container nav ul {
  margin: 0;
}
#main-header .menu-container nav ul li {
  display: inline-block;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
}
#main-header .menu-container nav ul li a {
  color: #000000;
}
#main-header .menu-container nav ul li.current-menu-item > a, #main-header .menu-container nav ul li.current-menu-item > a:hover {
  color: #2591DB;
}
#main-header .menu-container nav ul.actions-wrapper li {
  padding: 0;
  font-size: 14px;
}
#main-header .menu-container nav ul.actions-wrapper li a {
  border-radius: 5px;
  padding: 0 20px;
  display: inline-block;
  line-height: 40px;
  color: #ffffff;
  font-weight: normal;
}
#main-header .menu-container nav ul.actions-wrapper li.elearning-courses a {
  background: #4CB6FF;
}
#main-header .menu-container nav ul.actions-wrapper li.elearning-account a {
  background: #25368F url("../images/icon-profile.svg") center no-repeat;
}
#main-header .menu-container nav ul.actions-wrapper li.order-overview a {
  background: #45BF5C url("../images/icon-cart.svg") center no-repeat;
}
#main-header .menu-container nav ul.menu > li {
  position: relative;
}
#main-header .menu-container nav ul.menu > li:hover > a {
  color: #4CB6FF;
}
#main-header .menu-container nav ul.menu > li:hover > ul {
  display: block;
}
#main-header .menu-container nav ul.menu > li ul {
  display: none;
  position: absolute;
  top: 25px;
  min-width: 150px;
  padding: 15px 0;
  background: #ffffff;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.08);
}
#main-header .menu-container nav ul.menu > li ul li {
  display: block;
  text-align: left;
  padding: 0 15px;
  position: relative;
  line-height: 35px;
  font-weight: normal;
}
#main-header .menu-container nav ul.menu > li ul li:not(:last-of-type) {
  border-bottom: 1px solid #CCCCCC;
}
#main-header .menu-container nav ul.menu > li ul li ul.sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
  padding: 0;
}
#main-header .menu-container nav ul.menu > li ul li:hover > a {
  color: #020F59;
}
#main-header .menu-container nav ul.menu > li ul li:hover > ul.sub-menu {
  display: block;
}

/* Main Content
---------------------------------------------------------------------------------------------------------*/
#main-content.home-bg {
  background: linear-gradient(0deg, rgba(21, 29, 74, 0.95), rgba(21, 29, 74, 0.95)), url("../images/home-background.png") center/cover;
  min-height: 100vh;
}
#main-content #default-screen {
  padding: 40px 0;
}
#main-content em {
  color: inherit;
}

/* Main Footer
---------------------------------------------------------------------------------------------------------*/
#main-footer {
  font-size: 16px;
  background: #000110;
  position: relative;
  z-index: 1;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
}
#main-footer nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-left: 0px;
  margin: 0;
}
#main-footer nav ul li {
  list-style: none;
  display: inline-block;
  line-height: 15px;
}
#main-footer nav ul li.copyright {
  order: 1;
}
#main-footer nav ul li:last-child {
  border-right: none;
}
#main-footer nav ul li.brand-wrapper {
  margin-right: 15px;
  border: none;
}
#main-footer nav ul li a {
  color: #8E8E8E;
}
#main-footer nav ul li a:hover {
  color: #ffffff;
}

/* Template: Home
---------------------------------------------------------------------------------------------------------*/
#auth-screen, #auth-reset-password {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  gap: 30px;
}
#auth-screen h4, #auth-reset-password h4 {
  color: #ffffff;
  font-size: 40px;
  line-height: 110%;
}
#auth-screen h4 span, #auth-reset-password h4 span {
  font-size: 30px;
}
#auth-screen input[type=button],
#auth-screen input[type=submit], #auth-reset-password input[type=button],
#auth-reset-password input[type=submit] {
  min-width: 180px;
  padding: 20px 40px;
  font-size: 20px;
}
#auth-screen a, #auth-reset-password a {
  color: #ffffff;
  text-decoration: underline;
}
#auth-screen .box-login, #auth-screen .box-verification, #auth-screen .box-reset-password, #auth-reset-password .box-login, #auth-reset-password .box-verification, #auth-reset-password .box-reset-password {
  padding: 40px;
  max-width: 360px;
  width: 100%;
  min-height: 520px;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  margin: 0;
  color: #ffffff;
}
#auth-screen .box-login p:last-of-type, #auth-screen .box-verification p:last-of-type, #auth-screen .box-reset-password p:last-of-type, #auth-reset-password .box-login p:last-of-type, #auth-reset-password .box-verification p:last-of-type, #auth-reset-password .box-reset-password p:last-of-type {
  margin-bottom: 0;
}

/* Login and email verification */
#auth-screen .box-login {
  background: transparent linear-gradient(180deg, rgba(71, 94, 217, 0.6) 0%, #202B67 100%) 0% 0% no-repeat padding-box;
}
#auth-screen .box-login input[type=button],
#auth-screen .box-login input[type=submit] {
  border-radius: 10px;
  color: #ffffff;
  background: #4CB6FF;
  border: none;
}
#auth-screen .box-login form.logged {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 440px;
}
#auth-screen .box-verification {
  background: transparent linear-gradient(180deg, #65B2FF 0%, #0677C9 100%) 0% 0% no-repeat padding-box;
}
#auth-screen .box-verification input[type=button],
#auth-screen .box-verification input[type=submit] {
  border-radius: 10px;
  color: #ffffff;
  background: #25368F;
  border: none;
}

/* Reset password */
#auth-reset-password .box-reset-password {
  background: transparent linear-gradient(180deg, rgba(71, 94, 217, 0.6) 0%, #202B67 100%) 0% 0% no-repeat padding-box;
  min-height: auto;
}
#auth-reset-password .box-reset-password input[type=button],
#auth-reset-password .box-reset-password input[type=submit] {
  border-radius: 10px;
  color: #ffffff;
  background: #4CB6FF;
  border: none;
}

/* Sign up modal*/
#auth-signup-modal {
  padding: 0px;
}
#auth-signup-modal .uk-modal-dialog {
  width: 100%;
  margin: 0 !important;
  border-radius: 0px;
  min-height: 100vh;
  height: fit-content;
}
#auth-signup-modal .uk-modal-dialog .logo-wrapper {
  text-align: center;
}
#auth-signup-modal .uk-modal-dialog .logo-wrapper img {
  max-height: 40px;
  display: inline-block;
}
#auth-signup-modal .uk-modal-dialog .content select {
  width: 100%;
}
#auth-signup-modal .uk-modal-dialog .content .field-wrapper {
  margin-bottom: 20px;
  position: relative;
}
#auth-signup-modal .uk-modal-dialog .content .field-wrapper input[type=checkbox],
#auth-signup-modal .uk-modal-dialog .content .field-wrapper input[type=radio] {
  margin-right: 5px;
}
#auth-signup-modal .uk-modal-dialog .content .field-wrapper.gender > span {
  margin-right: 15px;
}
#auth-signup-modal .uk-modal-dialog .content .field-wrapper.gender > label {
  margin-right: 10px;
}
#auth-signup-modal .uk-modal-dialog .content .field-wrapper i.fa {
  position: absolute;
  top: 35%;
  right: 15px;
  cursor: pointer;
}
#auth-signup-modal .uk-modal-dialog .content .field-wrapper i.fa.success {
  color: #45BF5C;
  cursor: default;
}
#auth-signup-modal .uk-modal-dialog .content span.message label {
  color: #f0506e;
}

/* Template: MES Account
---------------------------------------------------------------------------------------------------------*/
#mes-account-screen {
  height: calc(100vh - 165px);
}
#mes-account-screen .mes-iframe-wrapper {
  height: 100%;
}
#mes-account-screen .mes-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Template: Purchase
---------------------------------------------------------------------------------------------------------*/
#purchase-screen {
  min-height: calc(100vh - 122px);
}
#purchase-screen .step-indicator {
  background: #212D6C;
  padding: 70px 30px 92px;
  min-width: 300px;
}
#purchase-screen .step-indicator a {
  color: #ffffff;
}
#purchase-screen .step-indicator a:hover {
  color: #2591DB;
}
#purchase-screen .step-indicator ul {
  padding-right: 80px;
  position: relative;
}
#purchase-screen .step-indicator ul a:last-child li::before {
  visibility: hidden;
}
#purchase-screen .step-indicator ul a li {
  color: #ffffff;
  list-style: none;
  text-align: right;
  position: relative;
  margin-bottom: 30px;
  /* Current style */
  /* Chosen style*/
}
#purchase-screen .step-indicator ul a li::before {
  content: "";
  position: absolute;
  top: 41px;
  right: -50px;
  height: 100%;
  width: 5px;
  border-right: 2px solid #fff;
}
#purchase-screen .step-indicator ul a li::after {
  content: "";
  height: 40px;
  width: 40px;
  position: absolute;
  right: -70px;
  z-index: 2;
  top: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: #212D6C;
}
#purchase-screen .step-indicator ul a li.current h5, #purchase-screen .step-indicator ul a li.current a {
  color: #2591DB;
}
#purchase-screen .step-indicator ul a li.current::after {
  background: #2591DB;
  border-color: transparent;
}
#purchase-screen .step-indicator ul a li.chosen h5, #purchase-screen .step-indicator ul a li.chosen a {
  color: #66D99B;
}
#purchase-screen .step-indicator ul a li.chosen::after {
  background: #66D99B url("../images/icon-check.svg") no-repeat center;
  border-color: transparent;
}
#purchase-screen .step-indicator ul a li h5 {
  font-size: 22px;
  color: #ffffff;
  margin: 0;
}
#purchase-screen .step-indicator ul a li h5 + span {
  font-size: 90%;
}
#purchase-screen .step-content {
  background: #ffffff;
  /* Supplementary column info*/
  /* Institution */
  /* Product List*/
  /* Order Overview / Summary*/
  /* Shipping Form*/
  /* Checkout Form*/
}
#purchase-screen .step-content div.sub-wrapper {
  padding: 70px 0 170px 30px;
  min-width: 70%;
  min-height: 85vh;
}
#purchase-screen .step-content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #212D6C;
}
#purchase-screen .step-content .step-extra-info {
  background: #F3F3F3;
  width: 100%;
  padding: 70px 30px 30px;
}
#purchase-screen .step-content .step-extra-info .total-wrapper {
  margin-bottom: 40px;
}
#purchase-screen .step-content .step-extra-info .total-wrapper .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0 0;
}
#purchase-screen .step-content .step-extra-info .total-wrapper .item.total {
  border: 2px solid #b6cedf;
  border-left: none;
  border-right: none;
  margin: 10px 0 30px;
  padding-bottom: 10px;
  font-size: 18px;
  color: #020F59;
  font-weight: bold;
}
#purchase-screen .step-content .step-extra-info section {
  color: #000000;
}
#purchase-screen .step-content .step-extra-info section h4, #purchase-screen .step-content .step-extra-info section h5 {
  color: #020F59;
  font-weight: bold;
  margin-bottom: 20px;
}
#purchase-screen .step-content .step-extra-info section h4 {
  font-size: 20px;
}
#purchase-screen .step-content .step-extra-info section h5 {
  font-size: 15px;
}
#purchase-screen .step-content .step-extra-info section label {
  display: block;
}
#purchase-screen .step-content .step-extra-info section .group {
  margin-bottom: 40px;
}
#purchase-screen .step-content .institution-form-wrapper ul {
  padding: 0;
}
#purchase-screen .step-content .institution-form-wrapper ul li {
  list-style: none;
  display: block;
  max-width: 400px;
  margin-bottom: 15px;
}
#purchase-screen .step-content .institution-form-wrapper ul li select {
  width: 100%;
  color: #575757;
}
#purchase-screen .step-content .institution-form-wrapper ul li select.error ~ span.select2-container span.select2-selection {
  border: 1px solid #ff0000;
}
#purchase-screen .step-content .product-list-wrapper {
  padding: 0 0 80px;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper {
  padding: 0 0 92px;
  background: #F3F3F3;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section {
  padding: 30px 30px;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section span[data-name=cart-items-count] {
  display: none;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row.associated-products, #purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row.extra-products {
  width: 90%;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box {
  padding: 70px 0 0;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  margin: 0 20px 20px 0;
  background-size: cover;
  background-position: 0 -5px;
  background-repeat: no-repeat;
  min-width: 190px;
  display: inline-block;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box.selected {
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #45BF5C;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box.selected .content {
  background: #F2FFF4;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box.selected .content [data-action=shop-remove-from-cart].hide {
  display: block !important;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box.selected .content [data-action=shop-add-to-cart] {
  display: none;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box .content {
  background: #ffffff;
  padding: 15px;
  border-radius: 0 0 10px 10px;
  margin-top: 4px;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box .content h6 {
  color: #020F59;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 160px;
  overflow: hidden;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box .content select {
  height: 35px;
  width: 100%;
  color: #575757;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box .content select.with-isbn {
  max-width: 160px;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 20px;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box .content footer {
  margin: 20px 0 0;
  font-size: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box .content footer .price {
  color: #020F59;
  font-weight: bold;
  font-size: 15px;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box .content footer .action {
  padding: 7px 15px;
  font-size: 90%;
  min-width: 65px;
  border: 1px solid #45BF5C;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section .row .box .content footer .action.remove {
  background: #FFFFFF;
  color: #2E2E2E;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section:nth-of-type(1) {
  background: #ffffff;
  padding-top: 70px;
}
#purchase-screen .step-content .product-list-wrapper .sub-wrapper section:nth-of-type(2) {
  background: #F3F3F3;
}
#purchase-screen .step-content .order-overview-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#purchase-screen .step-content .order-overview-wrapper .sub-wrapper section {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #CCCCCC;
  max-width: 80%;
  min-width: 450px;
  padding: 20px;
  background: #FAFAFA;
}
#purchase-screen .step-content .order-overview-wrapper .sub-wrapper section > div {
  margin-right: 15px;
}
#purchase-screen .step-content .order-overview-wrapper .sub-wrapper section h6 {
  margin-bottom: 15px;
  color: #020F59;
  font-weight: bold;
}
#purchase-screen .step-content .order-overview-wrapper .sub-wrapper section select {
  height: 35px;
  min-width: 200px;
}
#purchase-screen .step-content .order-overview-wrapper .sub-wrapper section select.with-isbn {
  max-width: 200px;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 20px;
}
#purchase-screen .step-content .order-overview-wrapper .sub-wrapper section .checkbox-column {
  display: flex;
  align-items: center;
}
#purchase-screen .step-content .order-overview-wrapper .sub-wrapper section .image-column {
  display: flex;
  align-items: center;
  background: #010e1f;
  border-radius: 5px;
}
#purchase-screen .step-content .order-overview-wrapper .sub-wrapper section .image-column img {
  max-width: 75px;
}
#purchase-screen .step-content .order-overview-wrapper .sub-wrapper section .details-column {
  width: 100%;
}
#purchase-screen .step-content .order-overview-wrapper .sub-wrapper section .price-column {
  font-weight: bold;
  color: #00104B;
  margin-right: 0;
  text-align: right;
  white-space: nowrap;
}
#purchase-screen .step-content .shipping-form-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#purchase-screen .step-content .shipping-form-wrapper .sub-wrapper form {
  width: 60%;
}
#purchase-screen .step-content .shipping-form-wrapper .sub-wrapper form .item {
  margin-bottom: 15px;
}
#purchase-screen .step-content .shipping-form-wrapper .sub-wrapper form .item.two-column {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#purchase-screen .step-content .shipping-form-wrapper .sub-wrapper form .item .control {
  margin-right: 10px;
  width: 100%;
  background: #F3F3F3;
}
#purchase-screen .step-content .shipping-form-wrapper .sub-wrapper form .item .control:last-child {
  margin-right: 0;
}
#purchase-screen .step-content .shipping-form-wrapper .sub-wrapper form .item .postcode-message {
  font-size: 90%;
  margin-bottom: 20px;
}
#purchase-screen .step-content .checkout-form-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper {
  display: flex;
  min-width: 100%;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form .method-parent-wrapper {
  margin-bottom: 40px;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form .method-parent-wrapper.two-column {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: #F0F0F0;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form .method-parent-wrapper.two-column > div {
  width: 100%;
  padding: 30px;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form .method-parent-wrapper.two-column > div.method-wrapper {
  width: 75%;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form .method-parent-wrapper.two-column > div.chosen-method-wrapper {
  padding-top: 50px;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form input[type=radio] {
  margin-right: 15px;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form input[type=radio].uk-radio {
  background-color: #ffffff;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form input[type=radio].uk-radio:checked {
  background-color: #1e87f0;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form .item {
  margin-bottom: 15px;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form .item[data-name=pay_gateway_capayablegespreid] {
  display: none;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form .method-wrapper {
  background: #D7D7D7;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form .method-wrapper label {
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form .chosen-method-wrapper label {
  color: #00104B;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form .chosen-method-wrapper .control {
  width: 100%;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper form .action-wrapper {
  display: block;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper section {
  width: 100%;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper section.extra-info-wrapper {
  width: 60%;
  margin-left: 30px;
  margin-top: 57px;
  margin-right: 0;
}
#purchase-screen .step-content .checkout-form-wrapper .sub-wrapper section.extra-info-wrapper .step-extra-info {
  padding-top: 30px;
  width: 75%;
  min-width: 250px;
}

/* Template: Purchase
---------------------------------------------------------------------------------------------------------*/
#after-payment-screen {
  min-height: calc(100vh - 122px);
}
#after-payment-screen h3 {
  color: #212D6C;
  font-size: 25px;
  font-weight: bolder;
}
#after-payment-screen h3 small {
  color: #000000;
  font-size: 20px;
}
#after-payment-screen section.content {
  padding: 70px 20px 20px 0;
  font-size: 16px;
  color: #000000;
}
#after-payment-screen section.content p {
  margin-top: 0;
}
#after-payment-screen .product-list-wrapper {
  background: #F3F3F3;
  padding: 70px 20px 150px;
}
#after-payment-screen .product-list-wrapper section.orders {
  background: #FAFAFA;
  margin-bottom: 2px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
#after-payment-screen .product-list-wrapper section.orders .image-wrapper {
  display: flex;
  align-items: center;
  background: #010e1f;
  border-radius: 5px;
}
#after-payment-screen .product-list-wrapper section.orders .image-wrapper img.thumb {
  max-width: 65px;
  border-radius: 5px;
}
#after-payment-screen .product-list-wrapper section.orders article {
  padding-left: 15px;
  width: 100%;
}
#after-payment-screen .product-list-wrapper section.orders h4 {
  font-size: 15px;
  margin-bottom: 0;
  color: #212D6C;
  width: 160px;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  overflow: hidden;
}
#after-payment-screen .product-list-wrapper section.orders .type, #after-payment-screen .product-list-wrapper section.orders .price {
  display: inline-block;
  width: 100%;
  color: #00104B;
}
#after-payment-screen .product-list-wrapper section.orders .type {
  font-size: 13px;
}
#after-payment-screen .product-list-wrapper section.orders .price {
  font-size: 18px;
  font-weight: bold;
  padding: 15px 0 0;
}
#after-payment-screen .product-list-wrapper footer {
  margin: 20px 0;
}
#after-payment-screen .product-list-wrapper footer .total-wrapper {
  margin-bottom: 40px;
}
#after-payment-screen .product-list-wrapper footer .total-wrapper .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0 0;
}
#after-payment-screen .product-list-wrapper footer .total-wrapper .item.total {
  border: 2px solid #b6cedf;
  border-left: none;
  border-right: none;
  margin: 10px 0 30px;
  padding-bottom: 10px;
  font-size: 18px;
  color: #020F59;
  font-weight: bold;
}
#after-payment-screen .group {
  margin-bottom: 30px;
}
#after-payment-screen .group h5 {
  font-size: 20px;
  color: #212D6C;
  font-weight: bolder;
}
#after-payment-screen .group .item {
  display: inline-block;
  width: 100%;
}

/* Template: Instructional Videos
---------------------------------------------------------------------------------------------------------*/
#videos-screen {
  padding: 80px 0;
}
#videos-screen h2 {
  font-size: 45px;
  font-weight: bold;
  color: #2591DB;
  padding-left: 30px;
}
#videos-screen .item {
  display: inline-block;
  border-radius: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1607843137);
  overflow: hidden;
  font-size: 90%;
  text-align: center;
  margin: 15px 30px 30px;
}
#videos-screen .item:hover {
  cursor: pointer;
}
#videos-screen .item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
#videos-screen .item img {
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#videos-screen .item section {
  display: flex;
  flex-direction: row;
  position: relative;
  padding: 210px 30px 30px;
  min-width: 310px;
}
#videos-screen .item section .caption {
  width: 100%;
}

/* Offers Modal */
#videos-modal .uk-modal-dialog {
  padding: 0;
  min-width: 800px;
}
#videos-modal .uk-modal-dialog .uk-modal-close-default {
  top: -25px;
  right: -25px;
}

/* Template: Downloadable Offers
---------------------------------------------------------------------------------------------------------*/
#offers-screen {
  padding: 80px 0 180px;
}
#offers-screen h2 {
  font-size: 45px;
  font-weight: bold;
  color: #2591DB;
  padding-left: 30px;
}
#offers-screen .item {
  max-width: 380px;
  display: inline-block;
  position: relative;
  padding: 40px 15px 35px;
  overflow: hidden;
}
#offers-screen .item section {
  display: flex;
  flex-direction: row;
}
#offers-screen .item section .image-wrapper img {
  max-width: 150px;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1607843137);
}
#offers-screen .item section .content-wrapper {
  padding-left: 20px;
}
#offers-screen .item section .content-wrapper h3 {
  margin: 0 0 15px;
  font-size: 16px;
  color: #020F59;
  font-weight: 600;
}
#offers-screen .item section .content-wrapper .caption {
  font-size: 85%;
  color: #8E8E8E;
  margin-bottom: 20px;
}
#offers-screen .item section footer a {
  line-height: 45px;
  display: inline-block;
}
#offers-screen .item section footer a .icon {
  border-radius: 50%;
  width: 45px;
  background: #4CB6FF url("../images/icon-download.svg") no-repeat center;
  display: inline-block;
  margin-right: 10px;
}

/* Offers Modal */
#offers-modal .uk-modal-dialog {
  min-width: 763px;
}
#offers-modal .uk-modal-dialog .content .sub-content {
  display: flex;
  flex-direction: row;
  font-size: 90%;
}
#offers-modal .uk-modal-dialog .content .sub-content .cover-wrapper img {
  max-width: 190px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
}
#offers-modal .uk-modal-dialog .content .sub-content .fields-wrapper {
  padding-left: 20px;
  width: 100%;
}
#offers-modal .uk-modal-dialog .content .sub-content .fields-wrapper .item {
  margin-bottom: 10px;
}
#offers-modal .uk-modal-dialog .content .sub-content .fields-wrapper .item.two-column {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#offers-modal .uk-modal-dialog .content .sub-content .fields-wrapper .item.two-column input.control:last-child {
  margin-right: 0;
}
#offers-modal .uk-modal-dialog .content .sub-content .fields-wrapper .item p {
  margin: 20px 0;
}
#offers-modal .uk-modal-dialog .content .sub-content .fields-wrapper .item .control {
  margin-right: 10px;
}
#offers-modal .uk-modal-dialog .content .sub-content .fields-wrapper .item .button.light {
  color: #000000;
}

/* Template: About us
---------------------------------------------------------------------------------------------------------*/
#about-hero {
  height: 450px;
  background: linear-gradient(0deg, rgba(21, 29, 74, 0.85), rgba(21, 29, 74, 0.85)), url("../images/home-background.png") top center/cover;
  color: #ffffff;
  display: flex;
  align-items: center;
}
#about-hero h2 {
  color: #2591DB;
  font-size: 45px;
  text-align: center;
  font-weight: bold;
}

#about-screen {
  padding: 80px 0;
}
#about-screen h3 {
  color: #151D4A;
  font-weight: bold;
}
#about-screen .two-column {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#about-screen .two-column section {
  width: 100%;
}
#about-screen .two-column section:first-child {
  padding-right: 20px;
}
#about-screen .two-column section:last-child {
  padding-left: 20px;
}
#about-screen .two-column section.highlighted {
  background: #F3F3F3;
  border-radius: 20px;
  padding: 40px 20px;
}
#about-screen .two-column section.highlighted:first-child {
  margin-right: 15px;
}
#about-screen .two-column section.highlighted:last-child {
  margin-left: 15px;
}
#about-screen .two-column section iframe {
  width: 100%;
  min-width: 400px;
  max-height: 600px;
}

/* Template: FAQ
---------------------------------------------------------------------------------------------------------*/
#faq-hero {
  height: 410px;
  background: #F3F3F3;
  color: #8E8E8E;
  display: flex;
  align-items: center;
  text-align: center;
}
#faq-hero h2, #faq-hero h3 {
  font-weight: 600;
}
#faq-hero h2 {
  font-size: 25px;
  color: #2591DB;
}
#faq-hero h3 {
  font-size: 40px;
  color: #151D4A;
  margin-top: 0;
}
#faq-hero .search-content-wrapper {
  /* Input */
}
#faq-hero .search-content-wrapper .toggle-switch-wrapper {
  position: relative;
  margin-bottom: 20px;
}
#faq-hero .search-content-wrapper .switch-bar {
  position: relative;
  display: inline-block;
  cursor: pointer;
  /* Direct input element */
  /* Direct span element */
}
#faq-hero .search-content-wrapper .switch-bar > input {
  appearance: none;
  z-index: -1;
  position: absolute;
  right: 6px;
  top: -8px;
  display: block;
  margin: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.38);
  outline: none;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s 0.1s, transform 0.2s 0.1s;
  /* Input: checked */
  /* Input: active */
  /* Input: disabled */
}
#faq-hero .search-content-wrapper .switch-bar > input:checked {
  right: -10px;
  background-color: #85b8b7;
}
#faq-hero .search-content-wrapper .switch-bar > input:checked + span::before {
  background-color: #85b8b7;
}
#faq-hero .search-content-wrapper .switch-bar > input:checked + span::after {
  background-color: #018786;
  transform: translateX(16px);
}
#faq-hero .search-content-wrapper .switch-bar > input:checked:active + span::before {
  background-color: #85b8b7;
}
#faq-hero .search-content-wrapper .switch-bar > input:checked:disabled + span::before {
  background-color: #bfdbda;
}
#faq-hero .search-content-wrapper .switch-bar > input:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s;
}
#faq-hero .search-content-wrapper .switch-bar > input:active + span::before {
  background-color: #8f8f8f;
}
#faq-hero .search-content-wrapper .switch-bar > input:disabled {
  opacity: 0;
}
#faq-hero .search-content-wrapper .switch-bar > input:disabled + span::before {
  background-color: #ddd;
}
#faq-hero .search-content-wrapper .switch-bar > input:disabled + span::after {
  background-color: #61b5b4;
}
#faq-hero .search-content-wrapper .switch-bar > span {
  /* Track */
  /* Thumb */
}
#faq-hero .search-content-wrapper .switch-bar > span::before {
  content: "";
  display: inline-block;
  margin: 5px 0 5px 10px;
  border-radius: 7px;
  width: 36px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.38);
  vertical-align: top;
  transition: background-color 0.2s, opacity 0.2s;
}
#faq-hero .search-content-wrapper .switch-bar > span::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 16px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: #fff;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s, transform 0.2s;
}
#faq-hero .search-content-wrapper .search-box input[type=text] {
  width: 50%;
}

#faq-screen {
  padding: 80px 0;
}
#faq-screen h3 {
  color: #151D4A;
  font-weight: bold;
}
#faq-screen .faq-wrapper h3 {
  margin: 0 0 8px 8px;
}
#faq-screen .faq-wrapper ul {
  list-style-type: none;
  margin: 0 16px 0 0;
  padding: 0;
}
#faq-screen .faq-wrapper ul li {
  margin: 8px 0;
}
#faq-screen .faq-wrapper ul li h4 {
  padding: 5px 20px;
  background-color: #c1c1c1;
  font-size: 16px;
  color: #151D4A;
  font-weight: 600;
  margin: 0;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#faq-screen .faq-wrapper ul li .questions {
  display: none;
}
#faq-screen .faq-wrapper ul li .questions li {
  margin: 15px 0 15px 20px;
}
#faq-screen .faq-wrapper ul li .questions li a {
  display: block;
  color: #000;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#faq-screen .faq-wrapper ul li .questions li a:hover {
  color: #2591DB;
}
#faq-screen .faq-wrapper ul li .questions li a.active {
  color: #2591DB;
}
#faq-screen .faq-wrapper #faq-content, #faq-screen .faq-wrapper .faq-response:not(:empty) {
  margin: 10px 0px 0px;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  padding: 20px;
}
#faq-screen .faq-wrapper #faq-content h5, #faq-screen .faq-wrapper .faq-response:not(:empty) h5 {
  color: #151D4A;
  font-weight: 600;
  margin-bottom: 1em;
}

#faq-subfooter {
  padding: 80px 0;
}
#faq-subfooter .col-4 {
  display: flex;
  align-items: center;
}
#faq-subfooter .col-4 h4 {
  font-size: 35px;
  color: #151D4A;
  font-weight: bold;
  margin-left: 15px;
}
#faq-subfooter .col-4 .content {
  margin-left: 15px;
}
#faq-subfooter .col-4 .content img {
  width: 180px;
  margin-bottom: 1.5em;
}
#faq-subfooter .col-4 a {
  max-width: 180px;
  min-width: 180px;
  text-align: center;
  padding: 10px;
}

/* Template: Contact enquiry
---------------------------------------------------------------------------------------------------------*/
#contact-enquiry-screen {
  padding: 135px 0 0;
}
#contact-enquiry-screen h1 {
  color: #2591DB;
  font-weight: bold;
}
#contact-enquiry-screen h2 {
  font-size: 45px;
  font-weight: bold;
  color: #151D4A;
  margin-bottom: 30px;
  text-align: center;
}
#contact-enquiry-screen .wpcf7-form p {
  margin: 1em 0;
}
#contact-enquiry-screen .wpcf7-form span.wpcf7-list-item {
  margin: 0;
  display: block;
  line-height: 30px;
}
#contact-enquiry-screen .wpcf7-form span.wpcf7-list-item input[type=checkbox] {
  transform: scale(1.5);
  outline: none;
  margin-right: 5px;
}
#contact-enquiry-screen .wpcf7-form .wpcf7-text,
#contact-enquiry-screen .wpcf7-form .wpcf7-textarea,
#contact-enquiry-screen .wpcf7-form .wpcf7-number {
  background: #f1f1f1;
  outline: none;
  border: 1px solid #f1f1f1;
}

/* Template: Order History
---------------------------------------------------------------------------------------------------------*/
#order-history-screen {
  padding: 80px 0;
}
#order-history-screen h3 {
  color: #151D4A;
  font-weight: bold;
}
#order-history-screen h5 {
  font-weight: bold;
  margin: 0;
}
#order-history-screen h6 {
  font-weight: 600;
  margin: 0;
}
#order-history-screen .order-status {
  background-color: #4CB6FF;
  height: 40px;
  display: inline-block;
  position: relative;
  margin-top: 1.5em;
}
#order-history-screen .order-status.cancelled {
  background-color: #a00;
}
#order-history-screen .order-status.cancelled:after {
  color: #a00;
}
#order-history-screen .order-status.on-hold, #order-history-screen .order-status.pending {
  background-color: #b7b7b7;
}
#order-history-screen .order-status.on-hold:after, #order-history-screen .order-status.pending:after {
  color: #b7b7b7;
}
#order-history-screen .order-status.failed {
  background-color: #d0c21f;
}
#order-history-screen .order-status.failed:after {
  color: #d0c21f;
}
#order-history-screen .order-status:after {
  color: #4CB6FF;
  border-left: 20px solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  display: inline-block;
  content: "";
  position: absolute;
  right: -20px;
}
#order-history-screen .order-status .content {
  color: white;
  padding: 10px 2em;
  font-family: Arial;
  line-height: 40px;
  vertical-align: middle;
}
#order-history-screen .return-order-section {
  margin-top: 1.5em;
}
#order-history-screen .return-order-section a.button {
  padding: 6px 14px;
  margin-right: 10px;
}
#order-history-screen .return-order-section a.disabled {
  pointer-events: none;
}
#order-history-screen .return-order-section span {
  font-size: smaller;
  font-style: italic;
}
#order-history-screen .items {
  margin: 1.5em 0;
  color: #151D4A;
  padding: 10px;
  margin-right: 8px;
  border-bottom: #9d9d9d solid 1px;
}
#order-history-screen .items p {
  color: #151D4A;
  margin: 0;
  font-size: 14px;
}
#order-history-screen .items p.title {
  font-weight: 600;
  padding-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#order-history-screen .items p.sub-title {
  font-weight: 400;
  padding-bottom: 5px;
}
#order-history-screen .items p.price {
  font-weight: bold;
}
#order-history-screen .items .grid {
  margin-bottom: 10px;
}
#order-history-screen .items .grid .col-8 {
  background-color: #f9f9f9;
  border-bottom: solid 1px #c6c6c6;
}
#order-history-screen .items .grid .col-8 .col-2 {
  display: flex;
}
#order-history-screen .items .grid .col-8 .col-2 .image-column {
  height: 100%;
  display: flex;
  align-items: center;
  background: #010e1f;
  border-radius: 5px;
  margin-right: 1em;
}
#order-history-screen .items .grid .col-8 .col-10 {
  padding: 5px;
}

/* Template: Return Order
---------------------------------------------------------------------------------------------------------*/
#return-order-screen {
  padding: 80px 0;
}
#return-order-screen h3 {
  color: #151D4A;
  font-weight: bold;
  margin: 0 0 10px 0;
}
#return-order-screen h5 {
  font-weight: bold;
  margin: 0 0 10px 0;
}
#return-order-screen h6 {
  font-weight: bold;
  margin: 1em 0 1.5em 0;
}
#return-order-screen form .field-wrapper {
  margin: 10px 0;
}
#return-order-screen a {
  margin-bottom: 1em;
}
#return-order-screen .products-wrapper {
  padding-bottom: 80px;
}
#return-order-screen .products-wrapper section {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #CCCCCC;
  max-width: 80%;
  min-width: 450px;
  padding: 20px;
  background: #FAFAFA;
}
#return-order-screen .products-wrapper section > div {
  margin-right: 15px;
}
#return-order-screen .products-wrapper section h6 {
  margin-bottom: 15px;
  margin-top: 0;
  color: #020F59;
  font-weight: bold;
}
#return-order-screen .products-wrapper section .checkbox-column {
  display: flex;
  align-items: center;
}
#return-order-screen .products-wrapper section .image-column {
  display: flex;
  align-items: center;
  background: #010e1f;
  border-radius: 5px;
}
#return-order-screen .products-wrapper section .image-column img {
  max-width: 75px;
}
#return-order-screen .products-wrapper section .details-column {
  width: 100%;
}
#return-order-screen .products-wrapper section .price-column {
  font-weight: bold;
  color: #00104B;
  margin-right: 0;
  text-align: right;
  white-space: nowrap;
}

/* Template: Over Ons
---------------------------------------------------------------------------------------------------------*/
#over-ons-hero {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #151D4A;
}
#over-ons-hero::after {
  content: " ";
  background: url("../_assets/heroimg.jpg") center 36%/cover;
  opacity: 0.41;
  mix-blend-mode: overlay;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 0;
}
#over-ons-hero .grid {
  position: relative;
  z-index: 1;
}
#over-ons-hero .grid h2 {
  max-width: 808px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  color: white;
}

#over-ons-content {
  color: black;
}
#over-ons-content .section-2 {
  padding-top: 30px;
  padding-bottom: 30px;
  row-gap: 30px;
}
#over-ons-content .section-2 .col {
  margin-right: 8.33%;
}
#over-ons-content .section-2 .col-3 {
  margin-left: 8.33%;
}
#over-ons-content .section-2 img {
  border-radius: 10px;
}

.missie-en-visie-section {
  padding: 40px 0 45px;
  background-color: #F3F3F3;
  justify-content: space-between;
}
.missie-en-visie-section .missie-en-visie-hero .missie-en-visie-hero-inner {
  max-width: 363px;
}
.missie-en-visie-section .missie-en-visie-hero .flex {
  display: flex;
  column-gap: 34px;
}
.missie-en-visie-section .missie-en-visie-hero h2 {
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  color: black;
}
.missie-en-visie-section .col-2 {
  padding-left: 10px;
  padding-right: 10px;
}
.missie-en-visie-section .col-2 h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 17px;
  color: #151D4A;
}

.doe-mee-section {
  padding-top: 76px;
  padding-bottom: 40px;
  background-color: #212D6C;
  color: white;
}
.doe-mee-section .text-container h2 {
  margin-bottom: 0px;
  font-size: 30px;
  color: #5CC0FF;
  font-weight: 700;
}
.doe-mee-section img {
  border-radius: 50px;
  margin-top: -130px;
  margin-bottom: 30px;
  object-fit: cover;
}

.epb-academie-section {
  padding-top: 25px;
  padding-bottom: 50px;
}
.epb-academie-section .col-8 {
  font-size: 20px;
  margin-bottom: 35px;
}
.epb-academie-section h2 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
}
.epb-academie-section h3 {
  margin-bottom: 25px;
  font-weight: 700;
  color: #151D4A;
}
.epb-academie-section .col-3.media-container {
  margin-bottom: 20px;
}
.epb-academie-section .col-3.media-container img {
  border-radius: 10px;
}
.epb-academie-section .col.text-container {
  margin-right: 8.33%;
}
.epb-academie-section .ebp-academie-screenshots {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.epb-academie-section .ebp-academie-screenshots figure {
  margin: 0px;
}
.epb-academie-section .ebp-academie-screenshots figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.16);
}

/* Template: Uitgelicht/Featured
---------------------------------------------------------------------------------------------------------*/
#uitgelicht-content {
  color: black;
}
#uitgelicht-content .section-1 {
  padding-top: 30px;
  padding-bottom: 40px;
}
#uitgelicht-content .section-1 h1 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
}
#uitgelicht-content .section-1 h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 25px;
  color: #151D4A;
}
#uitgelicht-content .section-1 p {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}
#uitgelicht-content .section-2 {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #F3F3F3;
  row-gap: 20px;
}
#uitgelicht-content .section-2 .grid {
  row-gap: 20px;
}
#uitgelicht-content .section-2 .grid .text-container h3 {
  font-size: 25px;
  font-weight: 700;
  color: #151D4A;
  margin-bottom: 20px;
}
#uitgelicht-content .section-2 .grid .text-container p {
  margin-top: 0px;
  margin-bottom: 0px;
}
#uitgelicht-content .section-2 .grid .media-container img {
  border-radius: 5px;
}
@media (min-width: 1024px) {
  #uitgelicht-content .section-2 .grid .media-container {
    padding-left: 32px;
  }
}

/* Template: Hoe werkt klinischredeneren.nl / De Orgaansysteem
---------------------------------------------------------------------------------------------------------*/
#hoe-werkt-content h1, #de-orgaansystemen-content h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0px 0px 30px;
}
#hoe-werkt-content .section-1, #de-orgaansystemen-content .section-1 {
  padding-top: 30px;
  padding-bottom: 50px;
}
#hoe-werkt-content .section-1 .thumbs-container, #de-orgaansystemen-content .section-1 .thumbs-container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  row-gap: 20px;
  column-gap: 20px;
}
#hoe-werkt-content .section-1 .thumbs-container .single-link, #de-orgaansystemen-content .section-1 .thumbs-container .single-link {
  border-radius: 10px;
  overflow: hidden;
  transform: scale(0.98);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.16);
  transition: 0.2s ease;
}
#hoe-werkt-content .section-1 .thumbs-container .single-link a, #de-orgaansystemen-content .section-1 .thumbs-container .single-link a {
  color: black;
}
#hoe-werkt-content .section-1 .thumbs-container .single-link a img, #de-orgaansystemen-content .section-1 .thumbs-container .single-link a img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  max-height: 400px;
}
#hoe-werkt-content .section-1 .thumbs-container .single-link a p, #de-orgaansystemen-content .section-1 .thumbs-container .single-link a p {
  text-align: center;
  margin: 0px;
  padding: 20px 10px;
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
}
#hoe-werkt-content .section-1 .thumbs-container .single-link:hover, #de-orgaansystemen-content .section-1 .thumbs-container .single-link:hover {
  transform: scale(1);
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.07);
}
#hoe-werkt-content .section-1 .thumbs-container .single-link:active, #de-orgaansystemen-content .section-1 .thumbs-container .single-link:active {
  transform: scale(0.96);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
}
#hoe-werkt-content .section-2, #de-orgaansystemen-content .section-2 {
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: #F3F3F3;
  row-gap: 20px;
}
#hoe-werkt-content .section-2 h3, #de-orgaansystemen-content .section-2 h3 {
  margin: 0px 0px 20px;
  color: #151D4A;
  font-size: 25px;
  font-weight: 700;
}
#hoe-werkt-content .section-2 p, #de-orgaansystemen-content .section-2 p {
  margin: 0;
}

/* Template: Animaties Archive
---------------------------------------------------------------------------------------------------------*/
#animaties-content h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0px 0px 30px;
}
#animaties-content .section-1 {
  padding-top: 30px;
  padding-bottom: 50px;
}
#animaties-content .section-1 p {
  font-size: 20px;
  margin-bottom: 0px;
}
#animaties-content .section-2 {
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: #F3F3F3;
  row-gap: 20px;
}
#animaties-content .section-2 .list-container {
  row-gap: 40px;
}
#animaties-content .section-2 .list-container .media-container {
  flex: 1 0 100%;
}
#animaties-content .section-2 .list-container .media-container img {
  width: 100%;
}
#animaties-content .section-2 .list-container .details-container h3 {
  margin: 20px 0px 20px;
  font-size: 25px;
  font-weight: 700;
}
#animaties-content .section-2 .list-container .details-container h3 a {
  color: #151D4A;
}
#animaties-content .section-2 .list-container .details-container p {
  margin: 20px 0;
}
#animaties-content .section-2 .list-container .details-container a.read-more {
  font-weight: 600;
  text-decoration: underline;
}

/* Template: Default Single
---------------------------------------------------------------------------------------------------------*/
.single #main-content {
  padding-top: 30px;
  padding-bottom: 80px;
}
.single .blog-media {
  padding-right: 0;
  margin-bottom: 20px;
}
.single .blog-media img {
  width: 100%;
}
.single .blog-content {
  padding-left: 0;
}
.single h1 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 25px;
  color: #151d4a;
}

/* bpopup Popup Styling
---------------------------------------------------------------------------------------------------------*/
.overlay-target {
  display: none;
  padding: 0px 5px;
  transform: translate(0px, -50%);
  top: 50% !important;
  background: #fff url(images/loading.svg) center no-repeat;
}
.overlay-target span.b-close {
  position: absolute;
  top: -20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
  right: -20px;
  color: white;
  font-size: 22px;
  font-weight: 700;
  background: black;
}

/* Pagination
---------------------------------------------------------------------------------------------------------*/
.page-info {
  display: none;
}

.wp-pagenavi {
  width: 100%;
  display: flex;
  column-gap: 24px;
  width: 100%;
  justify-content: center;
}
.wp-pagenavi .page, .wp-pagenavi span.current {
  display: flex !important;
  border-radius: 80px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  background-color: white;
  color: #B4B4B4;
  border: unset;
}
.wp-pagenavi span.current {
  display: block;
  background-color: #00104B;
  color: white;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  display: none;
}

/* Back Button
---------------------------------------------------------------------------------------------------------*/
.back-btn-container {
  padding-bottom: 50px;
}
.back-btn-container a.back-btn {
  display: block;
  width: fit-content;
  background-color: #4EBBFF;
  padding: 10px 17px 12px;
  border-radius: 5px;
}
.back-btn-container a.back-btn:active {
  transition: 0.2s ease;
  box-shadow: inset 0 0px 10px 5px rgba(0, 0, 0, 0.15);
}

/* Newsletter Box
---------------------------------------------------------------------------------------------------------*/
.newsletter-box {
  background-color: #F3F3F3;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (max-width: 1024px) {
  .newsletter-box {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.newsletter-box h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 17px;
}
@media (max-width: 1024px) {
  .newsletter-box h2 {
    font-weight: 600;
  }
}
.newsletter-box .col-4 > p {
  font-size: 18px;
  max-width: 530px;
  margin-bottom: 32px;
}
.newsletter-box .wpcf7-form p {
  display: flex;
  gap: 20px;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .newsletter-box .wpcf7-form p {
    flex-direction: column;
  }
}
.newsletter-box .wpcf7-form p .your-email {
  flex: 1 1 auto;
}
.newsletter-box .wpcf7-form p .your-email::before {
  content: url("../assets/img/mail-icon.svg");
  position: absolute;
  left: 20px;
  top: -56%;
  transform: translateY(50%);
  width: 100px;
  height: 100px;
  z-index: 0;
}
.newsletter-box .wpcf7-form p input {
  border-radius: 5px;
  padding: 18px 24px;
  border: none;
  font-size: 18px;
}
.newsletter-box .wpcf7-form p input.wpcf7-email {
  padding-left: 67px;
}
.newsletter-box .wpcf7-form p input.wpcf7-submit {
  font-weight: 700;
  color: white;
  background-color: #2591DB;
}
.newsletter-box .wpcf7-form p br {
  display: none;
}

/* Contact Map
---------------------------------------------------------------------------------------------------------*/
.contact-map-container {
  background-color: #020F59;
  height: auto;
  align-items: center;
}
.contact-map-container .details-column {
  position: relative;
  padding: 40px 0px;
}
.contact-map-container .details-column h2 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #2591DB;
}
.contact-map-container .details-column ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 33px;
  list-style-type: none;
}
.contact-map-container .details-column ul li {
  color: white;
  position: relative;
}
.contact-map-container .details-column ul li span.custom-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  left: -33px;
  top: 3px;
  background-size: contain;
  background-repeat: no-repeat;
}
.contact-map-container .details-column ul li span.custom-icon.icon-mail {
  background-image: url(../images/icon-mail.svg);
}
.contact-map-container .details-column ul li span.custom-icon.icon-phone {
  background-image: url(../images/icon-phone.svg);
}
.contact-map-container .details-column ul li span.custom-icon.icon-map {
  background-image: url(../images/icon-map.svg);
}
.contact-map-container .details-column ul li a {
  color: white;
}
.contact-map-container .details-column ul li span.semi-bold {
  display: block;
  font-weight: 600;
}
.contact-map-container .map-column iframe {
  width: 100%;
  height: 200px;
}

/* Mobile Login/Register
---------------------------------------------------------------------------------------------------------*/
.mb-register-pane {
  text-align: center;
  padding: 20px 0px 40px;
}
.mb-register-pane h4 {
  font-size: 24px !important;
  font-weight: 600;
  margin-bottom: 15px;
}
.mb-register-pane p {
  color: white;
  margin-bottom: 10px;
}

/* Mobile Header Menu
---------------------------------------------------------------------------------------------------------*/
header {
  position: relative;
  /* mobile menu */
}
header .hamburger {
  position: fixed;
  z-index: 99999;
  right: 8.3333%;
  width: 40px;
  height: 40px;
  display: block;
  margin-top: 0.5%;
  border: 1px solid #E9E9E9;
  padding: 5px 9px;
  border-radius: 3px;
  transition: 0.4s ease;
}
header .hamburger span {
  position: absolute;
  height: 3px;
  top: calc(50% - 2px);
  width: calc(100% - 17px);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #002169;
}
header .hamburger span::before, header .hamburger span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: #002169;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
header .hamburger span::before {
  top: 8px;
}
header .hamburger span::after {
  top: -8px;
}
header .hamburger.active {
  background-color: #2591DB;
  border-radius: 23px;
}
header .hamburger.active span {
  background: transparent;
  height: 0px;
}
header .hamburger.active span::before {
  transform: rotate(-45deg);
  top: 0;
  background: #fff;
}
header .hamburger.active span::after {
  transform: rotate(45deg);
  top: 0;
  background: #fff;
}
header .menu-container {
  text-align: center;
  padding-bottom: 0;
  width: 70%;
  opacity: 0;
  position: absolute;
  right: -8.33333%;
  max-width: 100% !important;
  height: calc(100vh - 90px);
  top: 90px;
  background: white;
  transition: 0.4s ease;
  pointer-events: none;
}
header .menu-container.active {
  width: 100%;
  opacity: 1;
  pointer-events: all;
}
header .menu-container nav {
  flex-direction: column-reverse;
  height: 100%;
}
header .menu-container nav .menu-primary-container {
  width: 100%;
  overflow: scroll;
}
header .menu-container nav .menu-primary-container #menu-primary {
  padding-left: 0px;
}
header .menu-container nav .menu-primary-container #menu-primary li {
  display: block;
  padding: 8px 0px;
  text-align: center;
  border-bottom: 1px solid #d8d8d8;
}
header .menu-container nav .menu-primary-container #menu-primary li a {
  display: block;
}
header .menu-container nav .menu-primary-container #menu-primary li.my-account.menu-item {
  display: none;
}
header .menu-container nav .actions-wrapper {
  display: flex;
  width: 100%;
  padding: 20px 8.33333% 10px;
  justify-content: right;
  gap: 10px;
}
header .menu-container nav .actions-wrapper .elearning-courses {
  margin: 0 auto 0 0;
}
header .menu-container nav .actions-wrapper .elearning-courses a {
  background-color: #2591DB;
  white-space: nowrap;
}
header .menu-container nav .actions-wrapper .elearning-account a {
  background-color: #212D6C;
}

/* Package Content */
.product__package-button {
  border: none;
  display: inline-block;
  width: 15px;
  line-height: 15px;
  vertical-align: middle;
  border-radius: 50%;
  background: gray;
  color: #fff;
}
.product__package-content h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 1rem;
  padding: 0;
}
.product__package-content ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

@media (max-width: 1024px) {
  #main-content.home-bg {
    padding-top: 50px;
  }
  .hide-mobile {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */
