/*
Reboot
Normalization of HTML elements, manually forked from Normalize.css to remove styles targeting irrelevant browsers while applying new styles.
Normalize is licensed MIT. https://github.com/necolas/normalize.css
* Bootstrap v4.0.0-beta (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*
Document
1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
2. Change the default font family in all browsers.
3. Correct the line height in all browsers.
4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.
5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
6. Change the default tap highlight to be completely transparent in iOS.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
  /* 1 */
}

html {
  font-family: sans-serif;
  /* 2 */
  line-height: 1.15;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 4 */
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: transparent;
  /* 6 */
}

/* IE10+ doesn't honor `<meta name="viewport">` in some cases. */
@-ms-viewport {
  width: device-width;
}
/* stylelint-disable selector-list-comma-newline-after
Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers) */
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/*
Body
1. Remove the margin in all browsers.
2. As a best practice, apply a default `background-color`.
3. Set an explicit initial text-align value so that we can later use the `inherit` value on things like `<th>` elements.
*/
body {
  margin: 0;
  /* 1 */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  /* 3 */
  background-color: #fff;
  /* 2 */
}

/*
Suppress the focus outline on elements that cannot be accessed via keyboard.
This prevents an unwanted focus outline from appearing around elements that might still respond to pointer events.
Credit: https://github.com/suitcss/base
*/
[tabindex="-1"]:focus {
  outline: none !important;
}

/* 
Content grouping
1. Add the correct box sizing in Firefox.
2. Show the overflow in Edge and IE.
*/
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/* 
Typography
*/
/* 
Remove top margins from headings
By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top margin for easier control within type scales as it avoids margin collapsing.
*/
h1, h2, h3, h4, h5, .payment-form legend, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

/*
Reset margins on paragraphs
Similarly, the top margin on `<p>`s get reset. However, we also reset the bottom margin to use `rem` units instead of `em`.
*/
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/*
Abbreviations
1. Remove the bottom border in Firefox 39-.
2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
3. Add explicit cursor to indicate changed behavior.
4. Duplicate behavior to the data-* attribute for our tooltip plugin
*/
abbr[title],
abbr[data-original-title] {
  /* 4 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
  cursor: help;
  /* 3 */
  border-bottom: 0;
  /* 1 */
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
  /* Undo browser default */
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
  /* Add the correct font style in Android 4.3- */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

small {
  font-size: 80%;
  /* Add the correct font size in all browsers */
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/*
Links
*/
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  /* Remove the gray background on active links in IE 10. */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+. */
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/*
And undo these styles for placeholder links/named anchors (without href) which have not been made explicitly keyboard-focusable (without tabindex). It would be more straightforward to just use a[href] in previous block, but that causes specificity issues in many other styles that are too complex to fix.
See https://github.com/twbs/bootstrap/issues/19402
*/
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

/*
Code
*/
pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* Correct the inheritance and scaling of font size in all browsers. */
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers. */
}

pre {
  /* Remove browser default top margin */
  margin-top: 0;
  /* Reset browser default of `1em` to use `rem`s */
  margin-bottom: 1rem;
  /* Don't allow content to break outside */
  overflow: auto;
  /* We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to counteract. */
  -ms-overflow-style: scrollbar;
}

/*
Figures
*/
figure {
  /* Apply a consistent margin strategy (matches our type styles). */
  margin: 0 0 1rem;
}

/*
Images and content
*/
img {
  vertical-align: middle;
  border-style: none;
  /* Remove the border on images inside links in IE 10-. */
}

svg:not(:root) {
  overflow: hidden;
  /* Hide the overflow in IE */
}

/*
Avoid 300ms click delay on touch devices that support the `touch-action` CSS property.
In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11 DON'T remove the click delay when `<meta name="viewport" content="width=device-width">` is present. However, they DO support removing the click delay via `touch-action: manipulation`.
See:
* https://getbootstrap.com/docs/4.0/content/reboot/#click-delay-optimization-for-touch
* https://caniuse.com/#feat=css-touch-action
*  https://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay
*/
a,
area,
button,
[role="button"],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/*
Tables
*/
table {
  border-collapse: collapse;
  /* Prevent double borders */
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #868e96;
  text-align: left;
  caption-side: bottom;
}

th {
  /* Matches default `<td>` alignment by inheriting from the `<body>`, or the closest parent with a set `text-align`. */
  text-align: inherit;
}

/*
Forms
*/
label {
  /* Allow labels to use `margin` for spacing. */
  display: inline-block;
  margin-bottom: .5rem;
}

/*
Remove the default `border-radius` that macOS Chrome adds.
Details at https://github.com/twbs/bootstrap/issues/24093
*/
button {
  border-radius: 0;
}

/*
Work around a Firefox/IE bug where the transparent `button` background results in a loss of the default `button` focus styles.
Credit: https://github.com/suitcss/base/
*/
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  /* Remove the margin in Firefox and Safari */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
  /* Show the overflow in Edge */
}

button,
select {
  text-transform: none;
  /* Remove the inheritance of text transform in Firefox */
}

/*
1. Prevent a WebKit bug where (2) destroys native `audio` and `video` controls in Android 4.
2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/*
Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  /* 1. Add the correct box sizing in IE 10- */
  padding: 0;
  /* 2. Remove the padding in IE 10- */
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  /* 
  Remove the default appearance of temporal inputs to avoid a Mobile Safari bug where setting a custom line-height prevents text from being vertically centered within the input.
  
  See https://bugs.webkit.org/show_bug.cgi?id=139848
  and https://github.com/twbs/bootstrap/issues/11266
  */
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  /* Remove the default vertical scrollbar in IE. */
  /* Textareas should really only resize vertically so they don't break their (horizontal) containers. */
  resize: vertical;
}

fieldset {
  /* 
  Browsers set a default `min-width: min-content;` on fieldsets, unlike e.g. `<div>`s, which have `min-width: 0;` by default. So we reset that to ensure fieldsets behave more like a standard block element.
  
  See https://github.com/twbs/bootstrap/issues/12359
  and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements  
  */
  min-width: 0;
  /* Reset the default outline behavior of fieldsets so they don't affect page layout. */
  padding: 0;
  margin: 0;
  border: 0;
}

/*
1. Correct the text wrapping in Edge and IE.
2. Correct the color inheritance from `fieldset` elements in IE.
*/
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  /* 1 */
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

progress {
  vertical-align: baseline;
  /* Add the correct vertical alignment in Chrome, Firefox, and Opera. */
}

/* 
Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  /* 
  This overrides the extra rounded corners on search inputs in iOS so that our `.form-control` class can properly style them. Note that this cannot simply be added to `.form-control` as it's not specific enough. 
  
  For details, see https://github.com/twbs/bootstrap/issues/11586.
  */
  outline-offset: -2px;
  -webkit-appearance: none;
}

/*
Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/*
Correct element displays
*/
output {
  display: inline-block;
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

template {
  display: none;
  /* Add the correct display in IE */
}

/* 
Always hide an element with the `hidden` HTML attribute (from PureCSS).
Needed for proper display in IE 10-.
*/
[hidden] {
  display: none !important;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1,150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90,150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90,150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: .75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s)*.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity .15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: transparent;
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container::backdrop {
  background-color: transparent;
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__backdrop:empty, .fancybox__viewport:empty, .fancybox__track:empty, .fancybox__slide:empty {
  display: block;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  will-change: transform,width,height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
  filter: blur(0px);
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: .75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all .25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: .15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: .15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0))*-0.5);
  width: calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform .33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path .33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: transparent;
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity .2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset(0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0));
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn .2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI Adjusted","Segoe UI","Liberation Sans",sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: .15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: .3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../../fonts/montserrat/subset-Montserrat-Regular.woff2") format("woff2"), url("../../fonts/montserrat/subset-Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url("../../fonts/montserrat/subset-Montserrat-Italic.woff2") format("woff2"), url("../../fonts/montserrat/subset-Montserrat-Italic.woff") format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Montserrat';
  src: url("../../fonts/montserrat/subset-Montserrat-SemiBold.woff2") format("woff2"), url("../../fonts/montserrat/subset-Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url("../../fonts/montserrat/subset-Montserrat-SemiBoldItalic.woff2") format("woff2"), url("../../fonts/montserrat/subset-Montserrat-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Montserrat';
  src: url("../../fonts/montserrat/subset-Montserrat-Bold.woff2") format("woff2"), url("../../fonts/montserrat/subset-Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url("../../fonts/montserrat/subset-Montserrat-BoldItalic.woff2") format("woff2"), url("../../fonts/montserrat/subset-Montserrat-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
p {
  font-size: 14px;
  font-weight: 400;
}

b, strong {
  font-weight: 700;
}

h1, h2, h3, h4, h5, .payment-form legend, h6, h7, h8 {
  font-weight: 700;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5, .payment-form legend {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

h7 {
  font-size: 12px;
}

h8 {
  font-size: 10px;
}

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

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
}

.transition-ease, a,
input,
button, .btn-light-blue path, .custom-box label, .custom-box input:placeholder-shown:not(:focus) + label, header#header .menu-bar li > a svg, #mini-cart, footer#footer .upper .social-icons ul a i, #parts-page .categories .single-category .inner .gradient, #parts-page .categories .single-category h6, #parts-page .categories .single-category h7, #parts-page .freeform-row [class*="freeform-col-"].floating input:placeholder-shown:not(:focus) + *, #parts-page .freeform-row [class*="freeform-col-"].floating textarea:placeholder-shown:not(:focus) + *, #parts-page .freeform-row [class*="freeform-col-"].floating select:placeholder-shown:not(:focus) + *, #parts-page .freeform-row [class*="freeform-col-"].floating input, #parts-page .freeform-row [class*="freeform-col-"].floating .StripeElement, #parts-page .freeform-row [class*="freeform-col-"].floating textarea, #parts-page .freeform-row [class*="freeform-col-"].floating select, #parts-page .freeform-row .freeform-fieldtype-submit button {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

a,
input,
button {
  outline: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

a, button {
  border: 1px solid transparent;
}

a:focus, button:focus {
  border: 1px dotted #323233;
}

.list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-inline > li {
  display: inline-block;
}

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

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

.v-middle {
  vertical-align: middle;
}

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

.img-responsive {
  max-width: 100%;
}

.relative {
  position: relative;
}

.static {
  position: static;
}

.abs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fixed {
  position: fixed;
}

.over-hidden {
  overflow: hidden;
}

.p0 {
  padding: 0;
}

.m0 {
  margin: 0;
}

.row, .payment-form .grid {
  display: flex;
  flex-wrap: wrap;
  min-width: 100%;
}

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

.row > *, .payment-form .grid > * {
  flex: 1 0 0%;
}

.col, .payment-form .item {
  flex: 1 0 0%;
}

.h-100 {
  height: 100%;
}

.m-15 {
  margin: 0 -15px;
}

.show-on-desktop,
.show-on-small-desktop,
.show-on-mobile,
.show-on-tablet {
  display: none !important;
}

.container {
  max-width: 1440px;
  margin: auto;
}

.btn, #parts-page .freeform-row .freeform-fieldtype-submit button {
  border-radius: 5px;
  text-align: center;
  padding: 11px 25px;
  font-weight: 600;
}
.btn:disabled, #parts-page .freeform-row .freeform-fieldtype-submit button:disabled {
  cursor: not-allowed;
}

.btn-blue, .payment-form button, #parts-page .freeform-row .freeform-fieldtype-submit button {
  background-image: linear-gradient(90deg, #0072D7, #003C71, #0072D7);
  background-size: 200%;
  background-position: 0 center;
  color: #ffffff;
}
.btn-blue:hover, .payment-form button:hover, #parts-page .freeform-row .freeform-fieldtype-submit button:hover {
  background-position: 100% center;
  color: #ffffff;
}

.btn-light-blue {
  background-color: #CBE7FF;
  color: #003C71;
}
.btn-light-blue svg, .btn-light-blue span {
  vertical-align: middle;
}
.btn-light-blue svg {
  margin-right: 5px;
}
.btn-light-blue:hover {
  background: #003C71;
  color: #ffffff;
}
.btn-light-blue:hover path {
  fill: #ffffff;
}

.btn-gray {
  background-color: #F4F4F4;
  color: #000000;
  border-color: #F4F4F4;
}
.btn-gray:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-black {
  background-color: #000000;
  color: #ffffff;
}
.btn-black:hover {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

.btn-black-outline {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
}
.btn-black-outline:hover {
  background: #000000;
  color: #ffffff;
}

.btn-white-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-white-outline:hover {
  background: #ffffff;
  color: #000000;
}

.btn-underline {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}
.btn-underline:hover {
  text-decoration: underline;
  color: #003C71;
}

.standard-padding {
  padding: 25px 34px;
  margin-top: 34px;
  background-color: #ffffff;
  border-radius: 10px;
}

.breadcrumbs {
  padding: 10px 0;
}
.breadcrumbs a {
  font-size: 12px;
  padding: 2px 4px;
  vertical-align: middle;
}
.breadcrumbs i {
  margin-right: 3px;
  vertical-align: middle;
}
.breadcrumbs path {
  fill: #000000;
}

.custom-checkbox {
  font-weight: 600;
  cursor: pointer;
}
.custom-checkbox span {
  vertical-align: middle;
}
.custom-checkbox input {
  margin-right: 5px;
  background-color: #DFDFDF;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  position: relative;
  box-shadow: none;
  margin-top: -2px;
}
.custom-checkbox input:checked::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 5px;
  position: absolute;
  top: 3px;
  left: 3px;
  background-color: #003C71;
}

.flex-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.custom-box {
  position: relative;
}
.custom-box textarea + label {
  top: 25px;
}
.custom-box input:focus + label,
.custom-box input:not(:placeholder-shown) + label,
.custom-box select + label,
.custom-box textarea:focus + label,
.custom-box textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  color: #003C71;
  background-color: #ffffff;
}
.custom-box label, .custom-box input:placeholder-shown:not(:focus) + label {
  color: #C6C6C6;
  position: absolute;
  top: 50%;
  left: 25px;
  font-weight: 600;
  margin: 0;
  padding: 2px 5px;
  pointer-events: none;
  white-space: nowrap;
  transform: translate(0, -50%);
}

.custom-input, .payment-form input, .search-bar .input input, .custom-textarea {
  border-radius: 5px;
  border: 1px solid #F4F4F4;
  width: 100%;
  min-height: 44px;
  padding: 10px 25px;
  outline: none;
  font-weight: 600;
}
.custom-input::placeholder, .payment-form input::placeholder, .search-bar .input input::placeholder, .custom-textarea::placeholder {
  color: #C6C6C6;
}
.custom-input::-webkit-input-placeholder, .payment-form input::-webkit-input-placeholder, .search-bar .input input::-webkit-input-placeholder, .custom-textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #C6C6C6;
}
.custom-input::-moz-placeholder, .payment-form input::-moz-placeholder, .search-bar .input input::-moz-placeholder, .custom-textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #C6C6C6;
}
.custom-input:-ms-input-placeholder, .payment-form input:-ms-input-placeholder, .search-bar .input input:-ms-input-placeholder, .custom-textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #C6C6C6;
}
.custom-input:-moz-placeholder, .payment-form input:-moz-placeholder, .search-bar .input input:-moz-placeholder, .custom-textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #C6C6C6;
}
.custom-input:focus, .payment-form input:focus, .search-bar .input input:focus, .custom-textarea:focus {
  border-color: #003C71;
}
.custom-input:not(:placeholder-shown), .payment-form input:not(:placeholder-shown), .search-bar .input input:not(:placeholder-shown), .custom-textarea:not(:placeholder-shown) {
  border-color: #003C71;
}

