@font-face {
  font-family: 'PP Pangram Sans';
  src: url('./font/PPPangramSans-Bold.eot');
  src: url('./font/PPPangramSans-Bold.eot?#iefix') format('embedded-opentype'),
      url('./font/PPPangramSans-Bold.woff2') format('woff2'),
      url('./font/PPPangramSans-Bold.woff') format('woff'),
      url('./font/PPPangramSans-Bold.ttf') format('truetype'),
      url('./font/PPPangramSans-Bold.svg#PPPangramSans-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  letter-spacing: normal;
}

@font-face {
  font-family: 'PP Pangram Sans';
  src: url('./font/PPPangramSans-Regular.eot');
  src: url('./font/PPPangramSans-Regular.eot?#iefix') format('embedded-opentype'),
      url('./font/PPPangramSans-Regular.woff2') format('woff2'),
      url('./font/PPPangramSans-Regular.woff') format('woff'),
      url('./font/PPPangramSans-Regular.ttf') format('truetype'),
      url('./font/PPPangramSans-Regular.svg#PPPangramSans-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  letter-spacing: normal;
}

@font-face {
  font-family: 'PP Right Grotesk Tall';
  src: url('./font/PPRightGrotesk-TallMedium.eot');
  src: url('./font/PPRightGrotesk-TallMedium.eot?#iefix') format('embedded-opentype'),
      url('./font/PPRightGrotesk-TallMedium.woff2') format('woff2'),
      url('./font/PPRightGrotesk-TallMedium.woff') format('woff'),
      url('./font/PPRightGrotesk-TallMedium.ttf') format('truetype'),
      url('./font/PPRightGrotesk-TallMedium.svg#PPRightGrotesk-TallMedium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  letter-spacing: normal;
}

:root :where(body),
body {
	background-color: #FFF;
  color:var(--theme-color);
	font-weight: 400;
	font-size: 1em;
	font-family: "PP Pangram Sans";
	font-smooth: always;
	outline: transparent;
	/* -webkit-font-smoothing: antialiased; */
	/* font-smoothing: antialiased; */
	line-height: normal;
  margin: 0;
}

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

a {
  text-decoration: none;
  color:var(--theme-color);
}
h1, h2, h3, h4, h5 {
  font-family: 'PP Right Grotesk Tall';
  font-weight:500;
  line-height:0.8em;
  color:var(--theme-color);
}
h1 {
  font-size: 4em;
  color: var(--theme-color);
}

.introTitle h1 {
  font-family: "PP Pangram Sans";
  font-size: 1.4em;
  font-weight: 600;
  color:var(--theme-color);
}

h2 {
  font-size: 3.4em;
}

h3 {
  font-size: 2.6em;
}

h4 {
  font-size: 2em;
}
h5 {
  font-size: 1.6em;
}

h1 span {
  color: var(--theme-red);
}

div {
  display: block;
}

.d-none {
  display: none;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

select,
input,
textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  margin-bottom: 30px;
}

select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 99%;
  background-position-y: 6px;
}

.text-start, .text-left {
  text-align: left;
}

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

.text-end, .text-right {
  text-align: right;
}

.wrap button.blank,
.introTitle button.blank {
  background: none;
  border: none;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-inactive,
.wrap button:not(.blank),
.wrap a.button:not(.blank),
.introTitle button:not(.blank),
.introTitle a.button:not(.blank) {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 1rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;

  border-radius: 6px;
  color: #FFF;
  background-color: var(--theme-red);
  border-color: var(--theme-red);
}

.introTitle button.disabled,
.introTitle a.button.disabled,
.wrap button.disabled,
.wrap a.button.disabled {
  background-color: #CCC;
  border-color: #CCC;
}

.btn.btn-inactive,
.btn.btn-secondary,
button.btn.btn-secondary,
.btn.btn-primary:hover {
  background: #000;
  border-color: #000;
}


.btn.btn-inactive {
  background: #DDD;
  border-color: #DDD;
}

.btn.btn-secondary:hover {
  background: #212529;
  border-color: #333;
}

.btn.btn-primary.bordered {
  background-color: transparent;
  color: var(--theme-red);
}

.btn.btn-primary.bordered:hover {
  color: #000;
}

.btn.btn-secondary.bordered {
  background-color: transparent;
  color: #000;
}

.btn.btn-inactive.bordered {
  background-color: transparent;
  color: #CCC;
}

.btn.btn-secondary.bordered:hover {
  color: var(--theme-red);
}

.introTitle a.button.black:not(.blank),
.wrap button.black:not(.blank),
.wrap a.button.black:not(.blank) {
  background: #000;
  border-color: #000;
}

.introTitle a.button:hover,
.introTitle a.button:focus,
.wrap a.button:hover,
.wrap a.button:focus,
.introTitle a.button:hover,
.introTitle a.button:focus {
  background-color: #000;
  border-color: #000;
}

.wrap a.button.bordered:not(.blank),
.introTitle a.button.bordered:not(.blank) {
  background: transparent;
  color: var(--theme-red);
}

.wrap a.button.bordered:not(.blank):hover,
.wrap a.button.bordered:not(.blank):focus,
.introTitle a.button.bordered:not(.blank):hover,
.introTitle a.button.bordered:not(.blank):focus {
  color: #000;
}

.wrap a.button.bordered.black:not(.blank),
.introTitle a.button.bordered.black:not(.blank) {
  color: #000;
}

.wrap a.button.black:not(.blank):hover,
.wrap a.button.black:not(.blank):focus,
.introTitle a.button.black:not(.blank):hover,
.introTitle a.button.black:not(.blank):focus {
  background-color: #333;
  border-color: #333;
  color: #FFF;
}

.wrap form label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 220px;
}

.wrap form label.mw-100 {
  max-width: 100%;
}

.formRow {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  box-sizing: border-box;
  align-items: center;
}

.formCol {
  max-width: 50%;
  flex-basis: 50%;
  box-sizing: border-box;
  padding: 0 10px;
  margin-bottom: 20px;
}

.wrap,
.flex_column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.login_container {
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.mt-1, .mt-10 {
  margin-top: 10px;
}

.mt-2, .mt-20 {
  margin-top: 20px;
}

.mb-1, .mb-10 {
  margin-bottom: 10px;
}

.mb-2, .mb-20 {
  margin-bottom: 10px;
}

.ms-1, .ms-10, .ml-1, .ml-10 {
  margin-left: 10px;
}

.me-1, .me-10, .mr-1, .mr-10 {
  margin-right: 10px;
}

.w-100 {
  width: 100%;
  box-sizing: border-box;
}

.w-50 {
  width: 50%;
  box-sizing: border-box;
}

.align-items-end {
  align-items: end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: end;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-grow-2 {
  flex-grow: 2;
}

svg.logo {
  max-width: 100px;
}

header svg {
  max-width:121px;
  margin:0;
}
header svg path {
  fill: var(--theme-color);
}

table {
  border: 1px solid #dee2e6;
  border-collapse: collapse;
  color: #212529;
  margin-top: 1rem;
  margin-bottom: 1rem;
  vertical-align: top;
  width: 100%
}

tbody, td, tfoot, th, thead, tr {
  border: 0 solid;
  border-color: inherit
}

table>thead {
  vertical-align: bottom
}

table> :not(caption)>* {
  border-right: 1px solid #dee2e6
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent
}

table> :not(caption)>*>* {
  border-bottom: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  padding: .5rem;
  vertical-align: middle
}

table ul {
  padding-left: 20px
}

.display-flex {
  display: flex;
}

.display-flex p {
  margin: 0;
  display: flex;
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.border-bottom {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: solid 1px #CCC;
}

.border {
  border: solid 1px #CCC;
}

.rounded {
  border-radius: 10px;
}

.h-100 {
  height: 100%;
}

.p-0 {
  padding: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pt-1, .pt-10 {
  padding-top: 10px;
}

.pt-2, .pt-20 {
  padding-top: 20px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-28 {
  padding-bottom: 28px;
}

.p-5, .p-50 {
  padding: 50px;
}

.p-4, .p-40 {
  padding: 40px;
}

.p-3, .p-30 {
  padding: 30px;
}

.p-2, .p-20 {
  padding: 20px;
}

.p-1, .p-10 {
  padding: 10px;
}

.m-0 {
  margin: 0;
}

.ml-10 {
  margin-left: 10px;
}

.ms-auto, .ml-auto {
  margin-left: auto;
}

.mt-2,
.mt-20 {
  margin-top: 20px;
}

.mt-28 {
  margin-top: 20px;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.d-flex.no-wrap {
  flex-wrap: nowrap;
}

.d-flex.flex-direction-column {
  flex-direction: column;
}

.w-25 {
  width:25%;
  flex-basis:25%;
}

.w-33 {
  width:33.3334%;
  flex-basis:33.3334%;
}

.d-inline-block {
  display: inline-block;
}

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

.align-items-start {
  align-items: start;
}

.row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.row .col-1, .row .col-2, .row .col-3, .row .col-4,
.row .col-5, .row .col-6, .row .col-7, .row .col-8,
.row .col-9, .row .col-10, .row .col-11, .row .col-12 {
  padding: 10px;
  box-sizing: border-box;
}

.row .col-3 {
  width: 25%;
  flex-basis: 25%;
}

.row .col-4 {
  width: 33.33334%;
  flex-basis: 33.33334%;
}

.row .col-6 {
  width: 50%;
  flex-basis: 50%;
}

.row .col-8 {
  width: 66.66664%;
  flex-basis: 66.66664%;
}

.row .col-9 {
  width: 75%;
  flex-basis: 75%;
}

.row .col-12 {
  width: 100%;
  flex-basis: 100%;
}

.row .inner {
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  min-height: 260px;
  border: solid 1px #CCC;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.row .inner h3 {
  margin-top: 0;
  margin-bottom:20px;
}

.row .inner p {
  margin-top: 0;
}

h3 a {
  color: var(--theme-color);
}

.w-auto {
  width: auto;
}

.w-200 {
  width: 200px;
}

.w-300 {
  width: 300px;
}

.w-400 {
  width: 400px;
}

.w-500 {
  width: 500px;
}

.w-600 {
  width: 600px;
}

.w-660 {
  width: 660px;
}

.w-90 {
  width: 90px;
}

.w-110 {
  width: 110px;
}

.w-150 {
  width: 150px;
}

.w-200 {
  width: 200px;
}

.w-300 {
  width: 300px;
}

.w-400 {
  width: 400px;
}

.w-500 {
  width: 500px;
}

.w-600 {
  width: 600px;
}

.w-660 {
  width: 660px;
}

.w-860 {
  width: 860px;
}

.w-1200 {
  width: 1200px;
}

.w-1240 {
  width: 1240px;
}

.mw-100 {
  max-width: 100px;
}

.mw-110 {
  max-width: 110px;
}

.mw-150 {
  max-width: 150px;
}

.mw-200 {
  max-width: 200px;
}

.mw-300 {
  max-width: 300px;
}

.mw-400 {
  max-width: 400px;
}

.mw-500 {
  max-width: 500px;
}

.mw-600 {
  max-width: 600px;
}

.mw-660 {
  max-width: 660px;
}

.mw-860 {
  max-width: 860px;
}

.mw-1200 {
  max-width: 1200px;
}

.mw-1240 {
  max-width: 1240px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-1 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-2 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-3 {
  margin-left: 30px;
  margin-right: 30px;
}

.mx-4 {
  margin-left: 40px;
  margin-right: 40px;
}

.mx-5 {
  margin-left: 50px;
  margin-right: 50px;
}


.pt-05 {
  padding-top: 5px;
}

.pb-05 {
  padding-bottom: 5px;
}

.pl-05, .ps-05 {
  padding-left: 5px;
}

.pr-05, .pe-05 {
  padding-right: 5px;
}

.px-05 {
  padding-left: 5px;
  padding-right: 5px;
}

.px-1 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-2 {
  padding-left: 20px;
  padding-right: 20px;
}

.pt-1 {
  padding-top: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-5 {
  padding-bottom: 50px;
}

.border-top {
  border-top: solid 1px #CCC;
}

.border-bottom {
  border-bottom: solid 1px #CCC;
}

main.login_page .container {
  padding:0 20px;
  margin-top:0;
}

main.login_page header.main-header,
main.login_page footer.main-footer {
  display:none;
}

main.login_page {
  background: #FFF;
  max-width: unset;
  align-items: center;
}

main.login_page h1 {
  text-align: center;
}

main.login_page p {
  color: #FFF;
}

main.login_page svg {
  margin: 0 auto 20px;
}

main.login_page svg path {
  fill: #062E4B;
}

main.login_page .container.wrap {
  display: flex;
  justify-content: center;
}

main.login_page button.blank {
  color: #062E4B;
}

main.login_page label {
  color: #062E4B;
  margin-top: 20px;
  text-align: left;
}

input:disabled {
  background: #EEE;
  color: #999;
}

input.checkbox {
  position: relative;
  display: flex;
  margin: 0;
  width: 1px;
  height: 1px;
  padding: 0px 16px 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: solid 1px #FFF;
}

.checkButton {
  padding: 0 0 10px 36px;
  display: flex;
  position: relative;
  color:#000;
  text-decoration:none;
}

.checkButton:before,
input.checkbox:before {
  display: block;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  height: 14px;
  width: 28px;
  border: 2px solid #bbb;
  background: #bbb;
  border-radius: 13rem;
  box-sizing: content-box;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.checkButton:after,
input.checkbox:after {
  display: block;
  position: relative;
  position: absolute;
  background: #FFF;
  content: " ";
  width: 14px;
  height: 14px;
  top: 2px;
  left: 3px;
  border-radius: 13rem;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.checkButton.checked:before,
input.checkbox.checked:before {
  background-color: var(--theme-red);
  border-color: var(--theme-red);
}

.checkButton.checked:after,
input.checkbox.checked:after {
  left: 15px;
}

.gta-r_item {
  padding: 10px;
  width: 25%;
  flex-basis: 25%;
}

.gta-r_item .item {
  border-radius: 10px;
  border: solid 1px #EEE;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gta-r_item .item h3 {
  margin: 0 0 10px;
  flex-grow: 1;
}

.tab-links {
  list-style-type: none;
  margin: 0 auto 30px;
  padding: 0;
  display: flex;
}

.tab-links .tab-btn {
  border-radius: 20px;
  padding: 8px 16px;
  border: solid 2px #000;
  color: #000;
  margin: 0 5px;
  display: block;
}

.tab-links li {
  display: block;
}

.tab-links .tab-btn.active {
  background: #000;
  color: #FFF;
}

.overflow-hidden {
  overflow: hidden;
}

.list-none {
  list-style-type: none;
}

ul.btns {
  list-style-type: none;
  margin: 30px auto 0;
  padding: 0;
  display: flex;
}

ul.btns li {
  margin-right: 10px;
}

.searchForm {
  max-width: 480px;
  margin: 0 auto;
}

.searchForm form {
  display: flex;
  align-items: center;
}

.searchForm label {
  margin: 0;
}

.row .picked .border {
  border: solid 1px var(--theme-red);
}

.img_wrap {
  position: relative;
  z-index: 10;
}

.z-100, .z-200, .z-300, .z-500, .z-1000 {
  position: relative;
}

.z-100 {
  z-index: 100;
}

.z-200 {
  z-index: 200;
}

.z-300 {
  z-index: 300;
}

.z-500 {
  z-index: 500;
}

.z-1000 {
  z-index: 1000;
}

.picking-item {
  position: relative;
}

.picking-item a.cover {
  display: block;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.picking-item a.cover span {
  display: none;
}

.status_unmatched, .status_matched,
.status_neworder, .status_quote,
.status_urgent, .status_low, .status_attention,
.status_updated, .status_incomplete, .status_backorder,
.status_ready,
/* READY TO PICK */
.status_signoff,
.status_packed,
.status_unpacked,
.status_complete,
.status_test {
  color: #FFF;
  text-align: center;
}

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

.status_matched {
  background-color: #02c470;
}

.status_neworder {
  background: #9cccf0;
}

.status_quote {
  background-color: #8602c4;
}

.status_attention, .status_updated {
  background-color: #FFFF00;
  color: #000;
}

.status_urgent, .status_incomplete {
  background-color: var(--theme-red);
}

.status_test {
  background-color: #333;
}

.status_backorder {
  background-color: #ff0099;
}

.status_signoff {
  background-color: #070a67;
}

.status_low, .status_ready {
  background-color: #026bc4;
}

.status_complete {
  background-color: #02c470;
}

.status_unpacked {
  background-color: #FF7E00;
}

.status_packed {
  background-color: #01a097;
}

.status_test {
  background: #a68246;
}

.picked,
.not-picked {
  width: 100%;
  height: 30px;
  position: absolute;
  margin: 0;
  padding: 0;
  z-index: 1000;
  top: 0;
  left: 0;

}

.picked {
  background: rgba(255, 255, 255, 0.6);
}

.not-picked {
  background: transparent;
}

.picked span,
.not-picked span {
  width: 100%;
  display:block;
  background: var(--theme-red);
  color: #FFF;
  text-align: center;
  font-size: 1em;
  padding: 5px 0 6px;
  font-weight: bold;
  text-transform:uppercase;
}

.picked span {
  background: #333;
}

.box {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.pills {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.pill {
  display: inline-block;
  background: #222;
  color: #FFF;
  border: solid 1px #222;
  border-radius: 14px;
  padding: 3px 8px;
  margin: 2.5px;
  font-size:0.85em;
  text-transform:uppercase;
}

h1 .pill,
h2 .pill,
h3 .pill,
h4 .pill,
h5 .pill {
  font-size: 0.6em;
  text-transform: uppercase;
  margin-left:10px;
}

.ah_tile_wrap .row_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
}


.ah_tile_wrap .intro h3, 
.ah_tile_wrap .row_wrap .intro h3, 
.ah_tile_wrap .intro p, 
.ah_tile_wrap .row_wrap .intro p {
  margin: 10px 0 0;
  text-transform: uppercase;
}

.ah_tile_wrap .row_wrap .item_wrap {
  flex: 0 0 auto;
  width: 25%;
  padding: 6px;
  box-sizing: border-box;
}

.ah_tile_wrap .row_wrap .item_wrap .item {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-basis: 100%;
  padding: 4px 4px 20px;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.ah_tile_wrap .row_wrap .item_wrap .item .incImg {
  width: 100%;
  display: block;
  flex-grow: 1;
}

.ah_tile_wrap .row_wrap .item_wrap .item figure {
  background-color: #FFF;
  position: relative;
  border-radius: 4px;
  margin: 0;
  overflow: hidden;
}

.ah_tile_wrap .row_wrap .item_wrap .item figure img {
  width: 100%;
  display: block;
  padding: 0;
  height:auto;
}

.ah_tile_wrap .row_wrap .item_wrap .item figure .product_brands {
  position: absolute;
  top: 6px;
  right: 6px;
  left: auto;
  width: auto;
  height: auto;
  display: block;
  z-index: 100;
}

.ah_tile_wrap .row_wrap .item_wrap .item figure .product_brands img {
  margin: 0 0 0 auto;
  max-height: 40px;
  max-width: 80px;
  padding-bottom: 0;
}

.ah_tile_wrap .row_wrap .item_wrap .colours_available {
  display: flex;
  margin: 0;
  overflow: hidden;
  width: 100%;
  position: absolute;
  bottom: 6px;
  left: 6px;
}

.ah_tile_wrap .row_wrap .item_wrap .colours_available .color {
  border: solid 1px #d1d3d4;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  margin-right: 4px;
  background: #FFF;
}

.ah_tile_wrap .row_wrap .item_wrap .colours_available .color span {
  display: block;
  margin: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.ah_tile_wrap .row_wrap .item_wrap .colours_available .color span + span {
  background: transparent;
  position: absolute;
  top: 3px;
  right: 3px;
  margin: 0;
  z-index: 90;
  border-radius: 50%;
  overflow: hidden;
}

.ah_tile_wrap .row_wrap .item_wrap .colours_available .color span + span:before {
  display: inline-block;
  position: relative;
  content: " ";
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  border-top: 6px solid;
  border-right: 0 solid transparent;
  border-bottom: 0;
  border-left: 0;
  border-top-color: inherit;
}

.ah_tile_wrap .row_wrap .item_wrap .item form {
  padding: 20px 20px 0;
}

.ah_tile_wrap .row_wrap .item_wrap .item p {
  padding:0 20px;
  margin-bottom:0;
}

.ah_tile_wrap .row_wrap .item_wrap .item h3 {
  font-family: var(--wp--preset--font-family--pp-pangram-sans-regular);
  font-size: 1.1em;
  font-weight: 600;
  flex-grow: 3;
  margin: 0;
  padding: 20px 20px 10px;
  line-height: normal;
}

.ah_tile_wrap .row_wrap .item_wrap .item h3 a {
  padding-bottom: 0;
}

.ah_tile_wrap .row_wrap .item_wrap .item h4 {
  font-weight: 400;
  font-size: 1.2em;
  margin-top: 5px;
  margin-bottom: 2px;
}

.ah_tile_wrap .row_wrap .item_wrap .item .price_poa, 
.ah_tile_wrap .row_wrap .item_wrap .item .reprice, 
.ah_tile_wrap .row_wrap .item_wrap .item .price, 
.ah_tile_wrap .row_wrap .item_wrap .item .sku {
  margin: 0;
  padding: 0 20px;
  font-size: 0.85em;
  padding-top: 5px;
}

.ah_tile_wrap .row_wrap .item_wrap .item:last-child {
  padding-bottom: 15px;
}

.ah_tile_wrap .hide {
  display: none!important;
}

.ah_tile_wrap .row_wrap .item_wrap .item {
  background-color: #3e688e;
  background-color: #E6EEF4;
}

.ah_tile_wrap .row_wrap .item_wrap.alfaholics .item {
  background-color: #054142;
}

.ah_tile_wrap .row_wrap .item_wrap.alfaholics-r .item {
  background-color: var(--wp--preset--color--primary);
}

.ah_tile_wrap .row_wrap .item_wrap.item_wrap_3 {
  width: 25%;
}

.ah_tile_wrap .row_wrap .item_wrap.item_wrap_4 {
  width: 33.3334%;
}

.ah_tile_wrap .row_wrap .item_wrap.item_wrap_6 {
  width: 50%;
}

.ah_tile_wrap .row_wrap .item_wrap.item_wrap_8 {
  width: 66.6667%;
}

.ah_tile_wrap .row_wrap .item_wrap.item_wrap_9 {
  width: 75%;
}

.ah_tile_wrap .row_wrap .item_wrap.item_wrap_12 {
  width: 100%;
}

.wrap .splide .splide__arrows .splide__arrow {
  border: none;
  background: transparent;
  padding: 0;
  line-height: normal;
  font-size: 0.85em;
}

.wrap .splide .splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: .7;
  padding: 0;
  position: relative;
  transition: transform .2s linear;
  width: 8px;
}

@media(max-width: 1200px) {
  .ah_tile_wrap .row_wrap .item_wrap.item_wrap_3, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_4, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_6, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_8, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_9, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_12 {
      width:33.3334%;
      flex-basis: 33.3334%;
  }
}

@media screen and ( max-width: 860px ) {
  .ah_tile_wrap .row_wrap .item_wrap.item_wrap_3, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_4, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_6, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_8, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_9, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_12 {
      flex:0 0 auto;
      width: 50%;
  }
}

@media screen and ( max-width: 620px ) {
  .ah_tile_wrap .row_wrap .item_wrap.item_wrap_3, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_4, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_6, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_8, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_9, .ah_tile_wrap .row_wrap .item_wrap.item_wrap_12 {
      flex:0 0 auto;
      width: 100%;
  }
}

@media( max-width:600px ) {
  .row .col-1, .row .col-2, .row .col-3, .row .col-4,
  .row .col-5, .row .col-6, .row .col-7, .row .col-8,
  .row .col-9, .row .col-10, .row .col-11, .row .col-12 {
    width:100%;
    flex-basis:100%;
  }
  .row .inner {
    padding:10px 20px;
  }

  .d-flex.no-wrap {
    flex-wrap: wrap;
    justify-content:center;
  }
  .d-flex.no-wrap form {
    margin:4px!important;
  }
  .container {
    padding:10px;
  }
  form.formRow { 
    flex-wrap: nowrap;
  }
}

/*
  TIDB
*/

.tidb-wrap {
  line-height: 1.6;
}
.tidb-wrap, 
.tidb-wrap h1, 
.tidb-wrap h2, 
.tidb-wrap h3, 
.tidb-wrap h4, 
.tidb-wrap h5 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
}
.tidb-wrap h1, 
.tidb-wrap h2, 
.tidb-wrap h3, 
.tidb-wrap h4, 
.tidb-wrap h5 {
  width: 100%;
  color: #133C63;
  font-weight: 300;
  position: relative;
}
.tidb-wrap {
  background-color:#f6f7f7;
  width:100%;
}
.tidb-container {
  max-width: 100%;
  margin: 0;
  max-width: 1200px;
  margin: 0 auto;
  color:rgba(33,37,41);
}

.tidb-wrap .w-860 {
  max-width: 860px;
  width:100%;
  margin-left:auto;
  margin-right:auto;
}
.tidb-wrap h1 {
  margin: 20px auto 40px;
  padding: 0 0 40px;
  font-size: 2.4em;
  line-height:1.15;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}
.tidb-wrap h2 {
  line-height:1.15;
  font-size:2.2em;
}
.tidb-wrap img {
  max-width:100%;
  height:auto;
}
.tidb-wrap .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width:100%;
  box-sizing: border-box;
}
.tidb-wrap .columns .column-50 {
  width:50%;
  flex-basis:0;
  flex-grow:1;
  box-sizing: border-box;
}

.tidb-wrap .p.img {
  margin-bottom: 0;
}
.tidb-wrap .img_white .img {
  background: #FFF;
  padding: 20px;
  margin-bottom: 0;
  border: solid 1px #e6e7e8;
}
.tidb-wrap .img_white .caption {
  border: 0;
  border-bottom: solid 1px #CCC;
}
.tidb-wrap .caption {
  padding: 1rem;
  margin-bottom: .5rem;
}
.tidb-wrap .caption p {
  margin: 0;
  font-size: 0.85em;
}
.tidb-wrap .cta-box {
  border:solid 1px #133c63;
  padding:50px;
  max-width: 720px;
  background-color:#FFF;
  margin:30px auto;
}

@media (max-width: 781px) {
  .tidb-wrap .columns .column-50 {
    width:100%;
    flex-basis: 100%; 
  }
}

.sidebar-menu {
  padding:2px;
  padding:10px;
  border-right:solid 1px #CCC;
  height:100%;
  position: relative;
}
.sidebar-menu .menu_show_hide {
  position: relative;
  position: absolute;
  top:0;
  z-index:9999;
  width:36px;
  height:36px;
  display: block;
  margin:0;
  padding:6px;
  box-sizing: border-box;
}
.sidebar-menu li .menu_show_hide { 
  left:0;
}
.sidebar-menu li li .menu_show_hide { 
  left:20px;
}
.sidebar-menu li li li .menu_show_hide { 
  left:40px;
}
.sidebar-menu li li li li .menu_show_hide { 
  left:60px;
}
.sidebar-menu .menu_show_hide svg {
  margin:0;
}
.sidebar-menu .menu_show_hide.open svg {
  transform: rotate(90deg);
}
.sidebar-menu .menu_show_hide.selected {
  background:transparent;
}
.sidebar-menu .menu_show_hide.selected svg {
  fill:#FFF;
}
.sidebar-menu ul {
  list-style-type:none;
  padding:0;
  margin:0;
  position: relative;
}
.sidebar-menu ul li {
  font-size:0.95em;
  position: relative;
}
.sidebar-menu li a {
  display:flex;
  border-radius:3px;
  width:100%;
  padding:6px 0 6px 26px;
  margin:0;
  align-items: center;
}
.sidebar-menu li a {
  padding-left:26px;
}
.sidebar-menu li li a {
  padding-left:46px;
}
.sidebar-menu li li li a {
  padding-left:66px;
}
.sidebar-menu li li li li a {
  padding-left:86px;
}
.sidebar-menu li li li li li a {
  padding-left:106px;
}
.sidebar-menu li a {
  text-decoration: none;
}
.sidebar-menu li a svg {
  margin-right:6px;
}
.sidebar-menu li a.selected {
  background-color: #007cba;
  color:#FFF;
}
.sidebar-menu li a.selected svg {
  fill:#FFF;
}
.column .add_block_wrap {
  margin-top:0!important;
}
.group .add_block,
.column .add_block {
  border-radius:3px;
  background:transparent!important;
  background-color:transparent!important;
  color:#000!important;
  border:solid 1px #CCC;
  font-size:2em;
  display:block;
  text-align:center;
  width:100%;
  padding:1px 10px;
}

.settings_bar .selectList .selected svg,
.settings_bar .selectList .selected svg path,
.settings_bar .selectList .selected .svg-wrap svg,
.settings_bar .selectList .selected .svg-wrap path {
  fill:#FFF;
}

textarea.heading.heading-h1 { font-size:3em; }
textarea.heading.heading-h2 { font-size:2.6em; }
textarea.heading.heading-h3 { font-size:2.2em; }
textarea.heading.heading-h4 { font-size:1.8em; }
textarea.heading.heading-h5 { font-size:1.4em; }

.form-wrap .terms-box {
  border:solid 1px #CCC;
  padding:0 20px 20px;
  height:300px;
  overflow-y:scroll;
  width:100%;
  border-radius:10px;
}

.form-wrap .terms-box h3,
.form-wrap .terms-box h4 {
  margin:20px 0;
}

.form-wrap .terms-box hr {
  margin:30px 0;
  border: 0;
  border-top: 1px solid #CCC;
}

.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
  width:100%;
  flex-basis:100%;
}

.alert.loading {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert.success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert.danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}