:root {
  --blue-color: #005eac;
  --blue-color-lighter: #0074d5;
  --blue-color-darker: #014d8d;
  --font-color: #004279;
  --yellow-color: #fbea10;
  --yellow-color-darker: #eedc00;
  --body-color: #fafafa;
  --white-color: #fafafa;
  --max-width: 1200px;
  --max-width-blog: 800px;
  --main-font: 'Rajdhani', sans-serif;
  --light-blue-color: #e8eff6;
  --clip-10px-bottom-right: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img.lazy {
  opacity: 0;
  transition: all 2s;
}
img.lazy.in-viewport {
  opacity: 1;
}
.lazy-content {
  opacity: 1;
  transition: all 2s;
}
.lazy-content.outside-viewport {
  opacity: 0;
}
.x2column.lazy-content .col.image {
  transform: translateX(0);
  transition: all 1s;
}
.x2column.lazy-content.outside-viewport .col.image {
  transform: translateX(-20%) !important;
}
.x2column.lazy-content.outside-viewport .reverse .col.image {
  transform: translateX(20%) !important;
}
div.form-modal.opened {
  display: flex;
}
div.form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(38, 52, 66, 0.8);
  display: none;
  padding: 0 10px;
}
body {
  font-family: var(--main-font);
  background: var(--body-color);
  color: var(--font-color);
  padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body.no-scroll {
  overflow: hidden;
}
h1 {
  font-size: 3em;
  text-transform: uppercase;
  line-height: 1.1em;
}
h2 {
  font-size: 2em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2em;
}
h3 {
  font-size: 1.75em;
  text-transform: uppercase;
  font-weight: 700;
}
h4 {
  font-size: 1.5em;
  text-transform: none;
  font-weight: 700;
  margin: 0 0 15px 0;
}
.ccm-page a {
  text-decoration: none;
  color: var(--blue-color);
  border-bottom: 1px dotted var(--blue-color);
}
a.big-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
a:hover {
  color: var(--font-color);
}
p {
  line-height: 1.75em;
  margin: 1em 0;
  font-size: 1em;
  font-weight: 500;
}
/* Base Button Styles */
.btn-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.btn-title {
  font-size: 1.675em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 1em;
}
.btn-description {
  font-weight: 600;
  font-size: 0.875em;
}
.ccm-page .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}
/* Small Button (.btn-sm) */
.ccm-page .btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  /* 14px */
}
/* Large Button (.btn-lg) */
.ccm-page .btn-lg {
  padding: 0.75rem 1.25rem;
  border: none;
}
.ccm-page .btn-primary {
  background-color: var(--yellow-color);
  /* Bootstrap Primary Blue */
  border: none;
  color: var(--blue-color);
}
.ccm-page .btn-primary:hover {
  color: var(--yellow-color);
  background-color: var(--blue-color);
}
.btn-primary:active {
  background-color: var(--yellow-color-darker);
}
.btn-secondary {
  background-color: #6c757d;
  /* Bootstrap Gray */
  border: none;
  color: var(--blue-color);
}
.btn-secondary:hover {
  background-color: #5a6268;
}
.btn-secondary:active {
  background-color: #4e555b;
}
.btn-outline-primary {
  background-color: transparent;
  color: var(--yellow-color);
  border: 1px solid var(--yellow-color);
}
.btn-outline-primary:hover {
  background-color: var(--yellow-color);
  color: var(--blue-color);
}
.btn-outline-secondary {
  background-color: transparent;
  color: #6c757d;
  border: 1px solid #6c757d;
}
.btn-outline-secondary:hover {
  background-color: #6c757d;
  color: #fff;
}
.ccm-page ol {
  counter-reset: list-counter;
  /* Reset the counter */
  list-style: none;
  /* Remove default numbering */
  padding: 0;
  margin: 0;
}
.ccm-page ol li {
  counter-increment: list-counter;
  position: relative;
  margin-bottom: 15px;
  font-size: 1em;
  background: var(--light-blue-color);
  padding: 30px;
  border-radius: 5px;
  font-weight: 500;
  line-height: 1.75em;
}
.ccm-page ol li:before {
  content: counter(list-counter);
  position: absolute;
  left: -5px;
  top: 10px;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--blue-color);
  font-size: 18px;
  background: var(--yellow-color);
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--body-color);
}
.lhs ul {
  list-style: none;
  margin: 30px 0;
}
.lhs ul li {
  font-weight: 600;
  margin: 0.5em 0;
  position: relative;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.lhs ul li:before {
  content: '\f061';
  font-family: 'Font Awesome 5 Pro';
  flex: 0 0 24px;
  background: var(--yellow-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  position: relative;
  top: -2px;
}
.max-width {
  max-width: var(--max-width);
  margin: 0 auto;
}
.hatched {
  position: relative;
}
.hatched:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/application/themes/aurora/assets/diagonals-6px-white.png);
  image-rendering: pixelated;
  opacity: 0.15;
  pointer-events: none;
}
@media screen and (max-width: 720px) {
  h1 {
    font-size: 2.5em;
  }
}
/* HEADER */
header#main-header.nav-up {
  transform: translateY(-100%);
}
/* Top Header */
header#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  transition: all 0.3s;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
/* Bottom Header */
header#main-header .bottom-header {
  padding: 0 5%;
  position: relative;
  height: auto;
  transition: all 0.3s;
  background: var(--blue-color);
  border-bottom: 8px solid var(--yellow-color);
}
header#main-header .bottom-header .wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  height: 110px;
}
header#main-header div.logo {
  width: 240px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}