.payment-form .grid {
  margin: 0 -10px;
}
.payment-form .item {
  padding: 10px;
}
.payment-form button {
  border-radius: 5px;
  text-align: center;
  padding: 11px 25px;
  font-weight: 600;
  margin-top: 30px;
}

.custom-select {
  border-radius: 5px;
  border: 1px solid #F4F4F4;
  width: 100%;
  height: 44px;
  padding: 10px 25px;
  outline: none;
  font-weight: 600;
  background-color: #ffffff;
  color: #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-select ~ i {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: rotate(90deg) translate(-50%, 0);
  transform-origin: 100% 48%;
}
.custom-select:focus {
  border-color: #003C71;
}

label.blue-label {
  background-color: #CBE7FF;
  border-radius: 5px;
  color: #003C71;
  font-weight: 600;
  padding: 5px 10px;
}

.custom-slider .product-carousel {
  margin: 0 -15px;
}
.custom-slider .container {
  padding: 40px;
}
.custom-slider .right-section .prev-slide, .custom-slider .right-section .next-slide {
  background-color: #F4F4F4;
  padding: 17px;
  border-radius: 5px;
  font-size: 0;
  margin-right: 5px;
}
.custom-slider .right-section .prev-slide:last-child, .custom-slider .right-section .next-slide:last-child {
  margin: 0;
}
.custom-slider .right-section .btn-blue, .custom-slider .right-section .payment-form button, .payment-form .custom-slider .right-section button, .custom-slider .right-section #parts-page .freeform-row .freeform-fieldtype-submit button, #parts-page .freeform-row .freeform-fieldtype-submit .custom-slider .right-section button {
  margin-left: 5px;
  vertical-align: middle;
}
.custom-slider .flickity-enabled .single-product {
  display: flex;
}
.custom-slider .single-product {
  width: 20%;
  min-width: 278px;
  display: none;
}
.custom-slider .single-product:first-child {
  display: flex;
}

.hidden {
  display: none;
}

.single-product {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  min-height: 100%;
}
.single-product a {
  display: block;
  color: #000000;
}
.single-product a .ais-Snippet-highlighted {
  background-color: transparent;
  text-decoration: underline;
}
.single-product .img {
  margin-bottom: 5px;
  flex: 0 0 auto;
  width: 100%;
}
.single-product .text {
  flex: 0 0 auto;
  width: 100%;
  align-self: flex-end;
}
.single-product img {
  max-width: 100%;
  margin-bottom: 5px;
  height: 190px;
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
}
.single-product h6 {
  margin-bottom: 0;
  color: #000000;
}
.single-product .price {
  color: #003C71;
  font-size: 16px;
  font-weight: 700;
}
.single-product .price del {
  color: #870012;
  font-size: 10px;
  font-weight: 600;
  vertical-align: middle;
  margin-right: 7px;
  margin-top: -2px;
  display: inline-block;
}
.single-product button {
  width: 100%;
  display: block;
}
.single-product button svg {
  width: 16px;
  height: 16px;
}
.single-product .added-to-cart {
  color: #34A853;
  padding: 12px 25px;
  background-color: #F4F4F4;
  font-weight: 600;
  width: 100%;
  display: inline-block;
  font-size: 14px;
  margin: 0;
  border-radius: 5px;
  text-align: center;
}
.single-product button.adding {
  background-color: #003C71;
  color: #ffffff;
}
.single-product button.adding:hover path {
  fill: unset;
}
.single-product button.adding svg {
  -webkit-animation: spin 700ms linear infinite;
  -moz-animation: spin 700ms linear infinite;
  animation: spin 700ms linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
::-webkit-scrollbar {
  width: 10px;
  border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #F0F0F0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #003C71;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000000;
}

::-moz-selection {
  color: #ffffff;
  background: #003C71;
}

::selection {
  color: #ffffff;
  background: #003C71;
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 1499.98px) {
  .show-on-desktop {
    display: block !important;
  }

  .hide-on-desktop {
    display: none !important;
  }
}
@media only screen and (max-width: 1199.98px) {
  .mobile-buttons {
    display: block;
  }

  .hide-on-small-desktop {
    display: none !important;
  }

  .show-on-small-desktop {
    display: block !important;
  }
}
@media only screen and (max-width: 991.98px) {
  .show-on-tablet {
    display: block !important;
  }

  .hide-on-tablet {
    display: none !important;
  }

  .standard-padding {
    padding: 25px 10px;
    margin-top: 17px;
  }

  .payment-form .item {
    flex: 0 0 auto;
    max-width: 100%;
    padding: 0;
    width: 100%;
  }

  .payment-form .grid {
    width: 100%;
    margin: 0;
  }

  .custom-slider .container {
    padding: 20px 16px;
  }
}
@media only screen and (max-width: 767.98px) {
  .show-on-mobile {
    display: block !important;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .custom-input, .payment-form input, .search-bar .input input {
    padding: 10px;
  }

  .custom-box label {
    left: 10px;
  }
}
.checkout-header .container {
  padding: 22px 34px;
}
.checkout-header .site-logo img {
  max-width: 70px;
}
.checkout-header .steps {
  text-align: center;
  min-width: 552px;
}
.checkout-header .steps ul {
  font-size: 0;
}
.checkout-header .steps ul li {
  position: relative;
  vertical-align: middle;
}
.checkout-header .steps ul li:first-child::before {
  display: none;
}
.checkout-header .steps ul li::before {
  content: "";
  display: inline-block;
  width: 132px;
  height: 2px;
  background-color: #F6F6F6;
  margin-left: -1px;
  vertical-align: middle;
  margin-top: -10px;
  margin-right: -1px;
}
.checkout-header .steps ul li a {
  cursor: not-allowed;
}
.checkout-header .steps ul li a:hover {
  color: #000000;
}
.checkout-header .steps ul li .box {
  background-color: #F6F6F6;
  display: inline-block;
  width: 32px;
  padding: 6px 0;
  border-radius: 5px;
  min-height: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.checkout-header .steps ul li i {
  font-size: 0;
}
.checkout-header .steps ul li span {
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 100%;
  margin-top: 5px;
  white-space: nowrap;
  transform: translate(-50%, 0);
  color: #D0D0D0;
}
.checkout-header .steps ul li.active a {
  cursor: pointer;
}
.checkout-header .steps ul li.active::before {
  background-color: #003C71;
}
.checkout-header .steps ul li.active .box {
  background: linear-gradient(271.03deg, #003C71 5.08%, #0072D7 93.52%);
}
.checkout-header .steps ul li.active span {
  color: #000000;
}
.checkout-header .steps ul li.active svg path {
  fill: #ffffff;
}
.checkout-header .account {
  text-align: right;
  align-self: center;
}
.checkout-header .account a.user-account {
  padding: 12px 15px;
  background-color: #F6F6F6;
  border-radius: 5px;
}
.checkout-header .account a.user-account i, .checkout-header .account a.user-account span {
  vertical-align: middle;
}
.checkout-header .account a.user-account i {
  margin-right: 5px;
  line-height: 1;
  display: inline-block;
}
.checkout-header .account a.user-account span {
  font-weight: 700;
  color: #000000;
  font-size: 12px;
}

@media only screen and (max-width: 991.98px) {
  .checkout-header .container {
    padding: 0;
  }

  .checkout-header .steps {
    flex: 0 0 auto;
    order: 2;
    width: 100%;
    padding: 25px 15px;
    background-color: #F4F4F4;
    min-width: 100%;
  }

  .checkout-header .steps ul li::before {
    width: 70px;
  }

  .checkout-header .site-logo {
    padding-top: 20px;
    padding-left: 15px;
    padding-bottom: 20px;
  }

  .checkout-header .account {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 15px;
  }

  .checkout-header .steps ul li::before {
    background-color: #ffffff;
  }

  .checkout-header .steps ul li .box {
    background-color: #ffffff;
  }
}
header#header {
  z-index: 1;
  position: relative;
}
header#header .container {
  padding-left: 30px;
  padding-right: 30px;
}
header#header .top-header {
  background-color: #000000;
  color: #ffffff;
}
header#header .top-header ul li {
  vertical-align: middle;
  padding: 5px;
}
header#header .top-header ul a {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  color: #ffffff;
  display: flex;
  align-items: center;
}
header#header .top-header ul a:hover {
  color: #ffffff;
}
header#header .top-header ul a svg {
  max-width: 17px;
  max-height: 14px;
  vertical-align: middle;
  width: 100%;
}
header#header .top-header ul a i, header#header .top-header ul a span {
  display: inline-block;
}
header#header .top-header ul a i {
  margin-right: 5px;
  line-height: 1;
}
header#header .top-header ul a span {
  vertical-align: middle;
}
header#header .top-header .social-icons span {
  display: none;
}
header#header .top-header .social-icons a {
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
header#header .top-header .social-icons i {
  margin: 0;
  line-height: 1;
}
header#header .main-header {
  background-color: #F4F4F4;
}
header#header .main-header .container {
  padding: 22px 40px;
}
header#header .main-header .site-logo img {
  max-width: 70px;
}
header#header .main-header .search {
  flex: 0 0 auto;
  width: 535px;
}
header#header .main-header .search label {
  background-color: transparent;
  left: 42px;
}
header#header .main-header .search button {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 20px;
  background-color: transparent;
  margin-top: 1px;
}
header#header .main-header .search input {
  border-color: transparent;
  padding-left: 50px;
}
header#header .main-header .account {
  text-align: right;
}
header#header .main-header .account .open-search, header#header .main-header .account .mobile-menu {
  display: none;
}
header#header .main-header .account li {
  margin-left: 10px;
}
header#header .main-header .account li a {
  padding: 12px 15px;
  background-color: #ffffff;
  border-radius: 5px;
}
header#header .main-header .account li a.user-account:hover {
  background-color: #000000;
  color: #ffffff;
}
header#header .main-header .account li a.user-account:hover path {
  fill: #ffffff;
}
header#header .main-header .account li i, header#header .main-header .account li span {
  vertical-align: middle;
}
header#header .main-header .account li i {
  margin-right: 5px;
  display: inline-block;
  line-height: 0;
}
header#header .main-header .account li span {
  font-weight: 600;
  font-size: 12px;
}
header#header .main-header .account li.cart {
  position: relative;
}
header#header .main-header .account li.cart a {
  background-color: #C4E4FE;
  color: #003C71;
}
header#header .main-header .account li.cart a:hover {
  background-color: #003C71;
  color: #ffffff;
}
header#header .main-header .account li.cart a:hover path {
  fill: #ffffff;
}
header#header .main-header .account li.cart .number-of-products {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003C71;
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  border-radius: 50%;
}
header#header .menu-bar {
  background: linear-gradient(90deg, #003C71 0%, #0072D7 100%);
}
header#header .menu-bar ul {
  list-style: none;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  header#header .menu-bar li:hover > a svg {
    transform: rotate(180deg);
  }
}
header#header .menu-bar ul.menu {
  position: relative;
}
header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) {
  position: relative;
}
header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu):hover .sub-menu {
  display: block;
}
header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  width: 240px;
  padding-left: 0;
}
header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu .sub-menu {
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
}
@media only screen and (min-width: 992px) {
  header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu {
    padding-top: 16px;
  }
}
header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu li {
  background-color: #FFFFFF;
}
header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu li:first-child {
  padding-top: 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu li:last-child {
  padding-bottom: 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu a {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  display: block;
  padding: 7px 20px;
}
header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu a:hover {
  background-color: #003C71;
  color: #ffffff;
}
header#header .menu-bar ul.menu li.attachments-menu {
  position: static;
}
@media only screen and (min-width: 992px) {
  header#header .menu-bar ul.menu li.attachments-menu .sub-menu-outer.sub-menu {
    padding-top: 16px;
  }
  header#header .menu-bar ul.menu li.attachments-menu .sub-menu-outer.sub-menu:hover > .sub-menu:not(:hover)
  .node-level-2:first-child .sub-menu {
    display: block;
  }
  header#header .menu-bar ul.menu li.attachments-menu .sub-menu-outer.sub-menu:hover > .sub-menu:not(:hover)
  .node-level-2:first-child .sub-menu > a {
    background-color: #ffffff;
    color: #003C71;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.08);
  }
}
header#header .menu-bar ul.menu li.attachments-menu:hover .sub-menu {
  display: flex;
}
@media only screen and (min-width: 992px) {
  header#header .menu-bar ul.menu li.attachments-menu > .sub-menu-outer .sub-menu:not(:hover) .node-level-2:first-child > a {
    background-color: #ffffff;
    color: #003C71;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.08);
  }
  header#header .menu-bar ul.menu li.attachments-menu > .sub-menu-outer .sub-menu:not(:hover) .node-level-2:first-child .sub-menu {
    display: block;
  }
}
header#header .menu-bar ul.menu li.attachments-menu .node-level-3 {
  position: relative;
}
header#header .menu-bar ul.menu li.attachments-menu .node-level-3 a::before {
  height: 16px;
  width: 16px;
  text-align: center;
  background-color: #003C71;
  color: #ffffff;
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 10px;
  padding: 1px 0;
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu {
  left: 0;
  right: 0;
  width: 100%;
  transform: none;
  position: absolute;
  display: none;
  z-index: 1;
  padding: 0;
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu a {
  color: #777777;
  width: 100%;
  text-align: center;
  padding: 16px 10px;
  font-size: 16px;
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 {
  position: static;
  flex: 1 0 0%;
  background-color: #F4F4F4;
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 > a {
  background-color: #F4F4F4;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .submenu-toggle {
  display: none;
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2:first-child {
  border-top-left-radius: 5px;
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2:last-child {
  border-top-right-radius: 5px;
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2:hover > a {
  background-color: #ffffff;
  color: #003C71;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.08);
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2:hover .sub-menu {
  display: block;
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .sub-menu {
  column-count: 5;
  column-gap: 0;
  display: none;
  background-color: #ffffff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  text-align: left;
  font-size: 14px;
  padding: 20px 0;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.08);
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .sub-menu li {
  background-color: #ffffff;
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .sub-menu li a {
  color: #000000;
  text-align: left;
  font-size: 14px;
  padding-left: 41px;
}
@media only screen and (min-width: 992px) {
  header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .sub-menu li a:hover {
    background-color: #003C71;
    color: #ffffff;
  }
  header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .sub-menu li a:hover::before {
    background-color: #ffffff;
    color: #003C71;
  }
}
header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .sub-menu-outer {
  padding: 0;
}
header#header .menu-bar ul.menu li.node-level-1.parts-menu {
  position: static;
}
header#header .menu-bar ul.menu li.node-level-1.parts-menu:hover .sub-menu {
  display: block;
}
@media only screen and (min-width: 992px) {
  header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu-outer.sub-menu {
    padding: 16px 0 0 0;
    min-height: 100%;
    margin-top: -1px;
  }
}
header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  column-count: 5;
  column-gap: 0;
  display: none;
  border-radius: 5px;
  text-align: left;
  font-size: 14px;
  padding: 15px;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.08);
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu .sub-menu {
    top: 17px;
    padding: 27px 0px;
    background-color: #ffffff;
  }
}
header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
@media only screen and (min-width: 992px) {
  header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu li {
    background-color: #ffffff;
  }
}
header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu a {
  color: #000000;
  text-align: left;
  font-size: 14px;
  padding-left: 41px;
  display: flex;
  position: relative;
}
header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu a::before {
  height: 16px;
  width: 16px;
  text-align: center;
  background-color: #003C71;
  color: #ffffff;
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 10px;
  padding: 1px 0;
}
header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu a .v-middle {
  align-self: center;
}
header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu a:hover {
  background-color: #003C71;
  color: #ffffff;
}
header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu a:hover::before {
  background-color: #ffffff;
  color: #003C71;
}
header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu a .img {
  padding-right: 10px;
}
header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu a img {
  width: 42px;
  height: 32px;
  object-fit: cover;
  border-radius: 5px;
}
header#header .menu-bar ul.menu li.align-right {
  float: right;
}
header#header .menu-bar ul.menu a {
  font-weight: 600;
  color: #ffffff;
  padding: 14px;
}
header#header .menu-bar ul.menu button {
  background-color: transparent;
}
header#header .menu-bar ul.menu .submenu-toggle {
  padding-left: 10px;
}
header#header .menu-bar ul.menu .submenu-toggle svg {
  vertical-align: middle;
}
header#header .sub-menu-header {
  display: none;
}

