/* Minification failed. Returning unminified contents.
(2740,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2744,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2748,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2752,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2961,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2977,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3282,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */
/* Minification failed. Returning unminified contents.
(2731,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2735,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2739,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2743,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2952,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2968,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3273,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */
.Color_White {
  color: black;
  background-color: white;
}

.Color_Yellow {
  color: black;
  background-color: yellow;
}

.LineClamp3MoreLineHeight {
  overflow: hidden;
  line-height: 3ex;
  display: block;
  max-height: calc(3 * (3ex));
}

@supports (-webkit-line-clamp: 1) {
  .LineClamp3MoreLineHeight {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 100%;
  }
}

a, .VisuallyLooksLikeALink {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  color: #372929;
}

a[href], a.IsClickable, .VisuallyLooksLikeALink[href], .VisuallyLooksLikeALink.IsClickable {
  text-decoration: underline;
}

a[name] {
  display: inline;
  height: 0;
  width: 0;
  text-decoration: none;
  color: inherit;
  position: relative;
}

@media screen and (min-width: 1024px) {
  a[name] {
    top: -2rem;
  }
}

@media screen and (max-width: 1023px) {
  a[name] {
    top: -1rem;
  }
}

a[name]:hover, a[name]:focus, a[name]:active {
  text-decoration: none;
  color: inherit;
}

.DisplayFlex {
  display: flex !important;
  align-items: baseline;
  width: 100%;
}

.ContentBuffer {
  flex-grow: 2;
  flex-shrink: 0;
  width: 10px;
  font-size: 0;
}

/* #region Generic Vanilla Container Overrides */
#PageContainer {
  display: flex;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 1rem;
}

@media screen and (min-width: 40.0625em) {
  #PageContainer {
    padding-bottom: 2rem;
  }
}

@media screen and (min-width: 64em) {
  #PageContainer {
    padding-bottom: 4rem;
  }
}

#PageContainer.OnProductDetailPage {
  min-height: auto !important;
  min-height: initial !important;
  min-height: unset !important;
  padding-bottom: 0;
}

#PageContainer.HasStickyBottomNavigation:not(.OnLandingOrInformationPage) {
  padding-bottom: 1rem;
}

#PageContainer.HasStickyBottomNavigation .StickyBottomContainer {
  display: block;
  width: 100%;
  margin-top: 16px;
  margin-bottom: -16px;
  background-color: #fff;
}

#PageContainer.HasStickyBottomNavigation .StickyBottomContainer.IsNotSticky {
  position: unset;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

@media (min-height: 600px) {
  @supports (position: -webkit-sticky) {
    @media only screen {
      #PageContainer.HasStickyBottomNavigation .StickyBottomContainer {
        position: -webkit-sticky;
        position: sticky;
        z-index: 7;
        bottom: 0;
      }
    }
  }
  @supports (position: sticky) {
    @media only screen {
      #PageContainer.HasStickyBottomNavigation .StickyBottomContainer {
        position: -webkit-sticky;
        position: sticky;
        z-index: 7;
        bottom: 0;
      }
    }
  }
}

#PageContainer.HasStickyBottomNavigation .StickyBottomContainer .Buffer {
  flex-grow: 2;
}

#PageContainer.HasStickyBottomNavigation .StickyBottomContainer .InformationArea:first-child {
  margin-top: -17px;
}

#PageContainer.HasStickyBottomNavigation .StickyBottomContainer .InformationArea + .InformationArea {
  margin-top: -15px;
}

#PageContainer.HasStickyBottomNavigation .StickyBottomContainer .StickyContainerElementsWrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: flex-end;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid #111111;
}

#PageContainer.HasStickyBottomNavigation .StickyBottomContainer .button {
  position: relative;
  z-index: 2;
  margin: 0 16px 16px 0;
}

@media (max-width: 380px) {
  #PageContainer.HasStickyBottomNavigation .StickyBottomContainer .button {
    margin: 0 6px 16px 0;
  }
}

#PageContainer.HasStickyBottomNavigation .StickyBottomContainer .button:last-child {
  margin-right: 0;
}

#PageContainer #PageContainerInnerWrapper {
  display: flex;
  width: 100%;
}

#PageContainer #PageContainerInnerWrapper #PageOverlayContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#PageContainer #PageContainerInnerWrapper #PageOverlayContainer #MainContainer {
  display: flex;
  flex-grow: 2;
  width: 100%;
}

#PageContainer #PageContainerInnerWrapper #PageOverlayContainer #MainContainer #MainContents {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#PageContainer #PageContainerInnerWrapper #PageOverlayContainer #MainContainer #MainContents > div {
  width: 100%;
}

#PageContainer #PageContainerInnerWrapper #PageOverlayContainer #MainContainer #MainContents > div.CheckoutSeperatePage {
  display: flex;
  flex-grow: 2;
  width: 100%;
}

#PageContainer #PageContainerInnerWrapper #PageOverlayContainer #MainContainer #MainContents > div.CheckoutSeperatePage .CheckoutSeperatePageInnerWrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#PageContainer #PageContainerInnerWrapper #PageOverlayContainer #MainContainer #MainContents > div.CheckoutSeperatePage .CheckoutSeperatePageInnerWrapper > div {
  width: 100%;
}

#PageContainer #PageContainerInnerWrapper #PageOverlayContainer #MainContainer #MainContents > div.CheckoutSeperatePage .CheckoutSeperatePageInnerWrapper > div.CheckoutStagedContentWrapper {
  flex-grow: 2;
}

#MainContainer {
  width: 100%;
}

#MainContainer .MainContainerOverlay {
  display: none;
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.25;
  width: 100%;
  height: 100%;
}

#MainContainer .MainContainerOverlay.is-active {
  display: block;
}

#MainContainer #Container {
  position: relative;
  min-height: 100px;
  z-index: auto;
  z-index: initial;
  z-index: unset;
}

#MainContainer #LeftPane {
  position: relative;
}

#MainContainer #RightPane {
  position: relative;
}

/* #endregion Generic Vanilla Container Overrides */
/* #region Grid Overrides & Generic Containers */
.row {
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .row {
    max-width: calc(100% - 32px);
  }
}

@media (max-width: 640px) {
  .row {
    max-width: 100%;
  }
}

@media (width: 1024px) {
  .row {
    max-width: calc(100% - 32px);
  }
}

@media (min-width: 1024px) {
  .row {
    max-width: calc(100% - 32px);
  }
}

@media (min-width: 1560px) {
  .row {
    max-width: calc(100% - 60px);
  }
}

@media (min-width: 1600px) {
  .row {
    max-width: 1502px;
  }
}

@media (min-width: 1250px) {
  .row.RestrictedMaxWidth {
    max-width: 1190px;
  }
}

@media (min-width: 1250px) {
  .row.RestrictedMaxWidthMore {
    max-width: 1024px;
  }
}

@media (max-width: 1023px) {
  .row.ExtraRestrictedMaxWidth.LargeDownMaxWidth100percent {
    max-width: 100%;
  }
}

@media (min-width: 760px) {
  .row.ExtraRestrictedMaxWidth.LargeDownMaxWidth100percent {
    max-width: 480px;
  }
}

@media (min-width: 1024px) {
  .row.ExtraRestrictedMaxWidth.LargeDownMaxWidth100percent {
    max-width: 680px;
  }
}

@media (min-width: 760px) {
  .row.ExtraRestrictedMaxWidth {
    max-width: 480px;
  }
}

@media (min-width: 1024px) {
  .row.ExtraRestrictedMaxWidth {
    max-width: 680px;
  }
}

@media (min-width: 760px) {
  .row.SuperRestrictedMaxWidth {
    max-width: 480px;
  }
}

@media (min-width: 1024px) {
  .row.SuperRestrictedMaxWidth {
    max-width: 600px;
  }
}

@media (min-width: 760px) {
  .row.SuperDuperRestrictedMaxWidth {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 480px !important;
  }
}

.row .row {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

.row .row.AutoMarginsAndNestedRestricted {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1432px) {
  .Restricted1400MaxWidth {
    max-width: calc(1400px - 32px);
    margin: 0 auto;
  }
}

.column, .columns {
  padding-left: 16px;
  padding-right: 16px;
}

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
  float: left;
}

.column.align-right, .columns.align-right {
  float: right;
}

.column.align-right:last-child:not(:first-child), .columns.align-right:last-child:not(:first-child) {
  float: right;
}

@media screen and (min-width: 1250px) {
  .ShorterLineLength {
    max-width: 1060px;
    margin: 0 auto;
  }
}

.half-gutter {
  padding-left: 10px;
  padding-right: 10px;
}

.no-gutter {
  padding-left: 0;
  padding-right: 0;
}

.no-left-gutter {
  padding-left: 0;
}

.no-right-gutter {
  padding-right: 0;
}

.left-column {
  padding-right: 0;
}

@media screen and (min-width: 40.0625em) {
  .left-column {
    padding-right: 3rem;
  }
}

.right-column {
  padding-left: 0;
}

@media screen and (min-width: 40.0625em) {
  .right-column {
    padding-left: 3rem;
  }
}

@media screen and (min-width: 40.0625em) {
  .left-column-with-border, .left-column-with-border-not-full-height {
    margin-right: -3px;
    border-right: 3px solid #1872c5;
  }
}

.right-column-with-border, .right-column-with-border-not-full-height {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 3px solid #1872c5;
  border-left: none;
}

@media screen and (min-width: 40.0625em) {
  .right-column-with-border, .right-column-with-border-not-full-height {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    border-left: 3px solid #1872c5;
  }
}

/* #endregion Grid Overrides & Generic Containers */
img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  height: initial;
  height: unset;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

image {
  image-rendering: -webkit-optimize-contrast;
}

/* #endregion Text Helper Classes */
.PreformattedText {
  white-space: pre-wrap;
}

/* #region Text Element Styles */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  color: #111111;
  word-wrap: break-word;
  word-break: break-word;
  line-height: 1.3;
  margin: 0 0 16px 0;
  letter-spacing: 0;
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 600;
}