header#main-header div.logo a {
  display: block;
  height: auto;
  width: 100%;
  transition: all 0.3s;
  border: none;
}
header#main-header div.logo a img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  transition: all 0.3s;
}
header#main-header div.contact-details {
  position: absolute;
  top: 50%;
  right: 0;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 20px;
  transform: translateY(calc(-50% - 16px));
}
header#main-header div.contact-details .opening-hours {
  font-weight: 600;
  text-transform: uppercase;
}
header#main-header div.contact-details .telephone a {
  font-size: 1.5em;
  font-weight: 700;
  border: none;
  color: var(--yellow-color);
}
@media screen and (max-width: 860px) {
  header#main-header .bottom-header .wrapper {
    height: 90px;
  }
  header#main-header div.contact-details {
    display: none;
  }
}
/* SLIDER (HOMEPAGE) */
.rslides_tabs li {
  margin: 0 2px;
}
.rslides_tabs li a {
  border-radius: 0;
  height: 4px;
  width: 24px;
}
.rslides_tabs li.rslides_here a {
  background: var(--yellow-color);
}
/* TWO COLUMN SERVICE PAGE */
section.two-col {
  padding: 45px 5%;
}
section.two-col .row {
  display: flex;
  gap: 5%;
  position: relative;
  align-items: flex-start;
}
section.two-col .row .lhs {
  width: 65%;
}
section.two-col .row .rhs {
  width: 30%;
  position: sticky;
  top: 200px;
}
@media screen and (max-width: 920px) {
  section.two-col .row {
    flex-direction: column;
    gap: 45px;
  }
  section.two-col .row .lhs {
    width: 100%;
  }
  section.two-col .row .rhs {
    width: 100%;
    position: relative;
    top: 0;
  }
}
/* FOOTER */
footer#footer {
  padding: 30px 5% 90px 5%;
  border-top: 4px solid var(--yellow-color);
  background: var(--blue-color);
}
footer#footer .row {
  display: flex;
  gap: 30px;
}
footer#footer .row.footer-cols {
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
}
footer#footer .col.col-3 {
  width: 24%;
}
footer#footer .col.col-3 p {
  color: var(--yellow-color);
  font-weight: 600;
  margin: 10px 0;
  line-height: 1.75em;
}
footer#footer .col.col-3 ul {
  margin: 10px 0;
  list-style: none;
}
footer#footer .col.col-3 ul li {
  color: #fff;
  font-weight: 600;
  line-height: 1.75em;
}
footer#footer .row.footer-cols a {
  font-weight: 600;
  color: #fff;
}
footer#footer .row.footer-cols a i {
  color: var(--yellow-color);
}
@media screen and (max-width: 1023px) {
  footer#footer .col.col-3 {
    width: 100%;
  }
  footer#footer .col.hide-mobile {
    display: none;
  }
}
footer#footer hr {
  display: block;
  width: 100%;
  border: none;
  height: 1px;
  background-color: var(--blue-color-lighter);
  margin: 15px 0;
}
footer#footer p.credit {
  color: #fff;
  font-size: 0.75em;
  font-weight: 600;
}
footer#footer p.credit a {
  color: #fff;
}
footer#footer p.credit a:hover {
  color: var(--yellow-color);
}
a.feature-link {
  display: flex;
  color: var(--yellow-color);
  position: relative;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 0;
  font-weight: 700;
  transition: all 0.3s;
}
a.feature-link:hover {
  color: #fff;
}
a.feature-link.government:before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background-image: url('/application/themes/aurora/assets/government-logo.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
a.feature-link.ombudsman:before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background-image: url('/application/themes/aurora/assets/ombudsman-logo.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
a.feature-link.facebook:before {
  content: '\f39e';
  font-family: 'Font Awesome 5 Brands';
  color: #fff;
  font-size: 1.75em;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  footer#footer .row.feature-links {
    flex-direction: column;
    gap: 0;
  }
  a.feature-link.facebook:before {
    padding: 0 10px;
  }
}
/* FORM MODAL */
div.form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(38, 52, 66, 0.8);
  display: none;
  padding: 0 10px;
}
div.form-modal.opened {
  display: flex;
}
div.form-modal h2 {
  color: var(--second-color);
  border-radius: 5px;
}
div.form-modal .wrapper {
  width: 100%;
  max-width: 860px;
  background: var(--body-color);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.5);
  max-height: 80vh;
  overflow: scroll;
}
div.form-modal .ccm-dashboard-express-form {
  display: flex;
  justify-content: space-between;
}
div.form-modal .ccm-block-express-form fieldset {
  width: calc(50% - 10px);
  margin: 20px 0 0 0;
}
div.form-modal .mb-3 {
  margin-bottom: 20px;
}
div.form-modal textarea {
  height: 217px;
}
div.form-modal span.small {
  font-size: 0.75em;
}
div.form-modal .form-actions {
  text-align: right;
}
div.form-modal .form-group.captcha {
  margin: 0;
  transform: scale(0.7);
}
@media screen and (max-width: 900px) {
  div.form-modal .wrapper {
    overflow: auto;
    max-height: 80vh;
  }
  div.form-modal .ccm-dashboard-express-form {
    flex-direction: column;
  }
  div.form-modal .ccm-block-express-form fieldset {
    width: 100%;
    margin: 20px 0 0 0;
  }
}
/* CONTACT FORM */
.form-modal fieldset {
  border: none;
}
.form-modal legend {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 0 5px 0;
  display: block;
}
.form-modal label {
  font-size: 1em;
  font-weight: 500;
  margin: 0 0 3px 0;
  display: block;
}
.form-disclaimer {
  margin: 35px 0 0 0;
  position: relative;
}
.form-modal .form-check {
  display: flex;
}
.form-modal .form-check-input {
  width: 16px;
  height: auto;
  margin: 0 10px 0 0;
  top: -2px;
  position: relative;
}
.form-disclaimer p {
  margin: 0 0 5px 0;
}
.form-modal select {
  padding: 10px;
  width: 100%;
  background: #fff;
  border: 1px solid #d5dbdf;
}
::-webkit-input-placeholder {
  color: var(--font-color);
}
section.contact-form {
  padding: 45px 5%;
}
section.contact-form .max-width {
  margin: 0 auto;
}
section.contact-form .ccm-block-express-form {
  padding: 0;
  margin: 45px 0;
  border-radius: 3px;
}
section.contact-form .ccm-block-express-form form {
  max-width: var(--max-width);
  margin: 0 auto;
}
section.contact-form .ccm-dashboard-express-form {
  display: flex;
  margin: 0 -2.5% 0 -2.5%;
}
section.contact-form fieldset {
  width: 95%;
  margin: 0 2.5%;
  border: none;
}
section.contact-form fieldset legend {
  display: none;
}
section.contact-form .form-group {
  margin-bottom: 20px;
}
section.contact-form input {
  font-family: var(--main-font);
}
section.contact-form select,
.list-filter select {
  padding: 12px;
  font-family: var(--main-font);
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'), linear-gradient(158deg, #fbb80c 0%, #f07c4c 35%, #eb5b82 100%);
  color: #fff;
  border-radius: 3px;
  width: 100%;
  height: 47px;
  font-size: 1.125em;
  background-position: right .7em top 50%, 0 0;
  background-repeat: no-repeat;
  background-size: 12px auto, 100%;
  transition: all 0.3s;
}
section.contact-form select:hover,
.list-filter select:hover,
.store-product-block select:hover,
.store-checkout-page select:hover,
.store-checkout-page select:focus {
  box-shadow: 0 0 12px #e1cb3b, 0 0 2px #e1cb3b;
}
section.contact-form input[type=text],
section.contact-form input[type=tel],
section.contact-form input[type=email],
section.contact-form textarea {
  padding: 14px 14px 14px 40px;
  border: none;
  border-radius: 3px;
  transition: all 0.3s;
  font-size: 1em;
  color: var(--font-color);
  -webkit-appearance: none;
  display: block;
  width: 100%;
  background: var(--body-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset;
  font-family: var(--main-font);
  border: 2px solid transparent;
}
section.contact-form div.input {
  position: relative;
}
section.contact-form div.input:after {
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--font-color);
  font-family: 'Font Awesome 5 Pro';
  font-size: 1.25em;
  transition: all 0.3s;
  font-weight: 300;
}
div.input {
  position: relative;
}
.form-modal .ccm-attribute-address-composer-wrapper {
  width: 100%;
}
.form-modal fieldset.mb-3 {
  width: 100% !important;
}
div.input input,
.form-modal input {
  padding: 10px 15px 10px 36px;
  width: 100%;
  border: 1px solid #d5dbdf;
  border-radius: 2px;
}
div.input textarea {
  padding: 10px 15px 10px 36px;
  width: 100%;
  border: 1px solid #d5dbdf;
  border-radius: 2px;
}
div.input:after {
  position: absolute;
  left: 0;
  font-family: 'Font Awesome 5 Pro';
  color: var(--light-grey);
  top: 50%;
  transform: translate(10px, -50%);
}
div.input.first-name:after,
div.input.last-name:after,
div.input.name:after {
  content: '\f007';
}
div.input.email:after {
  content: '\f2b6';
}
div.input.phone-number:after {
  content: '\f095';
}
div.input.address:after {
  content: '\f3c5';
}
div.input.search:after {
  content: '\f002';
}
div.input.message:after {
  top: 10px !important;
  transform: none !important;
  content: '\f303';
}
section.contact-form textarea {
  min-height: 417px;
}
/* Hide arrow icon in IE browsers */
section.contact-form select::-ms-expand {
  display: none;
}
section.contact-form input[type=text]:hover,
section.contact-form input[type=tel]:hover,
section.contact-form input[type=email]:hover,
section.contact-form textarea:hover {
  background: var(--body-color);
  border: 2px solid #fff;
}
section.contact-form input[type=text]:focus,
section.contact-form input[type=tel]:focus,
section.contact-form input[type=email]:focus,
section.contact-form textarea:focus {
  background: var(--body-color);
  outline: none;
  border: 2px solid var(--second-color);
}
section.contact-form label {
  line-height: 1.5em;
  margin: 0 0 5px 0;
  color: var(--font-color);
  font-size: 1em;
  font-weight: 500;
  display: inline-block;
  user-select: none;
}
section.contact-form span.small {
  font-size: 0.65em;
  color: #ed6b68;
}
section.contact-form .form-actions {
  margin-top: 30px;
  padding: 0 2px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  section.contact-form .ccm-dashboard-express-form {
    flex-direction: column;
    margin: 0 -2.5% 0 -2.5%;
  }
  section.contact-form textarea {
    min-height: 150px;
  }
}