@media only screen and (max-width: 1199.98px) {
  header#header .main-header .search {
    flex: 1 0 0%;
  }

  header#header .main-header .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (max-width: 991.98px) {
  header#header .menu-bar .container {
    padding-right: 0;
  }

  header#header .menu-bar ul.menu .submenu-toggle svg {
    transform: rotate(-90deg);
  }

  header#header .main-header {
    background-color: #ffffff;
  }

  header#header .main-header .account li a {
    background-color: #F4F4F4;
  }

  header#header .container {
    padding-left: 17px;
    padding-right: 17px;
  }

  header#header .main-header .account li span:not(.number-of-products, .blitz-inject) {
    display: none !important;
  }

  header#header .main-header .account li i {
    margin-right: 0;
  }

  header#header .main-header .container {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  header#header .main-header .search {
    display: none;
    flex: 0 0 auto;
    width: 100%;
    order: 2;
    padding-top: 15px;
  }

  header#header .main-header .search form {
    display: flex;
    margin-right: -10px;
  }

  header#header .main-header .search form .custom-box {
    flex: 1 0 0%;
  }

  header#header .main-header .search form .close {
    align-self: center;
    padding: 8px 12px;
    line-height: 1;
  }

  header#header .main-header .site-logo {
    flex: 0 0 auto;
    width: auto;
  }

  header#header .main-header .account li.mobile-menu,
  header#header .main-header .account li.open-search {
    display: inline-block;
  }

  header#header .main-header .account li.mobile-menu .close {
    display: none;
  }

  header#header .main-header .account #openMobileMenu {
    transition: none;
  }

  header#header .main-header .account #openMobileMenu .close svg {
    width: 22px;
    height: 22px;
  }

  header#header .main-header .account #openMobileMenu.opened i {
    display: none;
  }

  header#header .main-header .account #openMobileMenu.opened {
    padding: 10px;
  }

  header#header .main-header .account #openMobileMenu.opened .close {
    display: inline-block;
  }

  header#header .main-header .account li a.user-account {
    padding: 11px 12px;
  }

  header#header .main-header .account li a.user-account svg {
    width: 19px;
    height: 22px;
  }

  header#header .main-header .account li.cart a {
    padding: 11px;
  }

  header#header .main-header .account li.cart a svg {
    width: 22px;
    height: 22px;
  }

  header#header .main-header .account li.mobile-menu a {
    padding: 10px 8px;
    background: transparent;
  }

  header#header .main-header .account li.open-search a {
    padding: 11px;
  }
  header#header .main-header .account li.open-search a svg {
    width: 22px;
    height: 22px;
  }
  header#header .main-header .account li.open-search a svg path {
    fill: #000000;
  }

  header#header .menu-bar ul li {
    display: block;
  }

  header#header .menu-bar {
    background: #F4F4F4;
  }

  header#header .container {
    padding: 0 15px;
  }

  header#header .menu-bar ul.menu a {
    display: block;
    color: #000000;
    font-size: 16px;
    padding: 15px 0;
    border-bottom: 1px solid #E4E4E4;
  }

  header#header .menu-bar ul.menu .submenu-toggle {
    float: right;
  }

  header#header .menu-bar ul.menu li.attachments-menu:hover .sub-menu {
    display: none;
  }

  header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu):hover .sub-menu {
    display: none;
  }

  header#header .menu-bar ul.menu li.node-level-1.parts-menu:hover .sub-menu {
    display: none;
  }

  header#header .menu-bar ul.menu li .sub-menu {
    display: none;
    background-color: #F4F4F4;
    min-height: 100%;
  }

  header#header .menu-bar ul.menu li.node-level-1.open-menu:not(.attachments-menu):not(.parts-menu) .sub-menu {
    display: block;
  }

  header#header .menu-bar ul.menu li.node-level-1.parts-menu.open-menu .sub-menu {
    display: block;
  }

  header#header .menu-bar ul.menu li.node-level-1.attachments-menu.open-menu .sub-menu {
    display: block;
  }

  header#header .menu-bar ul.menu li.node-level-1.attachments-menu.open-menu .sub-menu .sub-menu .sub-menu {
    display: none;
  }

  header#header .menu-bar ul.menu li.node-level-1.attachments-menu.open-menu .sub-menu .open-menu .sub-menu {
    display: block !important;
  }

  header#header .menu-bar ul.menu li.node-level-1.attachments-menu .sub-menu-outer .sub-menu-outer > .sub-menu {
    top: 0;
  }

  header#header .menu-bar ul.menu li.node-level-1.attachments-menu .sub-menu-outer .sub-menu-outer .sub-menu {
    top: auto;
  }

  header#header .menu-bar ul.menu li.node-level-1.attachments-menu .sub-menu .sub-menu-outer {
    margin-top: 0;
  }

  header#header .menu-bar ul.menu li.attachments-menu > .sub-menu:not(:hover) .node-level-2:first-child .sub-menu {
    display: none;
  }

  header#header .menu-bar ul.menu .submenu-toggle path {
    fill: #000000;
  }

  header#header .menu-bar ul.menu li.align-right {
    float: none;
  }

  header#header .main-header .search input {
    background-color: #f4f4f4;
    font-size: 16px;
  }

  header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) {
    position: static;
  }

  header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    background-color: #F4F4F4;
    bottom: 0;
  }

  header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu a {
    padding: 15px 0;
    font-size: 14px;
    color: #000000;
    font-weight: 600;
  }

  header#header .menu-bar ul.menu {
    height: calc(100vh - 183px);
    padding-right: 10px;
    overflow: auto;
  }
  @supports (-webkit-touch-callout: none) {
    header#header .menu-bar ul.menu {
      height: calc(100dvh - 183px);
    }
  }
  header#header .menu-bar ul.menu::-webkit-scrollbar {
    width: 8px;
  }
  header#header .menu-bar ul.menu::-webkit-scrollbar-track {
    background: #F0F0F0;
  }
  header#header .menu-bar ul.menu::-webkit-scrollbar-thumb {
    background: #003C71;
  }
  header#header .menu-bar ul.menu::-webkit-scrollbar-thumb:hover {
    background: #003C71;
  }

  header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu li {
    background-color: transparent;
  }

  header#header .sub-menu-header {
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  header#header .sub-menu-header.hide {
    display: none !important;
  }
  header#header .sub-menu-header a.back-btn {
    color: #ffffff !important;
    display: inline-block !important;
    padding: 5px 6px !important;
    background-color: #003C71 !important;
    border-radius: 5px !important;
    width: auto !important;
    font-size: 12px !important;
  }
  header#header .sub-menu-header svg {
    transform: rotate(90deg);
  }
  header#header .sub-menu-header span {
    vertical-align: middle;
  }
  header#header .sub-menu-header a.heading {
    font-size: 24px !important;
    color: #003C71 !important;
    border: 0 !important;
    margin-left: 10px;
    text-align: left !important;
    display: inline-block !important;
  }

  header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu {
    column-count: 1;
  }

  header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu-outer {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    background-color: #F4F4F4;
    bottom: 0;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu.sub-menu-outer {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    background-color: #F4F4F4;
    bottom: 0;
  }

  header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu {
    background-color: #F4F4F4;
    padding: 10px 0;
  }
  header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu a {
    border: 0;
    padding: 8px 0 8px 41px;
  }
  header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu a:hover::before {
    background-color: #003C71;
    color: #ffffff;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .sub-menu {
    column-count: 1;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu a,
  header#header .menu-bar ul.menu li.attachments-menu > .sub-menu:not(:hover) .node-level-2:first-child > a {
    color: #000000;
    background-color: transparent;
    box-shadow: none;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .submenu-toggle {
    display: inline-block;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 > a {
    justify-content: space-between;
  }
  header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 > a .v-middle {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    text-align: left;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .submenu-toggle {
    float: right;
  }

  header#header .menu-bar ul.menu li.attachments-menu > .sub-menu:not(:hover) .node-level-2:first-child .sub-menu {
    display: none;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .sub-menu li {
    background-color: #F4F4F4;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .sub-menu {
    background-color: #F4F4F4;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .sub-menu {
    box-shadow: none;
    padding-bottom: 0;
    padding-top: 0;
  }

  header#header .bottom-header {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 9px;
  }
  header#header .bottom-header .social-icons li {
    display: inline-block;
    margin: 0 2px;
  }
  header#header .bottom-header .social-icons span {
    display: none;
  }
  header#header .bottom-header .social-icons a {
    border: 1px solid #ffffff;
    border-radius: 50%;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  header#header .bottom-header .social-icons i {
    margin: 0;
    line-height: 1;
  }
  header#header .bottom-header .social-icons svg {
    max-width: 17px;
    max-height: 14px;
    vertical-align: middle;
    width: 100%;
  }

  header#header .menu-bar {
    display: none;
  }

  header#header .top-header .container {
    padding: 0;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2:hover > a {
    background-color: #F4F4F4;
    box-shadow: none;
    color: #000000;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu .node-level-2 .sub-menu li a:hover {
    background-color: #F4F4F4;
    color: #000000;
  }

  header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu a:hover {
    background-color: #F4F4F4;
    color: #000000;
  }

  header#header .menu-bar ul.menu li.node-level-1.parts-menu .sub-menu a:hover {
    background-color: #F4F4F4;
    color: #000000;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu a {
    padding: 13px 0;
  }

  header#header .menu-bar ul.menu li.node-level-1:not(.attachments-menu):not(.parts-menu) > .sub-menu li:first-child {
    padding-top: 0;
  }

  header#header .menu-bar ul.menu li.attachments-menu .sub-menu {
    padding-right: 10px;
  }
}
.pills .pill {
  border-radius: 5px;
  padding: 2px 4px;
  display: inline-block;
  margin: 3px 3px 3px 0;
  position: relative;
  font-size: 10px;
  font-weight: 600;
  border: 0;
}
.pills .pill i {
  display: none;
}
.pills .pill.blue {
  color: #003C71;
  background-color: #CBE7FF;
}
.pills .pill.green {
  color: #0A5A1F;
  background-color: #C5FFD4;
}
.pills .pill.gray {
  color: #000000;
  background-color: #FFFFFF;
}
.pills .pill.orange {
  color: #663800;
  background-color: #ffca89;
}
.pills .pill:hover .tool-tip {
  visibility: visible;
  opacity: 1;
}
.pills .pill .tool-tip {
  width: auto;
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: opacity 0.5s;
  white-space: nowrap;
}