h1.Big, h2.Big, h3.Big, h4.Big, h5.Big, h6.Big {
  margin-bottom: 20px;
  font-size: 50px;
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) {
  h1.Big, h2.Big, h3.Big, h4.Big, h5.Big, h6.Big {
    font-size: 32px;
  }
}

@media (max-width: 1023px) {
  h1.Big, h2.Big, h3.Big, h4.Big, h5.Big, h6.Big {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  h1.Big, h2.Big, h3.Big, h4.Big, h5.Big, h6.Big {
    font-size: 32px;
  }
}

@media (max-width: 320px) {
  h1.Big, h2.Big, h3.Big, h4.Big, h5.Big, h6.Big {
    font-size: 28px;
  }
}

h1.Medium, h2.Medium, h3.Medium, h4.Medium, h5.Medium, h6.Medium {
  margin-bottom: 20px;
  font-size: 38px;
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) {
  h1.Medium, h2.Medium, h3.Medium, h4.Medium, h5.Medium, h6.Medium {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  h1.Medium, h2.Medium, h3.Medium, h4.Medium, h5.Medium, h6.Medium {
    font-size: 28px;
  }
}

@media (max-width: 320px) {
  h1.Medium, h2.Medium, h3.Medium, h4.Medium, h5.Medium, h6.Medium {
    font-size: 25px;
  }
}

h1.Small, h2.Small, h3.Small, h4.Small, h5.Small, h6.Small {
  font-size: 24px;
}

@media (max-width: 1023px) {
  h1.Small, h2.Small, h3.Small, h4.Small, h5.Small, h6.Small {
    font-size: 22px;
  }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) {
  h1.Small, h2.Small, h3.Small, h4.Small, h5.Small, h6.Small {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  h1.Small, h2.Small, h3.Small, h4.Small, h5.Small, h6.Small {
    font-size: 20px;
  }
}

h1.SmallMarginUnderneath, h2.SmallMarginUnderneath, h3.SmallMarginUnderneath, h4.SmallMarginUnderneath, h5.SmallMarginUnderneath, h6.SmallMarginUnderneath {
  margin-bottom: 3px;
}

h1 a[name], h2 a[name], h3 a[name], h4 a[name], h5 a[name], h6 a[name] {
  color: inherit;
}

h1 a[name]:hover, h1 a[name]:focus, h1 a[name]:active, h2 a[name]:hover, h2 a[name]:focus, h2 a[name]:active, h3 a[name]:hover, h3 a[name]:focus, h3 a[name]:active, h4 a[name]:hover, h4 a[name]:focus, h4 a[name]:active, h5 a[name]:hover, h5 a[name]:focus, h5 a[name]:active, h6 a[name]:hover, h6 a[name]:focus, h6 a[name]:active {
  color: inherit;
}

h1 {
  font-size: 32px;
}

@media (max-width: 640px) {
  h1 {
    font-size: 28px;
  }
}

@media (min-width: 1330px) {
  h1 {
    font-size: 38px;
  }
}

h2 {
  font-size: 26px;
}

@media (min-width: 1330px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 24px;
}

@media (min-width: 1330px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 22px;
}

@media (min-width: 1330px) {
  h4 {
    font-size: 26px;
  }
}

h5 {
  font-size: 20px;
}

@media (min-width: 1330px) {
  h5 {
    font-size: 24px;
  }
}

h6 {
  font-size: 18px;
}

@media (min-width: 1330px) {
  h6 {
    font-size: 22px;
  }
}

h1 + h1,
h1 + h2,
h1 + h3,
h1 + h4,
h1 + h5,
h1 + h6,
h2 + h1,
h2 + h2,
h2 + h3,
h2 + h4,
h2 + h5,
h2 + h6,
h3 + h1,
h3 + h2,
h3 + h3,
h3 + h4,
h3 + h5,
h3 + h6,
h4 + h1,
h4 + h2,
h4 + h3,
h4 + h4,
h4 + h5,
h4 + h6,
h5 + h1,
h5 + h2,
h5 + h3,
h5 + h4,
h5 + h5,
h5 + h6,
h6 + h1,
h6 + h2,
h6 + h3,
h6 + h4,
h6 + h5,
h6 + h6,
blockquote + h1,
blockquote + h2,
blockquote + h3,
blockquote + h4,
blockquote + h5,
blockquote + h6,
.BlockQuote + h1,
.BlockQuote + h2,
.BlockQuote + h3,
.BlockQuote + h4,
.BlockQuote + h5,
.BlockQuote + h6,
.button + h1,
.button + h2,
.button + h3,
.button + h4,
.button + h5,
.button + h6,
.button + ul,
.button + ol,
.button + p,
.button + .BlockQuote,
.button + blockquote,
p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6,
ul + h1,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6,
ol + h1,
ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6 {
  margin-top: 32px;
}

h1 + h1.NoMarginTop,
h1 + h2.NoMarginTop,
h1 + h3.NoMarginTop,
h1 + h4.NoMarginTop,
h1 + h5.NoMarginTop,
h1 + h6.NoMarginTop,
h2 + h1.NoMarginTop,
h2 + h2.NoMarginTop,
h2 + h3.NoMarginTop,
h2 + h4.NoMarginTop,
h2 + h5.NoMarginTop,
h2 + h6.NoMarginTop,
h3 + h1.NoMarginTop,
h3 + h2.NoMarginTop,
h3 + h3.NoMarginTop,
h3 + h4.NoMarginTop,
h3 + h5.NoMarginTop,
h3 + h6.NoMarginTop,
h4 + h1.NoMarginTop,
h4 + h2.NoMarginTop,
h4 + h3.NoMarginTop,
h4 + h4.NoMarginTop,
h4 + h5.NoMarginTop,
h4 + h6.NoMarginTop,
h5 + h1.NoMarginTop,
h5 + h2.NoMarginTop,
h5 + h3.NoMarginTop,
h5 + h4.NoMarginTop,
h5 + h5.NoMarginTop,
h5 + h6.NoMarginTop,
h6 + h1.NoMarginTop,
h6 + h2.NoMarginTop,
h6 + h3.NoMarginTop,
h6 + h4.NoMarginTop,
h6 + h5.NoMarginTop,
h6 + h6.NoMarginTop,
blockquote + h1.NoMarginTop,
blockquote + h2.NoMarginTop,
blockquote + h3.NoMarginTop,
blockquote + h4.NoMarginTop,
blockquote + h5.NoMarginTop,
blockquote + h6.NoMarginTop,
.BlockQuote + h1.NoMarginTop,
.BlockQuote + h2.NoMarginTop,
.BlockQuote + h3.NoMarginTop,
.BlockQuote + h4.NoMarginTop,
.BlockQuote + h5.NoMarginTop,
.BlockQuote + h6.NoMarginTop,
.button + h1.NoMarginTop,
.button + h2.NoMarginTop,
.button + h3.NoMarginTop,
.button + h4.NoMarginTop,
.button + h5.NoMarginTop,
.button + h6.NoMarginTop,
.button + ul.NoMarginTop,
.button + ol.NoMarginTop,
.button + p.NoMarginTop,
.button + .BlockQuote.NoMarginTop,
.button + blockquote.NoMarginTop,
p + h1.NoMarginTop,
p + h2.NoMarginTop,
p + h3.NoMarginTop,
p + h4.NoMarginTop,
p + h5.NoMarginTop,
p + h6.NoMarginTop,
ul + h1.NoMarginTop,
ul + h2.NoMarginTop,
ul + h3.NoMarginTop,
ul + h4.NoMarginTop,
ul + h5.NoMarginTop,
ul + h6.NoMarginTop,
ol + h1.NoMarginTop,
ol + h2.NoMarginTop,
ol + h3.NoMarginTop,
ol + h4.NoMarginTop,
ol + h5.NoMarginTop,
ol + h6.NoMarginTop {
  margin-top: 0;
}

p, ul, ol, .Paragraph {
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 16px 0;
  padding: 0;
}

@media (min-width: 1400px) {
  p, ul, ol, .Paragraph {
    margin-bottom: 20px;
  }
}

p:last-child, ul:last-child, ol:last-child, .Paragraph:last-child {
  margin-bottom: 0;
}

p.Large, ul.Large, ol.Large, .Paragraph.Large {
  font-size: 20px;
}

@media (max-width: 640px) {
  p.Large, ul.Large, ol.Large, .Paragraph.Large {
    font-size: 19px;
  }
}

p.Medium, ul.Medium, ol.Medium, .Paragraph.Medium {
  font-size: 19px;
}

p.Smaller, ul.Smaller, ol.Smaller, .Paragraph.Smaller {
  font-size: 14px;
}

p.Small, ul.Small, ol.Small, .Paragraph.Small {
  font-size: 13px;
}

p.ExtraSmall, ul.ExtraSmall, ol.ExtraSmall, .Paragraph.ExtraSmall {
  font-size: 13px;
}

@media (max-width: 640px) {
  p.ExtraSmall, ul.ExtraSmall, ol.ExtraSmall, .Paragraph.ExtraSmall {
    font-size: 12px;
  }
}

p.Bold, ul.Bold, ol.Bold, .Paragraph.Bold {
  font-weight: bold;
}

p.SmallMarginUnderneath, ul.SmallMarginUnderneath, ol.SmallMarginUnderneath, .Paragraph.SmallMarginUnderneath {
  margin-bottom: 8px;
}

p + blockquote,
ul + blockquote,
ol + blockquote,
p + .BlockQuote,
ul + .BlockQuote,
ol + .BlockQuote {
  margin-top: 20px;
}

.TitleArea {
  display: flex;
  margin-bottom: 6px;
  align-items: center;
}

.TitleArea .Title {
  flex-grow: 2;
  margin-bottom: 0;
  padding-right: 30px;
}

.TitleArea .button {
  margin: 0;
}

.Title {
  color: inherit;
  font-family: "Rajdhani", sans-serif;
  line-height: 1.3;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.Title.Small {
  font-size: 21px;
}

/*#region LoadingOverlay */
.LoadingOverlay {
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.6;
  width: 100%;
  height: 100%;
}

.HasWiderLoadingOverlayWrapper > .LoadingOverlayWrapper {
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
}

.LoadingOverlayWrapper, .SuccessOrErrorOverlayWrapper {
  display: none;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.LoadingOverlayWrapper.SolidOverlay .LoadingOverlay, .LoadingOverlayWrapper.SolidOverlay .SuccessOrErrorOverlay, .SuccessOrErrorOverlayWrapper.SolidOverlay .LoadingOverlay, .SuccessOrErrorOverlayWrapper.SolidOverlay .SuccessOrErrorOverlay {
  opacity: 1;
}

.LoadingOverlayWrapper.Medium .LoadingSpinnerAndTextWrapper, .LoadingOverlayWrapper.Modal .LoadingSpinnerAndTextWrapper, .SuccessOrErrorOverlayWrapper.Medium .LoadingSpinnerAndTextWrapper, .SuccessOrErrorOverlayWrapper.Modal .LoadingSpinnerAndTextWrapper {
  top: calc(50% - 21px);
}

.LoadingOverlayWrapper.Medium .LoadingSpinnerAndTextWrapper .LoadingSpinnerText, .LoadingOverlayWrapper.Modal .LoadingSpinnerAndTextWrapper .LoadingSpinnerText, .SuccessOrErrorOverlayWrapper.Medium .LoadingSpinnerAndTextWrapper .LoadingSpinnerText, .SuccessOrErrorOverlayWrapper.Modal .LoadingSpinnerAndTextWrapper .LoadingSpinnerText {
  font-size: 25px;
  letter-spacing: -0.01em;
  margin-left: 8px;
}

.LoadingOverlayWrapper.Small .LoadingSpinnerAndTextWrapper, .SuccessOrErrorOverlayWrapper.Small .LoadingSpinnerAndTextWrapper {
  top: calc(50% - 21px);
}

.LoadingOverlayWrapper.Small .LoadingSpinnerAndTextWrapper .LoadingSpinnerText, .SuccessOrErrorOverlayWrapper.Small .LoadingSpinnerAndTextWrapper .LoadingSpinnerText {
  font-family: Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  margin-left: 8px;
}

.LoadingOverlayWrapper.TopLoading .LoadingSpinnerAndTextWrapper, .LoadingOverlayWrapper.TopLoading .TextWrapper, .SuccessOrErrorOverlayWrapper.TopLoading .LoadingSpinnerAndTextWrapper, .SuccessOrErrorOverlayWrapper.TopLoading .TextWrapper {
  top: 2rem;
}

.LoadingOverlayWrapper.TopLoadingCloser .LoadingSpinnerAndTextWrapper, .SuccessOrErrorOverlayWrapper.TopLoadingCloser .LoadingSpinnerAndTextWrapper {
  top: 1rem;
}

.LoadingOverlayWrapper .LoadingOverlay, .LoadingOverlayWrapper .SuccessOrErrorOverlay, .SuccessOrErrorOverlayWrapper .LoadingOverlay, .SuccessOrErrorOverlayWrapper .SuccessOrErrorOverlay {
  z-index: 11;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 1;
  width: 100%;
  height: 100%;
}

.LoadingOverlayWrapper .LoadingSpinnerAndTextWrapper, .LoadingOverlayWrapper .TextWrapper, .SuccessOrErrorOverlayWrapper .LoadingSpinnerAndTextWrapper, .SuccessOrErrorOverlayWrapper .TextWrapper {
  z-index: 12;
  position: absolute;
  top: calc(50% - 26px);
  left: 0;
  width: 100%;
  padding: 0 1rem 0 1rem;
  text-align: center;
}

@media screen and (max-width: 40em) {
  .LoadingOverlayWrapper .LoadingSpinnerAndTextWrapper, .LoadingOverlayWrapper .TextWrapper, .SuccessOrErrorOverlayWrapper .LoadingSpinnerAndTextWrapper, .SuccessOrErrorOverlayWrapper .TextWrapper {
    top: calc(50% - 19px);
  }
}

.LoadingOverlayWrapper .LoadingSpinnerAndTextWrapper .LoadingSpinner, .LoadingOverlayWrapper .TextWrapper .LoadingSpinner, .SuccessOrErrorOverlayWrapper .LoadingSpinnerAndTextWrapper .LoadingSpinner, .SuccessOrErrorOverlayWrapper .TextWrapper .LoadingSpinner {
  display: inline-block;
  vertical-align: middle;
  cursor: default;
  filter: none;
  width: 43px;
  height: 43px;
  background-position: -800px -0px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
  .LoadingOverlayWrapper .LoadingSpinnerAndTextWrapper .LoadingSpinner, .LoadingOverlayWrapper .TextWrapper .LoadingSpinner, .SuccessOrErrorOverlayWrapper .LoadingSpinnerAndTextWrapper .LoadingSpinner, .SuccessOrErrorOverlayWrapper .TextWrapper .LoadingSpinner {
    background-position: -350px -0px;
  }
}

.LoadingOverlayWrapper .LoadingSpinnerAndTextWrapper .LoadingSpinner.active, .LoadingOverlayWrapper .TextWrapper .LoadingSpinner.active, .SuccessOrErrorOverlayWrapper .LoadingSpinnerAndTextWrapper .LoadingSpinner.active, .SuccessOrErrorOverlayWrapper .TextWrapper .LoadingSpinner.active {
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.LoadingOverlayWrapper .LoadingSpinnerAndTextWrapper .LoadingSpinnerText, .LoadingOverlayWrapper .TextWrapper .LoadingSpinnerText, .SuccessOrErrorOverlayWrapper .LoadingSpinnerAndTextWrapper .LoadingSpinnerText, .SuccessOrErrorOverlayWrapper .TextWrapper .LoadingSpinnerText {
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
  font-size: 30px;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: -0.02em;
  color: #000000;
  font-weight: 500;
}

@media screen and (max-width: 40em) {
  .LoadingOverlayWrapper .LoadingSpinnerAndTextWrapper .LoadingSpinnerText, .LoadingOverlayWrapper .TextWrapper .LoadingSpinnerText, .SuccessOrErrorOverlayWrapper .LoadingSpinnerAndTextWrapper .LoadingSpinnerText, .SuccessOrErrorOverlayWrapper .TextWrapper .LoadingSpinnerText {
    font-size: 24px;
    letter-spacing: -0.01em;
    margin-left: 8px;
  }
}

/*#endregion */
/*#region Overlay */
.Overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.6;
  width: 100%;
  height: 100%;
}

/*#endregion */
.search-container {
  flex-shrink: 0;
  position: relative;
  margin-bottom: 0;
}

@media screen and (min-width: 64em) {
  .search-container {
    width: 270px;
  }
}

.search-container.HasNoSearchButton input[type="search"] {
  width: 100%;
  max-width: 100%;
  height: 37px;
}

.search-container input[type="search"] {
  width: 100%;
  max-width: 100%;
  -webkit-appearance: none;
}

.search-container input[type="search"].NormalSearch {
  margin: 0;
}

@media screen and (max-width: 63.9375em) {
  .search-container input[type="search"].NormalSearch {
    font-weight: 500;
    height: 40px;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.2rem;
    padding-right: 3.5rem;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 40em) {
  .search-container input[type="search"].NormalSearch {
    padding-left: 10px;
  }
}

@media screen and (min-width: 64em) {
  .search-container input[type="search"].NormalSearch {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    display: inline-block;
  }
}

@media screen and (max-width: 63.9375em) {
  .search-container input[type="search"].NormalSearch.BlogSearch {
    height: 51px;
    padding-left: 16px;
  }
}

.search-container input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

@media screen and (max-width: 63.9375em) {
  .search-container .EditableToken {
    display: none;
  }
}

.search-container .RemoveCross {
  display: none;
  position: absolute;
  top: 15px;
  right: 3.2rem;
}

.search-container .button.IconButton.SearchButton {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  margin: 0;
}

@media screen and (max-width: 63.9375em) {
  .search-container .button.IconButton.SearchButton.Medium {
    top: 7px;
    right: 7px;
  }
}

@media screen and (min-width: 64em) {
  .search-container .button.IconButton.SearchButton {
    margin: 4px 0 0 0;
    top: 0;
    right: 0;
  }
}

.TitleBlock {
  height: auto;
  height: initial;
  height: unset;
  margin: 0 auto 0 auto;
  text-decoration: none;
  font-family: "Rajdhani", sans-serif;
  line-height: 1.3;
  font-size: 2rem;
  font-weight: 600;
  padding: 10px 18px 10px 18px;
  background-color: #1872c5;
  border: 2px solid #1872c5;
  border-radius: 12px;
  color: #fff;
}

@media screen and (max-width: 63.9375em) {
  .TitleBlock {
    font-size: 30px;
  }
}

@media screen and (max-width: 40em) {
  .TitleBlock {
    font-size: 23px;
    padding: 8px 14px 8px 14px;
  }
}

@media (max-width: 320px) {
  .TitleBlock {
    font-size: 21px;
  }
}

.TitleBlock.Light {
  color: #000000;
  background-color: #fff;
  border: 2px solid #fff;
}

.TitleBlock.Primary {
  color: #fff;
  background-color: #ca3349;
  border: 2px solid #ca3349;
}

.TitleBlock.Secondary {
  color: #000000;
  background-color: #dddddd;
  border: 2px solid #dddddd;
}

.ProductNewColor {
  color: #fff;
  background-color: #1872c5;
  border: 2px solid #1872c5;
}

.ProductClearanceColor {
  color: #000000;
  background-color: #fad400;
  border: 2px solid #fad400;
}

.ProductSpecialOrderColor {
  color: #fff;
  background-color: #009552;
  border: 2px solid #009552;
}

.ProductPromoColor {
  color: #fff;
  background-color: #ca3349;
  border: 2px solid #ca3349;
}

.IconAndHeadingWrapper {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 40.0625em) {
  .IconAndHeadingWrapper.StackAndCenterOnMobileButCentreTabletsUp {
    justify-content: center;
    text-align: center;
  }
}

@media screen and (max-width: 40em) {
  .IconAndHeadingWrapper.StackAndCenterOnMobileButCentreTabletsUp {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .IconAndHeadingWrapper.StackAndCenterOnMobileButCentreTabletsUp .SVGSpriteIcon {
    margin-left: 0;
    margin-bottom: 8px;
  }
}

.IconAndHeadingWrapper.HasNormalHeadingMarginUnderneath {
  margin: 0 0 16px 0;
}

.IconAndHeadingWrapper.AlignIconsRightSide .SVGSpriteIcon {
  order: 2;
  margin-left: 15px;
  margin-right: 0;
}

@media screen and (max-width: 40em) {
  .IconAndHeadingWrapper.AlignIconsRightSideMobileDown .SVGSpriteIcon {
    order: 2;
    margin-left: 15px;
    margin-right: 0;
  }
}

.IconAndHeadingWrapper.AlignIconsLessHigh .SVGSpriteIcon {
  margin-top: -2px;
}

@media (min-width: 1330px) {
  .IconAndHeadingWrapper.AlignIconsLessHigh .SVGSpriteIcon {
    margin-top: -4px;
  }
}

.IconAndHeadingWrapper h1, .IconAndHeadingWrapper h2, .IconAndHeadingWrapper h3, .IconAndHeadingWrapper h4, .IconAndHeadingWrapper h5, .IconAndHeadingWrapper h6 {
  margin-bottom: 0;
}

.IconAndHeadingWrapper .SVGSpriteIcon {
  margin-left: 0;
  margin-right: 14px;
  margin-top: -4px;
}

@media (min-width: 1330px) {
  .IconAndHeadingWrapper .SVGSpriteIcon {
    margin-top: -6px;
  }
}

.IconAndHeadingWrapper .SVGSpriteIcon.FavouritesIcon.Medium {
  margin-top: -11px;
}

@media (min-width: 1330px) {
  .IconAndHeadingWrapper .SVGSpriteIcon.FavouritesIcon.Medium {
    margin-top: -17px;
  }
}

.label {
  display: none;
}

.form-wrapper {
  display: none;
}

.InformationMarketingPage {
  position: relative;
  margin-top: -48px;
}

@media (max-width: 1024px) {
  .InformationMarketingPage {
    margin-top: -32px;
  }
}

@media (max-width: 640px) {
  .InformationMarketingPage {
    margin-top: -16px;
  }
}

.InformationMarketingPage .LandingOrInformationPage {
  margin-top: 0;
}

.InformationMarketingPage .LandingOrInformationPage.InformationPage ~ .ManageContentButton2 {
  top: 0;
}

.InformationBanner {
  margin-top: -48px;
}

@media (max-width: 1024px) {
  .InformationBanner {
    margin-top: -32px;
  }
}

@media (max-width: 640px) {
  .InformationBanner {
    margin-top: -16px;
  }
}

.LandingOrInformationPage {
  margin-top: -48px;
  margin-bottom: -4rem;
}

@media (max-width: 1024px) {
  .LandingOrInformationPage {
    margin-top: -32px;
  }
}

@media (max-width: 1023px) {
  .LandingOrInformationPage {
    margin-bottom: -2rem;
  }
}

@media (max-width: 640px) {
  .LandingOrInformationPage {
    margin-top: -16px;
    margin-bottom: -1rem;
  }
}

.LandingOrInformationPage.InformationWithMenuPage, .LandingOrInformationPage.BlogContent {
  margin-top: 0;
  margin-bottom: 0;
}

.LandingOrInformationPage .ImageOnlyBannerOverallContainer.ForLandingOrInformationPage .ImageContainer {
  position: relative;
  background-color: #d9d9d9;
  overflow: hidden;
  padding-bottom: 23.4375%;
}

@media (max-width: 800px) {
  .LandingOrInformationPage .ImageOnlyBannerOverallContainer.ForLandingOrInformationPage .ImageContainer {
    height: 250px;
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .LandingOrInformationPage .ImageOnlyBannerOverallContainer.ForLandingOrInformationPage .ImageContainer {
    height: 190px;
  }
}

@media (max-width: 480px) {
  .LandingOrInformationPage .ImageOnlyBannerOverallContainer.ForLandingOrInformationPage .ImageContainer {
    height: 130px;
  }
}

@media (max-width: 320px) {
  .LandingOrInformationPage .ImageOnlyBannerOverallContainer.ForLandingOrInformationPage .ImageContainer {
    height: 120px;
  }
}

.LandingOrInformationPage .ImageOnlyBannerOverallContainer.ForLandingOrInformationPage .ImageContainer img {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media (max-width: 800px) {
  .LandingOrInformationPage .ImageOnlyBannerOverallContainer.ForLandingOrInformationPage .ImageContainer img {
    position: relative;
    width: auto;
    width: initial;
    width: unset;
    max-width: auto;
    max-width: initial;
    max-width: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}

.LandingOrInformationPage .ImageOnlyBannerOverallContainer.ForLandingOrInformationPage .ImageContainer .TitleBlock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
}

@media (max-width: 1249px) {
  .LandingOrInformationPage .ImageOnlyBannerOverallContainer.ForLandingOrInformationPage .ImageContainer .TitleBlock {
    font-size: 23px;
    padding: 8px 14px 8px 14px;
    border-radius: 8px;
  }
}

@media screen and (max-width: 63.9375em) {
  .LandingOrInformationPage .ImageOnlyBannerOverallContainer.ForLandingOrInformationPage .ImageContainer .TitleBlock {
    font-size: 20px;
    padding: 6px 12px 6px 12px;
    border-radius: 6px;
  }
}

@media screen and (max-width: 40em) {
  .LandingOrInformationPage .ImageOnlyBannerOverallContainer.ForLandingOrInformationPage .ImageContainer .TitleBlock {
    padding: 2px 6px 2px 6px;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 500;
  }
}

@media (max-width: 320px) {
  .LandingOrInformationPage .ImageOnlyBannerOverallContainer.ForLandingOrInformationPage .ImageContainer .TitleBlock {
    border-radius: 3px;
  }
}

.ManageContentButton2, .ManageDataOptionsBtn {
  position: absolute;
}

.parallax {
  position: relative;
  float: none;
  width: 100%;
  max-width: 100%;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

@media (min-width: 1025px) {
  .parallax {
    background-attachment: fixed;
  }
}

@media (min-width: 1025px) and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .parallax {
    background-attachment: local;
  }
}

@media screen and (max-width: 63.9375em) {
  .parallax {
    height: 400px;
    background-attachment: local;
  }
}

@media screen and (max-width: 40em) {
  .parallax {
    height: 200px;
  }
}

@media (max-width: 320px) {
  .parallax {
    height: 170px;
  }
}

.parallax .BackgroundContent {
  width: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.parallax .BackgroundContent.TitleBlock {
  display: inline-block;
  width: auto;
  width: initial;
  width: unset;
  max-width: 92%;
  border: none !important;
  border-radius: 0px !important;
}

.parallax-content {
  float: none;
  width: 100%;
  max-width: 100%;
}

.ImageAndTextRepeaterWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
}

@media (max-width: 640px) {
  .ImageAndTextRepeaterWrapper {
    grid-gap: 16px;
  }
}

.ImageAndTextRepeaterWrapper.Across2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 1023px) {
  .ImageAndTextRepeaterWrapper.Across2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 950px) {
  .ImageAndTextRepeaterWrapper.Across2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ImageAndTextRepeaterWrapper.Across2 .ImageAndTextRepeaterItem {
    flex-direction: column;
  }
}

.ImageAndTextRepeaterWrapper.Across2 .ImageAndTextRepeaterItem .ImageContainer {
  width: 50%;
  max-width: 250px;
}

@media (max-width: 1249px) {
  .ImageAndTextRepeaterWrapper.Across2 .ImageAndTextRepeaterItem .ImageContainer {
    max-width: 202px;
  }
}

@media (max-width: 640px) {
  .ImageAndTextRepeaterWrapper.Across2 .ImageAndTextRepeaterItem .ImageContainer {
    width: 100%;
    max-width: 100%;
  }
}

.ImageAndTextRepeaterWrapper.Across2 .ImageAndTextRepeaterItem .ImageContainer .ImageInnerWrapper {
  padding-bottom: 100%;
}

.ImageAndTextRepeaterWrapper.Across3 {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 950px) {
  .ImageAndTextRepeaterWrapper.Across3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .ImageAndTextRepeaterWrapper.Across3 {
    grid-template-columns: 1fr;
  }
}

.ImageAndTextRepeaterWrapper.Across3 .ImageAndTextRepeaterItem {
  flex-direction: column;
}

.ImageAndTextRepeaterWrapper.Across3 .ImageAndTextRepeaterItem .ImageContainer {
  width: 100%;
}

.ImageAndTextRepeaterWrapper.Across3 .ImageAndTextRepeaterItem .ImageContainer .ImageInnerWrapper {
  padding-bottom: 66.36%;
}

.ImageAndTextRepeaterWrapper.MeetTheTeamRepeater .ImageAndTextRepeaterItem {
  flex-direction: column;
}

.ImageAndTextRepeaterWrapper.MeetTheTeamRepeater .ImageAndTextRepeaterItem .ImageContainer {
  width: 100%;
}

.ImageAndTextRepeaterWrapper.MeetTheTeamRepeater .ImageAndTextRepeaterItem .ImageContainer .ImageInnerWrapper {
  padding-bottom: 100%;
}

@media (max-width: 1249px) {
  .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater .ImageAndTextRepeaterItem .TextContainer {
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater .ImageAndTextRepeaterItem .TextContainer {
    padding: 14px;
  }
}

.ImageAndTextRepeaterWrapper.MeetTheTeamRepeater .ImageAndTextRepeaterItem .TextContainer h2, .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater .ImageAndTextRepeaterItem .TextContainer h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

@media (max-width: 1023px) {
  .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater .ImageAndTextRepeaterItem .TextContainer h2, .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater .ImageAndTextRepeaterItem .TextContainer h3 {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater .ImageAndTextRepeaterItem .TextContainer h2, .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater .ImageAndTextRepeaterItem .TextContainer h3 {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater .ImageAndTextRepeaterItem .TextContainer p {
    font-size: 11px;
  }
}

.ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem {
  position: relative;
  display: flex;
  background-color: #fff;
  border: 1px solid #d9d4d1;
}

.ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .ImageContainer {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  background-color: #fff;
}

.ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .ImageContainer .ImageInnerWrapper {
  position: relative;
}

.ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .ImageContainer a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .ImageContainer a:focus:after {
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
}

.ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .ImageContainer img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-width: 100%;
}

.ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  font-size: 14px;
}

@media (min-width: 1570px) {
  .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer {
    padding: 30px;
  }
}

.ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h2, .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

@media (max-width: 1023px) {
  .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h2, .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h3 {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h2, .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h3 {
    font-size: 19px;
  }
}

.ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer a.button {
  margin-top: auto;
}

.CMSLandingpages p > a.button, .CMSLandingpages a.button {
  margin: 0 16px 16px 0;
}

.CMSLandingpages p > a.button:last-child, .CMSLandingpages a.button:last-child {
  margin: 0;
}

.BigSectionNonCMS {
  padding: 2rem 2rem 2rem 2rem;
}

@media (min-width: 1250px) {
  .BigSectionNonCMS {
    padding: 3rem 3rem 3rem 3rem;
  }
}

@media screen and (max-width: 40em) {
  .BigSectionNonCMS {
    padding: 20px 20px 20px 20px;
  }
}

.BigSectionNonCMS:last-child {
  padding-bottom: 4rem;
}

@media (max-width: 1023px) {
  .BigSectionNonCMS:last-child {
    padding-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .BigSectionNonCMS:last-child {
    padding-bottom: 20px;
  }
}

.BigSectionNonCMS.LessPaddingTop {
  padding-top: 2rem;
}

@media (max-width: 640px) {
  .BigSectionNonCMS.LessPaddingTop {
    padding-top: 20px;
  }
}

.BigSectionNonCMS.White {
  background-color: #fff;
}

.BigSectionNonCMS.Grey {
  background-color: #e9e9e9;
}

.BigSectionNonCMS.Grey blockquote, .BigSectionNonCMS.Grey .BlockQuote {
  background-color: #fff;
}

.BigSectionNonCMS.Grey .LoadingOverlayWrapper {
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
}

.BigSectionNonCMS.Grey .LoadingOverlayWrapper .LoadingOverlay {
  background-color: #e9e9e9;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection {
  padding: 2rem 2rem 2rem 2rem;
}

@media (min-width: 1250px) {
  .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection {
    padding: 3rem 3rem 3rem 3rem;
  }
}

@media screen and (max-width: 40em) {
  .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection {
    padding: 20px 20px 20px 20px;
  }
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection:last-child {
  padding-bottom: 4rem;
}

@media (max-width: 640px) {
  .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection:last-child {
    padding-bottom: 2rem;
  }
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.IsImageCarousel {
  padding: 0;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White {
  background-color: #fff;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsColouredTextBackgroundColour, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsHotLinesBackgroundColour, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsColouredTextBackgroundColour, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsHotLinesBackgroundColour {
  color: #fff;
  background: #ca3349;
  background: linear-gradient(90deg, #ca3349 50%, #1872c5 100%);
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsColouredTextBackgroundColour h1, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsColouredTextBackgroundColour h2, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsColouredTextBackgroundColour h3, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsColouredTextBackgroundColour h4, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsColouredTextBackgroundColour h5, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsColouredTextBackgroundColour h6, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsColouredTextBackgroundColour p, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsColouredTextBackgroundColour ul, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsColouredTextBackgroundColour ol, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsHotLinesBackgroundColour h1, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsHotLinesBackgroundColour h2, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsHotLinesBackgroundColour h3, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsHotLinesBackgroundColour h4, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsHotLinesBackgroundColour h5, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsHotLinesBackgroundColour h6, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsHotLinesBackgroundColour p, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsHotLinesBackgroundColour ul, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsHotLinesBackgroundColour ol, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsColouredTextBackgroundColour h1, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsColouredTextBackgroundColour h2, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsColouredTextBackgroundColour h3, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsColouredTextBackgroundColour h4, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsColouredTextBackgroundColour h5, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsColouredTextBackgroundColour h6, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsColouredTextBackgroundColour p, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsColouredTextBackgroundColour ul, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsColouredTextBackgroundColour ol, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsHotLinesBackgroundColour h1, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsHotLinesBackgroundColour h2, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsHotLinesBackgroundColour h3, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsHotLinesBackgroundColour h4, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsHotLinesBackgroundColour h5, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsHotLinesBackgroundColour h6, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsHotLinesBackgroundColour p, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsHotLinesBackgroundColour ul, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsHotLinesBackgroundColour ol {
  color: inherit;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsColouredTextBackgroundColour a[href], .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsHotLinesBackgroundColour a[href], .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsColouredTextBackgroundColour a[href], .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsHotLinesBackgroundColour a[href] {
  color: #fff !important;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White.IsHotLinesBackgroundColour, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey.IsHotLinesBackgroundColour {
  background: #ca3349;
  background: linear-gradient(90deg, #ca3349 50%, #ffb400 100%);
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey {
  background-color: #e9e9e9;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey blockquote, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey .BlockQuote {
  background-color: #fff;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey .LoadingOverlayWrapper {
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey .LoadingOverlayWrapper .LoadingOverlay {
  background-color: #e9e9e9;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.SuccessDarker {
  color: #fff;
  background-color: #287e52;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.SuccessDarker blockquote, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.SuccessDarker .BlockQuote {
  background-color: #fff;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.SuccessDarker h1, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.SuccessDarker h2, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.SuccessDarker h3, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.SuccessDarker h4, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.SuccessDarker h5, .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.SuccessDarker h6 {
  color: inherit;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.SuccessDarker a {
  color: inherit;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.SuccessDarker a:hover {
  color: inherit;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.OnlyHeading {
  padding: 2rem 2rem 2rem 2rem;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.OnlyHeading:last-child {
  padding-bottom: 2rem;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.ImageOnlyBannerOverallContainer.ForLandingOrInformationPage {
  padding: 0;
}

@media (min-width: 1024px) {
  .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 761px) and (max-width: 1023px) {
  .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 641px) and (max-width: 760px) {
  .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 320px) {
  .LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr;
  }
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection .CarouselOuterWrapper {
  margin-bottom: 0;
}

.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.White + .BigSection.White,
.LandingOrInformationPage.LandingPage .CMSWrapper > .BigSection.Grey + .BigSection.Grey {
  padding-top: 0;
}

@media (min-width: 1432px) {
  .LandingOrInformationPage.LandingPage .InformationArea .InformationAreaContentWrapper .row {
    max-width: calc(1400px - 32px);
    margin: 0 auto;
  }
}

.LandingOrInformationPage.InformationPage .CMSWrapper > .BigSection, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper > .BigSection, .LandingOrInformationPage.BlogContent .CMSWrapper > .BigSection {
  margin-bottom: 32px;
}

@media screen and (max-width: 40em) {
  .LandingOrInformationPage.InformationPage .CMSWrapper > .BigSection, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper > .BigSection, .LandingOrInformationPage.BlogContent .CMSWrapper > .BigSection {
    margin-bottom: 20px;
  }
}

.LandingOrInformationPage.InformationPage .CMSWrapper > .BigSection:last-child, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper > .BigSection:last-child, .LandingOrInformationPage.BlogContent .CMSWrapper > .BigSection:last-child {
  margin-bottom: 0;
}

.LandingOrInformationPage.InformationPage .CMSWrapper > .BigSection.ImageOnlyBannerOverallContainer.ForLandingOrInformationPage, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper > .BigSection.ImageOnlyBannerOverallContainer.ForLandingOrInformationPage, .LandingOrInformationPage.BlogContent .CMSWrapper > .BigSection.ImageOnlyBannerOverallContainer.ForLandingOrInformationPage {
  margin-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}

@media screen and (min-width: 64em) {
  .LandingOrInformationPage.InformationPage .CMSWrapper > .BigSection h1, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper > .BigSection h1, .LandingOrInformationPage.BlogContent .CMSWrapper > .BigSection h1 {
    margin-top: -8px;
  }
}

@media screen and (min-width: 64em) {
  .LandingOrInformationPage.InformationPage .CMSWrapper > .BigSection + .BigSection h1, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper > .BigSection + .BigSection h1, .LandingOrInformationPage.BlogContent .CMSWrapper > .BigSection + .BigSection h1 {
    margin-top: 0;
  }
}

@media (min-width: 1330px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1250px) and (max-width: 1329px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) and (max-width: 1249px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 761px) and (max-width: 1023px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 641px) and (max-width: 760px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 320px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr;
  }
}

.LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper.Across2, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper.Across2, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper.Across2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 1329px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper.Across2, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper.Across2, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper.Across2 {
    grid-template-columns: 1fr;
  }
}

.LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer {
  padding: 20px;
}

@media (max-width: 640px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer {
    padding: 16px;
  }
}

.LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h2, .LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h3, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h2, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h3, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h2, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h3 {
  font-size: 19px;
}

@media (max-width: 640px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h2, .LandingOrInformationPage.InformationPage .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h3, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h2, .LandingOrInformationPage.InformationWithMenuPage .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h3, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h2, .LandingOrInformationPage.BlogContent .CMSWrapper .ImageAndTextRepeaterWrapper .ImageAndTextRepeaterItem .TextContainer h3 {
    font-size: 17px;
  }
}

.LandingOrInformationPage.InformationPage .parallax-content:last-child .BigInfoArea {
  padding-bottom: 4rem;
}

@media (max-width: 640px) {
  .LandingOrInformationPage.InformationPage .parallax-content:last-child .BigInfoArea {
    padding-bottom: 2rem;
  }
}

.LandingOrInformationPage.InformationPage .BigInfoArea {
  padding: 2rem 2rem 2rem 2rem;
}

@media (min-width: 1250px) {
  .LandingOrInformationPage.InformationPage .BigInfoArea {
    padding: 3rem 3rem 3rem 3rem;
  }
}

@media screen and (max-width: 40em) {
  .LandingOrInformationPage.InformationPage .BigInfoArea {
    padding: 20px 20px 20px 20px;
  }
}

.LandingOrInformationPage.InformationPage .BigInfoArea > .row {
  max-width: 100%;
}

@media (min-width: 1330px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper > .BigSection .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) and (max-width: 1329px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper > .BigSection .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 761px) and (max-width: 1023px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper > .BigSection .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 641px) and (max-width: 760px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper > .BigSection .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 320px) {
  .LandingOrInformationPage.InformationPage .CMSWrapper > .BigSection .ImageAndTextRepeaterWrapper.MeetTheTeamRepeater {
    grid-template-columns: 1fr;
  }
}

.LandingOrInformationPage.HasMoreContentUnderneath {
  margin-bottom: 3rem;
}

@media (max-width: 1023px) {
  .LandingOrInformationPage.HasMoreContentUnderneath {
    margin-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .LandingOrInformationPage.HasMoreContentUnderneath {
    margin-bottom: 20px;
  }
}

.LandingOrInformationPage.HasMoreContentUnderneath .CMSWrapper > .BigSection:last-child {
  padding-bottom: 2rem;
}

@media (min-width: 1250px) {
  .LandingOrInformationPage.HasMoreContentUnderneath .CMSWrapper > .BigSection:last-child {
    padding-bottom: 3rem;
  }
}

@media (min-width: 1330px) {
  .LandingOrInformationPage.HasMoreContentUnderneath .CMSWrapper > .BigSection:last-child {
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 40em) {
  .LandingOrInformationPage.HasMoreContentUnderneath .CMSWrapper > .BigSection:last-child {
    padding-bottom: 20px;
  }
}

.LandingOrInformationPage .CMSWrapper > .BigSection h1:last-child, .LandingOrInformationPage .CMSWrapper > .BigSection h2:last-child, .LandingOrInformationPage .CMSWrapper > .BigSection h3:last-child, .LandingOrInformationPage .CMSWrapper > .BigSection h4:last-child, .LandingOrInformationPage .CMSWrapper > .BigSection h5:last-child, .LandingOrInformationPage .CMSWrapper > .BigSection h6:last-child {
  margin-bottom: 0;
}

.LandingOrInformationPage .CMSWrapper img {
  display: block;
  max-width: 100%;
}

.TradeExcludingVATLabel {
  font-size: 12px;
  margin: 0;
  color: #888888;
}

.TopBannerWrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #d9d9d9;
}

.TopBannerWrapper.Thin {
  align-items: flex-start;
  height: 175px;
  padding-bottom: 0;
  overflow: hidden;
}

@media screen and (max-width: 40em) {
  .TopBannerWrapper.Thin {
    height: unset;
  }
}

@media (min-width: 641px) {
  .TopBannerWrapper.Thin .ThinBannerTextUnderlay {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 75%;
    top: 0;
    left: 0;
    background: white;
    background: linear-gradient(90deg, white 0%, white 60%, rgba(0, 212, 255, 0) 100%);
  }
}

@media (min-width: 1024px) {
  .TopBannerWrapper.Thin .ThinBannerTextUnderlay {
    width: 70%;
  }
}

@media screen and (max-width: 40em) {
  .TopBannerWrapper.Thin .ThinBannerTextUnderlay {
    display: none;
  }
}

.TopBannerWrapper.Thin .ThinBannerTextOuterWrapper {
  position: relative;
  height: 100%;
}

@media (min-width: 641px) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper {
    width: calc(100% - 32px);
  }
}

@media (min-width: 1560px) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper {
    width: calc(100% - 60px);
  }
}

@media (min-width: 1600px) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper {
    width: 1502px;
  }
}

@media screen and (max-width: 40em) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper {
    width: 100%;
  }
}

.TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper {
  display: flex;
  flex-direction: column;
}

@media (min-width: 641px) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper {
    justify-content: center;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
    padding: 28px 16px 28px 16px;
    overflow: auto;
  }
}

@media (min-width: 751px) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper {
    width: 50%;
  }
}

@media screen and (max-width: 40em) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper {
    width: 100%;
    background-color: #e9e9e9;
    padding: 12px 16px 16px 16px;
  }
}

.TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper h1, .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper h2 {
  margin: 0 0 6px 0;
}

.TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper h1:last-child, .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper h2:last-child {
  margin-bottom: 0;
}

.TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper h1 {
  margin-bottom: 0;
}

@media (max-width: 750px) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper h1 {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper h1 {
    font-size: 24px;
  }
}

@media (max-width: 640px) and (orientation: landscape), only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper h1 {
    font-size: 28px;
  }
}

.TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper h1:first-child:last-child {
  margin-bottom: -4px;
}

@media (max-width: 750px) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper h2 {
    font-size: 23px;
  }
}

@media (max-width: 640px) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper h2 {
    font-size: 19px;
  }
}

@media (max-width: 640px) and (orientation: landscape), only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) {
  .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper h2 {
    font-size: 23px;
  }
}

.TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper ul, .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper ol, .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper p {
  display: block;
  width: 100%;
  list-style: none;
  margin: 0 0 9px 0;
  padding: 0;
}

.TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper ul:last-child, .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper ol:last-child, .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper p:last-child {
  margin-bottom: 0;
}

.TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper ul li, .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper ol li, .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper p li {
  display: inline;
}

.TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper ul li:after, .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper ol li:after, .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper p li:after {
  margin: 0 5px 0 6px;
  content: "-";
}

.TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper ul li:last-child:after, .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper ol li:last-child:after, .TopBannerWrapper.Thin .ThinBannerTextOuterWrapper .ThinBannerTextWrapper p li:last-child:after {
  display: none;
}

.TopBannerWrapper.Thin > img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: unset;
  max-width: unset;
  height: 100%;
}

@media screen and (max-width: 40em) {
  .TopBannerWrapper.Thin > img {
    position: relative;
    height: 90px;
  }
}

.TopBannerWrapper .TitleBlock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
}

@media (max-width: 1249px) {
  .TopBannerWrapper .TitleBlock {
    font-size: 23px;
    padding: 8px 14px 8px 14px;
    border-radius: 8px;
  }
}

@media screen and (max-width: 63.9375em) {
  .TopBannerWrapper .TitleBlock {
    font-size: 20px;
    padding: 6px 12px 6px 12px;
    border-radius: 6px;
  }
}

@media screen and (max-width: 40em) {
  .TopBannerWrapper .TitleBlock {
    padding: 2px 6px 2px 6px;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 500;
  }
}

@media (max-width: 320px) {
  .TopBannerWrapper .TitleBlock {
    border-radius: 3px;
  }
}

.TopBannerWrapper .FullWidthBannerImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media (max-width: 640px) {
  .TopBannerWrapper .FullWidthBannerImage {
    left: 50%;
    transform: translateX(-50%);
    max-width: auto;
    max-width: initial;
    max-width: unset;
    width: auto;
    width: initial;
    width: unset;
    height: 100%;
  }
}

.TopBannerWrapper + .BigSection.White:last-child {
  padding-bottom: 0 !important;
}

/*# sourceMappingURL=CriticalPaint.css.map */
.Color_White {
  color: black;
  background-color: white;
}

.Color_Yellow {
  color: black;
  background-color: yellow;
}

button#ihavecookiesBtn {
  margin-left: 0px !important;
}

/* Cookie Dialog */
#gdpr-cookie-message {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

@media (max-width: 640px) {
  #gdpr-cookie-message {
    font-size: 13px;
  }
}

#gdpr-cookie-message * {
  color: inherit;
}

body.HasStickyBottomNavigationOnPage #gdpr-cookie-message {
  display: none !important;
}

#gdpr-cookie-display-wrapper {
  display: flex;
  flex-direction: column;
  width: 684px;
  max-height: calc(100% - 32px);
  max-width: calc(100% - 32px);
  padding: 32px;
  background-color: #fff;
  border: 1px solid #111111;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.5);
  overflow: auto;
}

@media (max-width: 740px) {
  #gdpr-cookie-display-wrapper {
    padding: 20px;
  }
}

#gdpr-cookie-content-wrapper {
  margin: 0 0 20px 0;
}

#gdpr-cookie-message h4, #gdpr-cookie-message h5 {
  font-family: "Rajdhani", sans-serif;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 8px;
}

@media (max-width: 740px) {
  #gdpr-cookie-message h4, #gdpr-cookie-message h5 {
    font-size: 18px;
  }
}

@media (max-width: 320px) {
  #gdpr-cookie-message h4, #gdpr-cookie-message h5 {
    font-size: 17px;
  }
}

#gdpr-cookie-message p, #gdpr-cookie-message ul {
  font-size: inherit;
  line-height: 1.5;
  margin-bottom: 0;
}

#gdpr-cookie-message p:last-child {
  margin-bottom: 0;
  text-align: right;
}

#gdpr-cookie-message li {
  width: 100%;
  display: flex;
}

#gdpr-cookie-types {
  margin-top: 16px;
}

#gdpr-cookie-types [type='checkbox'] + label,
#gdpr-cookie-types [type='checkbox'] + .Label {
  font-size: inherit;
  font-weight: normal;
  margin-bottom: 10px;
  width: unset;
}

#gdpr-cookie-message a {
  text-decoration: underline;
}

#gdpr-cookie-message a:hover {
  color: #ca3349;
}

#gdpr-cookie-button-wrapper {
  display: flex;
  flex-shrink: 0;
}

#gdpr-cookie-message button,
button#gdpr-cookie-accept {
  border: none;
  color: #fff;
  background: #1872c5;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  font-size: 18px;
  height: 32px;
  padding: 6px 12px 6px 12px;
  border-radius: 0;
}

@media (max-width: 320px) {
  #gdpr-cookie-message button,
  button#gdpr-cookie-accept {
    font-size: 16px;
  }
}

#gdpr-cookie-message button:hover, #gdpr-cookie-message button:active,
button#gdpr-cookie-accept:hover,
button#gdpr-cookie-accept:active {
  background: #ca3349;
}