.cart-summary {
  padding: 17px;
  max-width: 491px;
}
.cart-summary .inner {
  position: sticky;
  top: 25px;
}
.cart-summary .heading {
  background: linear-gradient(271.03deg, #003C71 5.08%, #0072D7 93.52%);
  padding: 20px 34px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.cart-summary .heading h4 {
  color: #ffffff;
  margin: 0;
}
.cart-summary .heading .discount {
  font-size: 9px;
}
.cart-summary .heading .discount span {
  display: inline-block;
  color: #0A5A1F;
  background-color: #C5FFD4;
  border-radius: 5px;
  padding: 2px;
  font-weight: 600;
  padding: 3px 8px;
}
.cart-summary .items-total {
  font-size: 16px;
  font-weight: 600;
  background-color: #ffffff;
  padding-top: 17px;
  padding-bottom: 17px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cart-summary .items-total .left, .cart-summary .items-total .right {
  padding: 4px;
}
.cart-summary .items-total .left {
  padding-left: 34px;
}
.cart-summary .items-total .right {
  padding-right: 34px;
  text-align: right;
}
.cart-summary .items-total .total {
  color: #003C71;
  padding: 10px 0;
}
.cart-summary .items-total hr {
  border-top: 1px solid #F0F0F0;
  border-bottom: 0;
}
.cart-summary .items-total .links {
  padding: 20px 34px;
}
.cart-summary .items-total .links .btn, .cart-summary .items-total .links #parts-page .freeform-row .freeform-fieldtype-submit button, #parts-page .freeform-row .freeform-fieldtype-submit .cart-summary .items-total .links button {
  width: 100%;
  margin-bottom: 15px;
}
.cart-summary .items-total .links .btn:last-child, .cart-summary .items-total .links #parts-page .freeform-row .freeform-fieldtype-submit button:last-child, #parts-page .freeform-row .freeform-fieldtype-submit .cart-summary .items-total .links button:last-child {
  margin-bottom: 0;
}
.cart-summary .help {
  padding: 30px 34px;
  background-color: #ffffff;
  margin-top: 30px;
  border-radius: 10px;
}
.cart-summary .help hr {
  border-bottom: 1px solid #F4F4F4;
  border-top: 0;
}
.cart-summary .help ul {
  margin-top: 13px;
}
.cart-summary .help li {
  margin-right: 20px;
  margin-bottom: 7px;
}
.cart-summary .help li:last-child {
  margin-right: 0;
}
.cart-summary .help li i {
  line-height: 1;
  margin-right: 7px;
  vertical-align: middle;
}

@media only screen and (max-width: 1199.98px) {
  .cart-summary {
    max-width: 100%;
    flex: 0 0 auto;
    width: 100%;
  }

  .cart-summary .heading .discount {
    padding-left: 10px;
  }

  .cart-summary .heading {
    padding: 20px 17px;
  }

  .cart-summary .items-total .left {
    padding-left: 17px;
  }

  .cart-summary .items-total .right {
    padding-right: 17px;
  }

  .cart-summary .items-total .links {
    padding: 20px 17px;
  }

  .cart-summary .items-total .total {
    padding: 5px 0;
  }

  .cart-summary .help {
    padding-left: 17px;
    padding-right: 17px;
    margin-top: 17px;
  }
}
@media only screen and (max-width: 991.98px) {
  .cart-summary {
    padding: 10px;
  }
}
.notification-bar {
  background-color: #F4F4F4;
  overflow: hidden;
}
.notification-bar .container {
  padding: 0 40px 15px;
}
.notification-bar .flash-notice, .notification-bar .flash-error {
  padding: 20px 34px;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 15px;
}
.notification-bar .flash-notice {
  background-color: #ffffff;
}
.notification-bar .flash-error {
  background-color: #FFCBCC;
  color: #EE1C25;
}
.notification-bar h5, .notification-bar .payment-form legend, .payment-form .notification-bar legend {
  margin: 0;
}
.notification-bar .close-btn {
  max-width: 40px;
}
.notification-bar ul {
  margin: 10px 0 0 0;
  padding-left: 15px;
}
.notification-bar button {
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 3px;
  float: right;
}
.notification-bar button svg {
  width: 20px;
  height: 20px;
  fill: red;
}
.notification-bar button svg rect {
  fill: #212529;
}

.checkout-layout .notification-bar .container {
  padding: 0 34px;
}

@media only screen and (max-width: 1199.98px) {
  .checkout-layout .notification-bar .container {
    padding: 0 17px;
  }
}
@media only screen and (max-width: 991.98px) {
  .notification-bar .flash-notice, .notification-bar .flash-error {
    padding-left: 17px;
    padding-right: 17px;
  }

  .notification-bar .container,
  .checkout-layout .notification-bar .container {
    padding-left: 17px;
    padding-right: 17px;
  }

  .checkout-layout .notification-bar .container {
    padding-top: 10px;
  }

  .notification-bar button svg {
    width: 15px;
    height: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .checkout-layout .notification-bar .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#mini-cart {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 430px;
  max-width: 100%;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  z-index: 1;
  transform: translate(100%, 0);
}
#mini-cart.opened {
  transform: translate(0, 0);
}
#mini-cart.opened .backdrop {
  display: block;
  right: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  left: auto;
  right: 100%;
}
#mini-cart .backdrop {
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  width: 100vw;
  transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  backdrop-filter: blur(5px);
}
#mini-cart .mini-cart-header {
  padding: 30px 34px 20px;
}
#mini-cart .mini-cart-header .row, #mini-cart .mini-cart-header .payment-form .grid, .payment-form #mini-cart .mini-cart-header .grid {
  align-items: center;
}
#mini-cart .mini-cart-header h5, #mini-cart .mini-cart-header .payment-form legend, .payment-form #mini-cart .mini-cart-header legend {
  margin: 0;
}
#mini-cart .mini-cart-header h5 span, #mini-cart .mini-cart-header .payment-form legend span, .payment-form #mini-cart .mini-cart-header legend span {
  font-size: 14px;
  color: #003C71;
  margin-left: 10px;
  font-weight: 600;
}
#mini-cart .mini-cart-header .close-outer {
  font-size: 0;
}
#mini-cart .mini-cart-header .close-outer svg {
  width: 19px;
  height: 19px;
}
#mini-cart .mini-cart-header .close-outer svg rect {
  fill: #8E8E8E;
}
#mini-cart .bottom h6 {
  font-weight: 600;
  color: #003C71;
  margin: 0;
}
#mini-cart .bottom .cart-total {
  padding: 20px 34px;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}
#mini-cart .bottom .go-to-cart {
  padding: 20px 34px;
}
#mini-cart .pills .pill {
  margin: 2px 1px;
}
#mini-cart #cart-page {
  background-color: #ffffff;
}
#mini-cart #cart-page .cart-items .items .qty-outer button {
  padding: 4px;
}
#mini-cart #cart-page .cart-items .items .delete button {
  padding: 4px;
}
#mini-cart #cart-page .cart-items {
  padding: 0;
}
#mini-cart #cart-page .cart-items .inner {
  max-height: calc(100vh - 234px);
  overflow: auto;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@supports (-webkit-touch-callout: none) {
  #mini-cart #cart-page .cart-items .inner {
    height: calc(100dvh - 234px);
  }
}
#mini-cart #cart-page .cart-items .inner::-webkit-scrollbar {
  width: 8px;
}
#mini-cart #cart-page .cart-items .inner::-webkit-scrollbar-track {
  background: #F0F0F0;
}
#mini-cart #cart-page .cart-items .inner::-webkit-scrollbar-thumb {
  background: #003C71;
}
#mini-cart #cart-page .cart-items .inner::-webkit-scrollbar-thumb:hover {
  background: #003C71;
}
#mini-cart #cart-page .cart-items .items {
  padding-top: 0;
  padding-bottom: 20px;
}
#mini-cart #cart-page .cart-items .items .item:first-child {
  margin-top: 0;
}
#mini-cart #cart-page .cart-items .items .qty-price {
  flex: 0 0 auto;
  width: 100%;
  padding-left: 0;
  text-align: left;
}
#mini-cart #cart-page .cart-items .items .qty-outer {
  margin-left: 7px;
}
#mini-cart #cart-page .cart-items .items .delete {
  margin-left: 3px;
}
#mini-cart #cart-page .cart-items .items .qty-outer button svg {
  width: 13px;
}

footer#footer {
  background-color: #F4F4F4;
}
footer#footer.blue-bg {
  background-color: #003C71;
  color: #ffffff;
}
footer#footer.blue-bg .main ul.menu .sub-menu a {
  color: #ffffff;
}
footer#footer.blue-bg .main ul.menu .menu-title {
  color: #ffffff;
}
footer#footer.blue-bg .upper .social-icons ul li a i {
  border: 1px solid #ffffff;
}
footer#footer.blue-bg .main ul.menu .contact .phone a, footer#footer.blue-bg .main ul.menu .contact .email a {
  color: #ffffff;
}
footer#footer.blue-bg a {
  color: #ffffff;
}
footer#footer .upper {
  border-bottom: 1px solid #D9D9D9;
}
footer#footer .upper .container {
  padding: 40px;
}
footer#footer .upper .logo img {
  max-width: 102px;
}
footer#footer .upper .text {
  padding-left: 50px;
}
footer#footer .upper .text p {
  font-size: 12px;
}
footer#footer .upper .social-icons ul {
  display: flex;
  align-items: center;
}
footer#footer .upper .social-icons ul li {
  margin: 0 5px;
}
footer#footer .upper .social-icons ul a:hover i {
  background-color: #000000;
  border-color: #000000 !important;
}
footer#footer .upper .social-icons ul a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #003C71;
}
footer#footer .upper .social-icons ul a svg {
  width: 100%;
  max-width: 28px;
  max-height: 21px;
}
footer#footer .main {
  border-bottom: 1px solid #D9D9D9;
}
footer#footer .main .container {
  padding: 25px 40px;
}
footer#footer .main ul {
  list-style: none;
  padding: 0;
}
footer#footer .main ul.menu .menu-title {
  font-size: 18px;
  font-weight: 600;
  color: #003C71;
  margin-bottom: 20px;
}
footer#footer .main ul.menu .menu-title i {
  display: none;
}
footer#footer .main ul.menu .sub-menu {
  padding-right: 10px;
}
footer#footer .main ul.menu .sub-menu a {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0;
  position: relative;
}
footer#footer .main ul.menu li {
  margin: 8px 0;
}
footer#footer .main ul.menu .contact label {
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin: 0;
}
footer#footer .main ul.menu .contact .address {
  padding-top: 10px;
}
footer#footer .main ul.menu .contact .phone, footer#footer .main ul.menu .contact .email {
  margin-top: 10px;
}
footer#footer .main ul.menu .contact .phone a, footer#footer .main ul.menu .contact .email a {
  color: #003C71;
}
footer#footer .copyright .container {
  padding: 20px 40px;
}
footer#footer .copyright p {
  margin: 0;
}
footer#footer .copyright ul li {
  margin: 0 15px;
}
footer#footer .copyright ul li:last-child {
  margin-right: 0;
}
footer#footer .copyright ul a, footer#footer .footer-nav .sub-menu a {
  position: relative;
}
footer#footer .copyright ul a:hover::after, footer#footer .footer-nav .sub-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: 0 100%;
}
footer#footer .copyright ul a::after, footer#footer .footer-nav .sub-menu a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  background: #ffffff;
  content: '';
  height: 1px;
  position: relative;
  top: 3px;
  transform: scaleX(0);
  transform-origin: 100% 0;
  transition: transform 0.3s ease;
}