button#gdpr-cookie-accept {
  order: 99;
  margin: 0 0 0 auto;
}

button#gdpr-cookie-advanced {
  color: #fff;
  background: #111111;
}

button#gdpr-cookie-advanced:hover, button#gdpr-cookie-advanced:active {
  background: #ca3349;
}

button#gdpr-cookie-advanced:disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  background: #111111 !important;
}

#gdpr-cookie-message input[type="checkbox"] {
  float: none;
  margin-top: 1px;
  margin-right: 5px;
  accent-color: #1872c5;
}

@media (max-width: 640px) {
  #gdpr-cookie-message input[type="checkbox"] {
    margin-top: -1px;
  }
}

/*# sourceMappingURL=CookieMessage.css.map */
.Color_White {
  color: black;
  background-color: white;
}

.Color_Yellow {
  color: black;
  background-color: yellow;
}

.IsLoaded {
  animation: none;
}

.TrafficLight {
  cursor: default;
  min-width: 12px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 1px solid #222222;
}

.TrafficLight.RED {
  background-color: #fa5353;
}

.TrafficLight.AMBER {
  background-color: #ec8500;
}

.TrafficLight.GREEN {
  background-color: #21b56e;
}

.TrafficLight.YELLOW {
  background-color: #dd30ae;
}

.TrafficLight.PURPLE {
  background-color: #21b56e;
}

.TrafficLight.SOMEOTHERCOLOUR, .TrafficLight.BLUE {
  background-color: #0692cc;
}

.SVGSpriteIcon {
  flex-shrink: 0;
  background-image: none;
  background-position: 0;
}

svg, .SVGSpriteIcon {
  display: block;
}

svg.IsActive use, .SVGSpriteIcon.IsActive use {
  --Icon-Default-Colour: #1872c5;
}

svg.Light use, .SVGSpriteIcon.Light use {
  --Icon-Default-Colour: #fff;
}

svg.Error use, .SVGSpriteIcon.Error use {
  --Icon-Default-Colour: #f43b3f;
}

svg.Success use, .SVGSpriteIcon.Success use {
  --Icon-Default-Colour: #009552;
}

svg.NoCursor, .SVGSpriteIcon.NoCursor {
  cursor: default;
}

svg.NoFilter, .SVGSpriteIcon.NoFilter {
  filter: none;
}

svg.LoadingSpinner, .SVGSpriteIcon.LoadingSpinner {
  animation: spin 1.8s linear infinite;
  width: 44px;
  height: 44px;
  transform-box: fill-box;
  transform-origin: center;
}

@-moz-document url-prefix() {
  svg.LoadingSpinner, .SVGSpriteIcon.LoadingSpinner {
    animation: spin 3.2s linear infinite;
  }
}