@media only screen and (max-width: 991.98px) {
  footer#footer .main .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  footer#footer .main ul.menu .menu-title {
    margin-bottom: 0;
  }

  footer#footer .main ul.menu li {
    flex: 0 0 auto;
    max-width: 50%;
    width: 50%;
  }

  footer#footer .upper .text {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-top: 15px;
  }

  footer#footer .upper .container {
    padding: 16px;
  }

  footer#footer .copyright .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  footer#footer.blue-bg .main ul.menu .sub-menu {
    display: none;
  }

  footer#footer.blue-bg .main ul.menu .active .sub-menu {
    display: block;
  }

  footer#footer.blue-bg .main ul.menu .active .menu-title i {
    transform: rotate(-90deg);
  }

  footer#footer.blue-bg .main ul.menu .sub-menu .menu-title i {
    display: none;
  }

  footer#footer.blue-bg .main ul.menu .menu-title {
    display: flex;
    justify-content: space-between;
  }

  footer#footer.blue-bg .main ul.menu .menu-title i {
    display: inline-block;
    transform: rotate(90deg);
    vertical-align: middle;
    margin-left: 5px;
  }
  footer#footer.blue-bg .main ul.menu .menu-title i svg path {
    fill: #ffffff;
  }
}
@media only screen and (max-width: 767.98px) {
  footer#footer .main ul.menu .sub-menu {
    padding-right: 0;
  }

  footer#footer .main ul.menu li {
    max-width: 100%;
    width: 100%;
  }

  footer#footer .copyright .container .col, footer#footer .copyright .container .payment-form .item, .payment-form footer#footer .copyright .container .item {
    flex: 0 0 auto;
    width: 100%;
  }

  footer#footer .copyright ul li {
    display: block;
    width: 100%;
    margin: 5px 0 0 0;
  }

  footer#footer .main ul.menu li {
    margin: 4px 0;
  }
}
.search-bar {
  padding: 30px;
  background: linear-gradient(270deg, #003C71 0%, #0072D7 100%);
  border-radius: 5px;
}
.search-bar .search-by {
  padding-right: 30px;
}
.search-bar .search-by h4 {
  margin: 0;
  color: #ffffff;
}
.search-bar .buttons {
  padding: 15px;
  background-color: #FFFFFF;
  border-radius: 5px;
}
.search-bar .buttons li {
  margin-right: 15px;
}
.search-bar .buttons li:last-child {
  margin-right: 0;
}
.search-bar .input {
  padding-left: 15px;
}
.search-bar .input form.searchform {
  padding: 15px;
  background-color: #FFFFFF;
  border-radius: 5px;
  position: relative;
}
.search-bar .input form.searchform.z-index {
  z-index: 1002;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.search-bar .input .ais-SearchBox-form {
  position: relative;
}
.search-bar .input button.serial-btn {
  position: absolute;
  top: 50%;
  left: 23px;
  transform: translate(0, -50%);
  background-color: #f4f4f4;
  font-size: 0;
}
.search-bar .input .ais-SearchBox-submit, .search-bar .input .ais-SearchBox-reset {
  left: 14px;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #f4f4f4;
  font-size: 0;
}
.search-bar .input .ais-SearchBox-submit svg, .search-bar .input .ais-SearchBox-reset svg {
  width: 15px;
  height: 15px;
}
.search-bar .input .ais-SearchBox-reset {
  left: auto;
  right: 14px;
}
.search-bar .input .ais-SearchBox-loadingIndicator {
  display: none;
}
.search-bar .input input {
  padding-left: 45px;
  font-size: 16px;
  background: #F4F4F4;
  border: 0;
}
.search-bar .input input::placeholder {
  font-weight: 500;
  font-size: 14px;
}
.search-bar .input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 14px;
  font-weight: 500;
}
.search-bar .input input::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  font-size: 14px;
}
.search-bar .input input:-ms-input-placeholder {
  /* IE 10+ */
  font-weight: 500;
  font-size: 14px;
}
.search-bar .input input:-moz-placeholder {
  /* Firefox 18- */
  font-weight: 500;
  font-size: 14px;
}
.search-bar .search-results {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  z-index: 1002;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.search-bar .search-results .search-header {
  padding: 5px 0 15px 0;
  border-bottom: 1px solid #F0F0F0;
}
.search-bar .search-results .search-header h4 {
  margin: 0;
}
.search-bar .search-results .response {
  max-height: 401px;
  overflow-y: auto;
  padding: 5px 15px 15px 0;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.search-bar .search-results .response::-webkit-scrollbar {
  width: 6px;
}
.search-bar .search-results .response::-webkit-scrollbar-track {
  background: #F0F0F0;
}
.search-bar .search-results .response::-webkit-scrollbar-thumb {
  background: #003C71;
}
.search-bar .search-results .response::-webkit-scrollbar-thumb:hover {
  background: #000000;
}
.search-bar .search-results .response .ais-Hits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-bar .search-results .response .ais-Hits--empty {
  text-align: center;
  padding: 50px 0;
  font-weight: 600;
}
.search-bar .search-results .response li {
  margin: 10px 0;
}
.search-bar .search-results .response .ais-Snippet-highlighted {
  background-color: transparent;
  text-decoration: underline;
}
.search-bar .search-results .response .single-product-outer {
  padding: 10px;
  background-color: #F4F4F4;
  border-radius: 10px;
}
.search-bar .search-results .response .single-product-outer .img {
  max-width: 100px;
}
.search-bar .search-results .response .single-product-outer .img img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}
.search-bar .search-results .response .single-product-outer .text {
  padding-left: 20px;
}
.search-bar .search-results .response .single-product-outer .text h6 a {
  color: #000000;
}
.search-bar .search-results .response .single-product-outer .text .price {
  font-weight: 600;
  color: #003C71;
  font-size: 0;
}
.search-bar .search-results .response .single-product-outer .text .price del {
  color: #870012;
  font-size: 10px;
  font-weight: 600;
  vertical-align: middle;
  display: inline-block;
  margin-right: 7px;
}
.search-bar .search-results .response .single-product-outer .text .price del:empty {
  margin: 0;
}
.search-bar .search-results .response .single-product-outer .text .price span {
  font-size: 16px;
  vertical-align: middle;
}
.search-bar .search-results .response .single-product-outer .text .added-to-cart {
  color: #34A853;
  padding: 10px;
  background-color: #F4F4F4;
  font-weight: 600;
  display: inline-block;
  font-size: 14px;
  margin: 0;
  border-radius: 5px;
  text-align: center;
}
.search-bar .search-results .response .single-product-outer .text .add-to-cart {
  align-self: flex-end;
}
.search-bar .search-results .response .single-product-outer .text .cart-btn {
  font-size: 0;
  padding: 9px;
  background-color: #CBE7FF;
  border-radius: 5px;
}
.search-bar .search-results .response .single-product-outer .text .cart-btn svg {
  width: 16px;
  height: 16px;
}
.search-bar .search-results .response .single-product-outer .text .cart-btn.adding {
  background-color: #003C71;
}
.search-bar .search-results .response .single-product-outer .text .cart-btn.adding svg {
  -webkit-animation: spin 700ms  linear infinite;
  -moz-animation: spin 700ms linear infinite;
  animation: spin 700ms  linear infinite;
}
.search-bar .search-results .response .single-product-outer .text .cart-btn.adding:hover path {
  fill: unset;
}
.search-bar .search-results .response .single-product-outer .text .cart-btn:hover {
  background-color: #003C71;
}
.search-bar .search-results .response .single-product-outer .text .cart-btn:hover path {
  fill: #ffffff;
}
.search-bar .search-results .view-all {
  text-align: center;
  padding: 10px;
}

@media only screen and (max-width: 991.98px) {
  .search-bar .input {
    flex: 0 0 auto;
    width: 100%;
    padding-left: 0;
  }

  .search-bar .buttons {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 10px;
  }

  .search-bar .search-by {
    padding-right: 0;
  }

  .search-bar {
    padding: 16px;
  }

  .search-bar .buttons li {
    margin: 0 0 15px 0;
    display: block;
  }
  .search-bar .buttons li:last-child {
    margin-bottom: 0;
  }

  .search-bar .buttons li a {
    display: block;
  }

  .search-bar .search-results .response .single-product-outer .img img {
    width: 70px;
    height: 50px;
  }

  .search-bar .search-results .response .single-product-outer .img {
    max-width: 70px;
  }

  .search-bar .search-results .response .single-product-outer .text h6 {
    font-size: 14px;
  }

  .search-bar .search-results .response .single-product-outer .text {
    padding-left: 10px;
  }

  .search-bar .search-results {
    padding-right: 0;
  }
}
.cta-banner .container {
  padding: 50px 40px;
}
.cta-banner .inner {
  background: linear-gradient(271.03deg, #003C71 5.08%, #0072D7 93.52%);
  border-radius: 5px;
}
.cta-banner .inner h2 {
  color: #ffffff;
}
.cta-banner .inner p {
  color: #ffffff;
}
.cta-banner .inner .txt {
  max-width: 525px;
  padding: 25px;
  align-self: center;
}
.cta-banner .inner .img {
  text-align: right;
}
.cta-banner .inner .img img {
  max-width: 100%;
  margin-bottom: -32px;
  max-height: 250px;
}

@media only screen and (max-width: 991.98px) {
  .cta-banner .container {
    padding: 20px 16px;
  }

  .cta-banner .inner .txt {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    padding: 15px 15px 5px;
  }

  .cta-banner .inner h2 {
    font-size: 32px;
  }

  .cta-banner .inner .img {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .cta-banner .inner .img img {
    width: 400px;
    margin-bottom: -23px;
  }
}
.highlight-features .container {
  padding: 15px 40px;
}
.highlight-features .feature {
  padding: 15px;
}
.highlight-features .feature.blue .row, .highlight-features .feature.blue .payment-form .grid, .payment-form .highlight-features .feature.blue .grid {
  background-color: #003C71;
}
.highlight-features .feature.blue h5, .highlight-features .feature.blue .payment-form legend, .payment-form .highlight-features .feature.blue legend, .highlight-features .feature.blue p {
  color: #ffffff;
}
.highlight-features .feature .row, .highlight-features .feature .payment-form .grid, .payment-form .highlight-features .feature .grid {
  padding: 24px 20px;
  align-items: center;
  background-color: #E9F5FF;
  border-radius: 5px;
  justify-content: center;
}
.highlight-features .icon {
  padding-right: 20px;
}
.highlight-features .text {
  max-width: 400px;
}
.highlight-features h5, .highlight-features .payment-form legend, .payment-form .highlight-features legend {
  font-weight: 600;
  color: #003C71;
  margin: 0;
  text-transform: uppercase;
}
.highlight-features p {
  margin: 0;
}
.highlight-features i {
  display: flex;
  width: 64px;
  height: 64px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.highlight-features i svg {
  vertical-align: middle;
}

@media only screen and (max-width: 991.98px) {
  .highlight-features .container {
    padding: 20px 16px;
  }

  .highlight-features .feature {
    flex: 0 0 auto;
    width: 100%;
    padding: 7px 15px;
  }
}
.testimonials .testimonial-carousel {
  margin: 0 -15px;
}
.testimonials .flickity-enabled .single-testimonial {
  display: block;
}
.testimonials .single-testimonial {
  width: 33%;
  padding: 15px;
  min-width: 350px;
  display: none;
}
.testimonials .single-testimonial:first-child {
  display: block;
}
.testimonials .inner {
  padding: 32px;
  background-color: #ffffff;
  box-shadow: 4px 8px 20px 0px rgba(0, 0, 0, 0.05);
  display: block;
  color: #000000;
  border-radius: 5px;
}
.testimonials .initials {
  margin-top: 24px;
}
.testimonials .initials h6 {
  font-size: 14px;
}

.latest-news .container {
  padding: 15px 40px;
}
.latest-news .featured {
  padding: 15px;
}
.latest-news .featured .inner {
  padding: 30px;
  background-size: cover;
  background-position: center;
  min-height: 444px;
  border-radius: 10px;
  height: 100%;
}
.latest-news .featured .gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, transparent 0%, #000000 100%);
}
.latest-news .featured .txt {
  position: relative;
  align-self: flex-end;
}
.latest-news .featured h4, .latest-news .featured p {
  color: #ffffff;
}
.latest-news .featured p {
  margin-bottom: 0;
}
.latest-news .featured .read-blog {
  align-self: flex-end;
  padding-left: 15px;
}
.latest-news .blog-list {
  padding: 15px;
}
.latest-news .blog-list img {
  max-width: 175px;
  border-radius: 10px;
}
.latest-news .blog-list .single-blog {
  margin-bottom: 20px;
}
.latest-news .blog-list .text {
  padding-left: 25px;
}
.latest-news .blog-list .text h4 {
  color: #003C71;
}
.latest-news .blog-list .text p {
  margin-bottom: 0;
  color: #000000;
}
.latest-news .blog-list .more-articles {
  padding: 37px 30px;
  background-color: #E9F5FF;
  border-radius: 10px;
}
.latest-news .blog-list .more-articles .images {
  display: inline-block;
  vertical-align: middle;
}
.latest-news .blog-list .more-articles .images img {
  border-radius: 50%;
  width: 55px;
  height: 55px;
  border: 8px solid #ffffff;
  margin-left: -20px;
}
.latest-news .blog-list .more-articles .images img:first-child {
  margin-left: 0;
}
.latest-news .blog-list .more-articles h4 {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
  padding-left: 20px;
  color: #003C71;
}
.latest-news .blog-list .more-articles h4 span {
  color: #000000;
}

@media only screen and (max-width: 991.98px) {
  .latest-news .featured {
    flex: 0 0 auto;
    width: 100%;
  }

  .latest-news .blog-list {
    flex: 0 0 auto;
    width: 100%;
  }

  .latest-news .container {
    padding: 20px 16px;
  }

  .latest-news .featured .inner {
    min-height: 310px;
    padding: 15px;
  }

  .latest-news .featured .read-blog {
    flex: 0 0 auto;
    width: 100%;
    padding-left: 0;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .latest-news .blog-list .more-articles .col, .latest-news .blog-list .more-articles .payment-form .item, .payment-form .latest-news .blog-list .more-articles .item {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
  }

  .latest-news .blog-list .more-articles .show-all {
    text-align: center;
    padding-top: 15px;
  }

  .latest-news .blog-list .more-articles {
    padding: 25px;
  }

  .latest-news .blog-list .single-blog {
    display: none;
  }
}
#cart-page {
  background-color: #F4F4F4;
}
#cart-page .container {
  padding: 25px 17px;
}
#cart-page .longer-lead-time {
  padding: 10px 34px;
  display: none;
}
#cart-page .longer-lead-time p {
  margin: 0;
  padding: 10px 17px;
  border-radius: 5px;
  width: 100%;
  display: block;
  color: #663800;
  background-color: #ffca89;
  font-weight: 600;
}
#cart-page .cart-items {
  padding: 17px;
}
#cart-page .cart-items .inner {
  background-color: #ffffff;
  border-radius: 10px;
}
#cart-page .cart-items .heading {
  padding: 34px 34px 20px 34px;
}
#cart-page .cart-items .heading h4 {
  margin-bottom: 0;
}
#cart-page .cart-items hr {
  border: 1px solid #F0F0F0;
  border-bottom: 0;
}
#cart-page .cart-items .item-details {
  padding: 0 0 0 15px;
}
#cart-page .cart-items .item-details h6 {
  font-weight: 600;
  margin: 8px 0 16px 0;
}
#cart-page .cart-items .item-details .row, #cart-page .cart-items .item-details .payment-form .grid, .payment-form #cart-page .cart-items .item-details .grid {
  align-items: center;
}
#cart-page .cart-items .item-details .pills br {
  display: none;
}
#cart-page .cart-items .item-title a:hover {
  color: #000000;
}
#cart-page .cart-items .items {
  padding: 20px 34px;
}
#cart-page .cart-items .items .item {
  margin: 16px 0;
  background-color: #F4F4F4;
  border-radius: 10px;
  padding: 16px;
  align-items: center;
}
#cart-page .cart-items .items .item .img-outer {
  max-width: 100px;
}
#cart-page .cart-items .items .item .img-outer .img {
  height: 70px;
  background-size: cover;
  background-position: center top;
  border-radius: 10px;
}
#cart-page .cart-items .items .qty-price {
  text-align: right;
  padding-left: 20px;
}
#cart-page .cart-items .items .qty-price svg path {
  fill: #003C71;
}
#cart-page .cart-items .items .price {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #003C71;
  vertical-align: middle;
}
#cart-page .cart-items .items .delete {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}
#cart-page .cart-items .items .delete button {
  background-color: transparent;
  display: flex;
  align-items: center;
}
#cart-page .cart-items .items .qty-outer {
  display: inline-block;
  background-color: #FFFFFF;
  border-radius: 5px;
  margin-left: 20px;
  vertical-align: middle;
}
#cart-page .cart-items .items .qty-outer .row, #cart-page .cart-items .items .qty-outer .payment-form .grid, .payment-form #cart-page .cart-items .items .qty-outer .grid {
  align-items: center;
}
#cart-page .cart-items .items .qty-outer i {
  line-height: 1;
}
#cart-page .cart-items .items .qty-outer .trash {
  display: none;
}
#cart-page .cart-items .items .qty-outer .show-trash i {
  display: none;
}
#cart-page .cart-items .items .qty-outer .show-trash .trash {
  display: inline-block;
}
#cart-page .cart-items .items .qty-outer button {
  background-color: transparent;
  padding: 4px 7px;
  display: flex;
  align-items: center;
}
#cart-page .cart-items .items .qty-outer button svg {
  vertical-align: middle;
}
#cart-page .cart-items .items .qty-outer input {
  max-width: 30px;
  height: 28px;
  padding: 0;
  border: 0;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
#cart-page .cart-items .items .qty-outer input::-webkit-inner-spin-button, #cart-page .cart-items .items .qty-outer input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
#cart-page .cart-items .coupon-checkbox {
  padding: 20px 34px;
}
#cart-page .coupon-code {
  margin-top: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px 34px;
  display: none;
}
#cart-page .coupon-code .input-outer {
  padding-right: 20px;
}

@media only screen and (max-width: 1199.98px) {
  #cart-page .longer-lead-time {
    padding: 10px;
  }

  #cart-page .cart-items {
    flex: 0 0 auto;
    width: 100%;
    padding-top: 5px;
  }

  #cart-page .container {
    padding: 10px 0;
  }

  #cart-page .cart-items .items .item {
    padding-left: 10px;
    padding-right: 10px;
  }

  #cart-page .cart-items .item-details {
    padding-left: 10px;
  }

  #cart-page .cart-items .heading {
    padding-left: 17px;
    padding-right: 17px;
  }

  #cart-page .cart-items .items {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  #cart-page .cart-items .coupon-checkbox {
    padding-left: 17px;
    padding-right: 17px;
    padding-top: 5px;
  }

  #cart-page .coupon-code {
    padding-left: 10px;
    padding-right: 10px;
  }

  #cart-page .coupon-code .input-outer {
    padding-right: 10px;
  }

  #cart-page .longer-lead-time p {
    padding: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  #cart-page .cart-items .items .qty-price {
    flex: 0 0 auto;
    width: 100%;
    text-align: left;
    padding-left: 0;
  }

  #cart-page .cart-items .items .delete {
    margin-left: 0;
  }

  #cart-page .cart-items .items .qty-outer {
    margin-left: 5px;
  }

  #cart-page .cart-items {
    padding: 10px;
  }

  #cart-page .cart-items .items .qty-outer button {
    padding: 4px 5px;
  }

  #cart-page .cart-items .items .qty-outer button svg {
    max-width: 13px;
  }
}
#billing-page {
  background-color: #F4F4F4;
}
#billing-page .container {
  padding: 25px 17px;
}
#billing-page .addresses {
  padding: 17px;
}
#billing-page .addresses .international-order-notice {
  padding: 30px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #e4e4e4;
}
#billing-page .addresses .international-order-notice p {
  margin: 0;
  font-weight: 600;
}
#billing-page .addresses .inner {
  background-color: #ffffff;
  border-radius: 10px;
  padding-bottom: 35px;
}
#billing-page .addresses .heading {
  padding: 10px 34px;
}
#billing-page .addresses .heading h4 {
  margin-bottom: 0;
}
#billing-page .addresses hr {
  border: 1px solid #F0F0F0;
  border-bottom: 0;
}
#billing-page .hidden {
  display: none;
}
#billing-page .custom-form {
  padding: 20px 0px;
}
#billing-page .custom-form .custom-box {
  margin: 10px;
}
#billing-page .custom-form .form-section {
  padding: 15px 24px;
}
#billing-page .custom-form .form-section-checkbox {
  padding: 5px 34px;
}
#billing-page .custom-form .text-red-700 {
  color: #EE1C25;
  font-weight: 600;
  margin-top: 3px;
}
#billing-page .BillingAddress {
  display: none;
}
#billing-page .selected-address-outer {
  padding: 20px 34px;
  font-weight: 600;
  position: relative;
}
#billing-page .selected-address-outer .selected-address {
  cursor: pointer;
  background-color: #F6F6F6;
  padding: 16px 10px;
  border: 1px solid #003C71;
  border-radius: 10px;
  align-items: center;
}
#billing-page .selected-address-outer .selected-address.opened {
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#billing-page .selected-address-outer .selected-address .down-arrow {
  padding-left: 10px;
}
#billing-page .selected-address-outer .selected-address .down-arrow svg {
  vertical-align: middle;
}
#billing-page .selected-address-outer .all-addresses {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid #003C71;
  border-top: 0;
}
#billing-page .selected-address-outer .all-addresses .address-radios {
  border-radius: 10px;
}
#billing-page .selected-address-outer .all-addresses .address-radios.selected {
  background-color: #F6F6F6;
}
#billing-page .selected-address-outer .all-addresses .address-radios input {
  width: 0;
  height: 0;
  opacity: 0;
}
#billing-page .selected-address-outer .all-addresses .address-radios:hover {
  background-color: #F6F6F6;
}
#billing-page .selected-address-outer .all-addresses .address-radios .js-radio {
  font-size: 0;
}
#billing-page .selected-address-outer .all-addresses .address-radios .complete-address {
  font-size: 14px;
}
#billing-page .selected-address-outer .all-addresses .address-radios label {
  margin: 0;
  padding: 13px 10px;
  cursor: pointer;
  width: 100%;
}

@media only screen and (max-width: 991.98px) {
  #billing-page .container {
    padding: 10px 0px;
  }

  #billing-page .custom-form {
    padding-top: 0;
  }

  #billing-page .addresses {
    padding: 10px;
  }

  #billing-page .addresses .international-order-notice {
    padding: 17px;
  }

  #billing-page .addresses .heading {
    padding-left: 17px;
    padding-right: 17px;
    padding-top: 25px;
  }

  #billing-page .selected-address-outer {
    padding-left: 17px;
    padding-right: 17px;
  }

  #billing-page .custom-form .form-section-checkbox {
    padding-left: 17px;
    padding-right: 17px;
  }

  #billing-page .custom-form .form-section {
    padding-left: 17px;
    padding-right: 17px;
  }

  #billing-page .addresses .inner {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 991.98px) {
  #billing-page .custom-form .custom-box {
    flex: 0 0 auto;
    width: 100%;
    margin: 9px 0 8px 0;
  }

  #billing-page .addresses .heading br {
    display: none;
  }
}
#shipping-page {
  background-color: #F4F4F4;
}
#shipping-page .container {
  padding: 25px 17px;
}
#shipping-page .heading {
  padding: 34px 34px 20px 34px;
}
#shipping-page .heading h4 {
  margin-bottom: 0;
}
#shipping-page hr {
  border: 1px solid #F0F0F0;
  border-bottom: 0;
}
#shipping-page .shipping {
  padding: 17px;
}
#shipping-page .shipping .inner {
  background-color: #ffffff;
  border-radius: 10px;
}
#shipping-page .methods {
  padding: 10px 34px;
}
#shipping-page .methods label {
  margin: 0;
  cursor: pointer;
}
#shipping-page .methods .single-method {
  padding: 9px 5px;
  border-radius: 10px;
  background-color: #F4F4F4;
  margin: 10px 0;
  border: 1px solid #F4F4F4;
}
#shipping-page .methods .single-method.selected {
  border-color: #003C71;
}
#shipping-page .methods .col, #shipping-page .methods .payment-form .item, .payment-form #shipping-page .methods .item {
  padding: 10px;
}
#shipping-page .methods h6 {
  font-weight: 600;
  margin: 0;
}
#shipping-page .methods .img {
  width: 100px;
  height: 70px;
  background-color: #EAEAEA;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
#shipping-page .methods .img.ups {
  background-image: url("/images/ups.png");
  background-size: 39px;
}
#shipping-page .methods .img.ltl {
  background-image: url("/images/ltl.png");
  background-size: 44px;
}
#shipping-page .methods .img.visa {
  background-image: url("/images/visa.png");
  background-size: 53px;
}
#shipping-page .methods .img.invoice {
  background-image: url("/images/invoice.png");
  background-size: 29px;
}
#shipping-page .methods .time, #shipping-page .methods .price {
  color: #003C71;
}
#shipping-page .tax-exempt {
  padding: 10px 34px 25px;
}
#shipping-page .loading-img {
  padding: 10px;
  text-align: center;
}
#shipping-page .slow-shipping-response {
  padding: 10px 34px;
  display: none;
}
#shipping-page .slow-shipping-response h6 {
  padding: 30px;
  background: #e4e4e4;
  border-radius: 10px;
  font-weight: 600;
}
#shipping-page .slow-shipping-response h6 a {
  font-weight: 700;
}
#shipping-page .payment-methods {
  margin-top: 34px;
}

@media only screen and (max-width: 991.98px) {
  #shipping-page .container {
    padding: 10px 0;
  }

  #shipping-page .shipping {
    padding: 10px;
  }

  #shipping-page .heading {
    padding-left: 17px;
    padding-right: 17px;
  }

  #shipping-page .tax-exempt {
    padding-left: 17px;
    padding-right: 17px;
  }

  #shipping-page .slow-shipping-response {
    padding-left: 17px;
    padding-right: 17px;
  }

  #shipping-page .slow-shipping-response h6 {
    padding: 30px 17px;
    font-size: 14px;
  }

  #shipping-page .methods {
    padding-left: 10px;
    padding-right: 10px;
  }

  #shipping-page .methods .col, #shipping-page .methods .payment-form .item, .payment-form #shipping-page .methods .item, #shipping-page .methods .payment-form .item, .payment-form #shipping-page .methods .item {
    padding: 5px;
  }

  #shipping-page .methods h6 {
    font-size: 14px;
  }
}
#payment-page {
  background-color: #F4F4F4;
}
#payment-page .container {
  padding: 25px 17px;
}
#payment-page .payment {
  padding: 17px;
}
#payment-page .payment .inner {
  background-color: #ffffff;
  border-radius: 10px;
  padding-bottom: 35px;
}
#payment-page .payment .heading {
  padding: 10px 34px;
}
#payment-page .payment .heading h4 {
  margin-bottom: 0;
}
#payment-page hr {
  border: 1px solid #F0F0F0;
  border-bottom: 0;
}
#payment-page .form-inner {
  padding: 10px 24px;
}
#payment-page .custom-box {
  margin: 5px 10px;
}
#payment-page .credit-card-img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url("/images/credit-card.png");
  width: 166px;
  height: 32px;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}
#payment-page .cvv-img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url("/images/cvv.png");
  width: 30px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

@media only screen and (max-width: 991.98px) {
  #payment-page .credit-card-img {
    width: 114px;
  }

  #payment-page .container {
    padding: 10px 0;
  }

  #payment-page .payment {
    padding: 10px;
  }

  #payment-page .payment .heading {
    padding-left: 17px;
    padding-right: 17px;
  }

  #payment-page .form-inner {
    padding-left: 5px;
    padding-right: 5px;
  }

  #payment-page .payment .inner {
    padding-bottom: 15px;
  }

  #payment-page .custom-box {
    margin: 5px;
  }
}
#order-page {
  background-color: #F4F4F4;
}
#order-page .container {
  padding: 25px 17px;
}
#order-page .upper {
  padding-left: 17px;
  padding-right: 17px;
}
#order-page .upper p {
  margin-bottom: 5px;
}
#order-page .upper h3 {
  color: #003C71;
}
#order-page .order-details {
  padding: 17px;
}
#order-page .order-details .bg-white {
  background-color: #ffffff;
  border-radius: 10px;
}
#order-page .order-details .inner {
  background-color: #ffffff;
  border-radius: 10px;
}
#order-page .order-details .heading {
  padding: 34px 34px 20px 34px;
}
#order-page .order-details .heading h4 {
  margin-bottom: 0;
}
#order-page .order-details .info {
  padding: 25px 34px;
}
#order-page .order-details hr {
  border: 1px solid #F0F0F0;
  border-bottom: 0;
}
#order-page .order-details .row .col, #order-page .order-details .payment-form .grid .col, .payment-form #order-page .order-details .grid .col, #order-page .order-details .row .payment-form .item, .payment-form #order-page .order-details .row .item, #order-page .order-details .payment-form .grid .item, .payment-form #order-page .order-details .grid .item {
  padding: 5px 10px;
}
#order-page .order-details .row .col:first-child, #order-page .order-details .payment-form .grid .col:first-child, .payment-form #order-page .order-details .grid .col:first-child, #order-page .order-details .row .payment-form .item:first-child, .payment-form #order-page .order-details .row .item:first-child, #order-page .order-details .payment-form .grid .item:first-child, .payment-form #order-page .order-details .grid .item:first-child {
  max-width: 200px;
}
#order-page .order-details .row .col label, #order-page .order-details .payment-form .grid .col label, .payment-form #order-page .order-details .grid .col label, #order-page .order-details .row .payment-form .item label, .payment-form #order-page .order-details .row .item label, #order-page .order-details .payment-form .grid .item label, .payment-form #order-page .order-details .grid .item label {
  color: #003C71;
  font-weight: 600;
}
#order-page .order-details .row .col span, #order-page .order-details .payment-form .grid .col span, .payment-form #order-page .order-details .grid .col span, #order-page .order-details .row .payment-form .item span, .payment-form #order-page .order-details .row .item span, #order-page .order-details .payment-form .grid .item span, .payment-form #order-page .order-details .grid .item span {
  font-weight: 600;
}
#order-page .order-details .row .col br, #order-page .order-details .payment-form .grid .col br, .payment-form #order-page .order-details .grid .col br, #order-page .order-details .row .payment-form .item br, .payment-form #order-page .order-details .row .item br, #order-page .order-details .payment-form .grid .item br, .payment-form #order-page .order-details .grid .item br {
  display: none;
}
#order-page .order-details .row .col p, #order-page .order-details .payment-form .grid .col p, .payment-form #order-page .order-details .grid .col p, #order-page .order-details .row .payment-form .item p, .payment-form #order-page .order-details .row .item p, #order-page .order-details .payment-form .grid .item p, .payment-form #order-page .order-details .grid .item p {
  margin: 0;
}
#order-page .shipping-method, #order-page .payment-method {
  margin-top: 34px;
  background-color: #ffffff;
  border-radius: 10px;
}
#order-page #shipping-page {
  padding: 0 17px;
}
#order-page #shipping-page .methods .single-method.selected {
  background-color: transparent;
  border: 1px solid #F4F4F4;
}
#order-page #shipping-page .methods .single-method.selected label {
  cursor: normal;
}
#order-page #cart-page .cart-items .items .qty-outer input {
  max-width: 70px;
  background-color: transparent;
}
#order-page #cart-page .cart-items .items .item {
  background-color: transparent;
  border: 1px solid #F4F4F4;
}
#order-page #cart-page .cart-items .items .qty-outer {
  background-color: #f4f4f4;
}