svg.LoadingSpinner.Medium, .SVGSpriteIcon.LoadingSpinner.Medium {
  width: 36px;
  height: 36px;
}

svg.LoadingSpinner.Small, .SVGSpriteIcon.LoadingSpinner.Small {
  width: 18px;
  height: 18px;
}

svg.MainMenuIcon, .SVGSpriteIcon.MainMenuIcon {
  width: 26px;
  height: 19px;
}

svg.InfoIcon, .SVGSpriteIcon.InfoIcon {
  width: 23px;
  height: 23px;
}

svg.UploadIcon, .SVGSpriteIcon.UploadIcon {
  width: 35px;
  height: 35px;
}

svg.DownloadIcon, .SVGSpriteIcon.DownloadIcon {
  width: 35px;
  height: 35px;
}

svg.InputIcon, .SVGSpriteIcon.InputIcon {
  width: 47px;
  height: 35px;
}

svg.FileIcon, .SVGSpriteIcon.FileIcon {
  width: 22px;
  height: 28px;
}

svg.PDFIcon, .SVGSpriteIcon.PDFIcon {
  width: 25px;
  height: 28px;
}

svg.ExclamationIcon, .SVGSpriteIcon.ExclamationIcon {
  width: 21px;
  height: 21px;
}

svg.ZoomIcon, .SVGSpriteIcon.ZoomIcon {
  height: 29px;
  width: 29px;
}

svg.PreviousImage, .SVGSpriteIcon.PreviousImage {
  z-index: 2;
  height: 25px;
  width: 15px;
}

svg.NextImage, .SVGSpriteIcon.NextImage {
  z-index: 2;
  height: 25px;
  width: 15px;
}

svg.CrossIcon, .SVGSpriteIcon.CrossIcon {
  width: 18px;
  height: 18px;
}

svg.CrossIcon.MediumSmall, .SVGSpriteIcon.CrossIcon.MediumSmall {
  width: 26px;
  height: 26px;
}

svg.CrossIcon.Medium, .SVGSpriteIcon.CrossIcon.Medium {
  width: 32px;
  height: 32px;
}

svg.CrossIcon.Big, .SVGSpriteIcon.CrossIcon.Big {
  width: 60px;
  height: 60px;
}

svg.TickIcon, .SVGSpriteIcon.TickIcon {
  width: 18px;
  height: 18px;
}

svg.TickIcon.MediumSmall, .SVGSpriteIcon.TickIcon.MediumSmall {
  width: 26px;
  height: 26px;
}

svg.TickIcon.Medium, .SVGSpriteIcon.TickIcon.Medium {
  width: 32px;
  height: 32px;
}

svg.TickIcon.Big, .SVGSpriteIcon.TickIcon.Big {
  width: 60px;
  height: 60px;
}

svg.EmailIcon, .SVGSpriteIcon.EmailIcon {
  width: 24px;
  height: 18px;
}

svg.EmailIcon.Medium, .SVGSpriteIcon.EmailIcon.Medium {
  width: 34px;
  height: 26px;
}

svg.EmailIcon.Large, .SVGSpriteIcon.EmailIcon.Large {
  width: 48px;
  height: 36px;
}

svg.ChevronIcon, .SVGSpriteIcon.ChevronIcon {
  width: 21px;
  height: 13px;
}

svg.ChevronIcon.Large, .SVGSpriteIcon.ChevronIcon.Large {
  width: 25px;
  height: 15px;
}

svg.ChevronIcon.Small, .SVGSpriteIcon.ChevronIcon.Small {
  width: 14px;
  height: 9px;
}

svg.ChevronIcon.Tiny, .SVGSpriteIcon.ChevronIcon.Tiny {
  width: 11px;
  height: 7px;
}