@media only screen and (max-width: 991.98px) {
  #order-page .container {
    padding: 25px 0;
  }

  #order-page .order-details .heading {
    padding-left: 17px;
    padding-right: 17px;
  }

  #order-page .order-details .info {
    padding-left: 12px;
    padding-right: 12px;
  }

  #order-page .upper h3 {
    font-size: 24px;
  }

  #order-page .heading h4 {
    font-size: 16px;
  }

  #order-page .heading, #order-page .order-details .heading, #order-page #cart-page .cart-items .heading {
    padding-top: 25px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  #order-page .order-details .row .col:first-child, #order-page .order-details .payment-form .grid .col:first-child, .payment-form #order-page .order-details .grid .col:first-child, #order-page .order-details .row .payment-form .item:first-child, .payment-form #order-page .order-details .row .item:first-child, #order-page .order-details .payment-form .grid .item:first-child, .payment-form #order-page .order-details .grid .item:first-child {
    max-width: 100px;
  }
}
#parts-page {
  position: relative;
}
#parts-page .backdrop {
  position: absolute;
  top: -1000px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1001;
  backdrop-filter: blur(5px);
}
#parts-page .banner {
  background: black;
  background-image: url("/images/parts-page/bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
#parts-page .banner .gradient {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(75.92deg, #000000 4.12%, transparent 92.54%);
}
#parts-page .banner .container {
  padding: 10px 40px 60px 40px;
}
#parts-page .banner .row.outer, #parts-page .banner .payment-form .outer.grid, .payment-form #parts-page .banner .outer.grid {
  min-height: 440px;
}
#parts-page .banner .breadcrumbs {
  flex: 0 0 auto;
  width: 100%;
  position: relative;
}
#parts-page .banner .breadcrumbs path {
  fill: #ffffff;
}
#parts-page .banner .breadcrumbs a {
  color: #ffffff;
}
#parts-page .banner .main {
  align-self: flex-end;
  position: relative;
}
#parts-page .banner .main .heading {
  color: #ffffff;
  margin-bottom: 0;
}
#parts-page .banner .main .subheading {
  color: #ffffff;
  font-weight: 400;
  max-width: 459px;
  margin-bottom: 35px;
}
#parts-page .categories .container {
  padding: 50px 40px;
}
#parts-page .categories .view-all-categories {
  padding-top: 20px;
  text-align: center;
}
#parts-page .categories .single-category {
  padding: 15px;
  flex: 0 0 auto;
  width: 20%;
}
#parts-page .categories .single-category.hide-it {
  display: none;
}
#parts-page .categories .single-category:hover h6, #parts-page .categories .single-category:hover h7 {
  color: #ffffff;
}
#parts-page .categories .single-category:hover .inner .gradient {
  opacity: 1;
  border-radius: 5px;
}
#parts-page .categories .single-category .col, #parts-page .categories .single-category .payment-form .item, .payment-form #parts-page .categories .single-category .item {
  position: relative;
}
#parts-page .categories .single-category .inner {
  background: #F4F4F4;
  padding: 15px;
  border-radius: 5px;
  position: relative;
}
#parts-page .categories .single-category .inner .gradient {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: linear-gradient(90deg, #0072D7 0%, #0057A4 50.22%, #003C71 100%);
}
#parts-page .categories .single-category .img {
  padding-right: 15px;
}
#parts-page .categories .single-category .img img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 5px;
}
#parts-page .categories .single-category h6 {
  color: #003C71;
  font-size: 14px;
  margin: 0;
}
#parts-page .categories .single-category h7 {
  font-weight: 600;
  margin: 0;
}
#parts-page .contact .container {
  padding: 40px;
}
#parts-page .contact .form {
  background-color: #F4F4F4;
  padding: 30px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#parts-page .contact .form .col, #parts-page .contact .form .payment-form .item, .payment-form #parts-page .contact .form .item {
  padding: 0 15px;
}
#parts-page .contact .form .custom-box {
  margin-bottom: 30px;
}
#parts-page .contact .form .custom-box label {
  background-color: transparent;
}
#parts-page .contact .form .custom-checkbox {
  margin-bottom: 20px;
}
#parts-page .contact .form .custom-input, #parts-page .contact .form .payment-form input, .payment-form #parts-page .contact .form input, #parts-page .contact .form .search-bar .input input, .search-bar .input #parts-page .contact .form input {
  min-height: 54px;
  border-color: transparent;
}
#parts-page .contact .form textarea {
  min-height: 155px;
  border-color: transparent;
}
#parts-page .contact .img {
  border-radius: 5px;
  background-position: center;
  background-size: cover;
  background-image: url("/images/parts-page/contact-img.jpg");
}
#parts-page .freeform-row {
  margin: 0 -10px;
}
#parts-page .freeform-row [class*="freeform-col-"].floating input:placeholder-shown:not(:focus) + *, #parts-page .freeform-row [class*="freeform-col-"].floating textarea:placeholder-shown:not(:focus) + *, #parts-page .freeform-row [class*="freeform-col-"].floating select:placeholder-shown:not(:focus) + * {
  color: #C6C6C6 !important;
  position: absolute;
  top: 37px;
  left: 35px;
  font-weight: 600;
  margin: 0;
  padding: 2px 5px;
  pointer-events: none;
  white-space: nowrap;
  transform: translate(0, -50%);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  opacity: 1;
}
#parts-page .freeform-row [class*="freeform-col-"].floating label {
  opacity: 1;
}
#parts-page .freeform-row [class*="freeform-col-"].floating textarea:placeholder-shown:not(:focus) + * {
  top: 37px;
}
#parts-page .freeform-row [class*="freeform-col-"].floating label {
  top: 0;
  left: 35px;
  font-size: 12px;
  color: #003C71 !important;
  font-family: "Montserrat", sans-serif;
  background-color: transparent;
  font-weight: 600;
}
#parts-page .freeform-row [class*="freeform-col-"].floating input, #parts-page .freeform-row [class*="freeform-col-"].floating .StripeElement, #parts-page .freeform-row [class*="freeform-col-"].floating textarea, #parts-page .freeform-row [class*="freeform-col-"].floating select {
  border: 0 !important;
  font-family: "Montserrat", sans-serif;
  min-height: 54px;
  padding: 10px 25px;
  font-weight: 600;
  opacity: 1;
}
#parts-page .freeform-row [class*="freeform-col-"].floating textarea {
  min-height: auto;
}
#parts-page .freeform-row [class*="freeform-col-"].floating input:focus, #parts-page .freeform-row [class*="freeform-col-"].floating textarea:focus, #parts-page .freeform-row [class*="freeform-col-"].floating select:focus {
  border: 0 !important;
}
#parts-page .freeform-row [class*="freeform-col-"].floating input:focus ~ label::after, #parts-page .freeform-row [class*="freeform-col-"].floating textarea:focus ~ label::after, #parts-page .freeform-row [class*="freeform-col-"].floating select:focus ~ label::after {
  color: #003C71;
}
#parts-page .freeform-row [class*="freeform-col-"] .freeform-label.freeform-required::after {
  color: #C6C6C6;
}
#parts-page .freeform-row .freeform-fieldtype-select .freeform-label.freeform-required::after {
  color: #003C71;
}
#parts-page .freeform-row .freeform-fieldtype-checkbox input[type=checkbox] {
  margin-right: 10px;
  background-color: #DFDFDF;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  position: relative;
  box-shadow: none;
  margin-top: -2px;
  padding: 0;
  border: 0;
}
#parts-page .freeform-row .freeform-fieldtype-checkbox input[type=checkbox]:checked::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 5px;
  position: absolute;
  top: 3px;
  left: 3px;
  background-color: #003C71;
}
#parts-page .freeform-row .freeform-fieldtype-checkbox label.freeform-label {
  font-weight: 600;
  cursor: pointer;
  color: #000000;
  font-size: 14px;
  vertical-align: middle;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  display: inline;
}
#parts-page .freeform-row .freeform-fieldtype-checkbox label.freeform-label.freeform-required::after {
  color: #000000;
}
#parts-page .freeform-row .freeform-fieldtype-submit button {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
#parts-page .freeform-row [class*="freeform-col-"] .freeform-errors > li, #parts-page .freeform-row [class*="freeform-col-"] .ff-errors > li {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: normal;
}

@media only screen and (max-width: 1199.98px) {
  #parts-page .categories .single-category {
    width: 25%;
    padding: 7px;
  }

  #parts-page .categories .m-15 {
    margin: 0 -7px;
  }
}
@media only screen and (max-width: 991.98px) {
  #parts-page .banner .container {
    padding: 10px 15px 25px;
  }

  #parts-page .banner .main .heading {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 10px;
  }

  #parts-page .categories .single-category {
    width: 33.333%;
  }

  #parts-page .categories .container {
    padding: 20px 16px;
  }

  .hide-it-mobile {
    display: none;
  }

  h2 {
    font-size: 32px;
  }

  #parts-page .contact .form {
    flex: 0 0 auto;
    width: 100%;
    padding: 25px 15px;
  }

  #parts-page .contact .img {
    flex: 0 0 auto;
    width: 100%;
    height: 446px;
  }

  #parts-page .contact .container {
    padding: 20px 16px;
  }

  #parts-page .contact .form .custom-box {
    margin-bottom: 15px;
  }

  #parts-page .banner .gradient {
    background: linear-gradient(75.92deg, #000000 4.12%, rgba(0, 0, 0, 0.3) 92.54%);
  }

  #parts-page .banner .main {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  #parts-page .categories .single-category {
    width: 50%;
  }

  #parts-page .contact .form .col, #parts-page .contact .form .payment-form .item, .payment-form #parts-page .contact .form .item {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media only screen and (max-width: 575.98px) {
  #parts-page .categories .single-category {
    width: 100%;
  }
}
#parts-search > .container {
  padding: 0 40px;
}
#parts-search.category-page .result-for {
  display: none;
}
#parts-search.category-page .result-row {
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: 5px;
}
#parts-search.category-page .bottom-category-info {
  padding-left: 30px;
}
#parts-search.category-page .bottom-category-info img {
  max-width: 336px;
  max-height: 245px;
}
#parts-search.category-page .bottom-category-info h3 {
  color: #003C71;
}
#parts-search.category-page .bottom-category-info .category-text {
  padding-left: 20px;
}
#parts-search .result-row {
  margin-top: 30px;
  margin-bottom: 0px;
}
#parts-search .result-row h3 span {
  color: #003C71;
}
#parts-search .result-row h6 {
  font-weight: 600;
}
#parts-search .result-row .sort-by label {
  display: inline-block;
  margin: 0 10px 0 0;
  color: #003C71;
  font-size: 12px;
  font-weight: 600;
}
#parts-search .result-row .sort-by .sort-by-outer {
  display: inline-block;
  position: relative;
}
#parts-search .result-row .sort-by .sort-by-outer select {
  min-width: 185px;
  height: 44px;
  background-color: #F4F4F4;
  padding: 10px 35px 10px 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  font-weight: 600;
  border: 0;
  outline: 0;
  color: #000000;
}
#parts-search .result-row .sort-by .sort-by-outer i {
  position: absolute;
  top: 11px;
  right: 22px;
  transform: rotate(90deg);
}
#parts-search .results .applied-filters {
  padding-left: 25px;
  padding-top: 10px;
}
#parts-search .results .applied-filters ul.ais-CurrentRefinements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#parts-search .results .applied-filters .ais-CurrentRefinements-category {
  margin-right: 13px;
}
#parts-search .results .applied-filters .ais-CurrentRefinements-category:last-child {
  margin-right: 0;
}
#parts-search .results .applied-filters .ais-CurrentRefinements-item {
  display: inline-block;
}
#parts-search .results .applied-filters .ais-CurrentRefinements-item .ais-CurrentRefinements-label {
  display: none;
}
#parts-search .results .applied-filters .ais-CurrentRefinements-item span {
  font-size: 12px;
  font-weight: 600;
  color: #003C71;
}
#parts-search .results .applied-filters .ais-CurrentRefinements-item .ais-CurrentRefinements-category {
  display: inline-block;
  background-color: #F4F4F4;
  border-radius: 5px;
  padding: 1px 4px 1px 12px;
  margin: 5px;
}
#parts-search .results .applied-filters .filter-pill {
  background-color: #F4F4F4;
  border-radius: 5px;
  padding: 1px 12px;
  display: inline-block;
  margin: 5px;
}
#parts-search .results .applied-filters .filter-pill span {
  vertical-align: middle;
  font-size: 12px;
  font-weight: 600;
  color: #003C71;
  margin-right: 5px;
}
#parts-search .results .applied-filters .filter-pill i {
  vertical-align: middle;
  cursor: pointer;
}
#parts-search .results .applied-filters .filter-pill i svg {
  width: 12px;
}
#parts-search .results .applied-filters .filter-pill i svg rect {
  fill: #ACACAC;
}
#parts-search .results .res-list {
  padding-left: 30px;
}
#parts-search .results .res-list .ais-Hits.ais-Hits--empty {
  display: none;
}
#parts-search .results .res-list .ais-Hits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
#parts-search .results .res-list .ais-Hits-list .ais-Hits-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 273px;
  display: flex;
  flex-wrap: wrap;
  max-width: 25%;
}
#parts-search .results .res-list .ais-Hits-list .ais-Hits-item > * {
  flex: 0 0 auto;
  width: 100%;
}
#parts-search .results .custom-pagination {
  margin-bottom: 30px;
  text-align: right;
  padding-left: 30px;
}
#parts-search .results .custom-pagination a {
  text-decoration: none;
  font-style: normal;
}
#parts-search .results .custom-pagination .ais-Pagination-list {
  list-style: none;
  padding: 0;
}
#parts-search .results .custom-pagination .ais-Pagination-list li {
  display: inline-block;
}
#parts-search .results .custom-pagination .ais-Pagination-list li .ais-Pagination-link {
  padding: 11px 16px;
  display: inline-block;
  font-weight: 600;
  border-radius: 5px;
  background-color: #F4F4F4;
  margin: 3px;
}
#parts-search .results .custom-pagination .ais-Pagination-list li.ais-Pagination-item--selected .ais-Pagination-link {
  color: #ffffff;
  background-color: #003c71;
  border-color: #003c71;
}
#parts-search .results .custom-pagination .current {
  color: #ffffff;
  background-color: #003c71;
  border-color: #003c71;
}
#parts-search .results .custom-pagination .disabled {
  cursor: not-allowed;
}
#parts-search .filters {
  max-width: 265px;
  padding-bottom: 30px;
  padding-top: 25px;
}
#parts-search .filters .sticky {
  position: sticky;
  top: 20px;
  bottom: 0;
  overflow: auto;
  max-height: calc(100vh - 20px);
  padding-right: 15px;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