svg.ChevronIcon.Up, .SVGSpriteIcon.ChevronIcon.Up {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

svg.ChevronIcon.Right, .SVGSpriteIcon.ChevronIcon.Right {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

svg.ChevronIcon.Left, .SVGSpriteIcon.ChevronIcon.Left {
  -webkit-transform: rotate(-270deg);
  transform: rotate(-270deg);
}

svg.BigLinkArrowIcon.Down, svg.BigLinkArrowIcon.Up, .SVGSpriteIcon.BigLinkArrowIcon.Down, .SVGSpriteIcon.BigLinkArrowIcon.Up {
  width: 26px;
  height: 36px;
}

svg.BigLinkArrowIcon.Up, .SVGSpriteIcon.BigLinkArrowIcon.Up {
  transform: rotate(180deg);
}

svg.TelephoneIcon, .SVGSpriteIcon.TelephoneIcon {
  width: 24px;
  height: 24px;
}

svg.FavouritesIcon, .SVGSpriteIcon.FavouritesIcon {
  width: 33px;
  height: 30px;
}

@media (min-width: 1330px) {
  svg.FavouritesIcon.Medium, .SVGSpriteIcon.FavouritesIcon.Medium {
    width: 44px;
    height: 40px;
  }
}

svg.FavouritesIcon.IsActive use, .SVGSpriteIcon.FavouritesIcon.IsActive use {
  --Icon-Default-Colour: #f6a313;
}

svg.WishListIcon, .SVGSpriteIcon.WishListIcon {
  width: 33px;
  height: 30px;
}

@media (min-width: 1330px) {
  svg.WishListIcon.Medium, .SVGSpriteIcon.WishListIcon.Medium {
    width: 44px;
    height: 40px;
  }
}

svg.WishListIcon.IsActive use, .SVGSpriteIcon.WishListIcon.IsActive use {
  --Icon-Default-Colour: #ca3349;
}

svg.CommentIcon, .SVGSpriteIcon.CommentIcon {
  width: 24px;
  height: 24px;
}

svg.CommentIcon.Large, .SVGSpriteIcon.CommentIcon.Large {
  width: 48px;
  height: 48px;
}

svg.PlusMinus, .SVGSpriteIcon.PlusMinus {
  position: relative;
  width: 17px;
  height: 17px;
}

svg.FilterExpanderIcon, .SVGSpriteIcon.FilterExpanderIcon {
  width: 16px;
  height: 19px;
}

svg.MyAccountIcon, svg.MyAccountLoggedInIcon, .SVGSpriteIcon.MyAccountIcon, .SVGSpriteIcon.MyAccountLoggedInIcon {
  width: 27px;
  height: 30px;
}

svg.SearchIcon, .SVGSpriteIcon.SearchIcon {
  width: 29px;
  height: 29px;
}

@media screen and (max-width: 63.9375em) {
  svg.SearchIcon.Medium, .SVGSpriteIcon.SearchIcon.Medium {
    width: 25px;
    height: 25px;
  }
}

svg.SearchIcon.Small, .SVGSpriteIcon.SearchIcon.Small {
  width: 20px;
  height: 20px;
}

svg.BasketIcon, svg.AddToBasketIcon, .SVGSpriteIcon.BasketIcon, .SVGSpriteIcon.AddToBasketIcon {
  width: 38px;
  height: 30px;
}

svg.BasketIcon.Small, svg.AddToBasketIcon.Small, .SVGSpriteIcon.BasketIcon.Small, .SVGSpriteIcon.AddToBasketIcon.Small {
  width: 28px;
  height: 22px;
}

svg.EditIcon, .SVGSpriteIcon.EditIcon {
  width: 21px;
  height: 19px;
}

svg.DeleteIcon, .SVGSpriteIcon.DeleteIcon {
  width: 17px;
  height: 20px;
}

svg.ComposeIcon, .SVGSpriteIcon.ComposeIcon {
  width: 23px;
  height: 23px;
}

svg.MapPinIcon, .SVGSpriteIcon.MapPinIcon {
  width: 17px;
  height: 24px;
}

svg.SocialMediaIcon, .SVGSpriteIcon.SocialMediaIcon {
  width: 28px;
  height: 28px;
}

svg.RevealPasswordIcon, .SVGSpriteIcon.RevealPasswordIcon {
  width: 26px;
  height: 15px;
}

svg.HidePasswordIcon, .SVGSpriteIcon.HidePasswordIcon {
  width: 26px;
  height: 23px;
}

svg.GiftVoucherBalance, .SVGSpriteIcon.GiftVoucherBalance {
  width: 50px;
  height: 36px;
}

svg.AccountTileIcon-TradeQuickOrder, .SVGSpriteIcon.AccountTileIcon-TradeQuickOrder {
  width: 100px;
  height: 60px;
}

svg.AccountTileIcon-TradeQuickOrder.Small, .SVGSpriteIcon.AccountTileIcon-TradeQuickOrder.Small {
  width: 60px;
  height: 36px;
}

svg.AccountTileIcon-ChangePassword, .SVGSpriteIcon.AccountTileIcon-ChangePassword {
  width: 60px;
  height: 59px;
}

svg.AccountTileIcon-ChangePassword.Small, .SVGSpriteIcon.AccountTileIcon-ChangePassword.Small {
  width: 32px;
  height: 30px;
}

svg.AccountTileIcon-Offers, .SVGSpriteIcon.AccountTileIcon-Offers {
  width: 59px;
  height: 60px;
}

svg.AccountTileIcon-Offers.Small, .SVGSpriteIcon.AccountTileIcon-Offers.Small {
  width: 30px;
  height: 30px;
}

svg.AccountTileIcon-MultiAccountUser, .SVGSpriteIcon.AccountTileIcon-MultiAccountUser {
  width: 134px;
  height: 60px;
}

svg.AccountTileIcon-MultiAccountUser.Small, .SVGSpriteIcon.AccountTileIcon-MultiAccountUser.Small {
  width: 67px;
  height: 30px;
}

svg.AccountTileIcon-EditDetails, .SVGSpriteIcon.AccountTileIcon-EditDetails {
  width: 106px;
  height: 60px;
}

svg.AccountTileIcon-EditDetails.Small, .SVGSpriteIcon.AccountTileIcon-EditDetails.Small {
  width: 53px;
  height: 30px;
}

svg.AccountTileIcon-YouTube, .SVGSpriteIcon.AccountTileIcon-YouTube {
  width: 85px;
  height: 60px;
}

/*# sourceMappingURL=SpriteProject.css.map */
.Color_White {
  color: black;
  background-color: white;
}

.Color_Yellow {
  color: black;
  background-color: yellow;
}

/* #region Tabs and Tabbed Content */
.TabsWrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.TabsWrapper:last-child {
  margin-bottom: 0;
}

.TabsWrapper.RenderNotAsTabs > .tabs {
  display: none !important;
}

.TabsWrapper.RenderNotAsTabs > .tabs-content > .TabsPanelOverflowWrapper > .tabs-panel {
  padding: 0 !important;
  border: none !important;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  padding-bottom: 1px;
  background-color: transparent;
  border: none;
}

@media screen and (max-width: 40em) {
  .tabs {
    background-color: #fff;
    box-shadow: inset 0 0 0 1px #d9d4d1;
  }
}

@media screen and (min-width: 40.0625em) {
  .tabs:after {
    display: block;
    content: "";
    position: absolute;
    z-index: 2;
    left: 1px;
    right: 1px;
    bottom: 0;
    border-bottom: 1px solid #d9d4d1;
    pointer-events: none;
  }
}

.tabs.HasImages {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media screen and (max-width: 40em) {
  .tabs.HasImages {
    width: calc(100% + 1px);
    box-shadow: none;
  }
}

@media screen and (min-width: 40.0625em) {
  .tabs.HasImages:after {
    display: none;
  }
}

.tabs.HasImages .tabs-title {
  height: 84px;
  width: 120px;
  flex-grow: unset;
}

@media (max-width: 640px) {
  .tabs.HasImages .tabs-title {
    height: 75px;
    width: 25%;
  }
}

@media (max-width: 320px) {
  .tabs.HasImages .tabs-title {
    height: 70px;
    width: 33.33333%;
  }
}

.tabs.HasImages .tabs-title.is-active a:before {
  display: block;
  background-color: #ca3349 !important;
}

.tabs.HasImages .tabs-title a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 12px 12px 12px 12px;
  background-color: #fff !important;
}

.tabs.HasImages .tabs-title a:hover:before {
  display: block;
}

.tabs.HasImages .tabs-title a:before {
  display: none;
  position: absolute;
  z-index: 5;
  content: "";
  bottom: -1px;
  left: -1px;
  height: 5px;
  width: calc(100% + 2px);
  background-color: #1872c5;
}

.tabs.HasImages .tabs-title a img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

@media screen and (min-width: 40.0625em) {
  .tabs.Under3Tabs .tabs-title, .tabs.TabsNoGrow .tabs-title {
    flex-grow: unset;
  }
}

@media screen and (min-width: 40.0625em) {
  .tabs.JustifuyTabsCentre {
    justify-content: center;
  }
}

.tabs.HasHeavyTabHoverStyling.HasIcons .tabs-title.is-active a .SVGSpriteIcon use, .tabs.HasHeavyTabHoverStyling.HasIcons .tabs-title:hover a .SVGSpriteIcon use {
  --Icon-Default-Colour: #fff;
}

.tabs.HasHeavyTabHoverStyling .tabs-title:not(.is-active) > a:hover {
  color: #fff;
  background-color: #1872c5;
}

.tabs.HasHeavyTabHoverStyling .tabs-title:not(.is-active) > a:hover:focus, .tabs.HasHeavyTabHoverStyling .tabs-title:not(.is-active) > a:hover:active {
  color: #fff;
}

.tabs.HasIcons .tabs-title a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 20px;
  font-size: 20px;
}

@media (max-width: 480px) {
  .tabs.HasIcons .tabs-title a {
    padding: 13px 14px;
  }
}

@media (max-width: 370px) {
  .tabs.HasIcons .tabs-title a {
    font-size: 16px;
  }
}

.tabs .tabs-title {
  display: inline-flex;
  flex-grow: 2;
  vertical-align: top;
  margin-bottom: -1px;
  margin-right: -1px;
}

.tabs .tabs-title:last-child {
  margin-right: 0;
}

.tabs .tabs-title:first-child:last-child {
  flex-grow: unset;
  margin-right: 0;
}

.tabs .tabs-title.is-active > a {
  background-color: #ca3349;
  color: #fff;
  text-decoration: none;
  border-color: #d9d4d1;
}

.tabs .tabs-title.is-active > a:hover, .tabs .tabs-title.is-active > a:focus, .tabs .tabs-title.is-active > a:active {
  color: #fff;
  background-color: #ca3349;
  cursor: default;
}

.tabs .tabs-title.Disabled {
  pointer-events: none;
  background-color: #ebe6e3;
}

.tabs .tabs-title.Disabled > a {
  color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed !important;
}

.tabs .tabs-title.Disabled > a:hover, .tabs .tabs-title.Disabled > a:focus, .tabs .tabs-title.Disabled > a:active {
  color: #000000;
  border-color: #ebe6e3 !important;
  background-color: #ebe6e3 !important;
  color: rgba(0, 0, 0, 0.4) !important;
}

.tabs .tabs-title > a {
  display: block;
  background-color: #fff;
  border: 1px solid #d9d4d1;
  width: 100%;
  padding: 10px 12px 9px 12px;
  font-size: 16px;
  line-height: 1.3;
  color: #111111;
  text-decoration: none;
}

@media screen and (max-width: 40em) {
  .tabs .tabs-title > a {
    font-size: 13px;
  }
}

.tabs .tabs-title > a:hover {
  z-index: 2;
  color: #111111;
  background-color: #dbebfb;
  text-decoration: none;
}

.tabs .tabs-title > a:active {
  color: #111111;
}

.tabs .tabs-title > a:focus {
  z-index: 3;
  color: #111111;
}

.tabs .tabs-title > a:focus:after {
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
}

.tabs.HideMe + .tabs-content {
  display: none !important;
}

.tabs.HasImages + .tabs-content {
  margin-top: -1px;
  border: none;
}

.tabs-content {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #d9d4d1;
  border-top: none;
  border-radius: 0 0 0 0;
}

.tabs-content .TabsPanelOverflowWrapper {
  padding: 0;
}

@media screen and (min-width: 64em) {
  .tabs-content .TabsPanelOverflowWrapper.HasScrollableContent {
    overflow-y: auto;
    max-height: 500px;
  }
}

@media screen and (min-width: 120em) {
  .tabs-content .TabsPanelOverflowWrapper.HasScrollableContent {
    max-height: 600px;
  }
}

@media screen and (min-width: 64em) {
  .tabs-content .TabsPanelOverflowWrapper.HasScrollableContent.ProductTableMaxHeight {
    max-height: 800px;
  }
}

.tabs-content > .LoadingOverlayWrapper {
  top: 2px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 3px);
}

.tabs-content > .LoadingOverlayWrapper .LoadingOverlay {
  border-radius: 0 0 0 0;
}

.tabs-content .tabs-panel {
  background-color: #fff;
  min-height: 61px;
  padding: 16px 16px 16px 16px;
}

@media screen and (min-width: 64em) {
  .tabs-content .tabs-panel {
    padding-top: 18px;
  }
}

@media screen and (max-width: 40em) {
  .tabs-content .tabs-panel.SmallPaddingOnMobile {
    padding: 6px 6px 6px 6px;
  }
}

.tabs-content .tabs-panel > .LoadingOverlayWrapper .LoadingOverlay {
  border-radius: 0 0 0 0;
}

/* #endregion Tabs and Tabbed Content */

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