#parts-search .filters .sticky::-webkit-scrollbar {
  width: 6px;
}
#parts-search .filters .sticky::-webkit-scrollbar-track {
  background: #F0F0F0;
}
#parts-search .filters .sticky::-webkit-scrollbar-thumb {
  background: #003C71;
}
#parts-search .filters .sticky::-webkit-scrollbar-thumb:hover {
  background: #003C71;
}
#parts-search .filters hr {
  background-color: #EBEBEB;
  margin: 10px 0;
  height: 1px;
  border: 0;
}
#parts-search .filters .cat {
  background-color: #F4F4F4;
  border: 1px solid #003C71;
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
}
#parts-search .filters .cat.opened .cat-title svg {
  transform: rotate(-90deg);
}
#parts-search .filters .cat.opened .ais-RefinementList {
  display: block;
}
#parts-search .filters .cat .ais-RefinementList {
  display: none;
}
#parts-search .filters .cat .cat-title {
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #EBEBEB;
}
#parts-search .filters .cat .cat-title h6 {
  color: #003C71;
  margin: 0;
}
#parts-search .filters .cat .cat-title svg {
  transform: rotate(90deg);
}
#parts-search .filters .cat ul {
  list-style: none;
  padding: 20px;
  margin-bottom: 0;
}
#parts-search .filters .cat span {
  font-weight: 600;
}
#parts-search .filters .cat .ais-RefinementList-count {
  margin-left: 3px;
}
#parts-search .filters .cat .ais-RefinementList-count::after {
  content: ")";
}
#parts-search .filters .cat .ais-RefinementList-count::before {
  content: "(";
}
#parts-search .filters .clear-filters {
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin: 15px 0;
}
#parts-search .filters .clear-filters i {
  vertical-align: middle;
}
#parts-search .filters .clear-filters svg {
  width: 14px;
}
#parts-search .filters .clear-filters svg path {
  fill: #003C71;
}
#parts-search .filters label {
  display: block;
  font-weight: 500;
  color: #000000;
  font-size: 14px;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 30px;
}
#parts-search .filters label input {
  position: absolute;
  left: 0;
  margin-right: 10px;
  background-color: #DFDFDF;
  width: 20px;
  height: 20px;
  vertical-align: top;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  box-shadow: none;
  margin-top: 1px;
}
#parts-search .filters label input:not(:disabled) {
  cursor: pointer;
}
#parts-search .filters label input:not(:disabled) ~ span {
  cursor: pointer;
}
#parts-search .filters label input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
#parts-search .filters label input:disabled ~ span {
  opacity: 0.5;
  cursor: not-allowed;
}
#parts-search .filters label input:checked::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 5px;
  position: absolute;
  top: 3px;
  left: 3px;
  background-color: #003C71;
}
#parts-search .filters label input:checked ~ span {
  color: #003C71;
}
#parts-search .filters label span {
  vertical-align: middle;
  padding-bottom: 2px;
}

@media only screen and (max-width: 1499.98px) {
  #parts-search .results .res-list .ais-Hits-list .ais-Hits-item {
    max-width: 33.333%;
  }
}
@media only screen and (max-width: 1199.98px) {
  #parts-search > .container {
    padding: 0 16px;
  }

  #parts-search .results .res-list .ais-Hits-list .ais-Hits-item {
    max-width: 50%;
  }
}
@media only screen and (max-width: 991.98px) {
  #parts-search .result-row h3 {
    font-size: 24px;
  }

  #parts-search.category-page .bottom-category-info {
    padding-left: 0;
  }

  #parts-search .results .custom-pagination {
    padding-left: 0;
  }

  #parts-search .filters {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    z-index: 1001;
    background-color: #F4F4F4;
    max-width: 100%;
    padding: 0;
  }

  #parts-search .result-row .res-label {
    flex: 0 0 auto;
    width: 100%;
  }

  #parts-search .result-row .sort-by {
    text-align: right;
    position: relative;
  }
  #parts-search .result-row .sort-by label {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 1;
    transform: translate(0, -50%);
  }

  #parts-search .result-row .mobile-filters {
    padding-right: 20px;
  }
  #parts-search .result-row .mobile-filters a {
    min-width: 172px;
  }

  #parts-search .result-row .sort-by .sort-by-outer select {
    min-width: 150px;
    padding-left: 15px;
  }

  #parts-search .results .applied-filters {
    padding-left: 0;
  }

  #parts-search .results .res-list {
    padding-left: 0;
  }

  #parts-search .filters .sticky {
    max-height: calc(100vh - 135px);
    position: relative;
    padding: 20px;
    top: 0;
  }
  @supports (-webkit-touch-callout: none) {
    #parts-search .filters .sticky {
      max-height: calc(100dvh - 135px);
    }
  }

  #parts-search .filters .popup-head {
    padding: 20px 20px 0 20px;
  }

  #parts-search .show-results {
    padding: 15px 20px;
    background-color: #ffffff;
  }
  #parts-search .show-results a {
    display: block;
  }

  #parts-search.category-page .bottom-category-info .category-text {
    flex: 0 0 auto;
    width: 100%;
    padding-left: 0;
  }

  #parts-search.category-page .bottom-category-info img {
    width: 100%;
    margin-bottom: 10px;
  }

  #parts-search.category-page .result-row {
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #parts-search .result-row .mobile-filters {
    padding-right: 10px;
  }
  #parts-search .result-row .mobile-filters a {
    min-width: 140px;
  }
}
@media only screen and (max-width: 575.98px) {
  #parts-search .results .res-list .ais-Hits-list .ais-Hits-item {
    max-width: 100%;
  }
}
#product-page > .container {
  padding: 0 40px;
}
#product-page .main {
  margin-bottom: 30px;
}
#product-page .product-img {
  padding-right: 15px;
}
#product-page .product-img .img-carousel-outer {
  position: relative;
}
#product-page .product-img .img-carousel-outer .arrow-navigation {
  position: absolute;
  bottom: 15px;
  right: 10px;
}
#product-page .product-img .img-carousel-outer .arrow-navigation a {
  padding: 17px;
  background-color: #F4F4F4;
  border-radius: 5px;
  margin-right: 5px;
  font-size: 0;
}
#product-page .product-img .flickity-enabled .img, #product-page .product-img .flickity-enabled .thumb-img {
  display: block;
}
#product-page .product-img img {
  height: 425px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
#product-page .product-img .img {
  width: 100%;
  display: none;
}
#product-page .product-img .img:first-child {
  display: block;
}
#product-page .product-img .flickity-slider a {
  display: block;
  width: 100%;
}
#product-page .product-img .thumbs {
  margin-top: 15px;
}
#product-page .product-img .thumb-img {
  max-width: 135px;
  padding-right: 15px;
  width: 100%;
  display: none;
}
#product-page .product-img .thumb-img:first-child {
  display: block;
}
#product-page .product-img .thumb-img.is-nav-selected a {
  border-color: #003C71;
}
#product-page .product-img .thumb-img img {
  height: 84px;
}
#product-page .product-info {
  padding-left: 15px;
}
#product-page .product-info ul {
  padding-left: 0;
  list-style: none;
}
#product-page .product-info ul li {
  display: flex;
  margin: 10px 0;
  align-items: center;
  font-size: 0;
}
#product-page .product-info ul li i {
  font-size: 0;
  max-width: 40px;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  background-color: #F4F4F4;
  margin-right: 10px;
  border-radius: 5px;
  flex: 0 0 auto;
  vertical-align: middle;
}
#product-page .product-info ul li i img {
  max-width: 18px;
  max-height: 18px;
  vertical-align: middle;
}
#product-page .product-info ul li span {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  vertical-align: middle;
}
#product-page .product-info .add-to-cart-outer {
  padding: 15px 25px;
  background-color: #F4F4F4;
  border-radius: 5px;
  margin-top: 15px;
}
#product-page .product-info .add-to-cart-outer .product-price {
  color: #003C71;
}
#product-page .product-info .add-to-cart-outer .product-price h4 {
  margin: 0;
}
#product-page .product-info .add-to-cart-outer .product-price del {
  font-size: 10px;
  font-weight: 600;
  color: #870012;
  margin-right: 3px;
  vertical-align: middle;
}
#product-page .product-info .add-to-cart-outer .quantity-group {
  text-align: right;
}
#product-page .product-info .add-to-cart-outer .btn-outer {
  display: inline-block;
}
#product-page .product-info .add-to-cart-outer button.adding {
  background-color: #003C71;
  color: #ffffff;
}
#product-page .product-info .add-to-cart-outer button.adding:hover path {
  fill: unset;
}
#product-page .product-info .add-to-cart-outer button.adding svg {
  width: 16px;
  height: 16px;
  -webkit-animation: spin 700ms linear infinite;
  -moz-animation: spin 700ms linear infinite;
  animation: spin 700ms linear infinite;
}
#product-page .product-info .add-to-cart-outer .added-to-cart {
  color: #34A853;
  padding: 12px 25px;
  background-color: #F4F4F4;
  font-weight: 600;
  width: 100%;
  display: inline-block;
  font-size: 14px;
  margin: 0;
  border-radius: 5px;
  text-align: right;
}
#product-page .product-info .qty-outer {
  display: inline-block;
  background-color: #FFFFFF;
  border-radius: 5px;
  margin-right: 20px;
  vertical-align: middle;
}
#product-page .product-info .qty-outer .row, #product-page .product-info .qty-outer .payment-form .grid, .payment-form #product-page .product-info .qty-outer .grid {
  align-items: center;
}
#product-page .product-info .qty-outer button {
  background-color: transparent;
  padding: 4px 7px;
  display: flex;
  align-items: center;
}
#product-page .product-info .qty-outer button svg {
  vertical-align: middle;
}
#product-page .product-info .qty-outer input {
  max-width: 30px;
  height: 28px;
  padding: 0;
  border: 0;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
#product-page .product-info .qty-outer input::-webkit-inner-spin-button, #product-page .product-info .qty-outer input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
#product-page .tabs {
  margin-block: 35px;
}
#product-page .tab-header {
  background-color: #F4F4F4;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
#product-page .tab-header li.active a {
  color: #003C71;
  background-color: #ffffff;
}
#product-page .tab-header li a {
  font-size: 16px;
  color: #777777;
  padding: 14px 35px;
  font-weight: 600;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 0;
}
#product-page .tab-main {
  padding: 40px;
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
}
#product-page .tab-main .videos h4 {
  font-weight: 600;
}
#product-page .tab-main .videos .single-video {
  flex: 0 0 auto;
  width: 50%;
  padding: 15px;
}
#product-page .tab-main .videos .single-video a {
  height: 305px;
  background-size: cover;
  position: relative;
  border-radius: 5px;
  background-position: center;
}
#product-page .tab-main .videos .single-video a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 991.98px) {
  #product-page > .container {
    padding: 0 15px;
  }

  #product-page .product-img .thumbs {
    display: none;
  }

  #product-page .product-img {
    flex: 0 0 auto;
    width: 100%;
  }

  #product-page .product-info {
    flex: 0 0 auto;
    width: 100%;
    padding-top: 5px;
    padding-left: 0;
  }

  #product-page .tab-main .videos .single-video {
    flex: 0 0 auto;
    width: 100%;
  }

  #product-page .product-img {
    padding-right: 0;
  }

  #product-page .product-img img {
    height: 230px;
  }

  #product-page .tab-main {
    padding: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #product-page .product-info .add-to-cart-outer .product-price {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 10px;
  }

  #product-page .product-info .add-to-cart-outer .added-to-cart {
    text-align: center;
  }

  #product-page .product-info .add-to-cart-outer .quantity-group {
    text-align: left;
  }

  #product-page .tab-header {
    background-color: transparent;
  }

  #product-page .tab-main .videos .single-video a {
    height: 205px;
  }

  #product-page .tab-header li {
    display: block;
    margin-bottom: 10px;
  }
  #product-page .tab-header li a {
    border-radius: 5px;
    text-align: center;
    width: 100%;
    background-color: #F4F4F4;
  }
  #product-page .tab-header li.active a {
    background-color: #003C71;
    color: #ffffff;
  }
}

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