@charset "UTF-8";
/*md

# Grid variables

*/
/*md

# Grid system functions

*/
/*md

# Grid system mixins

This section describes grid system mixins used for development in the project.

*/
/*md

# Variables

*/
/*md

# Color variables

*/
/*md

# Fonts variables

*/
/*md

# Functions

This section describes core functions used for development in the project.

## Function strip-unit

Removes the unit (e.g. px, em, rem) from a value, returning the number only.

Returns the same number, sans unit.

## Function value-to-rem

**Private function**.
Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value.
By default, the base pixel value used to calculate the rem value is taken from the `$globalFontSize` variable.

Returns a number in rems, calculated based on the given value and the base pixel value.
rem values are passed through as is.

## Function rem-calc

Converts one or more pixel values into matching rem values.
By default, the base pixel value used to calculate the rem value is taken from the `$globalFontSize` variable.
If you need to convert a comma-separated list, wrap the list in parentheses.

Return a list of converted values.

## Function map-safe-get

Safely return a value from a map.

Returns found value. Can has any SASS data type

## Function map-deep-get

**Private function**.

Safely return a value from a map.

Returns found value.

*/
/*md

# Mixins

This section describes core mixins used for development in the project.

## Mixin generate-font-face

Generate `@font-face` rules

## Mixin when-inside

Helps make context selector a little more friendly

### Mixin on-event

Event wrapper. Setting up `:hover`, `:active`, `:focus` pseudo classes for selector

## Mixin clearfix

Quickly and easily clear floated content within a container

## Mixin placeholder

Setting up 'color' property for input placeholder for different browsers

## Mixin text-truncate

Truncate text overflow

## Mixins for Glide carousel

glide-carousel-title, glide-carousel-slides, glide-carousel-bullets-space, glide-carousel-bullets-item

*/
/*md

# Animation keyframes

 */
@keyframes navShowImage {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: none;
  }
}
@keyframes navShowImageInner {
  from {
    transform: translateX(50%);
  }
  to {
    transform: none;
  }
}
@keyframes navHideImage {
  from {
    transform: none;
  }
  to {
    transform: translateX(50%);
  }
}
@keyframes searchDash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes mobileNavHideScreen {
  from {
    transform: none;
  }
  to {
    transform: translateX(-10%);
  }
}
@keyframes mobileNavHideScreenBack {
  from {
    transform: none;
  }
  to {
    transform: translateX(10%);
  }
}
@keyframes mobileNavShowScreen {
  from {
    transform: translateX(100%);
  }
  to {
    transform: none;
  }
}
@keyframes mobileNavShowScreenBack {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: none;
  }
}
@keyframes loaderFade {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  60% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
@keyframes showPanelDropdown {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hidePanelDropdown {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translateY(5px);
  }
}
@keyframes sidebarAnimateIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes sidebarAnimateInResponsive {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spinnerRotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinnerBounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes example {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes open {
  from {
    background-color: rgba(0, 0, 0, 0);
  }
  to {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@keyframes slideOut {
  from {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
  to {
    overflow: auto;
    transform: none;
  }
}
@keyframes bubbles {
  0% {
    transform: scale(1) translate(-50%, -50%);
  }
  50% {
    transform: scale(0.7) translate(-50%, -50%);
  }
  100% {
    transform: scale(1) translate(-50%, -50%);
  }
}
/*md

# Helper classes

This section describes grid system mixins used for development in the project.

*/
.is-hide {
  display: none !important;
}

.is-show {
  display: block !important;
}

@media (max-width: 543.98px) {
  .is-hide-zero {
    display: none !important;
  }
  .is-show-zero {
    display: block !important;
  }
}
@media (max-width: 543.98px) {
  .hidden-zero {
    display: none !important;
  }
}

@media (max-width: 543.98px) {
  .hidden-zero-down {
    display: none !important;
  }
}

.hidden-zero-up {
  display: none !important;
}

@media (min-width: 544px) and (max-width: 767.98px) {
  .is-hide-xs {
    display: none !important;
  }
  .is-show-xs {
    display: block !important;
  }
}
@media (min-width: 544px) and (max-width: 767.98px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .hidden-xs-down {
    display: none !important;
  }
}

@media (min-width: 544px) {
  .hidden-xs-up {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .is-hide-sm {
    display: none !important;
  }
  .is-show-sm {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (max-width: 1023.98px) {
  .hidden-sm-down {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-sm-up {
    display: none !important;
  }
}

@media (min-width: 1024px) and (max-width: 1199.98px) {
  .is-hide-md {
    display: none !important;
  }
  .is-show-md {
    display: block !important;
  }
}
@media (min-width: 1024px) and (max-width: 1199.98px) {
  .hidden-md {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .hidden-md-down {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hidden-md-up {
    display: none !important;
  }
}

@media (min-width: 1200px) and (max-width: 1439.98px) {
  .is-hide-lg {
    display: none !important;
  }
  .is-show-lg {
    display: block !important;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (max-width: 1439.98px) {
  .hidden-lg-down {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg-up {
    display: none !important;
  }
}

@media (min-width: 1440px) {
  .is-hide-xl {
    display: none !important;
  }
  .is-show-xl {
    display: block !important;
  }
}
@media (min-width: 1440px) {
  .hidden-xl {
    display: none !important;
  }
}

@media (min-width: 1440px) {
  .hidden-xl-up {
    display: none !important;
  }
}

.is-colon::after {
  content: ":";
}

.is-hidden {
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.is-scroll-disabled {
  overflow: hidden;
}
.is-scroll-disabled--safari {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .is-scroll-disabled--safari {
    height: auto;
  }
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 0.0625rem;
  margin: -0.0625rem;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 0.0625rem;
}

.font-weight-semibold {
  font-weight: 600;
}

.img-overscale {
  height: auto;
  width: 100%;
}

.link--underline {
  border-bottom: 2px solid;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}
.link--underline:hover, .link--underline:focus, .link--underline:active {
  text-decoration: none;
}

.shadow-helper {
  overflow: hidden;
  position: relative;
}
.shadow-helper::before, .shadow-helper::after {
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.15);
  content: "";
  display: block;
  height: 0.0625rem;
  left: 0.9375rem;
  opacity: 0;
  position: absolute;
  right: 0.9375rem;
  transition: 0.15s opacity;
  z-index: 1;
}
@media (min-width: 1024px) {
  .shadow-helper::before, .shadow-helper::after {
    right: 1.875rem;
  }
}
.shadow-helper.is-top::before {
  opacity: 1;
  top: -0.0625rem;
}
.shadow-helper.is-bottom::after {
  bottom: -0.0625rem;
  opacity: 1;
}

/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #f00;
  --secondary: #000;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #c00;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 544px;
  --breakpoint-md: 959px;
  --breakpoint-lg: 1199px;
  --breakpoint-xl: 1439px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "FFDINforPuma", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

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: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #222;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: black;
  text-decoration: underline;
}

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

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

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

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

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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;
}

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;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #999;
}

small,
.small {
  font-size: 0.875em;
  font-weight: 500;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-lg,
.container-md {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 959px) {
  .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1199px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 1180px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

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

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 544px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 959px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1199px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1439px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #222;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #222;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(255, 183.6, 183.6);
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: rgb(255, 122.4, 122.4);
}

.table-hover .table-primary:hover {
  background-color: rgb(255, 158.1, 158.1);
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: rgb(255, 158.1, 158.1);
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: rgb(183.6, 183.6, 183.6);
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: rgb(122.4, 122.4, 122.4);
}

.table-hover .table-secondary:hover {
  background-color: rgb(170.85, 170.85, 170.85);
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: rgb(170.85, 170.85, 170.85);
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: rgb(194.8, 230.36, 202.92);
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: rgb(143.2, 209.24, 158.28);
}

.table-hover .table-success:hover {
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: rgb(190.04, 228.96, 235.12);
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: rgb(134.36, 206.64, 218.08);
}

.table-hover .table-info:hover {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: rgb(255, 237.64, 185.56);
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: rgb(255, 222.76, 126.04);
}

.table-hover .table-warning:hover {
  background-color: rgb(255, 231.265, 160.06);
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: rgb(255, 231.265, 160.06);
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: rgb(240.72, 183.6, 183.6);
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: rgb(228.48, 122.4, 122.4);
}

.table-hover .table-danger:hover {
  background-color: rgb(236.47, 162.35, 162.35);
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: rgb(236.47, 162.35, 162.35);
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: rgb(253.04, 253.32, 253.6);
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: rgb(251.36, 251.88, 252.4);
}

.table-hover .table-light:hover {
  background-color: rgb(238.165, 240.57, 242.975);
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: rgb(238.165, 240.57, 242.975);
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: rgb(198.16, 199.84, 201.52);
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: rgb(149.44, 152.56, 155.68);
}

.table-hover .table-dark:hover {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 543.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 958.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1198.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1438.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: rgb(255, 127.5, 127.5);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #222;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: rgb(51.6956521739, 206.3043478261, 87);
  background-color: rgb(51.6956521739, 206.3043478261, 87);
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #c00;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(204, 0, 0, 0.9);
  border-radius: 0;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #c00;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23c00' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c00' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #c00;
  box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.25);
}

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #c00;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23c00' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c00' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #c00;
  box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #c00;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #c00;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #c00;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: red;
  background-color: red;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #c00;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #c00;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #c00;
  box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 544px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #222;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #222;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #f00;
  border-color: #f00;
}
.btn-primary:hover {
  color: #fff;
  background-color: rgb(216.75, 0, 0);
  border-color: #cc0000;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: rgb(216.75, 0, 0);
  border-color: #cc0000;
  box-shadow: 0 0 0 0.2rem rgba(255, 38.25, 38.25, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #f00;
  border-color: #f00;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #cc0000;
  border-color: rgb(191.25, 0, 0);
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 38.25, 38.25, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-secondary:hover {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: black;
  border-color: black;
  box-shadow: 0 0 0 0.2rem rgba(38.25, 38.25, 38.25, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38.25, 38.25, 38.25, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
  box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(27.6811594203, 115.5688405797, 47.75);
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
  box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #c00;
  border-color: #c00;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(165.75, 0, 0);
  border-color: #990000;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: rgb(165.75, 0, 0);
  border-color: #990000;
  box-shadow: 0 0 0 0.2rem rgba(211.65, 38.25, 38.25, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #c00;
  border-color: #c00;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #990000;
  border-color: rgb(140.25, 0, 0);
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(211.65, 38.25, 38.25, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
  box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
  border-color: rgb(23.4224137931, 26.125, 28.8275862069);
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}

.btn-outline-primary {
  color: #f00;
  border-color: #f00;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #f00;
  border-color: #f00;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #f00;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #f00;
  border-color: #f00;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.5);
}

.btn-outline-secondary {
  color: #000;
  border-color: #000;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #000;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #c00;
  border-color: #c00;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #c00;
  border-color: #c00;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #c00;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #c00;
  border-color: #c00;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 500;
  color: #222;
  text-decoration: none;
}
.btn-link:hover {
  color: black;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #222;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 544px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 959px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1199px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1439px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 500;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgb(21.6283783784, 24.25, 26.8716216216);
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #f00;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > .form-control:nth-last-child(n+3),
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  print-color-adjust: exact;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #f00;
  background-color: #f00;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: rgb(255, 127.5, 127.5);
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: rgb(255, 178.5, 178.5);
  border-color: rgb(255, 178.5, 178.5);
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #f00;
  background-color: #f00;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 0, 0, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(255, 0, 0, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 0, 0, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 0, 0, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: rgb(255, 127.5, 127.5);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: rgb(255, 127.5, 127.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0 0 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #f00;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: rgb(255, 178.5, 178.5);
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #f00;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: rgb(255, 178.5, 178.5);
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #f00;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: rgb(255, 178.5, 178.5);
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 0 solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: 0;
  background-color: transparent;
  border: 0 solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #f00;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-md,
.navbar .container-lg {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 543.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 544px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 958.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 959px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1198.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1199px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1438.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1439px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-md,
.navbar-expand > .container-lg {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-md,
.navbar-expand > .container-lg {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: 0 0 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 0 0;
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: 0;
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card-deck .card {
  margin-bottom: 10px;
}
@media (min-width: 544px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -10px;
    margin-left: -10px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 10px;
    margin-bottom: 0;
    margin-left: 10px;
  }
}

.card-group > .card {
  margin-bottom: 10px;
}
@media (min-width: 544px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 544px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #f00;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #cc0000;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #000;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: black;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #c00;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #990000;
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: rgb(132.6, 0, 0);
  background-color: #ffcccc;
  border-color: rgb(255, 183.6, 183.6);
}
.alert-primary hr {
  border-top-color: rgb(255, 158.1, 158.1);
}
.alert-primary .alert-link {
  color: rgb(81.6, 0, 0);
}

.alert-secondary {
  color: black;
  background-color: #cccccc;
  border-color: rgb(183.6, 183.6, 183.6);
}
.alert-secondary hr {
  border-top-color: rgb(170.85, 170.85, 170.85);
}
.alert-secondary .alert-link {
  color: black;
}

.alert-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(212, 237.4, 217.8);
  border-color: rgb(194.8, 230.36, 202.92);
}
.alert-success hr {
  border-top-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.alert-success .alert-link {
  color: rgb(10.9449275362, 45.6950724638, 18.88);
}

.alert-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(208.6, 236.4, 240.8);
  border-color: rgb(190.04, 228.96, 235.12);
}
.alert-info hr {
  border-top-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.alert-info .alert-link {
  color: rgb(6.2933333333, 44.3269565217, 50.3466666667);
}

.alert-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 242.6, 205.4);
  border-color: rgb(255, 237.64, 185.56);
}
.alert-warning hr {
  border-top-color: rgb(255, 231.265, 160.06);
}
.alert-warning .alert-link {
  color: rgb(82.9625954198, 62.7912977099, 2.2774045802);
}

.alert-danger {
  color: rgb(106.08, 0, 0);
  background-color: rgb(244.8, 204, 204);
  border-color: rgb(240.72, 183.6, 183.6);
}
.alert-danger hr {
  border-top-color: rgb(236.47, 162.35, 162.35);
}
.alert-danger .alert-link {
  color: rgb(55.08, 0, 0);
}

.alert-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.6, 253.8, 254);
  border-color: rgb(253.04, 253.32, 253.6);
}
.alert-light hr {
  border-top-color: rgb(238.165, 240.57, 242.975);
}
.alert-light .alert-link {
  color: rgb(103.5492351816, 103.98, 104.4107648184);
}

.alert-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(214.4, 215.6, 216.8);
  border-color: rgb(198.16, 199.84, 201.52);
}
.alert-dark hr {
  border-top-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.alert-dark .alert-link {
  color: rgb(4.1779310345, 4.66, 5.1420689655);
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #222;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #f00;
  border-color: #f00;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 544px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 959px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1199px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1439px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: rgb(132.6, 0, 0);
  background-color: rgb(255, 183.6, 183.6);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(132.6, 0, 0);
  background-color: rgb(255, 158.1, 158.1);
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(132.6, 0, 0);
  border-color: rgb(132.6, 0, 0);
}

.list-group-item-secondary {
  color: black;
  background-color: rgb(183.6, 183.6, 183.6);
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: black;
  background-color: rgb(170.85, 170.85, 170.85);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: black;
  border-color: black;
}

.list-group-item-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(194.8, 230.36, 202.92);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(20.8, 86.84, 35.88);
  border-color: rgb(20.8, 86.84, 35.88);
}

.list-group-item-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(190.04, 228.96, 235.12);
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: rgb(11.96, 84.24, 95.68);
  border-color: rgb(11.96, 84.24, 95.68);
}

.list-group-item-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 237.64, 185.56);
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 231.265, 160.06);
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: rgb(132.6, 100.36, 3.64);
  border-color: rgb(132.6, 100.36, 3.64);
}

.list-group-item-danger {
  color: rgb(106.08, 0, 0);
  background-color: rgb(240.72, 183.6, 183.6);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(106.08, 0, 0);
  background-color: rgb(236.47, 162.35, 162.35);
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(106.08, 0, 0);
  border-color: rgb(106.08, 0, 0);
}

.list-group-item-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.04, 253.32, 253.6);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(238.165, 240.57, 242.975);
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(128.96, 129.48, 130);
  border-color: rgb(128.96, 129.48, 130);
}

.list-group-item-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(198.16, 199.84, 201.52);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(27.04, 30.16, 33.28);
  border-color: rgb(27.04, 30.16, 33.28);
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 544px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 1199px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1439px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "FFDINforPuma", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "FFDINforPuma", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid rgb(247.35, 247.35, 247.35);
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: rgb(247.35, 247.35, 247.35);
  border-bottom: 1px solid rgb(234.6, 234.6, 234.6);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #222;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentcolor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #f00 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #cc0000 !important;
}

.bg-secondary {
  background-color: #000 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: black !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(30.1449275362, 125.8550724638, 52) !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: rgb(211, 158.25, 0) !important;
}

.bg-danger {
  background-color: #c00 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #990000 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: rgb(218.25, 223.5, 228.75) !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: rgb(29.1379310345, 32.5, 35.8620689655) !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #f00 !important;
}

.border-secondary {
  border-color: #000 !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #c00 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0 !important;
}

.rounded {
  border-radius: 0 !important;
}

.rounded-top {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-right {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-left {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-lg {
  border-radius: 0 !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

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

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 544px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 959px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1199px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1439px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

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

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

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

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

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 544px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 959px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1199px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1439px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 544px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 959px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 1199px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1439px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 544px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 959px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1199px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1439px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

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

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

@media (min-width: 544px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 959px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1199px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1439px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 500 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #f00 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: rgb(178.5, 0, 0) !important;
}

.text-secondary {
  color: #000 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: black !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}

.text-danger {
  color: #c00 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: rgb(127.5, 0, 0) !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: rgb(17.7068965517, 19.75, 21.7931034483) !important;
}

.text-body {
  color: #222 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

/*md

# Variables

*/
/*md

# Color variables

*/
/*md

# Fonts variables

*/
/*md

# Functions

This section describes core functions used for development in the project.

## Function strip-unit

Removes the unit (e.g. px, em, rem) from a value, returning the number only.

Returns the same number, sans unit.

## Function value-to-rem

**Private function**.
Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value.
By default, the base pixel value used to calculate the rem value is taken from the `$globalFontSize` variable.

Returns a number in rems, calculated based on the given value and the base pixel value.
rem values are passed through as is.

## Function rem-calc

Converts one or more pixel values into matching rem values.
By default, the base pixel value used to calculate the rem value is taken from the `$globalFontSize` variable.
If you need to convert a comma-separated list, wrap the list in parentheses.

Return a list of converted values.

## Function map-safe-get

Safely return a value from a map.

Returns found value. Can has any SASS data type

## Function map-deep-get

**Private function**.

Safely return a value from a map.

Returns found value.

*/
/*md

# Mixins

This section describes core mixins used for development in the project.

## Mixin generate-font-face

Generate `@font-face` rules

## Mixin when-inside

Helps make context selector a little more friendly

### Mixin on-event

Event wrapper. Setting up `:hover`, `:active`, `:focus` pseudo classes for selector

## Mixin clearfix

Quickly and easily clear floated content within a container

## Mixin placeholder

Setting up 'color' property for input placeholder for different browsers

## Mixin text-truncate

Truncate text overflow

## Mixins for Glide carousel

glide-carousel-title, glide-carousel-slides, glide-carousel-bullets-space, glide-carousel-bullets-item

*/
.btn {
  font-family: "FFDINforPuma", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.025rem;
  line-height: 0.9375rem;
  padding: 0.8125rem 1rem;
  text-transform: uppercase;
  white-space: normal;
}
.btn:focus-visible {
  box-shadow: none;
  outline: 2px solid #8c9198;
  outline-offset: 2px;
}
.btn:hover:not([disabled]) {
  cursor: pointer;
}
.btn[disabled], .btn[disabled]:hover, .btn[disabled]:active, .btn[disabled]:focus {
  background-color: #ccc;
  border-color: #ccc;
  opacity: 1;
}

.btn-default {
  background-color: #eee;
}

.btn-secondary:focus-visible {
  box-shadow: none;
  outline: 2px solid #8c9198;
  outline-offset: 2px;
}
.btn-secondary:hover:not([disabled]):not(.product-gallery__video-button) {
  background-color: #fff;
  border-color: #000;
  color: #000;
}

.btn-primary-white {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.btn-primary-white:hover {
  color: #212529;
  background-color: rgb(235.875, 235.875, 235.875);
  border-color: rgb(229.5, 229.5, 229.5);
}
.btn-primary-white:focus, .btn-primary-white.focus {
  color: #212529;
  background-color: rgb(235.875, 235.875, 235.875);
  border-color: rgb(229.5, 229.5, 229.5);
  box-shadow: 0 0 0 0.2rem rgba(221.7, 222.3, 222.9, 0.5);
}
.btn-primary-white.disabled, .btn-primary-white:disabled {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.btn-primary-white:not(:disabled):not(.disabled):active, .btn-primary-white:not(:disabled):not(.disabled).active, .show > .btn-primary-white.dropdown-toggle {
  color: #212529;
  background-color: rgb(229.5, 229.5, 229.5);
  border-color: rgb(223.125, 223.125, 223.125);
}
.btn-primary-white:not(:disabled):not(.disabled):active:focus, .btn-primary-white:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221.7, 222.3, 222.9, 0.5);
}

.btn-outline-white {
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.btn-outline-white:focus, .btn-outline-white.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-outline-white.disabled, .btn-outline-white:disabled {
  color: #fff;
  background-color: transparent;
}
.btn-outline-white:not(:disabled):not(.disabled):active, .btn-outline-white:not(:disabled):not(.disabled).active, .show > .btn-outline-white.dropdown-toggle {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.btn-outline-white:not(:disabled):not(.disabled):active:focus, .btn-outline-white:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover:not([disabled]) {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

.btn-outline-light {
  color: #000;
  border-color: #000;
  border-color: #ccc;
  border-radius: 0.125rem;
  display: inline-table;
  font-size: 1rem;
  font-weight: 500;
  height: 2.625rem;
  padding: 0;
  text-transform: initial;
  width: 100%;
}
.btn-outline-light:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #000;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.btn-outline-light .btn-text-container {
  display: table-cell;
  vertical-align: middle;
  word-break: break-word;
}
.btn-outline-light:hover {
  background-color: #fff;
  border-color: #000;
  color: #000;
}
.btn-outline-light:focus {
  box-shadow: none;
}
.btn-outline-light:not(:disabled):not(.disabled):active {
  background-color: inherit;
  border-color: inherit;
  color: inherit;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus {
  box-shadow: none;
}

.btn-primary-black {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-primary-black:hover {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-primary-black:focus, .btn-primary-black.focus {
  color: #fff;
  background-color: black;
  border-color: black;
  box-shadow: 0 0 0 0.2rem rgba(38.25, 38.25, 38.25, 0.5);
}
.btn-primary-black.disabled, .btn-primary-black:disabled {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-primary-black:not(:disabled):not(.disabled):active, .btn-primary-black:not(:disabled):not(.disabled).active, .show > .btn-primary-black.dropdown-toggle {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-primary-black:not(:disabled):not(.disabled):active:focus, .btn-primary-black:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-black.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38.25, 38.25, 38.25, 0.5);
}
.btn-primary-black:focus {
  color: #fff;
}
.btn-primary-black:hover:not([disabled]) {
  background-color: #333333;
}

.btn-outline-black {
  color: #000;
  border-color: #000;
}
.btn-outline-black:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-outline-black:focus, .btn-outline-black.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.btn-outline-black.disabled, .btn-outline-black:disabled {
  color: #000;
  background-color: transparent;
}
.btn-outline-black:not(:disabled):not(.disabled):active, .btn-outline-black:not(:disabled):not(.disabled).active, .show > .btn-outline-black.dropdown-toggle {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-outline-black:not(:disabled):not(.disabled):active:focus, .btn-outline-black:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-black.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

.btn-link-black {
  background-color: transparent;
  border-radius: 0;
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}
.btn-link-black:hover {
  border-color: transparent;
}
.btn-link-black:hover, .btn-link-black:focus {
  background-color: transparent;
  color: #000;
  text-decoration: none;
}
.btn-link-black:active, .btn-link-black.active, .btn-link-black:disabled {
  background-color: transparent;
}
.btn-link-black:focus, .btn-link-black:active {
  border-color: transparent;
}
.btn-link-black:disabled {
  color: #000;
}
.btn-link-black:disabled:hover, .btn-link-black:disabled:focus {
  text-decoration: none;
}

.btn-link-white {
  background-color: transparent;
  border-radius: 0;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.btn-link-white:hover {
  border-color: transparent;
}
.btn-link-white:hover, .btn-link-white:focus {
  background-color: transparent;
  color: #fff;
  text-decoration: none;
}
.btn-link-white:active, .btn-link-white.active, .btn-link-white:disabled {
  background-color: transparent;
}
.btn-link-white:focus, .btn-link-white:active {
  border-color: transparent;
}
.btn-link-white:disabled {
  color: #fff;
}
.btn-link-white:disabled:hover, .btn-link-white:disabled:focus {
  text-decoration: none;
}

.btn-gold {
  background-color: #ffd700;
  border-color: #ffd700;
}
.btn-gold:hover {
  background-color: #ccac00;
  border-color: #ccac00;
}

.btn-mongoose {
  background-color: #ae946d;
  border-color: #ae946d;
  border-radius: 0.125rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  text-transform: initial;
}
.btn-mongoose:hover {
  background-color: #b7a07d;
  border-color: #b7a07d;
  color: #fff;
}
.btn-mongoose:focus {
  box-shadow: none;
  outline: none;
}

.btn-full-width {
  width: 100%;
}

.btn-transparent {
  background: transparent;
  border: 1px rgba(0, 0, 0, 0.2) solid;
  text-transform: none;
}
.btn-transparent:focus {
  box-shadow: none;
}

.nav-tabs {
  border-bottom: 1px solid #999;
}
.nav-tabs .nav-link {
  color: #464a4c;
  font-size: 1rem;
}
.nav-tabs .nav-link.active {
  border-bottom: 3px solid #f00;
}

.card {
  border-color: #eee;
  margin-bottom: 1rem;
}

dt {
  color: #636c72;
  font-weight: 400;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.col-xs-1h {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

@media (min-width: 544px) {
  .col-sm-1h {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media (min-width: 959px) {
  .col-md-1h {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media (min-width: 1199px) {
  .col-lg-1h {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media (min-width: 1439px) {
  .col-xl-1h {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.col-1h {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.col-xs-2h {
  flex: 0 0 20.83333333%;
  max-width: 20.83333333%;
}

@media (min-width: 544px) {
  .col-sm-2h {
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
}
@media (min-width: 959px) {
  .col-md-2h {
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
}
@media (min-width: 1199px) {
  .col-lg-2h {
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
}
@media (min-width: 1439px) {
  .col-xl-2h {
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
}
.col-2h {
  flex: 0 0 20.83333333%;
  max-width: 20.83333333%;
}

.col-xs-3h {
  flex: 0 0 29.16666667%;
  max-width: 29.16666667%;
}

@media (min-width: 544px) {
  .col-sm-3h {
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
}
@media (min-width: 959px) {
  .col-md-3h {
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
}
@media (min-width: 1199px) {
  .col-lg-3h {
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
}
@media (min-width: 1439px) {
  .col-xl-3h {
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
}
.col-3h {
  flex: 0 0 29.16666667%;
  max-width: 29.16666667%;
}

.col-xs-4h {
  flex: 0 0 37.5%;
  max-width: 37.5%;
}

@media (min-width: 544px) {
  .col-sm-4h {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
}
@media (min-width: 959px) {
  .col-md-4h {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
}
@media (min-width: 1199px) {
  .col-lg-4h {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
}
@media (min-width: 1439px) {
  .col-xl-4h {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
}
.col-4h {
  flex: 0 0 37.5%;
  max-width: 37.5%;
}

.col-xs-5h {
  flex: 0 0 45.83333333%;
  max-width: 45.83333333%;
}

@media (min-width: 544px) {
  .col-sm-5h {
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
}
@media (min-width: 959px) {
  .col-md-5h {
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
}
@media (min-width: 1199px) {
  .col-lg-5h {
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
}
@media (min-width: 1439px) {
  .col-xl-5h {
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
}
.col-5h {
  flex: 0 0 45.83333333%;
  max-width: 45.83333333%;
}

.col-xs-6h {
  flex: 0 0 54.16666667%;
  max-width: 54.16666667%;
}

@media (min-width: 544px) {
  .col-sm-6h {
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
}
@media (min-width: 959px) {
  .col-md-6h {
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
}
@media (min-width: 1199px) {
  .col-lg-6h {
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
}
@media (min-width: 1439px) {
  .col-xl-6h {
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
}
.col-6h {
  flex: 0 0 54.16666667%;
  max-width: 54.16666667%;
}

.col-xs-7h {
  flex: 0 0 62.5%;
  max-width: 62.5%;
}

@media (min-width: 544px) {
  .col-sm-7h {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
}
@media (min-width: 959px) {
  .col-md-7h {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
}
@media (min-width: 1199px) {
  .col-lg-7h {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
}
@media (min-width: 1439px) {
  .col-xl-7h {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
}
.col-7h {
  flex: 0 0 62.5%;
  max-width: 62.5%;
}

.col-xs-8h {
  flex: 0 0 70.83333333%;
  max-width: 70.83333333%;
}

@media (min-width: 544px) {
  .col-sm-8h {
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
}
@media (min-width: 959px) {
  .col-md-8h {
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
}
@media (min-width: 1199px) {
  .col-lg-8h {
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
}
@media (min-width: 1439px) {
  .col-xl-8h {
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
}
.col-8h {
  flex: 0 0 70.83333333%;
  max-width: 70.83333333%;
}

.col-xs-9h {
  flex: 0 0 79.16666667%;
  max-width: 79.16666667%;
}

@media (min-width: 544px) {
  .col-sm-9h {
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
}
@media (min-width: 959px) {
  .col-md-9h {
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
}
@media (min-width: 1199px) {
  .col-lg-9h {
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
}
@media (min-width: 1439px) {
  .col-xl-9h {
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
}
.col-9h {
  flex: 0 0 79.16666667%;
  max-width: 79.16666667%;
}

.col-xs-10h {
  flex: 0 0 87.5%;
  max-width: 87.5%;
}

@media (min-width: 544px) {
  .col-sm-10h {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
}
@media (min-width: 959px) {
  .col-md-10h {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
}
@media (min-width: 1199px) {
  .col-lg-10h {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
}
@media (min-width: 1439px) {
  .col-xl-10h {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
}
.col-10h {
  flex: 0 0 87.5%;
  max-width: 87.5%;
}

.col-xs-11h {
  flex: 0 0 95.83333333%;
  max-width: 95.83333333%;
}

@media (min-width: 544px) {
  .col-sm-11h {
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
}
@media (min-width: 959px) {
  .col-md-11h {
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
}
@media (min-width: 1199px) {
  .col-lg-11h {
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
}
@media (min-width: 1439px) {
  .col-xl-11h {
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
}
.col-11h {
  flex: 0 0 95.83333333%;
  max-width: 95.83333333%;
}

.col-xs-12h {
  flex: 0 0 104.16666667%;
  max-width: 104.16666667%;
}

@media (min-width: 544px) {
  .col-sm-12h {
    flex: 0 0 104.16666667%;
    max-width: 104.16666667%;
  }
}
@media (min-width: 959px) {
  .col-md-12h {
    flex: 0 0 104.16666667%;
    max-width: 104.16666667%;
  }
}
@media (min-width: 1199px) {
  .col-lg-12h {
    flex: 0 0 104.16666667%;
    max-width: 104.16666667%;
  }
}
@media (min-width: 1439px) {
  .col-xl-12h {
    flex: 0 0 104.16666667%;
    max-width: 104.16666667%;
  }
}
.col-12h {
  flex: 0 0 104.16666667%;
  max-width: 104.16666667%;
}

.form-control:focus {
  border-color: #000;
  box-shadow: none;
}

@media (max-width: 543px) {
  h2,
  .h2 {
    font-size: 1.625rem;
  }
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

@media (min-width: 544px) {
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-auto {
    width: auto !important;
  }
  .h-sm-25 {
    height: 25% !important;
  }
  .h-sm-50 {
    height: 50% !important;
  }
  .h-sm-75 {
    height: 75% !important;
  }
  .h-sm-100 {
    height: 100% !important;
  }
  .h-sm-auto {
    height: auto !important;
  }
}
@media (min-width: 959px) {
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
  .h-md-25 {
    height: 25% !important;
  }
  .h-md-50 {
    height: 50% !important;
  }
  .h-md-75 {
    height: 75% !important;
  }
  .h-md-100 {
    height: 100% !important;
  }
  .h-md-auto {
    height: auto !important;
  }
}
@media (min-width: 1199px) {
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
  .h-lg-25 {
    height: 25% !important;
  }
  .h-lg-50 {
    height: 50% !important;
  }
  .h-lg-75 {
    height: 75% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }
  .h-lg-auto {
    height: auto !important;
  }
}
@media (min-width: 1439px) {
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-auto {
    width: auto !important;
  }
  .h-xl-25 {
    height: 25% !important;
  }
  .h-xl-50 {
    height: 50% !important;
  }
  .h-xl-75 {
    height: 75% !important;
  }
  .h-xl-100 {
    height: 100% !important;
  }
  .h-xl-auto {
    height: auto !important;
  }
}
.row.equal-height > [class^=col] {
  display: flex;
}

.btn-outline-primary {
  color: #ccc;
  border-color: #ccc;
  color: #000;
}
.btn-outline-primary:hover {
  color: #212529;
  background-color: #ccc;
  border-color: #ccc;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #ccc;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #212529;
  background-color: #ccc;
  border-color: #ccc;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}
.btn-outline-primary:hover, .btn-outline-primary:active, .btn-outline-primary:focus {
  background-color: #fff;
  border-color: rgb(140.25, 140.25, 140.25);
}

.btn-primary {
  color: #212529;
  background-color: #ae946d;
  border-color: #ae946d;
  border: 0;
  color: #fff;
}
.btn-primary:hover {
  color: #fff;
  background-color: rgb(157.4162995595, 129.3832599119, 87.3337004405);
  border-color: rgb(149.2158590308, 122.6431718062, 82.7841409692);
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: rgb(157.4162995595, 129.3832599119, 87.3337004405);
  border-color: rgb(149.2158590308, 122.6431718062, 82.7841409692);
  box-shadow: 0 0 0 0.2rem rgba(152.85, 131.35, 98.8, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #212529;
  background-color: #ae946d;
  border-color: #ae946d;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(149.2158590308, 122.6431718062, 82.7841409692);
  border-color: rgb(141.0154185022, 115.9030837004, 78.2345814978);
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(152.85, 131.35, 98.8, 0.5);
}
.btn-primary:focus-visible {
  box-shadow: none;
  outline: 2px solid #676d75;
  outline-offset: 2px;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: #b7a07d;
  color: #fff;
}
.btn-primary[disabled] {
  background-color: #ccc;
  border-color: #ccc;
  color: #fff;
}

.btn-primary:focus,
.btn-secondary:focus {
  color: #fff;
}

.btn-rounded {
  border-radius: 2px;
}

.btn-underline {
  color: #000;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-transform: uppercase;
}
.btn-underline:hover {
  text-decoration: underline;
}
.btn-underline:focus {
  box-shadow: none;
}

@media (min-width: 1024px) {
  .btn-kop-primary {
    color: #212529;
    background-color: #ae946d;
    border-color: #ae946d;
    border: 0;
    color: #fff;
  }
  .btn-kop-primary:hover {
    color: #fff;
    background-color: rgb(157.4162995595, 129.3832599119, 87.3337004405);
    border-color: rgb(149.2158590308, 122.6431718062, 82.7841409692);
  }
  .btn-kop-primary:focus, .btn-kop-primary.focus {
    color: #fff;
    background-color: rgb(157.4162995595, 129.3832599119, 87.3337004405);
    border-color: rgb(149.2158590308, 122.6431718062, 82.7841409692);
    box-shadow: 0 0 0 0.2rem rgba(152.85, 131.35, 98.8, 0.5);
  }
  .btn-kop-primary.disabled, .btn-kop-primary:disabled {
    color: #212529;
    background-color: #ae946d;
    border-color: #ae946d;
  }
  .btn-kop-primary:not(:disabled):not(.disabled):active, .btn-kop-primary:not(:disabled):not(.disabled).active, .show > .btn-kop-primary.dropdown-toggle {
    color: #fff;
    background-color: rgb(149.2158590308, 122.6431718062, 82.7841409692);
    border-color: rgb(141.0154185022, 115.9030837004, 78.2345814978);
  }
  .btn-kop-primary:not(:disabled):not(.disabled):active:focus, .btn-kop-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-kop-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(152.85, 131.35, 98.8, 0.5);
  }
  .btn-kop-primary:focus-visible {
    box-shadow: none;
    outline: 2px solid #676d75;
    outline-offset: 2px;
  }
  .btn-kop-primary:hover, .btn-kop-primary:active, .btn-kop-primary:focus {
    background-color: #b7a07d;
    color: #fff;
  }
  .btn-kop-primary[disabled] {
    background-color: #ccc;
    border-color: #ccc;
    color: #fff;
  }
}
@media (max-width: 1199.98px) {
  .btn-kop-mobile-primary {
    color: #212529;
    background-color: #ae946d;
    border-color: #ae946d;
    border: 0;
    color: #fff;
  }
  .btn-kop-mobile-primary:hover {
    color: #fff;
    background-color: rgb(157.4162995595, 129.3832599119, 87.3337004405);
    border-color: rgb(149.2158590308, 122.6431718062, 82.7841409692);
  }
  .btn-kop-mobile-primary:focus, .btn-kop-mobile-primary.focus {
    color: #fff;
    background-color: rgb(157.4162995595, 129.3832599119, 87.3337004405);
    border-color: rgb(149.2158590308, 122.6431718062, 82.7841409692);
    box-shadow: 0 0 0 0.2rem rgba(152.85, 131.35, 98.8, 0.5);
  }
  .btn-kop-mobile-primary.disabled, .btn-kop-mobile-primary:disabled {
    color: #212529;
    background-color: #ae946d;
    border-color: #ae946d;
  }
  .btn-kop-mobile-primary:not(:disabled):not(.disabled):active, .btn-kop-mobile-primary:not(:disabled):not(.disabled).active, .show > .btn-kop-mobile-primary.dropdown-toggle {
    color: #fff;
    background-color: rgb(149.2158590308, 122.6431718062, 82.7841409692);
    border-color: rgb(141.0154185022, 115.9030837004, 78.2345814978);
  }
  .btn-kop-mobile-primary:not(:disabled):not(.disabled):active:focus, .btn-kop-mobile-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-kop-mobile-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(152.85, 131.35, 98.8, 0.5);
  }
  .btn-kop-mobile-primary:focus-visible {
    box-shadow: none;
    outline: 2px solid #676d75;
    outline-offset: 2px;
  }
  .btn-kop-mobile-primary:hover, .btn-kop-mobile-primary:active, .btn-kop-mobile-primary:focus {
    background-color: #b7a07d;
    color: #fff;
  }
  .btn-kop-mobile-primary[disabled] {
    background-color: #ccc;
    border-color: #ccc;
    color: #fff;
  }
}
@media (min-width: 1024px) {
  .btn-kop-secondary {
    background-color: #000;
    border-color: #000;
    color: #fff;
  }
  .btn-kop-secondary:focus-visible {
    box-shadow: none;
    outline: 2px solid #8c9198;
    outline-offset: 2px;
  }
  .btn-kop-secondary:hover:not([disabled]):not(.product-gallery__video-button) {
    background-color: #fff;
    border-color: #000;
    color: #000;
  }
}
@media (max-width: 1199.98px) {
  .btn-kop-mobile-secondary {
    background-color: #000;
    border-color: #000;
    color: #fff;
  }
  .btn-kop-mobile-secondary:focus-visible {
    box-shadow: none;
    outline: 2px solid #8c9198;
    outline-offset: 2px;
  }
  .btn-kop-mobile-secondary:hover:not([disabled]):not(.product-gallery__video-button) {
    background-color: #fff;
    border-color: #000;
    color: #000;
  }
}
@media (min-width: 1024px) {
  .btn-kop-primary-black {
    color: #fff;
    background-color: #000;
    border-color: #000;
  }
  .btn-kop-primary-black:hover {
    color: #fff;
    background-color: black;
    border-color: black;
  }
  .btn-kop-primary-black:focus, .btn-kop-primary-black.focus {
    color: #fff;
    background-color: black;
    border-color: black;
    box-shadow: 0 0 0 0.2rem rgba(38.25, 38.25, 38.25, 0.5);
  }
  .btn-kop-primary-black.disabled, .btn-kop-primary-black:disabled {
    color: #fff;
    background-color: #000;
    border-color: #000;
  }
  .btn-kop-primary-black:not(:disabled):not(.disabled):active, .btn-kop-primary-black:not(:disabled):not(.disabled).active, .show > .btn-kop-primary-black.dropdown-toggle {
    color: #fff;
    background-color: black;
    border-color: black;
  }
  .btn-kop-primary-black:not(:disabled):not(.disabled):active:focus, .btn-kop-primary-black:not(:disabled):not(.disabled).active:focus, .show > .btn-kop-primary-black.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(38.25, 38.25, 38.25, 0.5);
  }
  .btn-kop-primary-black:focus {
    color: #fff;
  }
  .btn-kop-primary-black:hover:not([disabled]) {
    background-color: #333333;
  }
}
@media (max-width: 1199.98px) {
  .btn-kop-mobile-primary-black {
    color: #fff;
    background-color: #000;
    border-color: #000;
  }
  .btn-kop-mobile-primary-black:hover {
    color: #fff;
    background-color: black;
    border-color: black;
  }
  .btn-kop-mobile-primary-black:focus, .btn-kop-mobile-primary-black.focus {
    color: #fff;
    background-color: black;
    border-color: black;
    box-shadow: 0 0 0 0.2rem rgba(38.25, 38.25, 38.25, 0.5);
  }
  .btn-kop-mobile-primary-black.disabled, .btn-kop-mobile-primary-black:disabled {
    color: #fff;
    background-color: #000;
    border-color: #000;
  }
  .btn-kop-mobile-primary-black:not(:disabled):not(.disabled):active, .btn-kop-mobile-primary-black:not(:disabled):not(.disabled).active, .show > .btn-kop-mobile-primary-black.dropdown-toggle {
    color: #fff;
    background-color: black;
    border-color: black;
  }
  .btn-kop-mobile-primary-black:not(:disabled):not(.disabled):active:focus, .btn-kop-mobile-primary-black:not(:disabled):not(.disabled).active:focus, .show > .btn-kop-mobile-primary-black.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(38.25, 38.25, 38.25, 0.5);
  }
  .btn-kop-mobile-primary-black:focus {
    color: #fff;
  }
  .btn-kop-mobile-primary-black:hover:not([disabled]) {
    background-color: #333333;
  }
}
@media (min-width: 1024px) {
  .btn-kop-primary-white {
    color: #212529;
    background-color: #fff;
    border-color: #fff;
  }
  .btn-kop-primary-white:hover {
    color: #212529;
    background-color: rgb(235.875, 235.875, 235.875);
    border-color: rgb(229.5, 229.5, 229.5);
  }
  .btn-kop-primary-white:focus, .btn-kop-primary-white.focus {
    color: #212529;
    background-color: rgb(235.875, 235.875, 235.875);
    border-color: rgb(229.5, 229.5, 229.5);
    box-shadow: 0 0 0 0.2rem rgba(221.7, 222.3, 222.9, 0.5);
  }
  .btn-kop-primary-white.disabled, .btn-kop-primary-white:disabled {
    color: #212529;
    background-color: #fff;
    border-color: #fff;
  }
  .btn-kop-primary-white:not(:disabled):not(.disabled):active, .btn-kop-primary-white:not(:disabled):not(.disabled).active, .show > .btn-kop-primary-white.dropdown-toggle {
    color: #212529;
    background-color: rgb(229.5, 229.5, 229.5);
    border-color: rgb(223.125, 223.125, 223.125);
  }
  .btn-kop-primary-white:not(:disabled):not(.disabled):active:focus, .btn-kop-primary-white:not(:disabled):not(.disabled).active:focus, .show > .btn-kop-primary-white.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(221.7, 222.3, 222.9, 0.5);
  }
}
@media (max-width: 1199.98px) {
  .btn-kop-mobile-primary-white {
    color: #212529;
    background-color: #fff;
    border-color: #fff;
  }
  .btn-kop-mobile-primary-white:hover {
    color: #212529;
    background-color: rgb(235.875, 235.875, 235.875);
    border-color: rgb(229.5, 229.5, 229.5);
  }
  .btn-kop-mobile-primary-white:focus, .btn-kop-mobile-primary-white.focus {
    color: #212529;
    background-color: rgb(235.875, 235.875, 235.875);
    border-color: rgb(229.5, 229.5, 229.5);
    box-shadow: 0 0 0 0.2rem rgba(221.7, 222.3, 222.9, 0.5);
  }
  .btn-kop-mobile-primary-white.disabled, .btn-kop-mobile-primary-white:disabled {
    color: #212529;
    background-color: #fff;
    border-color: #fff;
  }
  .btn-kop-mobile-primary-white:not(:disabled):not(.disabled):active, .btn-kop-mobile-primary-white:not(:disabled):not(.disabled).active, .show > .btn-kop-mobile-primary-white.dropdown-toggle {
    color: #212529;
    background-color: rgb(229.5, 229.5, 229.5);
    border-color: rgb(223.125, 223.125, 223.125);
  }
  .btn-kop-mobile-primary-white:not(:disabled):not(.disabled):active:focus, .btn-kop-mobile-primary-white:not(:disabled):not(.disabled).active:focus, .show > .btn-kop-mobile-primary-white.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(221.7, 222.3, 222.9, 0.5);
  }
}
@media (min-width: 1024px) {
  .btn-kop-outline-primary {
    color: #ccc;
    border-color: #ccc;
    color: #000;
  }
  .btn-kop-outline-primary:hover {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
  }
  .btn-kop-outline-primary:focus, .btn-kop-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
  }
  .btn-kop-outline-primary.disabled, .btn-kop-outline-primary:disabled {
    color: #ccc;
    background-color: transparent;
  }
  .btn-kop-outline-primary:not(:disabled):not(.disabled):active, .btn-kop-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-kop-outline-primary.dropdown-toggle {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
  }
  .btn-kop-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-kop-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-kop-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
  }
  .btn-kop-outline-primary:hover, .btn-kop-outline-primary:active, .btn-kop-outline-primary:focus {
    background-color: #fff;
    border-color: rgb(140.25, 140.25, 140.25);
  }
}
@media (max-width: 1199.98px) {
  .btn-kop-mobile-outline-primary {
    color: #ccc;
    border-color: #ccc;
    color: #000;
  }
  .btn-kop-mobile-outline-primary:hover {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
  }
  .btn-kop-mobile-outline-primary:focus, .btn-kop-mobile-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
  }
  .btn-kop-mobile-outline-primary.disabled, .btn-kop-mobile-outline-primary:disabled {
    color: #ccc;
    background-color: transparent;
  }
  .btn-kop-mobile-outline-primary:not(:disabled):not(.disabled):active, .btn-kop-mobile-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-kop-mobile-outline-primary.dropdown-toggle {
    color: #212529;
    background-color: #ccc;
    border-color: #ccc;
  }
  .btn-kop-mobile-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-kop-mobile-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-kop-mobile-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
  }
  .btn-kop-mobile-outline-primary:hover, .btn-kop-mobile-outline-primary:active, .btn-kop-mobile-outline-primary:focus {
    background-color: #fff;
    border-color: rgb(140.25, 140.25, 140.25);
  }
}
@media (min-width: 1024px) {
  .btn-kop-outline-black {
    color: #000;
    border-color: #000;
    background-color: transparent;
  }
  .btn-kop-outline-black:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
  }
  .btn-kop-outline-black:focus, .btn-kop-outline-black.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
  }
  .btn-kop-outline-black.disabled, .btn-kop-outline-black:disabled {
    color: #000;
    background-color: transparent;
  }
  .btn-kop-outline-black:not(:disabled):not(.disabled):active, .btn-kop-outline-black:not(:disabled):not(.disabled).active, .show > .btn-kop-outline-black.dropdown-toggle {
    color: #fff;
    background-color: #000;
    border-color: #000;
  }
  .btn-kop-outline-black:not(:disabled):not(.disabled):active:focus, .btn-kop-outline-black:not(:disabled):not(.disabled).active:focus, .show > .btn-kop-outline-black.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 1199.98px) {
  .btn-kop-mobile-outline-black {
    color: #000;
    border-color: #000;
  }
  .btn-kop-mobile-outline-black:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
  }
  .btn-kop-mobile-outline-black:focus, .btn-kop-mobile-outline-black.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
  }
  .btn-kop-mobile-outline-black.disabled, .btn-kop-mobile-outline-black:disabled {
    color: #000;
    background-color: transparent;
  }
  .btn-kop-mobile-outline-black:not(:disabled):not(.disabled):active, .btn-kop-mobile-outline-black:not(:disabled):not(.disabled).active, .show > .btn-kop-mobile-outline-black.dropdown-toggle {
    color: #fff;
    background-color: #000;
    border-color: #000;
  }
  .btn-kop-mobile-outline-black:not(:disabled):not(.disabled):active:focus, .btn-kop-mobile-outline-black:not(:disabled):not(.disabled).active:focus, .show > .btn-kop-mobile-outline-black.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 1024px) {
  .btn-kop-outline-white {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
  }
  .btn-kop-outline-white:hover {
    color: #212529;
    background-color: #fff;
    border-color: #fff;
  }
  .btn-kop-outline-white:focus, .btn-kop-outline-white.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  }
  .btn-kop-outline-white.disabled, .btn-kop-outline-white:disabled {
    color: #fff;
    background-color: transparent;
  }
  .btn-kop-outline-white:not(:disabled):not(.disabled):active, .btn-kop-outline-white:not(:disabled):not(.disabled).active, .show > .btn-kop-outline-white.dropdown-toggle {
    color: #212529;
    background-color: #fff;
    border-color: #fff;
  }
  .btn-kop-outline-white:not(:disabled):not(.disabled):active:focus, .btn-kop-outline-white:not(:disabled):not(.disabled).active:focus, .show > .btn-kop-outline-white.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  }
  .btn-kop-outline-white:hover:not([disabled]) {
    background-color: #fff;
    border-color: #fff;
    color: #000;
  }
}
@media (max-width: 1199.98px) {
  .btn-kop-mobile-outline-white {
    color: #fff;
    border-color: #fff;
  }
  .btn-kop-mobile-outline-white:hover {
    color: #212529;
    background-color: #fff;
    border-color: #fff;
  }
  .btn-kop-mobile-outline-white:focus, .btn-kop-mobile-outline-white.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  }
  .btn-kop-mobile-outline-white.disabled, .btn-kop-mobile-outline-white:disabled {
    color: #fff;
    background-color: transparent;
  }
  .btn-kop-mobile-outline-white:not(:disabled):not(.disabled):active, .btn-kop-mobile-outline-white:not(:disabled):not(.disabled).active, .show > .btn-kop-mobile-outline-white.dropdown-toggle {
    color: #212529;
    background-color: #fff;
    border-color: #fff;
  }
  .btn-kop-mobile-outline-white:not(:disabled):not(.disabled):active:focus, .btn-kop-mobile-outline-white:not(:disabled):not(.disabled).active:focus, .show > .btn-kop-mobile-outline-white.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  }
  .btn-kop-mobile-outline-white:hover:not([disabled]) {
    background-color: #fff;
    border-color: #fff;
    color: #000;
  }
}
@media (min-width: 1024px) {
  .btn-kop-link-black {
    background-color: transparent;
    border-radius: 0;
    color: #000;
    font-weight: 600;
    text-decoration: underline;
  }
  .btn-kop-link-black:hover {
    border-color: transparent;
  }
  .btn-kop-link-black:hover, .btn-kop-link-black:focus {
    background-color: transparent;
    color: #000;
    text-decoration: none;
  }
  .btn-kop-link-black:active, .btn-kop-link-black.active, .btn-kop-link-black:disabled {
    background-color: transparent;
  }
  .btn-kop-link-black:focus, .btn-kop-link-black:active {
    border-color: transparent;
  }
  .btn-kop-link-black:disabled {
    color: #000;
  }
  .btn-kop-link-black:disabled:hover, .btn-kop-link-black:disabled:focus {
    text-decoration: none;
  }
}
@media (max-width: 1199.98px) {
  .btn-kop-mobile-link-black {
    background-color: transparent;
    border-radius: 0;
    color: #000;
    font-weight: 600;
    text-decoration: underline;
  }
  .btn-kop-mobile-link-black:hover {
    border-color: transparent;
  }
  .btn-kop-mobile-link-black:hover, .btn-kop-mobile-link-black:focus {
    background-color: transparent;
    color: #000;
    text-decoration: none;
  }
  .btn-kop-mobile-link-black:active, .btn-kop-mobile-link-black.active, .btn-kop-mobile-link-black:disabled {
    background-color: transparent;
  }
  .btn-kop-mobile-link-black:focus, .btn-kop-mobile-link-black:active {
    border-color: transparent;
  }
  .btn-kop-mobile-link-black:disabled {
    color: #000;
  }
  .btn-kop-mobile-link-black:disabled:hover, .btn-kop-mobile-link-black:disabled:focus {
    text-decoration: none;
  }
}
@media (min-width: 1024px) {
  .btn-kop-link-white {
    background-color: transparent;
    border-radius: 0;
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
  }
  .btn-kop-link-white:hover {
    border-color: transparent;
  }
  .btn-kop-link-white:hover, .btn-kop-link-white:focus {
    background-color: transparent;
    color: #fff;
    text-decoration: none;
  }
  .btn-kop-link-white:active, .btn-kop-link-white.active, .btn-kop-link-white:disabled {
    background-color: transparent;
  }
  .btn-kop-link-white:focus, .btn-kop-link-white:active {
    border-color: transparent;
  }
  .btn-kop-link-white:disabled {
    color: #fff;
  }
  .btn-kop-link-white:disabled:hover, .btn-kop-link-white:disabled:focus {
    text-decoration: none;
  }
}
@media (max-width: 1199.98px) {
  .btn-kop-mobile-link-white {
    background-color: transparent;
    border-radius: 0;
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
  }
  .btn-kop-mobile-link-white:hover {
    border-color: transparent;
  }
  .btn-kop-mobile-link-white:hover, .btn-kop-mobile-link-white:focus {
    background-color: transparent;
    color: #fff;
    text-decoration: none;
  }
  .btn-kop-mobile-link-white:active, .btn-kop-mobile-link-white.active, .btn-kop-mobile-link-white:disabled {
    background-color: transparent;
  }
  .btn-kop-mobile-link-white:focus, .btn-kop-mobile-link-white:active {
    border-color: transparent;
  }
  .btn-kop-mobile-link-white:disabled {
    color: #fff;
  }
  .btn-kop-mobile-link-white:disabled:hover, .btn-kop-mobile-link-white:disabled:focus {
    text-decoration: none;
  }
}
.plain-content-asset h1 {
  font-size: 1.625rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .plain-content-asset h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.plain-content-asset h2 {
  font-size: 1.5rem;
  line-height: 1.875rem;
}
.plain-content-asset h3 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.plain-content-asset h4 {
  font-size: 1.125rem;
  line-height: 1.375rem;
}
.plain-content-asset h5 {
  font-size: 1rem;
  line-height: 1.375rem;
}
.plain-content-asset h6 {
  font-size: 0.875rem;
  line-height: 1.125rem;
}

.svg-youtube, .svg-video-play, .svg-video-pause, .svg-unmute, .svg-twitter, .svg-trash-can, .svg-support, .svg-store-locator, .svg-social-youtube, .svg-social-twitter, .svg-social-pinterest, .svg-social-instagram, .svg-social-fb, .svg-slider-handle, .svg-search, .svg-ruler, .svg-return, .svg-red-heart-filled, .svg-red-heart, .svg-question-circle, .svg-qrcode-solid, .svg-puma-logo-with-text, .svg-puma-logo, .svg-puma-arrow-top, .svg-product-tile-color-variants, .svg-present-box, .svg-present, .svg-plus, .svg-pinterest, .svg-pickup-map-location, .svg-pdp-zoom, .svg-pdp-returns, .svg-pdp-free-shipping, .svg-pdp-delivery, .svg-password-revealed-1, .svg-password-revealed-0, .svg-p-trash-can, .svg-newsletter, .svg-navicon, .svg-mute, .svg-minus, .svg-lock, .svg-item-added, .svg-instagram, .svg-info-circle-gray, .svg-info-circle, .svg-info, .svg-icon-twitter, .svg-icon-play, .svg-icon-naver, .svg-icon-facebook, .svg-home, .svg-heart-filled, .svg-heart, .svg-hamburger-menu, .svg-hamburger, .svg-grid-layout-4, .svg-grid-layout-3, .svg-grid-layout-2-mob, .svg-grid-layout-2, .svg-grid-layout-1, .svg-form-valid, .svg-form-error-colored, .svg-form-error, .svg-flip, .svg-fit-finder-pdp-black, .svg-filters, .svg-facebook, .svg-exchange-header, .svg-envelope, .svg-empty-cart, .svg-ellipse, .svg-edit-2, .svg-edit, .svg-download, .svg-delivery, .svg-copy-to-clipboard, .svg-copy-link, .svg-contact, .svg-close-x, .svg-close, .svg-clear-cross, .svg-chevron-up-red, .svg-chevron-up-large-thin, .svg-chevron-up, .svg-chevron-right, .svg-chevron-left, .svg-chevron-large-thin-right, .svg-chevron-large-thin-left, .svg-chevron-down-red, .svg-chevron-down-large-thin, .svg-chevron-down, .svg-check-filled, .svg-check, .svg-chat-popup-icon, .svg-chat-icon-no-styles, .svg-chat-icon, .svg-chat-fill, .svg-cart-mongoose, .svg-cart, .svg-border-clock, .svg-border-check, .svg-arrow-right, .svg-arrow-left, .svg-ambassador-card, .svg-account-quicklinks, .svg-account-profile, .svg-account-preferences, .svg-account-payment, .svg-account-password, .svg-account-orders, .svg-account-mobile, .svg-account-address, .svg-account {
  background: url("sprite.view.svg") no-repeat;
}

.svg-account {
  background-position: 0 0;
}

.svg-account-dims {
  width: 38px;
  height: 24px;
}

.svg-account-address {
  background-position: 1.0807736064% 0;
}

.svg-account-address-dims {
  width: 32px;
  height: 32px;
}

.svg-account-mobile {
  background-position: 1.9954389966% 0;
}

.svg-account-mobile-dims {
  width: 40px;
  height: 40px;
}

.svg-account-orders {
  background-position: 3.1285551763% 0;
}

.svg-account-orders-dims {
  width: 32px;
  height: 32px;
}

.svg-account-password {
  background-position: 4.0340909091% 0;
}

.svg-account-password-dims {
  width: 28px;
  height: 32px;
}

.svg-account-payment {
  background-position: 4.835039818% 0;
}

.svg-account-payment-dims {
  width: 32px;
  height: 32px;
}

.svg-account-preferences {
  background-position: 5.7451649602% 0;
}

.svg-account-preferences-dims {
  width: 32px;
  height: 32px;
}

.svg-account-profile {
  background-position: 6.6552901024% 0;
}

.svg-account-profile-dims {
  width: 32px;
  height: 32px;
}

.svg-account-quicklinks {
  background-position: 7.5482406356% 0;
}

.svg-account-quicklinks-dims {
  width: 24px;
  height: 24px;
}

.svg-ambassador-card {
  background-position: 8.2731107924% 0;
}

.svg-ambassador-card-dims {
  width: 42.668px;
  height: 32px;
}

.svg-arrow-left {
  background-position: 9.4817767654% 0;
}

.svg-arrow-left-dims {
  width: 36px;
  height: 32px;
}

.svg-arrow-right {
  background-position: 10.506833713% 0;
}

.svg-arrow-right-dims {
  width: 36px;
  height: 32px;
}

.svg-border-check {
  background-position: 11.4536199095% 0;
}

.svg-border-check-dims {
  width: 12px;
  height: 12px;
}

.svg-border-clock {
  background-position: 11.7929864253% 0;
}

.svg-border-clock-dims {
  width: 12px;
  height: 12px;
}

.svg-cart {
  background-position: 12.1736662883% 0;
}

.svg-cart-dims {
  width: 24px;
  height: 24px;
}

.svg-cart-mongoose {
  background-position: 12.8547105562% 0;
}

.svg-cart-mongoose-dims {
  width: 24px;
  height: 24px;
}

.svg-chat-fill {
  background-position: 13.5050962627% 0;
}

.svg-chat-fill-dims {
  width: 16px;
  height: 16px;
}

.svg-chat-icon {
  background-position: 14.1126088861% 0;
}

.svg-chat-icon-dims {
  width: 54.67px;
  height: 53.25px;
}

.svg-chat-icon-no-styles {
  background-position: 15.6870378693% 0;
}

.svg-chat-icon-no-styles-dims {
  width: 54.67px;
  height: 53.25px;
}

.svg-chat-popup-icon {
  background-position: 17.1112372304% 0;
}

.svg-chat-popup-icon-dims {
  width: 24px;
  height: 25px;
}

.svg-check {
  background-position: 17.7922814983% 0;
}

.svg-check-dims {
  width: 24px;
  height: 24px;
}

.svg-check-filled {
  background-position: 18.4733257662% 0;
}

.svg-check-filled-dims {
  width: 24px;
  height: 24px;
}

.svg-chevron-down {
  background-position: 19.1924936025% 0;
}

.svg-chevron-down-dims {
  width: 31px;
  height: 32px;
}

.svg-chevron-down-large-thin {
  background-position: 20.073926642% 0;
}

.svg-chevron-down-large-thin-dims {
  width: 31px;
  height: 16px;
}

.svg-chevron-down-red {
  background-position: 20.9553596815% 0;
}

.svg-chevron-down-red-dims {
  width: 31px;
  height: 32px;
}

.svg-chevron-large-thin-left {
  background-position: 21.7378998019% 0;
}

.svg-chevron-large-thin-left-dims {
  width: 15px;
  height: 32px;
}

.svg-chevron-large-thin-right {
  background-position: 22.1624681574% 0;
}

.svg-chevron-large-thin-right-dims {
  width: 15px;
  height: 32px;
}

.svg-chevron-left {
  background-position: 22.6447219069% 0;
}

.svg-chevron-left-dims {
  width: 24px;
  height: 24px;
}

.svg-chevron-right {
  background-position: 23.3257661748% 0;
}

.svg-chevron-right-dims {
  width: 24px;
  height: 24px;
}

.svg-chevron-up {
  background-position: 24.0545919818% 0;
}

.svg-chevron-up-dims {
  width: 31px;
  height: 32px;
}

.svg-chevron-up-large-thin {
  background-position: 24.9360250213% 0;
}

.svg-chevron-up-large-thin-dims {
  width: 31px;
  height: 16px;
}

.svg-chevron-up-red {
  background-position: 25.8174580608% 0;
}

.svg-chevron-up-red-dims {
  width: 31px;
  height: 32px;
}

.svg-clear-cross {
  background-position: 26.5554298643% 0;
}

.svg-clear-cross-dims {
  width: 12px;
  height: 12px;
}

.svg-close {
  background-position: 26.9863791146% 0;
}

.svg-close-dims {
  width: 24px;
  height: 24px;
}

.svg-close-x {
  background-position: 27.7303754266% 0;
}

.svg-close-x-dims {
  width: 32px;
  height: 32px;
}

.svg-contact {
  background-position: 28.6405005688% 0;
}

.svg-contact-dims {
  width: 32px;
  height: 32px;
}

.svg-copy-link {
  background-position: 29.433427762% 0;
}

.svg-copy-link-dims {
  width: 18px;
  height: 18px;
}

.svg-copy-to-clipboard {
  background-position: 29.9433427762% 0;
}

.svg-copy-to-clipboard-dims {
  width: 18px;
  height: 18px;
}

.svg-delivery {
  background-position: 30.505107832% 0;
}

.svg-delivery-dims {
  width: 24px;
  height: 24px;
}

.svg-download {
  background-position: 31.1861520999% 0;
}

.svg-download-dims {
  width: 24px;
  height: 24px;
}

.svg-edit {
  background-position: 31.8671963678% 0;
}

.svg-edit-dims {
  width: 24px;
  height: 24px;
}

.svg-edit-2 {
  background-position: 32.4837156613% 0;
}

.svg-edit-2-dims {
  width: 17px;
  height: 19px;
}

.svg-ellipse {
  background-position: 32.9558323896% 0;
}

.svg-ellipse-dims {
  width: 16px;
  height: 16px;
}

.svg-empty-cart {
  background-position: 33.9275445658% 0;
}

.svg-empty-cart-dims {
  width: 70px;
  height: 70px;
}

.svg-envelope {
  background-position: 35.4107648725% 0;
}

.svg-envelope-dims {
  width: 18px;
  height: 18px;
}

.svg-exchange-header {
  background-position: 36.06370876% 0;
}

.svg-exchange-header-dims {
  width: 32px;
  height: 32px;
}

.svg-facebook {
  background-position: 37.0581527936% 0;
}

.svg-facebook-dims {
  width: 40px;
  height: 40px;
}

.svg-filters {
  background-position: 38.0249716232% 0;
}

.svg-filters-dims {
  width: 24px;
  height: 24px;
}

.svg-fit-finder-pdp-black {
  background-position: 41.3333333333% 0;
}

.svg-fit-finder-pdp-black-dims {
  width: 248px;
  height: 47.8px;
}

.svg-flip {
  background-position: 45.6657223796% 0;
}

.svg-flip-dims {
  width: 18px;
  height: 18px;
}

.svg-form-error {
  background-position: 46.3594994312% 0;
}

.svg-form-error-dims {
  width: 32px;
  height: 32px;
}

.svg-form-error-colored {
  background-position: 47.1088435374% 0;
}

.svg-form-error-colored-dims {
  width: 20px;
  height: 20px;
}

.svg-form-valid {
  background-position: 47.8384527873% 0;
}

.svg-form-valid-dims {
  width: 32px;
  height: 32px;
}

.svg-grid-layout-1 {
  background-position: 48.6379114642% 0;
}

.svg-grid-layout-1-dims {
  width: 24px;
  height: 24px;
}

.svg-grid-layout-2 {
  background-position: 49.3189557321% 0;
}

.svg-grid-layout-2-dims {
  width: 24px;
  height: 24px;
}

.svg-grid-layout-2-mob {
  background-position: 50% 0;
}

.svg-grid-layout-2-mob-dims {
  width: 24px;
  height: 24px;
}

.svg-grid-layout-3 {
  background-position: 50.6810442679% 0;
}

.svg-grid-layout-3-dims {
  width: 24px;
  height: 24px;
}

.svg-grid-layout-4 {
  background-position: 51.3620885358% 0;
}

.svg-grid-layout-4-dims {
  width: 24px;
  height: 24px;
}

.svg-hamburger {
  background-position: 52.1615472127% 0;
}

.svg-hamburger-dims {
  width: 32px;
  height: 32px;
}

.svg-hamburger-menu {
  background-position: 52.9511918275% 0;
}

.svg-hamburger-menu-dims {
  width: 24px;
  height: 24px;
}

.svg-heart {
  background-position: 53.6322360953% 0;
}

.svg-heart-dims {
  width: 24px;
  height: 24px;
}

.svg-heart-filled {
  background-position: 54.3132803632% 0;
}

.svg-heart-filled-dims {
  width: 24px;
  height: 24px;
}

.svg-home {
  background-position: 54.9787234043% 0;
}

.svg-home-dims {
  width: 23px;
  height: 20px;
}

.svg-icon-facebook {
  background-position: 55.552407932% 0;
}

.svg-icon-facebook-dims {
  width: 18px;
  height: 18px;
}

.svg-icon-naver {
  background-position: 55.9687773976% 0;
}

.svg-icon-naver-dims {
  width: 12.1px;
  height: 12px;
}

.svg-icon-play {
  background-position: 57.1756601607% 0;
}

.svg-icon-play-dims {
  width: 64px;
  height: 64px;
}

.svg-icon-twitter {
  background-position: 58.9618583309% 0;
}

.svg-icon-twitter-dims {
  width: 61px;
  height: 18px;
}

.svg-info {
  background-position: 60.0674730519% 0;
}

.svg-info-dims {
  width: 23.63px;
  height: 23.63px;
}

.svg-info-circle {
  background-position: 60.6859410431% 0;
}

.svg-info-circle-dims {
  width: 20px;
  height: 20px;
}

.svg-info-circle-gray {
  background-position: 61.1488398415% 0;
}

.svg-info-circle-gray-dims {
  width: 14px;
  height: 14px;
}

.svg-instagram {
  background-position: 62.0011402509% 0;
}

.svg-instagram-dims {
  width: 40px;
  height: 40px;
}

.svg-item-added {
  background-position: 63.1054131054% 0;
}

.svg-item-added-dims {
  width: 38px;
  height: 38px;
}

.svg-lock {
  background-position: 63.7882219706% 0;
}

.svg-lock-dims {
  width: 16px;
  height: 18px;
}

.svg-minus {
  background-position: 64.7176269253% 0;
}

.svg-minus-dims {
  width: 42px;
  height: 42px;
}

.svg-mute {
  background-position: 65.5788876277% 0;
}

.svg-mute-dims {
  width: 24px;
  height: 25px;
}

.svg-navicon {
  background-position: 66.2599318956% 0;
}

.svg-navicon-dims {
  width: 24px;
  height: 9.73px;
}

.svg-newsletter {
  background-position: 67.0932878271% 0;
}

.svg-newsletter-dims {
  width: 32px;
  height: 32px;
}

.svg-p-trash-can {
  background-position: 67.8490351873% 0;
}

.svg-p-trash-can-dims {
  width: 24px;
  height: 24px;
}

.svg-password-revealed-0 {
  background-position: 68.6079545455% 0;
}

.svg-password-revealed-0-dims {
  width: 28px;
  height: 22px;
}

.svg-password-revealed-1 {
  background-position: 69.4034090909% 0;
}

.svg-password-revealed-1-dims {
  width: 28px;
  height: 20px;
}

.svg-pdp-delivery {
  background-position: 70.3187250996% 0;
}

.svg-pdp-delivery-dims {
  width: 34px;
  height: 32px;
}

.svg-pdp-free-shipping {
  background-position: 71.6123499142% 0;
}

.svg-pdp-free-shipping-dims {
  width: 50px;
  height: 32px;
}

.svg-pdp-returns {
  background-position: 72.6884779516% 0;
}

.svg-pdp-returns-dims {
  width: 33px;
  height: 32px;
}

.svg-pdp-zoom {
  background-position: 73.606370876% 0;
}

.svg-pdp-zoom-dims {
  width: 32px;
  height: 32px;
}

.svg-pickup-map-location {
  background-position: 74.3473325766% 0;
}

.svg-pickup-map-location-dims {
  width: 24px;
  height: 24px;
}

.svg-pinterest {
  background-position: 75.3705815279% 0;
}

.svg-pinterest-dims {
  width: 40px;
  height: 40px;
}

.svg-plus {
  background-position: 76.5544780376% 0;
}

.svg-plus-dims {
  width: 42px;
  height: 42px;
}

.svg-present {
  background-position: 77.4431818182% 0;
}

.svg-present-dims {
  width: 28px;
  height: 31px;
}

.svg-present-box {
  background-position: 78.0612244898% 0;
}

.svg-present-box-dims {
  width: 20px;
  height: 19px;
}

.svg-product-tile-color-variants {
  background-position: 78.5390713477% 0;
}

.svg-product-tile-color-variants-dims {
  width: 16px;
  height: 16px;
}

.svg-puma-arrow-top {
  background-position: 79.1713961407% 0;
}

.svg-puma-arrow-top-dims {
  width: 24px;
  height: 24px;
}

.svg-puma-logo {
  background-position: 80.4% 0;
}

.svg-puma-logo-dims {
  width: 48px;
  height: 37px;
}

.svg-puma-logo-with-text {
  background-position: 82.1469575201% 0;
}

.svg-puma-logo-with-text-dims {
  width: 64px;
  height: 32px;
}

.svg-qrcode-solid {
  background-position: 83.0306469921% 0;
}

.svg-qrcode-solid-dims {
  width: 24px;
  height: 24px;
}

.svg-question-circle {
  background-position: 83.5220838052% 0;
}

.svg-question-circle-dims {
  width: 16px;
  height: 16px;
}

.svg-red-heart {
  background-position: 84.1657207719% 0;
}

.svg-red-heart-dims {
  width: 24px;
  height: 24px;
}

.svg-red-heart-filled {
  background-position: 84.8467650397% 0;
}

.svg-red-heart-filled-dims {
  width: 24px;
  height: 24px;
}

.svg-return {
  background-position: 85.5278093076% 0;
}

.svg-return-dims {
  width: 24px;
  height: 24px;
}

.svg-ruler {
  background-position: 86.0379495894% 0;
}

.svg-ruler-dims {
  width: 17px;
  height: 16px;
}

.svg-search {
  background-position: 86.9132290185% 0;
}

.svg-search-dims {
  width: 33px;
  height: 32px;
}

.svg-slider-handle {
  background-position: 87.827076223% 0;
}

.svg-slider-handle-dims {
  width: 32px;
  height: 29px;
}

.svg-social-fb {
  background-position: 88.7372013652% 0;
}

.svg-social-fb-dims {
  width: 32px;
  height: 32px;
}

.svg-social-instagram {
  background-position: 89.6473265074% 0;
}

.svg-social-instagram-dims {
  width: 32px;
  height: 32px;
}

.svg-social-pinterest {
  background-position: 90.5574516496% 0;
}

.svg-social-pinterest-dims {
  width: 32px;
  height: 32px;
}

.svg-social-twitter {
  background-position: 91.6500427472% 0;
}

.svg-social-twitter-dims {
  width: 39px;
  height: 32px;
}

.svg-social-youtube {
  background-position: 92.9468874929% 0;
}

.svg-social-youtube-dims {
  width: 46px;
  height: 32px;
}

.svg-store-locator {
  background-position: 93.6453900709% 0;
}

.svg-store-locator-dims {
  width: 23px;
  height: 32px;
}

.svg-support {
  background-position: 94.5392491468% 0;
}

.svg-support-dims {
  width: 32px;
  height: 32px;
}

.svg-trash-can {
  background-position: 95.2326901249% 0;
}

.svg-trash-can-dims {
  width: 24px;
  height: 24px;
}

.svg-twitter {
  background-position: 96.3511972634% 0;
}

.svg-twitter-dims {
  width: 40px;
  height: 40px;
}

.svg-unmute {
  background-position: 97.0488081725% 0;
}

.svg-unmute-dims {
  width: 24px;
  height: 25px;
}

.svg-video-pause {
  background-position: 97.95221843% 0;
}

.svg-video-pause-dims {
  width: 32px;
  height: 32px;
}

.svg-video-play {
  background-position: 98.8623435722% 0;
}

.svg-video-play-dims {
  width: 32px;
  height: 32px;
}

.svg-youtube {
  background-position: 100% 0;
}

.svg-youtube-dims {
  width: 40px;
  height: 40px;
}

.modal-background {
  background-color: #000;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: fixed;
  top: 0;
  width: 100%;
}

input[placeholder] {
  box-shadow: none;
  text-overflow: ellipsis;
}

input[type=text]::-ms-clear,
input[type=search]::-ms-clear {
  display: none;
}

.hide-order-discount {
  display: none;
}

.hide-shipping-discount {
  display: none;
}

.order-discount {
  color: #008827;
}

.shipping-discount {
  color: #008827;
}

iframe {
  width: 100%;
}

a svg,
button svg {
  pointer-events: none;
}

input {
  outline: 0;
}

@media (max-width: 543.98px) {
  input[placeholder],
  textarea[placeholder] {
    font-size: 1rem !important;
  }
}

#fluidConfigure.fluidConfigure__container {
  min-height: 31.25rem;
}

a[class=isDisabled] {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
  text-decoration: none;
}

.link-blue {
  color: #0070d2;
}

.symbols-counter {
  font-size: 0.625rem;
  font-style: italic;
  padding: 0 3.125rem 0 0;
  text-align: right;
}

.color-brand-danger {
  color: #c00;
}

.setexpress-paypal,
.pli-error-message {
  display: none;
}

.max-order-qty-msg.hidden {
  display: none;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#DW-SFToolkit {
  max-width: 20.625rem;
}

#pixlee_container iframe {
  max-width: 100%;
}

.country-selector {
  display: none;
}

.custom-control {
  cursor: pointer;
  display: inline-flex;
  margin-right: 1rem;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.custom-control-input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.custom-control-input:checked ~ .custom-control-indicator {
  background-color: #000;
  color: #fff;
}
.custom-control-input:focus ~ .custom-control-indicator {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #000;
}
.custom-control-input:active ~ .custom-control-indicator {
  background-color: rgb(89.25, 89.25, 89.25);
  color: #fff;
}
.custom-control-input:checked ~ .mode-control-indicator {
  color: #fff;
}
.custom-control-input:focus ~ .mode-control-indicator {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #000;
}
.custom-control-input:active ~ .mode-control-indicator {
  background-color: #fff;
  color: #fff;
}
.custom-control-input:disabled ~ .custom-control-indicator {
  background-color: #eceeef;
  cursor: not-allowed;
}
.custom-control-input:disabled ~ .custom-control-description {
  color: #636c72;
  cursor: not-allowed;
}

.custom-control-indicator,
.mode-control-indicator {
  background-color: #dee2e6;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  display: block;
  height: 1rem;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0.25rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 1rem;
}

.custom-checkbox .custom-control-indicator {
  border-radius: 0;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-indicator {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.mode-checkbox .mode-control-indicator {
  border-radius: 0.125rem;
}
.mode-checkbox .custom-control-input:checked ~ .mode-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.mode-radio .mode-control-indicator {
  border-radius: 50%;
}
.mode-radio .custom-control-input:checked ~ .mode-control-indicator {
  border: 1px solid #181818;
}
.mode-radio .custom-control-input:checked ~ .mode-control-indicator::before {
  background-color: #181818;
  border-radius: 50%;
  content: "";
  display: block;
  height: 0.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
}

.modal {
  color: #222;
  z-index: 9999;
  /* Display modal-dialog in the absolute center of the page */
}
.modal .modal-dialog {
  left: 50%;
  margin: auto;
  max-height: 100vh;
  max-width: 61.25rem;
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  width: 100%;
}
@media (max-width: 543.98px) {
  .modal .modal-dialog {
    width: calc(100% - 40px);
  }
}
.modal .close {
  font-size: 1rem;
  margin: 0;
  padding: 0.625rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.modal .close svg {
  height: 0.9375rem;
  width: 0.9375rem;
}
.modal .modal-body {
  flex: 0 0 auto;
}
@media (max-width: 543.98px) {
  .modal.modal-fs-mobile .modal-dialog {
    bottom: 0;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    transform: none !important;
    width: 100%;
  }
  .modal.modal-fs-mobile .modal-body {
    padding: 0.9375rem;
  }
}

.modal-fs .modal-dialog {
  height: 100%;
  max-height: none;
  max-width: none;
  width: 100%;
}
.modal-fs .modal-content {
  border: 0;
  height: 100%;
  width: 100%;
}
.modal-fs .modal-fs__header {
  display: block;
  position: relative;
}
.modal-fs .modal-fs__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5rem;
  padding: 1.25rem;
  text-transform: uppercase;
}
.modal-fs .modal-fs__close {
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
}
.modal-fs .modal-fs__close:hover {
  fill: #333;
}
.modal-fs .modal-fs__close span {
  vertical-align: middle;
}
.modal-fs .modal-fs__close__icon {
  height: 0.9375rem;
  width: 0.9375rem;
}
.modal-fs .modal-fs__body {
  background-color: #ccc;
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
}

.video-modal .close {
  background: #fff;
  opacity: 1 !important;
  padding: 0.625rem 0.625rem 0.5rem;
  position: absolute;
  right: 0;
  top: 0;
}

#modal-size-chart .modal-dialog {
  max-width: 47.5rem;
}
@media (min-width: 959px) {
  #modal-size-chart .modal-dialog {
    height: 33.75rem;
    max-width: 47.5rem;
  }
}
#modal-size-chart .modal-body {
  max-height: 30rem;
  overflow: auto;
  padding: 1.25rem;
}
@media (min-width: 544px) {
  #modal-size-chart .content-asset span {
    font-size: 0.875rem !important;
  }
}
#modal-size-chart .content-asset > table {
  margin: 0 auto;
  width: auto;
}

.overlay-link {
  border-bottom: 2px solid;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border-width: 0.0625rem;
  text-transform: none;
}
.overlay-link:hover, .overlay-link:focus, .overlay-link:active {
  text-decoration: none;
}

.modal-open {
  width: 100%;
}
@media (max-width: 767.98px) {
  .modal-open {
    -webkit-overflow-scrolling: touch;
    position: fixed;
  }
}

/*md

# Breadcrumb

*/
.breadcrumb {
  font-family: "FFDINforPuma", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1rem;
  padding: 0 1.5625rem;
}
.product-breadcrumb .breadcrumb {
  margin: 0;
}
@media (min-width: 544px) {
  .breadcrumb {
    padding: 0 1.875rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb {
    padding: 0 2.5rem;
  }
}

.breadcrumb-item {
  color: #545454;
  display: none;
  padding: 0.9375rem 0;
  /* second to last element */
}
@media (min-width: 544px) {
  .breadcrumb-item {
    padding: 1.25rem 0;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-item {
    display: inline;
  }
}
.breadcrumb-item:nth-last-of-type(2) {
  display: inline;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  display: none;
}

.breadcrumb-item-link {
  color: #000;
  display: inline-block;
  font-weight: 700;
  text-transform: none;
}
.breadcrumb-item-link:hover, .breadcrumb-item-link:active, .breadcrumb-item-link:focus {
  color: #ae946d;
  text-decoration: none;
}

.breadcrumb-item-separator {
  display: inline-block;
  height: 0.625rem;
  margin-bottom: 1px;
  padding: 0 0.625rem 0 0;
  vertical-align: middle;
}
@media (min-width: 544px) {
  .breadcrumb-item-separator {
    padding: 0 1.25rem 0 0;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-item-separator {
    padding: 0 1.25rem 0 0.625rem;
  }
}
.breadcrumb-item-separator.breadcrumb-item-separator--right {
  display: none;
}
@media (min-width: 1200px) {
  .breadcrumb-item-separator.breadcrumb-item-separator--right {
    display: inline-block;
    height: 0.25rem;
    width: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-item-separator.breadcrumb-item-separator--left {
    display: none;
  }
}

@media (min-width: 1200px) {
  .breadcrumb-item-separator-dot {
    background-color: #ae946d;
    border: 1px solid #ae946d;
    border-radius: 50%;
    display: block;
    height: inherit;
    width: inherit;
  }
}

@media (max-width: 1199.98px) {
  .breadcrumb {
    padding-left: 0;
    padding-right: 0;
  }
  .breadcrumb-item-separator--left {
    height: 1.375rem;
    margin-left: 0.625rem;
    padding-right: 0.25rem;
    width: 1.375rem;
  }
}
.breadcrumb-item {
  text-transform: capitalize;
}

[data-action=Search-Show] .breadcrumb-container {
  position: relative;
}
[data-action=Search-Show] .product-breadcrumb {
  min-height: 3.5rem;
  white-space: nowrap;
}
[data-action=Search-Show] .breadcrumb-item {
  align-items: center;
  display: flex;
  padding: 1.25rem 0;
}
[data-action=Search-Show] .breadcrumb-item-separator {
  margin-top: 0.125rem;
}
[data-action=Search-Show] .breadcrumb-item-separator--right {
  display: inline-block;
  height: 0.25rem;
  padding: 0 1.25rem 0 1.25rem;
  width: 0.25rem;
}
[data-action=Search-Show] .breadcrumb-item-separator--left {
  display: none;
}
[data-action=Search-Show] .breadcrumb-item-separator-dot {
  background-color: #ae946d;
  border: 1px solid #ae946d;
  border-radius: 50%;
  display: block;
  height: inherit;
  width: inherit;
}
[data-action=Search-Show] .breadcrumb {
  flex-wrap: nowrap;
  overflow-x: auto;
  position: relative;
  right: 0;
  top: 0;
  transform: translateX(0);
}
[data-action=Search-Show] .breadcrumb li:first-of-type svg {
  display: block;
}
@media (min-width: 1200px) {
  [data-action=Search-Show] .breadcrumb li:first-of-type svg {
    display: none;
  }
}
[data-action=Search-Show] .breadcrumb li:first-of-type svg:hover, [data-action=Search-Show] .breadcrumb li:first-of-type svg:active, [data-action=Search-Show] .breadcrumb li:first-of-type svg:focus {
  fill: #ae946d;
}
[data-action=Search-Show] .breadcrumb::-webkit-scrollbar {
  display: none;
}

/*md

# Notification Modal

*/
.notification-header {
  border-bottom: 0;
  justify-content: center;
  margin: 0.9375rem;
  padding: 0;
  position: relative;
  text-align: center;
}

.notification-logo-icon {
  fill: #000;
  height: 2.8125rem;
  width: 2.8125rem;
}
@media (min-width: 768px) {
  .notification-logo-icon {
    height: 3.125rem;
    width: 3.125rem;
  }
}

.notification-dialog.notification-dialog-narrow {
  max-width: 30rem;
}

.notification-body {
  padding: 0;
}

.notification-message {
  padding: 1.125rem;
  text-align: center;
}
@media (min-width: 768px) {
  .notification-message {
    padding: 2rem;
  }
}
.notification-message:first-child {
  padding-top: 0;
}
.notification-message + .notification-message {
  border-top: 3px solid #ccc;
}

.notification-title {
  font-family: "FFDINforPuma", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.notification-underline {
  text-decoration: underline;
}

.ot-sdk-show-settings {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.ot-sdk-show-settings:hover {
  color: #fff;
  text-decoration: underline;
}

.notification-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: left;
}

.notification-action {
  flex: 0 1 auto;
}

.notification-link {
  border-bottom: 2px solid;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  font-size: 0.75rem;
  margin: 0 0.4375rem 0.625rem;
}
.notification-link:hover, .notification-link:focus, .notification-link:active {
  text-decoration: none;
}

.notification-btn {
  white-space: normal;
}
.notification-message .notification-btn.notification-btn--continue {
  line-height: 1.125rem;
}

.notification-error-message {
  z-index: 1601;
}

/*md

# Header loader

*/
.p-loader {
  animation: fadeIn 300ms forwards;
  display: flex;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.p-loader div {
  animation: loaderFade 1100ms infinite;
  background-color: #ae946d;
  border-radius: 100%;
  height: 0.4375rem;
  margin: 0 0.1875rem;
  opacity: 0;
  width: 0.4375rem;
}
.p-loader div:nth-child(1) {
  animation-delay: 0.165s;
}
.p-loader div:nth-child(2) {
  animation-delay: 0.33s;
}
.p-loader div:nth-child(3) {
  animation-delay: 0.495s;
}

.kop-product-carousel-image {
  transform-style: unset !important;
}

.product-carousel.simple-carousel {
  padding: 0 3.125rem;
}
.kop-videocarousel:not(.full-bleed) .product-carousel.simple-carousel {
  padding: 0 !important;
}
@media (max-width: 767.98px) {
  .kop-videocarousel .product-carousel.simple-carousel {
    padding: 0 !important;
  }
}
@media (min-width: 960px) {
  .product-carousel.simple-carousel {
    padding: 0 5.625rem;
  }
}
@media (min-width: 1200px) {
  .product-carousel.simple-carousel {
    padding: 0 6.25rem;
  }
}
.product-carousel.simple-carousel.glide--without-carousel .glide-carousel-slide {
  margin: 0 1.5625rem;
  max-width: 41%;
}
@media (min-width: 959px) {
  .product-carousel.simple-carousel.glide--without-carousel .glide-carousel-slide {
    margin: 0 0.625rem;
    max-width: 30%;
  }
  .kop-videocarousel .product-carousel.simple-carousel.glide--without-carousel .glide-carousel-slide {
    max-width: 23%;
  }
}
.product-carousel.simple-carousel .zoom-icon {
  height: 1.875rem;
  width: 1.875rem;
}
@media (min-width: 960px) {
  .product-carousel.simple-carousel .zoom-icon {
    height: 3.75rem;
    width: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .product-carousel.simple-carousel .zoom-icon {
    height: 5rem;
    width: 5rem;
  }
}
@media (max-width: 1023.98px) {
  .product-carousel.simple-carousel .kop-product-carousel-name {
    font-size: 0.875rem;
  }
}
@media (max-width: 767.98px) {
  .product-carousel.simple-carousel .kop-product-carousel-name {
    font-size: 0.875rem;
  }
}
.product-carousel.simple-carousel .price {
  font-size: 1rem;
}
@media (min-width: 544px) {
  .product-carousel.simple-carousel .price {
    font-size: 1rem;
  }
}
@media (min-width: 960px) {
  .product-carousel.simple-carousel .price {
    font-size: 1.25rem;
  }
}
.product-carousel.simple-carousel .simple-carousel-arrows {
  -webkit-tap-highlight-color: transparent;
}
.product-carousel.simple-carousel .simple-carousel-arrows .simple-carousel-arrow {
  align-items: center;
  background: #fff;
  cursor: pointer;
  display: flex;
  fill: #999;
  height: 100%;
  outline: none;
  position: absolute;
  top: 0;
  z-index: 1;
}
.product-carousel.simple-carousel .simple-carousel-arrows .simple-carousel-arrow:hover, .product-carousel.simple-carousel .simple-carousel-arrows .simple-carousel-arrow:active, .product-carousel.simple-carousel .simple-carousel-arrows .simple-carousel-arrow:focus {
  fill: #333;
  text-decoration: none;
}
.product-carousel.simple-carousel .simple-carousel-arrows .simple-carousel-arrow--left {
  left: 0;
}
.product-carousel.simple-carousel .simple-carousel-arrows .simple-carousel-arrow--right {
  right: 0;
}

.product-tile__stockBadge {
  border-bottom: 0.25rem solid #ba2026;
  bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  left: 0;
  letter-spacing: -0.01875rem;
  padding-bottom: 0.3125rem;
  position: absolute;
  text-align: center;
  width: 100%;
}

.veil {
  height: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 100;
}
.veil .underlay {
  background-color: #000;
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
}

.spinner {
  animation: spinnerRotate 2s infinite linear;
  height: 80px;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 80px;
}

.dot1,
.dot2 {
  animation: spinnerBounce 2s infinite ease-in-out;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  height: 60%;
  position: absolute;
  top: 0;
  width: 60%;
}

.dot2 {
  animation-delay: -1s;
  bottom: 0;
  top: auto;
}

.price {
  color: #222;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
@media (max-width: 543.98px) {
  .price {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
  .price .strike-through {
    font-size: 0.875rem;
  }
  .price .range,
  .price .sales {
    font-weight: 600;
  }
}
@media (max-width: 1023.98px) {
  .price {
    font-size: 1rem;
  }
  .price .strike-through {
    font-size: 0.75rem;
  }
}
.price .strike-through {
  color: #666;
  display: block;
  font-size: 0.875rem;
}
.bag-overlay-price .price .strike-through .regular-price-label,
.bag-overlay-price .price .strike-through .value:nth-of-type(1) {
  font-weight: 400;
}
@media (min-width: 768px) {
  .bag-overlay-price .price .strike-through .regular-price-label,
  .bag-overlay-price .price .strike-through .value:nth-of-type(1) {
    font-size: 1rem;
  }
}
.wishlist-overlay-price .price .strike-through .regular-price-label,
.wishlist-overlay-price .price .strike-through .value:nth-of-type(1) {
  font-weight: 400;
}
@media (min-width: 768px) {
  .wishlist-overlay-price .price .strike-through .regular-price-label,
  .wishlist-overlay-price .price .strike-through .value:nth-of-type(1) {
    font-size: 1rem;
  }
}
.wishlistItemCards .price .strike-through .value {
  font-size: 1rem;
}
.wishlistItemCards .price .strike-through .value:nth-of-type(1) {
  font-weight: 400;
}
.price .strike-through.gray {
  color: #222;
}
.price .strike-through .value {
  color: #666;
  text-decoration: line-through;
  white-space: nowrap;
}
.price .strike-through .discount-percentage-value {
  color: #ba2026;
}
.price .no-strike-through .value {
  text-decoration: none;
}
.price .range,
.price .sales {
  font-weight: 700;
}
.price .range .value,
.price .sales .value {
  white-space: nowrap;
}
.price .tiered {
  color: #222;
}
.price .tiered table {
  border-top: 1px solid #999;
  margin: 0 auto;
}
.price .tiered table tr:nth-child(odd) {
  background-color: #ccc;
}
.price .tiered td {
  padding: 0.3125rem;
}
.price .tiered td,
.price .tiered .price {
  font-size: 0.875rem;
  font-weight: 700;
}
.price .tiered .quantity {
  font-weight: 400;
  text-align: right;
}
.price .tiered .value {
  text-align: left;
}
.price .tiered .table-header {
  font-size: 1.125rem;
  padding: 0.3125rem;
}
.price .tiered .column-header {
  font-size: 1rem;
  font-weight: 400;
  padding: 0.3125rem;
}
.price .tiered .column-header.quantity {
  text-align: right;
}

.wishlist-overlay-price .price,
.wishlist-overlay-price .sales,
.wishlist-overlay-price .value {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.125rem;
}
@media (min-width: 768px) {
  .wishlist-overlay-price .price,
  .wishlist-overlay-price .sales,
  .wishlist-overlay-price .value {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.bag-overlay-price .price,
.bag-overlay-price .sales,
.bag-overlay-price .value {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.125rem;
}
@media (min-width: 768px) {
  .bag-overlay-price .price,
  .bag-overlay-price .sales,
  .bag-overlay-price .value {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.wishlist-overlay-price .value {
  color: #181818;
}
.bag-overlay-price .value {
  color: #181818;
}

.price .strike-through .value {
  text-decoration: none;
}
.wishlist-overlay-price .price .strike-through .value {
  text-decoration: line-through;
}
.product-detail-info .price .strike-through .value {
  text-decoration: line-through;
}
.product-detail-info-top .price .strike-through .value {
  text-decoration: line-through;
}
.product-quickview .price .strike-through .value {
  text-decoration: line-through;
}
.wishlist-product-item .price .strike-through .value {
  text-decoration: line-through;
}

.price .no-strike-through .value {
  text-decoration: none !important;
}

.bag-overlay-price .price .strike-through,
.bag-overlay-price .price .strike-through .price-discount-combo .value,
.product-quickview .price .strike-through,
.product-quickview .price .strike-through .price-discount-combo .value,
.wishlist-overlay-price .price .strike-through,
.wishlist-overlay-price .price .strike-through .price-discount-combo .value,
.wishlistItemCards .price .strike-through,
.wishlistItemCards .price .strike-through .price-discount-combo .value {
  font-size: 0.75rem;
  font-weight: 400;
}

.bag-overlay-price .best {
  display: none;
}

.discount-percentage-value {
  display: none;
}
.product-tile .discount-percentage-value {
  display: inline-block;
}
.wishlist-overlay-price .discount-percentage-value {
  display: inline-block;
}
.product-detail-info .discount-percentage-value {
  display: inline-block;
}
.product-detail-info-top .discount-percentage-value {
  display: inline-block;
}
.product-quickview .discount-percentage-value {
  display: inline-block;
}
.wishlist-product-item .discount-percentage-value {
  display: inline-block;
}

.product-quickview .product-tile-price,
.wishlist-overlay-price .product-tile-price,
.wishlist-product-item .product-tile-price,
.product-detail-info .product-tile-price,
.product-detail-info-top .product-tile-price {
  align-self: flex-start;
  display: flex;
  flex-flow: wrap;
  gap: 0.25rem 0.5rem;
  margin: 0;
  text-align: unset;
  white-space: normal;
}
.product-quickview .product-tile-price.price,
.wishlist-overlay-price .product-tile-price.price,
.wishlist-product-item .product-tile-price.price,
.product-detail-info .product-tile-price.price,
.product-detail-info-top .product-tile-price.price {
  margin-bottom: 1rem;
}
.product-quickview .product-tile-price.price .sales,
.wishlist-overlay-price .product-tile-price.price .sales,
.wishlist-product-item .product-tile-price.price .sales,
.product-detail-info .product-tile-price.price .sales,
.product-detail-info-top .product-tile-price.price .sales {
  flex-basis: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0.375rem;
}
.product-quickview .product-tile-price.price .list,
.product-quickview .product-tile-price.price .best,
.wishlist-overlay-price .product-tile-price.price .list,
.wishlist-overlay-price .product-tile-price.price .best,
.wishlist-product-item .product-tile-price.price .list,
.wishlist-product-item .product-tile-price.price .best,
.product-detail-info .product-tile-price.price .list,
.product-detail-info .product-tile-price.price .best,
.product-detail-info-top .product-tile-price.price .list,
.product-detail-info-top .product-tile-price.price .best {
  color: #676d75;
  flex-basis: 100%;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.product-quickview .product-tile-price.price .list .discount-percentage-value,
.product-quickview .product-tile-price.price .best .discount-percentage-value,
.wishlist-overlay-price .product-tile-price.price .list .discount-percentage-value,
.wishlist-overlay-price .product-tile-price.price .best .discount-percentage-value,
.wishlist-product-item .product-tile-price.price .list .discount-percentage-value,
.wishlist-product-item .product-tile-price.price .best .discount-percentage-value,
.product-detail-info .product-tile-price.price .list .discount-percentage-value,
.product-detail-info .product-tile-price.price .best .discount-percentage-value,
.product-detail-info-top .product-tile-price.price .list .discount-percentage-value,
.product-detail-info-top .product-tile-price.price .best .discount-percentage-value {
  color: unset;
  font-size: 0.625rem;
}
.product-quickview .product-tile-price.price .list .discount-percentage-value,
.wishlist-overlay-price .product-tile-price.price .list .discount-percentage-value,
.wishlist-product-item .product-tile-price.price .list .discount-percentage-value,
.product-detail-info .product-tile-price.price .list .discount-percentage-value,
.product-detail-info-top .product-tile-price.price .list .discount-percentage-value {
  border: 1px solid #f8c6c6;
  border-radius: 6.25rem;
  color: #ba2026;
  font-weight: 700;
  line-height: 0.75rem;
  margin-left: 0.25rem;
  padding: 0.25rem 0.375rem;
}
.product-quickview .product-tile-price .price-discount-combo,
.wishlist-overlay-price .product-tile-price .price-discount-combo,
.wishlist-product-item .product-tile-price .price-discount-combo,
.product-detail-info .product-tile-price .price-discount-combo,
.product-detail-info-top .product-tile-price .price-discount-combo {
  align-items: center;
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
}

.product-detail-info .product-tile-price.price .sales,
.product-detail-info-top .product-tile-price.price .sales {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.product-quickview .product-tile-price.price .sales {
  font-size: 1.375rem;
}

.product-quickview .product-tile-price.price .sales,
.wishlist-overlay-price .product-tile-price.price .sales,
.wishlist-product-item .product-tile-price.price .sales,
.wishlistItemCards .product-tile-price.price .sales {
  margin-bottom: 0;
}
.product-quickview .product-tile-price.price .list,
.product-quickview .product-tile-price.price .best,
.wishlist-overlay-price .product-tile-price.price .list,
.wishlist-overlay-price .product-tile-price.price .best,
.wishlist-product-item .product-tile-price.price .list,
.wishlist-product-item .product-tile-price.price .best,
.wishlistItemCards .product-tile-price.price .list,
.wishlistItemCards .product-tile-price.price .best {
  font-size: 0.75rem;
  margin-bottom: 0;
}
.product-quickview .product-tile-price.price .list .price-label,
.product-quickview .product-tile-price.price .best .price-label,
.wishlist-overlay-price .product-tile-price.price .list .price-label,
.wishlist-overlay-price .product-tile-price.price .best .price-label,
.wishlist-product-item .product-tile-price.price .list .price-label,
.wishlist-product-item .product-tile-price.price .best .price-label,
.wishlistItemCards .product-tile-price.price .list .price-label,
.wishlistItemCards .product-tile-price.price .best .price-label {
  font-size: 0.75rem;
  line-height: 1.5rem;
}
.product-quickview .product-tile-price.price .list,
.wishlist-overlay-price .product-tile-price.price .list,
.wishlist-product-item .product-tile-price.price .list,
.wishlistItemCards .product-tile-price.price .list {
  line-height: 1.5rem;
}
.product-quickview .product-tile-price.price .list .discount-percentage-value,
.wishlist-overlay-price .product-tile-price.price .list .discount-percentage-value,
.wishlist-product-item .product-tile-price.price .list .discount-percentage-value,
.wishlistItemCards .product-tile-price.price .list .discount-percentage-value {
  margin-left: 0.25rem;
}

.form-control-feedback--helper,
.form-control-feedback {
  display: block;
  margin-top: 0.25rem;
  width: 100%;
}
.has-danger .form-control-feedback--helper,
.has-danger .form-control-feedback {
  color: #ba2026;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
}
.form-group .form-control-feedback {
  display: none;
}
.form-group .form-control-feedback--helper,
.form-group .form-control-feedback {
  font-size: 0.75rem;
}
.form-group.has-danger, .form-group.has-warning {
  flex-wrap: wrap;
}
.form-group.has-danger .form-control-feedback, .form-group.has-warning .form-control-feedback {
  display: block;
}

.floatl {
  flex: 1 calc(100% - 2rem);
  position: relative;
}
.floatl--shrinked .floatl {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.floatl.floatl--focused.floatl--multiline .floatl__label {
  background: linear-gradient(rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 80%, rgba(0, 0, 0, 0) 100%);
}
.floatl.floatl--focused .floatl__label {
  color: #191919;
}
.floatl.floatl--active .floatl__label {
  opacity: 1;
  top: 0.375rem;
  visibility: visible;
}
.floatl.floatl--active .floatl__input {
  color: #000;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 1.0625rem 0.5rem 0.0625rem;
  text-transform: none;
}

.floatl__label {
  color: #191919;
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  left: 0.375rem;
  line-height: 0.625rem;
  opacity: 0;
  padding: 0.3125rem 0.1875rem 0.1875rem;
  position: absolute;
  text-transform: uppercase;
  top: 0.5625rem;
  transition: all 200ms ease-in-out;
  visibility: hidden;
}
.required .floatl__label::after {
  content: "*";
}
.floatl__floating_label .floatl__label {
  background-color: #fff;
  color: #676d75;
  font-size: 0.75rem;
  opacity: 1;
  text-transform: none;
  top: -0.5625rem;
  visibility: visible;
}

.floatl__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #ccc;
  border-radius: 0.125rem;
  box-shadow: none;
  font-size: 0.625rem;
  height: 3.125rem;
  margin-left: 0;
  margin-top: 0;
  outline: none;
  padding: 0.6875rem;
  transition: all 200ms ease-in-out;
  width: 100%;
}
.floatl__input::-webkit-input-placeholder {
  color: #6c757d;
  font-family: "FFDINforPuma", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  opacity: 1;
}
.floatl__input::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
  font-family: "FFDINforPuma", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  opacity: 1;
}
.floatl__input:-moz-placeholder {
  color: #6c757d;
  opacity: 1;
  font-family: "FFDINforPuma", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  opacity: 1;
}
.floatl__input:-ms-input-placeholder {
  color: #6c757d;
  font-family: "FFDINforPuma", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  opacity: 1;
}
.floatl__floating_label .floatl__input::-moz-placeholder {
  color: transparent;
}
.floatl__floating_label .floatl__input::placeholder {
  color: transparent;
}
.floatl__input::-moz-placeholder {
  text-transform: uppercase;
}
.floatl__input::placeholder {
  text-transform: uppercase;
}
.floatl__input.floatl__input--textarea {
  height: auto;
  width: auto;
}
.floatl__input:focus {
  border-color: #333;
}

.floatl__smalltext {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
}

.form-control-icons {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 1.875rem;
  padding: 0.3125rem;
  width: 1.875rem;
}

.form-control-icon {
  height: 0.9375rem;
  width: 0.9375rem;
}
.form-control-icon.form-control-icon--valid {
  display: none;
  fill: #008827;
}
.has-success .form-control-icon.form-control-icon--valid {
  display: inline-flex;
}
.form-control-icon.form-control-icon--error {
  display: none;
  fill: #ba2026;
}
.has-danger .form-control-icon.form-control-icon--error {
  display: inline-flex;
}

.select-mask {
  cursor: pointer;
  flex: 1;
  position: relative;
}

.select-mask__overlay {
  position: relative;
}

.select-mask__disabled::before {
  content: "";
  cursor: default;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}

.has-success .form-control,
.has-success .select-mask__overlay__display {
  border-color: #000;
}
.has-danger .form-control,
.has-danger .select-mask__overlay__display {
  border-color: #ba2026;
}

.select-mask__overlay__display {
  border: 1px solid #ccc;
  border-radius: 0.125rem;
  display: flex;
  flex-direction: row;
  height: 3.125rem;
  touch-action: manipulation;
}
.selected .select-mask__overlay__display {
  border: 1px solid #191919;
  outline: 2px solid #8c9198;
  outline-offset: 0;
  border-color: #000;
}
.has-warning .select-mask__overlay__display {
  border-color: #f0ad4e;
}

.select-mask__overlay__text {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 0.6875rem;
}
@media (max-width: 1198.98px) {
  .stored-payments .select-mask__overlay__text {
    padding: 0 0.6875rem;
  }
}

.select-mask__overlay__label {
  align-self: center;
  color: #191919;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 0.625rem;
  text-transform: uppercase;
  width: 100%;
}
.select-populated .select-mask__overlay__label {
  align-self: flex-start;
}

.select-mask__overlay__value {
  color: #000;
  display: none;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  width: 100%;
}
.select-populated .select-mask__overlay__value {
  display: inline-flex;
  white-space: normal;
}

.select-mask__overlay__dropdown {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-right: 0.6875rem;
}
.select-mask__disabled .select-mask__overlay__dropdown {
  display: none;
}

.select-mask__overlay__icon {
  height: 0.875rem;
  width: 0.875rem;
}

.select-mask__container {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.select-mask__container .p-custom-select,
.select-mask__container .wishlist-quantity-select,
.select-mask__container .sea-country-selector,
.select-mask__container .bonus-quantity-select {
  border: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.select-mask__container .p-data-hidden {
  display: none;
}

.select-container {
  flex: 1;
  position: relative;
}
.select-container .select-icon {
  height: 100%;
  pointer-events: none;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 0;
  width: 0.5rem;
  z-index: 1;
}
.select-container .select-field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #ccc;
  border-radius: 0.125rem;
  border-width: 1px;
  color: #181818;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  width: 100%;
}
.select-container .select-field:hover, .select-container .select-field:active, .select-container .select-field:focus {
  outline: none;
}
.select-container .select-field::-ms-expand {
  display: none;
}
.select-container .select-field:focus-visible {
  border: 1px solid #191919;
  outline: 2px solid #8c9198;
  outline-offset: 0;
}
.select-container .p-data-hidden {
  display: none;
}

.mode-checkbox,
.mode-radio {
  margin-bottom: 0;
  margin-right: 0;
}
.mode-checkbox .mode-control-indicator,
.mode-radio .mode-control-indicator {
  background-color: #fff;
  border: 1px solid #ccc;
  height: 1.25rem;
  width: 1.25rem;
}
.mode-checkbox .mode-control-description,
.mode-radio .mode-control-description {
  font-size: 1rem;
  margin-left: 0.625rem;
  padding-top: 0.0625rem;
  text-align: left;
}

.mode-radio .mode-control-indicator {
  top: 0.0625rem;
}

.custom-checkbox .custom-control-indicator {
  background-color: #fff;
  border: 1px solid #ccc;
  height: 1.5rem;
  width: 1.5rem;
}
.has-danger .custom-checkbox .custom-control-indicator {
  border-color: #ba2026;
}
.custom-checkbox .custom-control-description {
  margin-left: 1.5rem;
  margin-top: 0.25rem;
}
.custom-checkbox .custom-control-input.hf-invalid + .custom-control-indicator {
  border-color: #ba2026;
}
.custom-checkbox .custom-control-input:focus-visible ~ .custom-control-indicator {
  border: 1px solid #191919;
  outline: 2px solid #8c9198;
  outline-offset: 0;
}

.input-placeholder-fix::-webkit-input-placeholder {
  color: #6c757d;
  text-transform: none !important;
}
.input-placeholder-fix::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
  text-transform: none !important;
}
.input-placeholder-fix:-moz-placeholder {
  color: #6c757d;
  opacity: 1;
  text-transform: none !important;
}
.input-placeholder-fix:-ms-input-placeholder {
  color: #6c757d;
  text-transform: none !important;
}

.label-placeholder-fix {
  text-transform: none;
}

.form-caption {
  font-size: 0.75rem;
}

.form-control-label--new {
  color: #181818;
  margin-bottom: 0.3125rem;
}

.form-control--new {
  border-color: #ccc;
  border-radius: 0.125rem;
  height: 2.625rem;
}

.btn--new {
  font-size: 1rem;
  padding: 0 1rem;
}

.form-control-icon--new {
  height: 1.25rem;
  width: 1.25rem;
}

.form-control-inline-group {
  display: flex;
}

.form-control-inline-field {
  flex: 1;
}

.form-control-inline-btn {
  margin-left: -0.0625rem;
  min-width: 7.5rem;
}

.form-control-inline-errors {
  padding-left: 1.5625rem;
  position: relative;
}
.form-control-inline-errors .form-control-icons {
  left: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: auto;
}

.deleteaccount-form-nst .floatl__input::-moz-placeholder {
  text-transform: capitalize;
}

.deleteaccount-form-nst .floatl__input::placeholder {
  text-transform: capitalize;
}

.info-icon {
  background: inherit;
  border: 0;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  position: relative;
}
.info-icon .icon {
  background-color: #0070d2;
  border-radius: 1.25rem;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  width: 1.5625rem;
}

.info-icon .tooltip {
  animation: fadeIn 0.5s linear forwards;
  background-color: #333;
  border-radius: 0;
  bottom: 100%;
  color: #fff;
  font-size: 0.875rem;
  left: 50%;
  margin-left: 0.25rem;
  max-width: 15rem;
  min-width: 20rem;
  padding: 0.3125rem;
  position: absolute;
  transform: translate(-50%, -0.625rem);
}
.info-icon .tooltip::before, .info-icon .tooltip::after {
  content: " ";
  position: absolute;
}
.info-icon .tooltip::before {
  bottom: -1.25rem;
  display: block;
  height: 1.25rem;
  left: 0;
  width: 100%;
}
.info-icon .tooltip::after {
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
  border-top: 0.625rem solid #333;
  bottom: -0.625rem;
  height: 0;
  left: 50%;
  margin-left: -0.8125rem;
  width: 0;
}
.tooltip.tooltip-white {
  opacity: 1 !important;
}
.tooltip.tooltip-white .tooltip-inner {
  background-color: #fff !important;
  border-radius: 0.1875rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) !important;
  color: #181818 !important;
  font-size: 0.75rem !important;
  line-height: 1.25rem !important;
}
.tooltip.tooltip-white .arrow::before {
  border-bottom-color: #fff !important;
  border-top-color: #fff !important;
}
.tooltip.light-theme {
  opacity: 1;
}
.tooltip.light-theme .tooltip-body {
  background-color: #fff;
  border: 1px solid #999;
  color: #c00;
  padding: 0.5rem;
}
.tooltip.light-theme .tooltip-body .form-control-icon {
  fill: #c00;
  height: 1.25rem;
  width: 1.25rem;
}
.tooltip.light-theme .tooltip-body .tooltip-inner {
  background-color: transparent;
  color: inherit;
  max-width: none;
  text-align: left;
}

.info-tooltip {
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #999;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  height: 1.25rem;
  line-height: 1rem;
  text-align: center;
  width: 1.25rem;
}
.info-tooltip .info-tooltip--text {
  margin-left: 10px;
}
.info-tooltip::before {
  content: "i";
  text-transform: lowercase;
}

.toast-container {
  position: relative;
}
.toast-container .toast {
  border-bottom-left-radius: 0;
  border-left: 3px solid #4d7d04;
  border-top-left-radius: 0;
  flex-basis: auto;
  max-width: unset;
}
.toast-container .toast.toast-position-top-right {
  bottom: 0;
  position: absolute;
  right: 0;
}
.toast-container .toast .toast-msg {
  color: #262a30;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
  padding: 0.5rem 1rem;
}
.toast-container .toast .icon {
  height: 1.5rem;
  width: 1.5rem;
}
.toast-container .toast .icon-lg {
  height: 2rem;
  width: 2rem;
}

.seo-description {
  color: #181818;
  overflow: hidden;
  position: relative;
}
.seo-description.seo-description--expand .seo-description-reduced-content {
  height: 0;
  visibility: hidden;
}
.seo-description.seo-description--expand .seo-description-reduced-content::before {
  display: none;
}
.seo-description.seo-description--expand .seo-description-reduced-content .seo-description-btn-readmore {
  display: none;
}
.seo-description.seo-description--expand .seo-description-full-content {
  height: auto;
  visibility: visible;
}
.seo-description.seo-description--expand .seo-description-full-content .seo-description-btn-readless {
  display: inline-block;
}
.seo-description .seo-description-reduced-content {
  height: auto;
  visibility: visible;
}
.seo-description .seo-description-reduced-content::before {
  content: attr(data-text);
  display: block;
}
.seo-description .seo-description-full-content {
  height: 0;
  visibility: hidden;
}
.seo-description a {
  font-weight: 700;
  text-decoration: underline;
}
.seo-description .seo-description-faq-question {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin: 0;
}

.kop-html-padding {
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 543.98px) {
  .kop-html-padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.seo-description-btn-readmore {
  display: inline-block;
}

.seo-description-btn-readless {
  display: none;
}

.seo-description-btn-readless,
.seo-description-btn-readmore {
  text-decoration: underline;
}

.more-less-btn-icon {
  display: inline-block;
  height: 0.625rem;
  margin: 0 0.3125rem;
  position: relative;
  width: 0.625rem;
}
.more-less-btn-icon::before, .more-less-btn-icon::after {
  background-color: currentColor;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.more-less-btn-icon::before {
  height: 0.125rem;
  width: 100%;
}
.more-less-btn-icon::after {
  height: 100%;
  width: 0.125rem;
}

.seo-description-btn {
  background-color: transparent;
  border: 0;
  display: inline-block;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.seo-description-btn:focus {
  outline: none;
}
.seo-description-btn:focus-visible {
  box-shadow: none;
  outline: 2px solid #8c9198;
  outline-offset: 2px;
}

.home-seo-container h1,
.cat-seo-container h1 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.625rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .home-seo-container h1,
  .cat-seo-container h1 {
    font-size: 2rem;
    line-height: 2.375rem;
    margin-bottom: 0.5rem;
  }
}

.second-footer-nav__wrap {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .second-footer-nav__wrap {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
.second-footer-nav__list {
  -moz-columns: 2;
       columns: 2;
  margin-bottom: 1.875rem;
  padding: 0;
}
@media (min-width: 768px) {
  .second-footer-nav__list {
    -moz-columns: auto;
         columns: auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6.875rem;
  }
}
.second-footer-nav__item {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
  list-style: none;
  margin-bottom: 0.625rem;
  padding-right: 1.125rem;
}
@media (min-width: 768px) {
  .second-footer-nav__item {
    width: 16.66%;
  }
}
.second-footer-nav__link {
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration: underline;
}
.second-footer-nav h3 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.not-available-container {
  margin-bottom: 2.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .not-available-container {
    margin-bottom: 3.75rem;
  }
}
.not-available-container img {
  height: auto;
  width: 100%;
}

.not-available-text {
  background-color: #fff;
  margin: 0 1.25rem;
  padding: 1.25rem 1.5625rem;
  position: relative;
  text-align: center;
  top: -1.875rem;
}
@media (min-width: 768px) {
  .not-available-text {
    left: 50%;
    margin: 0;
    max-width: 28.125rem;
    padding: 1.25rem 1.875rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.not-available-title {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.not-available-description {
  font-size: 1rem;
}

.recommendations-content-placeholder .products-carousel-container {
  margin-top: 1.25rem;
}

.products-carousel-title {
  color: #181818;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.875rem 0;
  padding: 0 1.5rem;
  text-transform: uppercase;
}
.recommendations-content-placeholder .products-carousel-title {
  font-size: 1.25rem;
  margin-top: 0;
}
.product-grid-container .products-carousel-title {
  padding: 0;
}
.cart-suggestions-wrapper .products-carousel-title {
  line-height: 2rem;
}
@media (max-width: 767.98px) {
  .cart-suggestions-wrapper .products-carousel-title {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
}
@media (min-width: 768px) {
  .products-carousel-title {
    font-size: 1.5rem;
    padding: 0 2.25rem;
  }
}
@media (min-width: 1200px) {
  .products-carousel-title {
    margin: 1.25rem 0;
    padding: 0;
  }
}

.products-carousel-glide {
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  width: 100%;
}
html[dir=rtl] .products-carousel-glide {
  direction: ltr;
}
.products-carousel-glide:hover .products-carousel-glide-arrow, .products-carousel-glide:active .products-carousel-glide-arrow, .products-carousel-glide:focus .products-carousel-glide-arrow {
  opacity: 1;
}
.products-carousel-glide:hover .products-carousel-glide-arrow.inactive, .products-carousel-glide:active .products-carousel-glide-arrow.inactive, .products-carousel-glide:focus .products-carousel-glide-arrow.inactive {
  opacity: 0;
}
.products-carousel-glide:hover .products-carousel-glide-arrow:focus-visible, .products-carousel-glide:active .products-carousel-glide-arrow:focus-visible, .products-carousel-glide:focus .products-carousel-glide-arrow:focus-visible {
  opacity: 1;
}
.products-carousel-glide:focus-within .products-carousel-glide-arrow {
  opacity: 1;
}
.products-carousel-glide:focus-within .products-carousel-glide-arrow.inactive {
  opacity: 0;
}
.products-carousel-glide:focus-within .products-carousel-glide-arrow:focus-visible {
  opacity: 1;
}
.products-carousel-glide.products-carousel-glide--rtl {
  direction: rtl;
}
.products-carousel-glide.products-carousel-glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

.glide-carousel-slides {
  align-items: stretch;
  backface-visibility: hidden;
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  transform-style: preserve-3d;
  white-space: nowrap;
  width: 100%;
  will-change: transform;
}
@media (max-width: 767.98px) {
  .glide-carousel-slides {
    overflow: visible;
  }
}

.products-carousel-glide-slide {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  white-space: normal;
  width: 100%;
  margin-left: 0.625rem;
  width: 100%;
}
html[dir=rtl] .products-carousel-glide-slide {
  direction: rtl;
}
@media (min-width: 768px) {
  .addToBagOverlay .glide--destroyed .products-carousel-glide-slide {
    width: calc(100%/3 - 0.625rem);
  }
  .addToBagOverlay .glide--destroyed .products-carousel-glide-slide:nth-child(n+4) {
    width: 0;
  }
}
@media (max-width: 767.98px) {
  .addToBagOverlay .glide--destroyed .products-carousel-glide-slide {
    width: calc(100%/2 - 0.625rem);
  }
  .addToBagOverlay .glide--destroyed .products-carousel-glide-slide:nth-child(n+3) {
    width: 0;
  }
}
.products-carousel-glide-slide:focus-visible {
  outline: none;
  position: relative;
}
.products-carousel-glide-slide:focus-visible::after {
  content: "";
  height: 100%;
  left: 0;
  outline: 2px solid #8c9198;
  outline-offset: -2px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99999;
}
@media (min-width: 1200px) {
  .products-carousel-glide-slide:nth-child(-n+4) {
    width: calc(100%/4 - 0.625rem);
  }
  .products-carousel-glide-slide:nth-child(n+5) {
    width: 0;
  }
}
@media (max-width: 1199.98px) {
  .products-carousel-glide-slide:nth-child(-n+2) {
    width: calc(100%/2 - 0.625rem);
  }
  .products-carousel-glide-slide:nth-child(n+3) {
    width: 0;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 1024px) {
  @supports (-webkit-touch-callout: none) {
    .products-carousel-glide-slide:focus-visible {
      outline: none;
    }
    .products-carousel-glide-slide:focus-visible::after {
      content: unset;
    }
  }
}
.products-carousel-glide-slide:first-child {
  margin-left: 0;
}

.products-carousel-glide-arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.products-carousel-glide-arrow {
  display: none;
  outline: none;
}
@media (min-width: 1200px) {
  .products-carousel-glide-arrow {
    background-color: #fff;
    border: 0;
    border-radius: 50%;
    box-sizing: content-box;
    cursor: pointer;
    display: block;
    height: 1rem;
    opacity: 0;
    padding: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 150ms ease;
    width: 1rem;
    z-index: 1;
  }
}
.products-carousel-glide-arrow.inactive {
  display: none;
}
.products-carousel-glide-arrow.products-carousel-glide-arrow--left {
  left: 0;
}
.products-carousel-glide-arrow.products-carousel-glide-arrow--right {
  right: 0;
}
.products-carousel-glide-arrow.products-carousel-glide-arrow--disabled {
  opacity: 0.3;
}
.products-carousel-glide-arrow .zoom-icon {
  box-sizing: content-box;
  display: block;
  fill: #181818;
}
@media (min-width: 1200px) {
  .products-carousel-glide-arrow .zoom-icon {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 50%;
    transition: background-color 0.5s;
  }
  .products-carousel-glide-arrow .zoom-icon:hover, .products-carousel-glide-arrow .zoom-icon:active, .products-carousel-glide-arrow .zoom-icon:focus {
    background-color: white;
    cursor: pointer;
  }
}
.products-carousel-glide-arrow .zoom-icon svg {
  display: block;
  height: 0.875rem;
  width: 1rem;
}
.products-carousel-glide-arrow .zoom-icon.active {
  fill: #000;
}
.recommendations-content-placeholder .products-carousel-glide-arrow {
  padding: 0.5rem;
  top: 30%;
}
@media (min-width: 1200px) {
  .products-carousel-glide-arrow {
    display: block;
  }
  .products-carousel-glide-arrow.inactive {
    display: block;
    opacity: 0;
  }
}

.glide-carousel-bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: stretch;
  display: inline-flex;
  list-style: none;
  padding: 0 1.5rem;
  width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .glide-carousel-bullets {
    padding: 0 2.25rem;
  }
}
@media (min-width: 1200px) {
  .glide-carousel-bullets {
    display: none;
  }
}
.recommendations-content-placeholder .glide-carousel-bullets {
  padding: 0;
}

.glide-carousel-bullets .simple-carousel-bullet {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  height: 5rem;
  margin: 0;
  padding: 0;
  width: 100%;
}
.glide-carousel-bullets .simple-carousel-bullet:focus-visible {
  box-shadow: none;
  outline: 2px solid #8c9198;
  outline-offset: 2px;
}
.glide-carousel-bullets .simple-carousel-bullet:hover, .glide-carousel-bullets .simple-carousel-bullet:active, .glide-carousel-bullets .simple-carousel-bullet:focus {
  outline: none;
}
.glide-carousel-bullets .simple-carousel-bullet::before {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  display: block;
  height: 0.125rem;
  position: relative;
  transition: all 300ms ease-in-out;
}
.glide-carousel-bullets .simple-carousel-bullet.glide__bullet--active::before {
  background-color: #000;
}
.recommendations-content-placeholder .glide-carousel-bullets .simple-carousel-bullet {
  height: 2rem;
}
@media (min-width: 768px) {
  .glide-carousel-bullets .simple-carousel-bullet.simple-carousel-bullet--tablet--hidden {
    display: none;
  }
}

/*md

# Variables

*/
/*md

# Color variables

*/
/*md

# Fonts variables

*/
/*md

# Functions

This section describes core functions used for development in the project.

## Function strip-unit

Removes the unit (e.g. px, em, rem) from a value, returning the number only.

Returns the same number, sans unit.

## Function value-to-rem

**Private function**.
Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value.
By default, the base pixel value used to calculate the rem value is taken from the `$globalFontSize` variable.

Returns a number in rems, calculated based on the given value and the base pixel value.
rem values are passed through as is.

## Function rem-calc

Converts one or more pixel values into matching rem values.
By default, the base pixel value used to calculate the rem value is taken from the `$globalFontSize` variable.
If you need to convert a comma-separated list, wrap the list in parentheses.

Return a list of converted values.

## Function map-safe-get

Safely return a value from a map.

Returns found value. Can has any SASS data type

## Function map-deep-get

**Private function**.

Safely return a value from a map.

Returns found value.

*/
/*md

# Mixins

This section describes core mixins used for development in the project.

## Mixin generate-font-face

Generate `@font-face` rules

## Mixin when-inside

Helps make context selector a little more friendly

### Mixin on-event

Event wrapper. Setting up `:hover`, `:active`, `:focus` pseudo classes for selector

## Mixin clearfix

Quickly and easily clear floated content within a container

## Mixin placeholder

Setting up 'color' property for input placeholder for different browsers

## Mixin text-truncate

Truncate text overflow

## Mixins for Glide carousel

glide-carousel-title, glide-carousel-slides, glide-carousel-bullets-space, glide-carousel-bullets-item

*/
@media (min-width: 1200px) {
  .image-horizontal-carousel .glide-carousel {
    overflow: hidden;
  }
}
.glide-carousel:hover .glide-carousel-arrow, .glide-carousel:active .glide-carousel-arrow, .glide-carousel:focus .glide-carousel-arrow {
  opacity: 1;
  outline: none;
}
.glide-carousel.glide--carousel, .glide-carousel.glide-carousel--kop {
  position: relative;
}
.glide-carousel.glide-carousel--rtl {
  direction: rtl;
}
.glide-carousel.glide-carousel--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
.glide-carousel.glide-carousel--indent {
  overflow: visible;
}

.glide--animated .glide__slide--active .glide-carousel-focused {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.glide--animated .glide-carousel-focused {
  opacity: 0;
}
@media (min-width: 1200px) {
  .glide--animated .glide__slide--visible .glide-carousel-focused {
    opacity: 1;
    transition: opacity 1.5s ease;
  }
}

.glide-carousel-track {
  overflow: hidden;
  transition: transform 400ms;
}
@media (max-width: 767.98px) {
  .products-carousel-glide .glide-carousel-track {
    overflow: initial;
  }
}
@media (min-width: 1200px) {
  .image-horizontal-carousel .glide-carousel-track {
    overflow: initial;
  }
}
@media (max-width: 1199.98px) {
  .product-tile-image-container .glide-carousel-track {
    padding-bottom: 0.8125rem;
  }
}

.glide--without-carousel .glide-carousel-slides {
  justify-content: center;
}

.glide-carousel-arrow {
  display: none;
  outline: none;
}
.glide-carousel-arrows--tile .glide-carousel-arrow.glide-carousel-arrow--left {
  left: 0.625rem;
}
.glide-carousel-arrows--tile .glide-carousel-arrow.glide-carousel-arrow--right {
  right: 0.625rem;
}
.glide-carousel-arrows--chevron .glide-carousel-arrow {
  height: 1.625rem;
  padding: 0.1875rem;
  width: 1.625rem;
}
@media (min-width: 1200px) {
  .glide-carousel-arrows--chevron .glide-carousel-arrow.inactive {
    display: block;
  }
  .glide-carousel-arrows--chevron .glide-carousel-arrow.inactive svg {
    fill: #ccc;
  }
}
.glide-carousel-arrows--chevron .glide-carousel-arrow svg {
  fill: #181818;
}
.glide-carousel-arrows--chevron .glide-carousel-arrow.glide-carousel-arrow--left {
  left: 0.5rem;
}
.glide-carousel-arrows--chevron .glide-carousel-arrow.glide-carousel-arrow--right {
  right: 0.5rem;
}
.glide-carousel--indent .glide-carousel-arrow {
  background-color: transparent;
}
@media (min-width: 1200px) {
  .glide-carousel--indent .glide-carousel-arrow {
    opacity: 1;
  }
}
.glide-carousel--indent .glide-carousel-arrow:hover, .glide-carousel--indent .glide-carousel-arrow:active, .glide-carousel--indent .glide-carousel-arrow:focus {
  outline: none;
}
.glide-carousel--indent .glide-carousel-arrow:focus-visible {
  box-shadow: none;
  outline: 2px solid #8c9198;
  outline-offset: 2px;
}
.glide-carousel--indent .glide-carousel-arrow.glide-carousel-arrow--left {
  left: -1.875rem;
}
.glide-carousel--indent .glide-carousel-arrow.glide-carousel-arrow--right {
  right: -1.875rem;
}
@media (min-width: 1200px) {
  .glide-carousel-arrow {
    background-color: #fff;
    border: 0;
    border-radius: 50%;
    box-sizing: content-box;
    cursor: pointer;
    display: block;
    height: 1rem;
    opacity: 0;
    padding: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 150ms ease;
    width: 1rem;
    z-index: 1;
  }
}
.glide-carousel-arrow.inactive {
  display: none;
}
.glide-carousel-arrow.glide-carousel-arrow--left {
  left: 1.875rem;
}
.glide-carousel-arrow.glide-carousel-arrow--right {
  right: 1.875rem;
}
.glide-carousel-arrow.glide-carousel-arrow--disabled {
  opacity: 0.3;
}
.glide-carousel-arrow .zoom-icon {
  box-sizing: content-box;
  display: block;
  fill: #181818;
}
@media (min-width: 1200px) {
  .glide-carousel-arrow .zoom-icon {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 50%;
    transition: background-color 0.5s;
  }
  .glide-carousel-arrow .zoom-icon:hover, .glide-carousel-arrow .zoom-icon:active, .glide-carousel-arrow .zoom-icon:focus {
    background-color: white;
    cursor: pointer;
  }
}
.glide-carousel-arrow .zoom-icon svg {
  display: block;
  height: 0.875rem;
  width: 1rem;
}
.glide-carousel-arrow .zoom-icon.active {
  fill: #000;
}
.glide-carousel-arrow:focus-visible {
  opacity: 1;
}

.glide-carousel-slide {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  white-space: normal;
  width: 100%;
}
.glide-carousel-slide:focus-visible {
  outline-offset: -2px;
}

.glide-carousel-arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.glide-carousel-bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: stretch;
  display: inline-flex;
  list-style: none;
  padding: 0 1.5rem;
  width: 100%;
  z-index: 1;
}
.products-carousel-glide .glide-carousel-bullets {
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .glide-carousel-bullets {
    padding: 0 2.25rem;
  }
}
@media (min-width: 1200px) {
  .glide-carousel-bullets {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .product-tile-image-container .glide-carousel-bullets {
    bottom: 0;
    left: 0;
    position: absolute;
  }
}
.glide-carousel-bullets.glide-carousel-bullets--without-indent {
  padding: 0;
}

.glide-carousel-bullet {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  height: 5rem;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 2rem;
}
.glide-carousel-bullet:hover, .glide-carousel-bullet:active, .glide-carousel-bullet:focus {
  outline: none;
}
.glide-carousel-bullet::before {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  display: block;
  height: 0.125rem;
  position: relative;
  transition: all 300ms ease-in-out;
}
.glide-carousel-bullet.glide__bullet--active::before {
  background-color: #000;
}
.product-tile .glide-carousel-bullet {
  height: 0.1875rem;
}
@media (min-width: 768px) {
  .glide-carousel-bullet.glide-carousel-bullet--tablet--hidden {
    display: none;
  }
}

.glide-carousel-container.glide-carousel-indent {
  position: relative;
}
@media (min-width: 1200px) {
  .glide-carousel-container.glide-carousel-indent {
    padding: 0 1.875rem;
  }
}
@media (min-width: 768px) {
  .glide-carousel-container .glide--destroyed.glide-carousel--kop .glide-carousel-slide {
    margin-left: 0.5rem;
    width: calc(50% - 0.25rem);
  }
  .glide-carousel-container .glide--destroyed.glide-carousel--kop .glide-carousel-slide:first-of-type {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .glide-carousel-container .glide--destroyed.glide-carousel--kop .glide-carousel-slide {
    width: calc(33.3% - 0.25rem);
  }
}
@media (min-width: 1200px) {
  .glide-carousel-container .glide--destroyed.glide-carousel--indent {
    margin: 0 -1.875rem;
  }
}
.glide-carousel-container .glide--destroyed.glide-carousel--indent .glide-carousel-slide {
  margin-right: 0.625rem;
  width: initial;
}
@media (min-width: 544px) and (max-width: 1199.98px) {
  .glide-carousel-container .glide--destroyed.glide-carousel--indent .glide-carousel-slide {
    margin-right: 0.3125rem;
  }
}
.glide-carousel-container .glide--destroyed.glide-carousel--indent .glide-carousel-slide:last-child {
  margin-right: 0;
}
@media (min-width: 768px) {
  .glide-carousel-container .glide--destroyed.glide-carousel--kop .glide-carousel-slides {
    justify-content: center;
  }
}
.glide-carousel-container .glide--destroyed .simple-carousel-bullets,
.glide-carousel-container .glide--destroyed .simple-carousel-arrows,
.glide-carousel-container .glide--destroyed .glide-carousel-bullets,
.glide-carousel-container .glide--destroyed .glide-carousel-arrows {
  display: none;
}

.recommendations-content {
  margin: 0 auto 3.75rem;
  max-width: 103.75rem;
}
.recommendations-content-placeholder .recommendations-content {
  margin: 0;
  padding: 1.875rem 0 0;
}
.cart-suggestions-wrapper .recommendations-content {
  padding: 0;
}
@media (min-width: 768px) {
  .recommendations-content {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .recommendations-content {
    padding: 0 2.5rem;
  }
}

.recommendations-content-placeholder h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding: 0;
}

.product-recommendation-link {
  color: #181818;
  display: block;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.recommendations-content-placeholder .product-recommendation-link {
  background: #fff;
}
.product-recommendation-link:focus-visible {
  outline: none;
  position: relative;
}
.product-recommendation-link:focus-visible::after {
  content: "";
  height: 100%;
  left: 0;
  outline: 2px solid #8c9198;
  outline-offset: -2px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99999;
}
@media (min-width: 768px) {
  .product-recommendation-link {
    line-height: 1.375rem;
  }
}
.product-recommendation-link:hover, .product-recommendation-link:active, .product-recommendation-link:focus {
  text-decoration: none;
}

.product-recommendation-image {
  width: 100%;
}
.product-recommendation-image-translucent .product-recommendation-image {
  opacity: 0.5;
}

.product-recommendation-image-section {
  border: 1px solid #fafafa;
  position: relative;
}
.recommendations-content-placeholder .product-recommendation-image-section {
  margin-bottom: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .product-recommendation-image-section {
    margin-bottom: 0.625rem;
  }
}

.product-recommendation-info {
  margin-bottom: 0;
  padding: 0.625rem 0.3125rem;
}
.recommendations-content-placeholder .product-recommendation-info {
  display: block;
}
@media (min-width: 768px) {
  .recommendations-content-placeholder .product-recommendation-info {
    padding: 0.625rem 0.3125rem;
  }
}
@media (min-width: 768px) {
  .product-recommendation-info {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem;
  }
}

.product-recommendation-name {
  display: inline-block;
  line-height: 1.375rem;
  max-height: 4.125rem;
  overflow: hidden;
  margin: 0;
}
.recommendations-content-placeholder .product-recommendation-name {
  display: inline-block;
  line-height: 1.125rem;
  max-height: 2.25rem;
  overflow: hidden;
  height: 2.25rem;
  margin-bottom: 0.625rem;
  padding-right: 0;
}
@supports (-webkit-line-clamp: 2) {
  .recommendations-content-placeholder .product-recommendation-name {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    max-height: none !important;
  }
}
@media (min-width: 768px) {
  .recommendations-content-placeholder .product-recommendation-name {
    font-size: 0.875rem;
    height: 3rem;
    line-height: 1.5rem;
  }
}
@supports (-webkit-line-clamp: 3) {
  .product-recommendation-name {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    max-height: none !important;
  }
}
@media (min-width: 768px) {
  .product-recommendation-name {
    padding-right: 0.625rem;
  }
}

.product-recommendation-price {
  display: inline-flex;
  flex-direction: column;
  margin: 0;
}
.recommendations-content-placeholder .product-recommendation-price {
  position: static;
  text-align: left;
}
@media (min-width: 768px) {
  .recommendations-content-placeholder .product-recommendation-price {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .product-recommendation-price {
    left: 0.3125rem;
    position: absolute;
    top: 100%;
  }
}
@media (min-width: 768px) {
  .product-recommendation-price {
    text-align: right;
    white-space: nowrap;
  }
}

.product-recommendation-price-standard,
.product-recommendation-price-new,
.product-recommendation-price-original,
.product-recommendation-price-old {
  word-break: break-word;
}

.product-recommendation-info {
  padding-bottom: 4rem;
  position: relative;
}

.product-recommendation-price {
  top: 55%;
}

.simple-carousel-bullets.glide-carousel-bullets {
  margin-top: -1.25rem;
}

#lastVisitedItemViewModal {
  height: auto;
  width: auto;
  z-index: 1;
}
#lastVisitedItemViewModal .modal-dialog {
  bottom: 0;
  height: auto;
  left: initial;
  margin: initial;
  max-width: 35.625rem;
  position: fixed;
  right: 0;
  top: auto;
  transform: initial !important;
  z-index: 1;
}
@media (max-width: 767.98px) {
  #lastVisitedItemViewModal .modal-dialog {
    max-width: 20rem;
  }
}
#lastVisitedItemViewModal .modal-body {
  display: none;
}
#lastVisitedItemViewModal .modal-body > .product-recommendation-link {
  padding: 0.5rem 1rem;
}
#lastVisitedItemViewModal .product-container {
  border: 1px solid #eceeef;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  #lastVisitedItemViewModal .product-container {
    flex-direction: column;
  }
}
#lastVisitedItemViewModal .product-recommendation-image-section {
  max-width: 11.25rem;
}
@media (max-width: 767.98px) {
  #lastVisitedItemViewModal .product-recommendation-image-section {
    max-width: 100%;
  }
}
#lastVisitedItemViewModal .product-recommendation-info {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#lastVisitedItemViewModal .product-recommendation-info .product-recommendation-name {
  font-size: 1.125rem;
  padding: 0;
}
@media (min-width: 768px) {
  #lastVisitedItemViewModal .product-recommendation-info .product-recommendation-name {
    font-size: 1.125rem;
  }
}
#lastVisitedItemViewModal .product-recommendation-info > .product-recommendation-price {
  margin-top: 0.625rem;
  position: initial;
}
#lastVisitedItemViewModal .product-recommendation-info > .btn {
  margin-top: 0.625rem;
}
@media (max-width: 767.98px) {
  #lastVisitedItemViewModal .product-recommendation-info > .btn {
    width: 100%;
  }
}
#lastVisitedItemViewModal .close {
  right: 1rem;
  top: 1rem;
}
#lastVisitedItemViewModal + .modal-backdrop {
  display: none;
}

.last-visited-item-header {
  margin-bottom: 1.25rem;
}
@media (max-width: 767.98px) {
  .last-visited-item-header {
    font-size: 1.25rem;
    margin-right: 1rem;
  }
}

.last-visited-item-modal-open.modal-open {
  overflow-y: auto;
}
@media (max-width: 767.98px) {
  .last-visited-item-modal-open.modal-open {
    position: initial;
  }
}

.last-visited-cart-icon {
  display: inline-block;
  height: 1.875rem;
  margin-right: 0.5rem;
  width: 1.875rem;
}
.last-visited-cart-icon .icon {
  fill: #fff;
  height: 100%;
  width: 100%;
}

.cta-view-more-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cta-view-more-container .products-carousel-title {
  padding-right: 0;
  padding-top: 0.25rem;
  width: 50%;
  word-break: break-word;
}
@media (min-width: 544px) {
  .cta-view-more-container .products-carousel-title {
    width: 70%;
  }
}
.cta-view-more-container .products-carousel-title p {
  margin-bottom: 0;
}
.cta-view-more-container .product-carousel-view-more {
  align-items: center;
  color: #191919;
  cursor: pointer;
  display: flex;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 1.875rem;
  margin-left: auto;
  margin-top: 1.875rem;
  padding-right: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .cta-view-more-container .product-carousel-view-more {
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding-right: 2.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .cta-view-more-container .product-carousel-view-more {
    padding-right: 0;
  }
}
.cta-view-more-container .product-carousel-view-more-btn {
  margin-right: 0.625rem;
  text-decoration: underline;
  -webkit-text-decoration-color: #191919;
          text-decoration-color: #191919;
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.25rem;
}
.cta-view-more-container .product-carousel-view-more-arrow-icon {
  height: 1.5rem;
  width: 1.125rem;
}

.primary-button {
  background-color: #fff;
  border: 0.0625rem solid #191919;
  color: #191919;
}
.primary-button:focus {
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(38, 38, 38, 0.5);
  color: #191919;
}
.primary-button:hover:not([disabled]):not(.product-gallery__video-button) {
  background-color: #fff;
  border: 0.0625rem solid #191919;
  color: #191919;
}
.primary-button:focus-visible {
  border: 1px solid #191919;
  outline: 2px solid #8c9198;
  outline-offset: 0;
}
.primary-button:not(:disabled):not(.disabled):active {
  background-color: #fff;
  color: #191919;
}

.secondary-button {
  background-color: #191919;
  border: 0.0625rem solid #191919;
  color: #fff;
}
.secondary-button:focus {
  background-color: #191919;
  box-shadow: 0 0 0 3px rgba(38, 38, 38, 0.5);
  color: #fff;
}
.secondary-button:hover:not([disabled]):not(.product-gallery__video-button) {
  background-color: #191919;
  border: 0.0625rem solid #191919;
  color: #fff;
}
.secondary-button:focus-visible {
  box-shadow: none;
  outline: 2px solid #8c9198;
  outline-offset: 2px;
}

:focus-visible {
  box-shadow: none;
  outline: 2px solid #8c9198;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  box-shadow: none;
  outline: 2px solid #8c9198;
  outline-offset: 2px;
}

input:focus-visible,
select:focus-visible,
.form-control:focus-visible {
  border: 1px solid #191919;
  outline: 2px solid #8c9198;
  outline-offset: 0;
}

/*md

# Header logo

*/
@media (min-width: 1440px) {
  .p-header-logo {
    margin-right: 1.875rem;
  }
}
@media (min-width: 1650px) {
  .p-header-logo {
    margin-right: 3.875rem;
  }
}

.p-header-logo-link {
  display: block;
  margin-left: -0.625rem;
  position: relative;
}

.p-header-logo-inner {
  display: block;
  font-size: 2.4375rem;
  margin-bottom: -0.1875rem;
  padding: 0.625rem;
}
@media (min-width: 1440px) {
  .p-header-logo-inner {
    font-size: 2.7625rem;
    margin-bottom: -0.2125rem;
  }
}
@media (min-width: 1650px) {
  .p-header-logo-inner {
    font-size: 2.4rem;
    margin-bottom: -0.35rem;
  }
}

.p-header-logo-icon {
  display: block;
  fill: #fff;
  height: 1em;
  transition: 0.15s fill;
  width: 1em;
}

.web-desktop-device,
.search-box-for-web-desktop,
.p-header-actions-item.wishlist-header-icon.hide-whislist-icon-on-web-mobile {
  display: none;
}

@media (min-width: 1200px) {
  .p-header-logo.web-mobile,
  .search-box-for-web-mobile,
  .show-login-icon-web-mobile-nav {
    display: none;
  }
  .web-desktop-device,
  .search-box-for-web-desktop,
  .p-header-actions-item.wishlist-header-icon.hide-whislist-icon-on-web-mobile {
    display: block;
  }
}
@media (max-width: 1199px) {
  .p-header-logo.web-desktop-device,
  .p-header-actions-item.wishlist-header-icon.hide-whislist-icon-on-web-mobile,
  .search-box-for-web-desktop {
    display: none;
  }
  .p-header-logo.web-mobile,
  .search-box-for-web-mobile,
  .show-login-icon-web-mobile-nav {
    display: block;
  }
  .p-header-actions-icon--nav.hamburger-action {
    padding-left: 0;
  }
  .p-header-logo.web-mobile .p-header-logo-link {
    margin-left: 0;
  }
  .p-header-actions-icon.p-header-actions-icon--search {
    margin-left: 0.3125rem;
  }
  .p-header-actions-item--active .p-header-actions-icon.p-header-actions-icon--search {
    height: 1.125rem !important;
    margin-right: 0 !important;
    width: 1.125rem !important;
  }
  .p-header.p-header--active .p-header-actions-icon .p-header-actions-icon-close {
    height: 1.5rem;
    margin-left: 0;
    width: 1.5rem;
  }
}
.p-header-actions-icon.p-header-actions-icon-account-mobile {
  height: 2.375rem;
  padding: 0;
  width: 2.375rem;
}

/*md

# Header Promo bar

*/
.p-promo-bar {
  background-color: #fff;
  color: #191919;
  display: block;
  font-size: 0.75rem;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 1.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-promo-bar {
    font-size: 0.875rem;
    padding: 0 1.875rem;
  }
}
@media (min-width: 1200px) {
  .p-promo-bar {
    padding: 0 2.5rem;
  }
}

.p-promo-bar-inner {
  height: 2.625rem;
  line-height: 1.125rem;
  position: relative;
}
.p-promo-bar-inner a {
  color: #191919;
}

.p-promo-bar-item {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  transition: 0.6s opacity;
}
.p-promo-bar-item.p-promo-bar-item--active {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.3s;
}
.p-promo-bar-item a {
  white-space: nowrap;
}

.p-promo-bar-cta {
  cursor: pointer;
  font-weight: 500;
  padding: 0 0.1875rem;
  text-decoration: underline;
}

/*md

# Header Bottom Promo bar (Second global slot)

*/
.p-bottom-promo {
  align-items: center;
  background-color: #eee;
  color: #181818;
  display: flex;
  font-size: 0.75rem;
  margin: 0 auto;
  min-height: 5.25rem;
  overflow: hidden;
  padding: 0.625rem;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .p-bottom-promo {
    font-size: 1.125rem;
    padding: 0 1.875rem;
  }
}

.p-bottom-promo-background {
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
@media (max-width: 543.98px) {
  .p-bottom-promo-background .kop-overlap-image {
    height: 100%;
  }
}

.p-bottom-promo-img {
  width: 100%;
}
@media (max-width: 543.98px) {
  .p-bottom-promo-img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-bottom-promo-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  line-height: 1.125rem;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .p-bottom-promo-inner {
    justify-content: space-between;
  }
  .next-to .p-bottom-promo-inner {
    flex-direction: row;
  }
  .beneath-left .p-bottom-promo-inner {
    align-items: flex-start;
  }
  .beneath-center .p-bottom-promo-inner {
    align-items: center;
  }
  .beneath-right .p-bottom-promo-inner {
    align-items: flex-end;
  }
}
.p-bottom-promo-inner a {
  color: inherit;
  font-size: 0.625rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-bottom-promo-inner a {
    font-size: 1rem;
  }
}
.p-bottom-promo-inner a:hover {
  color: inherit;
}

.p-bottom-promo-copy,
.p-bottom-promo-footnote {
  display: block;
  margin: 0;
}
@media (min-width: 768px) {
  .p-bottom-promo-copy,
  .p-bottom-promo-footnote {
    display: inline;
  }
}

.p-bottom-promo-text {
  margin-top: 0.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .next-to .p-bottom-promo-text {
    max-width: 65%;
    text-align: left;
  }
  .beneath-right .p-bottom-promo-text {
    text-align: right;
  }
  .beneath-left .p-bottom-promo-text {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .p-bottom-promo-text {
    max-width: 85%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .p-bottom-promo-text p::after {
    content: "|";
    margin: 0 0.625rem;
  }
  .p-bottom-promo-text p:last-of-type::after {
    content: none;
  }
}
.p-bottom-promo-text:has(.promo-terms-icon-btn) {
  max-width: none;
}
.p-bottom-promo-text:has(.promo-terms-icon-btn) p::after {
  display: none;
}
.p-bottom-promo-text:has(.promo-terms-icon-btn) .p-bottom-promo-copy {
  display: block;
}
.p-bottom-promo-text .promo-terms-icon-btn {
  background-color: transparent;
  border: none;
  color: currentColor;
  margin-top: -0.1875rem;
  padding: 0;
}
@media (min-width: 768px) {
  .p-bottom-promo-text .promo-terms-icon-btn {
    margin-left: 0.5rem;
  }
}
.p-bottom-promo-text .promo-terms-icon-btn svg {
  color: inherit;
  height: 0.75rem;
  margin-top: -0.3125rem;
  width: 0.75rem;
}
@media (min-width: 768px) {
  .p-bottom-promo-text .promo-terms-icon-btn svg {
    height: 0.875rem;
    width: 0.875rem;
  }
}

.promo-terms-popover {
  background-color: #fff;
  border: 0.0625rem solid #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  padding: 0.625rem;
}
.promo-terms-popover ::-webkit-scrollbar {
  -webkit-appearance: none;
          appearance: none;
  height: 0.5rem;
  width: 0.5rem;
}
.promo-terms-popover ::-webkit-scrollbar-thumb {
  background-color: #50565e;
  border-radius: 0.25rem;
}
.promo-terms-popover ::-webkit-scrollbar-track {
  background: #dfe0e1;
  border-radius: 0.25rem;
}
@media (min-width: 768px) {
  .promo-terms-popover {
    max-width: 21.875rem;
  }
}
.promo-terms-popover .arrow::before {
  border-bottom-color: #fff;
}
.promo-terms-popover .popover-body {
  background-color: #fff;
  color: #333;
  max-height: 15.625rem;
  max-width: 18.75rem;
  overflow-y: auto;
  padding: 0 0.625rem 0.625rem 0.625rem;
}
@media (min-width: 768px) {
  .promo-terms-popover .popover-body {
    max-width: 18.75rem;
  }
}
@media (min-width: 1200px) {
  .promo-terms-popover .popover-body {
    max-height: 18.75rem;
    padding-top: 0.625rem;
  }
  .promo-terms-popover .popover-body .html-slot-container .mt-lg-4 {
    margin-top: 0 !important;
  }
}
.promo-terms-popover .popover-body h1,
.promo-terms-popover .popover-body h2 {
  display: none;
}
.promo-terms-popover .popover-body a:focus,
.promo-terms-popover .popover-body button:focus,
.promo-terms-popover .popover-body input:focus,
.promo-terms-popover .popover-body textarea:focus,
.promo-terms-popover .popover-body select:focus {
  outline: 1px solid #000;
}

.p-bottom-promo-copy + .p-bottom-promo-footnote {
  margin-top: 0.1875rem;
}

.p-bottom-promo-details {
  font-size: 0.625rem;
  margin-top: 0.375rem;
}
@media (min-width: 768px) {
  .p-bottom-promo-details {
    font-size: 0.875rem;
  }
}

.p-bottom-promo-ctas {
  align-items: center;
  display: flex;
  line-height: 1.125rem;
  margin: 0.4375rem 0;
}
.next-to .p-bottom-promo-ctas {
  margin-top: 0;
}

.p-bottom-promo-btn {
  border-bottom: 1px solid;
  padding: 0 0 0.3125rem;
}

.p-bottom-promo-break::before {
  content: "|";
  margin: 0 0.3125rem;
}
@media (min-width: 1200px) {
  .p-bottom-promo-break::before {
    margin: 0 0.625rem;
  }
}
.p-bottom-promo-break:last-of-type {
  display: none;
}

.pdp-promo-code .tooltip-promo-code,
.kop-hero-content .tooltip-promo-code,
.p-bottom-promo-coupon .tooltip-promo-code,
.signup-journey-discount-code .tooltip-promo-code {
  display: inline-block;
  margin-top: 0.75rem;
  position: relative;
}
.pdp-promo-code .tooltip-promo-code-msg,
.kop-hero-content .tooltip-promo-code-msg,
.p-bottom-promo-coupon .tooltip-promo-code-msg,
.signup-journey-discount-code .tooltip-promo-code-msg {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0.25rem;
  color: #000;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.625rem 0.75rem;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  z-index: 1500;
}
@media (min-width: 1200px) {
  .pdp-promo-code .tooltip-promo-code-msg,
  .kop-hero-content .tooltip-promo-code-msg,
  .p-bottom-promo-coupon .tooltip-promo-code-msg,
  .signup-journey-discount-code .tooltip-promo-code-msg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.pdp-promo-code .tooltip-promo-code-msg.info-msg,
.kop-hero-content .tooltip-promo-code-msg.info-msg,
.p-bottom-promo-coupon .tooltip-promo-code-msg.info-msg,
.signup-journey-discount-code .tooltip-promo-code-msg.info-msg {
  font-size: 0.875rem;
  line-height: 1.75rem;
  padding: 0.1875rem 0.8125rem;
  text-transform: capitalize;
}
.pdp-promo-code .tooltip-promo-code .tooltip-btn-close,
.kop-hero-content .tooltip-promo-code .tooltip-btn-close,
.p-bottom-promo-coupon .tooltip-promo-code .tooltip-btn-close,
.signup-journey-discount-code .tooltip-promo-code .tooltip-btn-close {
  background-color: #fff;
  border: none;
  margin-left: 0.3125rem;
}
.pdp-promo-code .tooltip-promo-code .tooltip-btn-close-icon,
.kop-hero-content .tooltip-promo-code .tooltip-btn-close-icon,
.p-bottom-promo-coupon .tooltip-promo-code .tooltip-btn-close-icon,
.signup-journey-discount-code .tooltip-promo-code .tooltip-btn-close-icon {
  fill: #181818;
  height: 0.9375rem;
  margin-top: -0.3125rem;
  width: 0.9375rem;
}
.pdp-promo-code .tooltip-promo-code .promo-code-text,
.kop-hero-content .tooltip-promo-code .promo-code-text,
.p-bottom-promo-coupon .tooltip-promo-code .promo-code-text,
.signup-journey-discount-code .tooltip-promo-code .promo-code-text {
  align-items: center;
  background-color: transparent;
  border: 1px dashed #000;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.125rem;
  line-height: 1.25rem;
  padding: 0.375rem 0.75rem;
  text-transform: uppercase;
}
.pdp-promo-code .tooltip-promo-code .promo-code-text-btn-copy,
.kop-hero-content .tooltip-promo-code .promo-code-text-btn-copy,
.p-bottom-promo-coupon .tooltip-promo-code .promo-code-text-btn-copy,
.signup-journey-discount-code .tooltip-promo-code .promo-code-text-btn-copy {
  align-items: center;
  background: transparent;
  border: none;
  display: flex;
  padding-right: 0;
}
.pdp-promo-code .tooltip-promo-code .promo-code-text-btn-copy-icon,
.kop-hero-content .tooltip-promo-code .promo-code-text-btn-copy-icon,
.p-bottom-promo-coupon .tooltip-promo-code .promo-code-text-btn-copy-icon,
.signup-journey-discount-code .tooltip-promo-code .promo-code-text-btn-copy-icon {
  fill: #000;
  height: 1.125rem;
  width: 1.125rem;
}

.product-quickview .tooltip-promo-code {
  display: none;
}

@media (min-width: 768px) {
  .p-bottom-promo-inner {
    justify-content: unset;
  }
}

.kop-hero-wrapper .p-bottom-promo {
  min-height: 6.25rem;
}

.p-bottom-promo-coupon {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (min-width: 1024px) {
  .p-bottom-promo-coupon {
    max-width: 85%;
  }
}
@media (min-width: 768px) {
  .p-bottom-promo-coupon {
    margin-top: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .p-bottom-promo-coupon {
    margin-top: 1.25rem;
  }
}
.p-bottom-promo-coupon .p-bottom-promo-details {
  align-items: center;
  display: flex;
  font-size: 0.9375rem;
  justify-content: center;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .p-bottom-promo-coupon .p-bottom-promo-details {
    margin-top: 1.125rem;
  }
}
.p-bottom-promo-coupon .p-bottom-promo-details .tooltip-promo-code {
  margin-left: 0.5rem;
  margin-top: 0;
}
.p-bottom-promo-coupon .p-bottom-promo-details .tooltip-promo-code-msg {
  color: #000;
  right: 0;
  top: 0;
}
.p-bottom-promo-coupon .p-bottom-promo-details .tooltip-promo-code-msg.success-msg {
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  transform: translateY(-110%);
}
@media (min-width: 768px) {
  .p-bottom-promo-coupon .p-bottom-promo-details .tooltip-promo-code-msg.success-msg {
    transform: translateY(-110%);
  }
}
@media (min-width: 1200px) {
  .p-bottom-promo-coupon .p-bottom-promo-details .tooltip-promo-code-msg.success-msg {
    transform: translate(10%, -110%);
  }
}
.p-bottom-promo-coupon .p-bottom-promo-details .tooltip-promo-code-msg.info-msg {
  transform: translate(20%, -100%);
}
.p-bottom-promo-coupon .p-bottom-promo-details .tooltip-promo-code .promo-code-text {
  border: 1px dashed currentColor;
  font-size: 0.9375rem;
  letter-spacing: 0.0625rem;
  line-height: 1.5rem;
}
@media (min-width: 544px) {
  .p-bottom-promo-coupon .p-bottom-promo-details .tooltip-promo-code .promo-code-text {
    font-size: 1rem;
    letter-spacing: 0.125rem;
  }
}
.p-bottom-promo-coupon .p-bottom-promo-details .tooltip-promo-code .promo-code-text > * {
  color: currentColor;
}
.p-bottom-promo-coupon .p-bottom-promo-details .tooltip-promo-code .promo-code-text-btn-copy-icon {
  fill: currentColor;
}

/*md

# Global Header

*/
.p-header {
  color: #fff;
  display: block;
  left: 0;
  position: sticky;
  top: 0;
  z-index: 1600;
}
.p-header _:-ms-fullscreen, :root .p-header.p-header {
  position: relative;
  top: 0 !important;
}
@media (max-width: 1199.98px) {
  .p-header.p-header::after {
    background-color: rgba(0, 0, 0, 0.4);
    content: "";
    display: block;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.15s;
    z-index: -1;
  }
}
@media (max-width: 1199.98px) {
  .p-header.p-header--active {
    top: 0 !important;
  }
  .p-header.p-header--active::after {
    bottom: 0;
    opacity: 1;
  }
  .p-header.p-header--active .p-header-bar {
    background-color: #fff;
    color: #181818;
  }
  .p-header.p-header--active .p-header-bar::after {
    opacity: 1;
  }
  .p-header.p-header--active .p-header-logo-icon {
    fill: #181818;
  }
  .p-header.p-header--active .p-header-actions-text {
    color: #181818;
  }
  .p-header.p-header--active .p-header-actions-icon svg {
    fill: #181818;
  }
}
@media (min-width: 1440px) {
  .p-header.p-header--compressed .p-header-bar-inner {
    height: 3.75rem;
  }
}
@media (min-width: 1650px) {
  .p-header.p-header--compressed .p-header-bar-inner {
    height: 4.375rem;
  }
}
@media (min-width: 1200px) {
  .p-header.p-header--ghost .p-header-spacer {
    background-color: transparent;
    height: 0;
  }
}
@media (min-width: 1200px) {
  .p-header.p-header--ghost .p-header-bar {
    background-color: transparent;
  }
  .p-header.p-header--ghost .p-header-bar:hover, .p-header.p-header--ghost .p-header-bar:active, .p-header.p-header--ghost .p-header-bar:focus {
    background-color: #181818;
  }
  .p-header.p-header--ghost .p-header-bar:hover::after, .p-header.p-header--ghost .p-header-bar:active::after, .p-header.p-header--ghost .p-header-bar:focus::after {
    opacity: 0;
  }
  .p-header.p-header--ghost .p-header-bar::after {
    background-color: #fff;
    opacity: 0.08;
  }
}
.p-header.p-header--promo .p-header-spacer {
  height: 6.375rem;
}
@media (min-width: 1440px) {
  .p-header.p-header--promo .p-header-spacer {
    height: 6.875rem;
  }
}
@media (min-width: 1650px) {
  .p-header.p-header--promo .p-header-spacer {
    height: 7.625rem;
  }
}
.p-header.p-header--kiosk .p-header-spacer {
  margin-bottom: 1.5rem;
}
@media (min-width: 1200px) {
  .p-header.p-header--ghost.p-header--promo .p-header-spacer {
    height: 42px;
  }
}
@media (min-width: 1200px) {
  .p-header.p-header--ghost.p-header--ghostinactive .p-header-bar, .p-header.p-header--ghost.p-header--subnavactive .p-header-bar {
    background-color: #181818;
  }
  .p-header.p-header--ghost.p-header--ghostinactive .p-header-bar::after, .p-header.p-header--ghost.p-header--subnavactive .p-header-bar::after {
    opacity: 0;
  }
}

.p-header-spacer {
  height: 3.75rem;
}
@media (min-width: 1440px) {
  .p-header-spacer {
    height: 4.25rem;
  }
}
@media (min-width: 1650px) {
  .p-header-spacer {
    height: 5rem;
  }
}

.p-header-bar {
  background-color: #181818;
  transition: background-color 0.15s;
}
@media (max-width: 1199.98px) {
  .p-header-bar::after {
    background-color: #eee;
    bottom: 0;
    content: "";
    height: 0.0625rem;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 0.15s;
    width: 100%;
  }
}

.p-header-bar-inner {
  align-items: center;
  display: flex;
  height: 3.75rem;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-header-bar-inner {
    padding: 0 1.875rem;
  }
}
@media (min-width: 1200px) {
  .p-header-bar-inner {
    padding: 0 2.5rem;
  }
}
@media (min-width: 1440px) {
  .p-header-bar-inner {
    height: 4.25rem;
  }
}
@media (min-width: 1650px) {
  .p-header-bar-inner {
    height: 5rem;
  }
}

.p-header-bar-left {
  align-items: center;
  display: flex;
  height: 100%;
}

.p-header-nav {
  display: none;
  height: 100%;
}
@media (min-width: 1200px) {
  .p-header-nav {
    display: block;
  }
}

.p-header-overlay {
  color: #181818;
  font-size: 0.875rem;
  text-align: left;
}

.p-header-overlay-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.p-header-overlay-copy {
  color: #545454;
}
.p-header-overlay-copy p {
  margin-bottom: 1.8em;
  margin-top: 0;
}
.p-header-overlay-copy p:last-child {
  margin-bottom: 0;
}

.p-header-sidebar {
  background-color: #fff;
  bottom: 0;
  color: #181818;
  display: none;
  outline: none;
  position: fixed;
  top: 3.75rem;
  width: 100%;
  z-index: 1000;
}
.p-header--promo .p-header-sidebar {
  top: 6.375rem;
}
@media (min-width: 1200px) {
  .p-header--promo .p-header-sidebar {
    top: 0;
  }
}
@media (min-width: 1024px) {
  .p-header-sidebar {
    width: 25rem;
    z-index: 1700;
  }
}
@media (min-width: 1440px) {
  .p-header-sidebar {
    width: 30rem;
  }
}
@media (min-width: 1650px) {
  .p-header-sidebar {
    width: 33.75rem;
  }
}
@media (min-width: 1200px) {
  .p-header-sidebar#minicart-content {
    width: 33.125rem;
  }
}
.p-header-sidebar.p-header-sidebar--show {
  display: block;
}
.p-header-sidebar.p-header-sidebar--in {
  animation: sidebarAnimateInResponsive 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
@media (min-width: 1200px) {
  .p-header-sidebar.p-header-sidebar--in {
    animation-name: sidebarAnimateIn;
  }
}
.p-header-sidebar.p-header-sidebar--out {
  animation: sidebarAnimateInResponsive 0.4s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards reverse;
}
@media (min-width: 1200px) {
  .p-header-sidebar.p-header-sidebar--out {
    animation-name: sidebarAnimateIn;
  }
}

#mobileSearch {
  top: 0;
}
#mobileSearch .search-header-wrapper {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  height: 6.5rem;
  justify-content: space-between;
  padding: 0 1rem 0 0.25rem;
}
#mobileSearch .search-header-wrapper .p-header-actions-search-back {
  background: none;
  border: none;
  color: inherit;
  display: block;
  height: 2.5rem;
  width: 2.5rem;
}
#mobileSearch .search-header-wrapper .p-header-actions-search-back svg {
  height: 1.5rem;
  width: 1.5rem;
}
#mobileSearch .search-header-wrapper .p-header-search-inner {
  margin: 0;
  width: 100%;
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-icon {
  align-items: center;
  background: none;
  border: none;
  color: inherit;
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  left: auto;
  margin: 0;
  right: 0.5rem;
  width: 2.5rem;
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-icon svg {
  height: 1.125rem;
  width: 1.125rem;
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-icon::after {
  border: 0.0625rem solid #999;
  content: unset;
  height: 1.5rem;
  left: -0.625rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-field {
  border: 0.0625rem solid #676d75;
  border-radius: 0.25rem;
  height: 3.5rem;
  padding: 0 3.5rem 0 1rem;
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-field::-webkit-input-placeholder {
  color: #818181;
  font-size: 1rem;
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-field::-moz-placeholder {
  color: #818181;
  opacity: 1;
  font-size: 1rem;
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-field:-moz-placeholder {
  color: #818181;
  opacity: 1;
  font-size: 1rem;
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-field:-ms-input-placeholder {
  color: #818181;
  font-size: 1rem;
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-field:focus-within {
  box-shadow: 0 0 0 0.1875rem #8c9198;
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-field.hf-user-valid {
  padding: 0 7rem 0 1rem;
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-field.hf-user-valid + .p-header-search-close {
  background: none;
  height: 2.5rem;
  right: 4.375rem;
  width: 2.5rem;
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-field.hf-user-valid + .p-header-search-close svg {
  fill: #222;
  stroke: #222;
  stroke-width: 1px;
}
#mobileSearch .search-header-wrapper .p-header-search-inner .p-header-search-field.hf-user-valid + .p-header-search-close + .p-header-search-icon::after {
  content: "";
}

.p-header-sidebar.p-header-sidebar-custom-mincart {
  right: 0;
}

/*md

# Header actions

*/
.p-header-actions {
  align-items: center;
  display: flex;
  height: 100%;
  margin-right: -0.625rem;
}
@media (min-width: 1650px) {
  .p-header-actions {
    padding-left: 1.875rem;
  }
}

.p-header-actions-search {
  display: none;
  margin-right: 0.625rem;
}
.is-mobile-only .p-header-actions-search {
  background-color: #f6f6f6;
  display: block;
  margin: 0;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .p-header-actions-search {
    display: block;
  }
}

.p-header-actions-item {
  color: #fff;
  display: block;
  position: relative;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-header-actions-search-bar.is-mobile-only .p-header-actions-item {
  display: none;
}
@media (min-width: 1200px) {
  .p-header-actions-item.p-header-actions-item--only-responsive {
    display: none;
  }
}
.p-header-actions-item.p-header-actions-item--only-desktop {
  display: none;
}
@media (min-width: 1200px) {
  .p-header-actions-item.p-header-actions-item--only-desktop {
    display: block;
  }
}
.p-header-actions-item.p-header-actions-item--active .p-header-actions-icon-close {
  opacity: 1;
}
.p-header-actions-item.p-header-actions-item--active .p-header-actions-icon-default {
  opacity: 0;
}

.p-header-actions-item-inner {
  align-items: center;
  cursor: pointer;
  display: flex;
}
@media (min-width: 1200px) {
  .p-header-actions-item-inner:hover svg,
  .p-header-actions-item-inner:hover .p-header-actions-text,
  .p-header-actions-item-inner:hover .p-header-actions-inline-text, .p-header-actions-item-inner:active svg,
  .p-header-actions-item-inner:active .p-header-actions-text,
  .p-header-actions-item-inner:active .p-header-actions-inline-text, .p-header-actions-item-inner:focus svg,
  .p-header-actions-item-inner:focus .p-header-actions-text,
  .p-header-actions-item-inner:focus .p-header-actions-inline-text {
    opacity: 0.6;
  }
}

.p-header-actions-count {
  background-color: #ba2026;
  border-radius: 100%;
  color: #fff;
  display: none;
  font-size: 0.625rem;
  font-weight: 700;
  height: 1.25rem;
  line-height: 1.25rem;
  margin-right: -0.625rem;
  margin-top: -0.375rem;
  pointer-events: none;
  text-align: center;
  transform: translate(0.9375rem, -1.5625rem);
  width: 1.25rem;
}
.p-header-actions-count.p-header-actions-count--active {
  display: block;
}

.p-header-actions-image {
  max-height: 1.25rem;
  width: auto;
}

.p-header-actions-icon {
  background: none;
  border: none;
  box-sizing: content-box;
  line-height: 0;
  padding: 0.625rem;
  position: relative;
  width: 100%;
}
.p-header-actions-icon:hover, .p-header-actions-icon:active, .p-header-actions-icon:focus {
  text-decoration: none;
}
.p-header-actions-icon.p-header-actions-icon--cart {
  height: 1.5rem;
  width: 1.5rem;
}
.p-header-actions-icon.p-header-actions-icon--chat:hover, .p-header-actions-icon.p-header-actions-icon--chat:active, .p-header-actions-icon.p-header-actions-icon--chat:focus {
  text-decoration: none;
}
.p-header-actions-icon.p-header-actions-icon--chat .icon {
  display: inline-block;
  fill: none;
  height: 1.5rem;
  stroke: #fff;
  stroke-width: 0.25rem;
  width: 1.5rem;
}
.p-header-actions-icon.p-header-actions-icon--chat span {
  color: #fff;
}
.p-header-actions-icon.p-header-actions-icon--wishlist {
  height: 1.5rem;
  width: 1.5rem;
}
.p-header-actions-icon.p-header-actions-icon--wishlist .icon {
  display: block;
}
.p-header-actions-icon.p-header-actions-icon--wishlist .icon-filled {
  display: none;
  stroke: #fff;
}
.p-header--active .p-header-actions-icon.p-header-actions-icon--wishlist .icon-filled {
  stroke: #181818;
}
.p-header-actions-icon.p-header-actions-icon--filled .icon {
  display: none;
}
.p-header-actions-icon.p-header-actions-icon--filled .icon-filled {
  display: block;
}
.p-header-actions-icon.p-header-actions-icon--account {
  height: 2.375rem;
  width: 2.375rem;
}
.p-header-actions-icon.p-header-actions-icon--nav {
  height: 1.25rem;
  width: 1.25rem;
}
.p-header-actions-item--active .p-header-actions-icon.p-header-actions-icon--nav {
  height: 0.625rem;
  margin-left: 0.625rem;
  width: 0.625rem;
}
.p-header-actions-icon.p-header-actions-icon--search {
  height: 1.125rem;
  width: 1.125rem;
}
.p-header-actions-item--active .p-header-actions-icon.p-header-actions-icon--search {
  height: 0.625rem;
  margin-right: 0.3125rem;
  width: 0.625rem;
}
.p-header-actions-icon svg {
  display: block;
  fill: #fff;
  height: 100%;
  transition: opacity 0.15s;
  width: 100%;
}

.p-header-actions-icon-close {
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.15s opacity;
  width: 1.5rem;
}

.p-header-actions-icon-default {
  display: block;
  transition: 0.15s opacity;
}

.p-header-actions-text {
  display: none;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 1rem;
  transition: opacity 0.15s;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .p-header-actions-text {
    display: block;
  }
}
@media (min-width: 1200px) {
  .p-header-actions-text.p-header-actions-text--desktop {
    display: block;
    font-size: 0.875rem;
  }
}
@media (min-width: 1650px) {
  .p-header-actions-text.p-header-actions-text--desktop {
    font-size: 1rem;
  }
}

.p-header-actions-dropdown {
  background-color: #fff;
  border-radius: 0.125rem;
  box-shadow: 0.625rem 0.625rem 1.875rem rgba(24, 24, 24, 0.05);
  display: none;
  margin-right: -0.4375rem;
  margin-top: 0.25rem;
  padding: 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 15.625rem;
}
@media (min-width: 1440px) {
  .p-header-actions-dropdown {
    margin-right: -0.9375rem;
    padding: 1.5625rem;
    width: 18.125rem;
  }
}
@media (min-width: 1650px) {
  .p-header-actions-dropdown {
    margin-right: -1.375rem;
    margin-top: -0.4375rem;
    padding: 1.875rem 2.5rem;
    width: 20.625rem;
  }
}
.p-header-actions-dropdown.p-header-actions-dropdown--show {
  animation: showPanelDropdown 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  display: block;
}
.p-header-actions-dropdown.p-header-actions-dropdown--hide {
  animation: hidePanelDropdown 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  display: block;
}
.p-header-actions-dropdown.p-header-actions-dropdown--active {
  display: block;
}

.kop-web-chat-btn .icon {
  display: inline-block;
  fill: none;
  height: 1.5rem;
  margin-right: 0.625rem;
  stroke: #fff;
  stroke-width: 1.5rem;
  width: 1.5rem;
}

.livechat-links.web-livechat-link {
  display: none;
}

.p-header.p-header--active .p-header-actions-icon .p-header-actions-icon-close {
  fill: #191919;
  height: 1.5rem;
  margin-left: 0;
  width: 1.5rem;
}

.p-header-actions-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.0625rem;
  line-height: 1rem;
  margin-left: 0;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .p-header-actions-text {
    display: none;
  }
}

.p-header.p-header--active .p-header-actions-text {
  color: #191919;
  font-weight: 400;
}

.p-header-actions-item--only-desktop .p-header-actions-dropdown {
  width: 25rem;
}
.p-header-actions-item--only-desktop .p-header-actions-dropdown .p-user-menu--followed {
  margin-bottom: 3rem;
}

/*md

# Header user menu

*/
.p-header-user-status {
  display: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1rem;
  margin-left: 0.625rem;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .p-header-user-status {
    display: block;
  }
}

.p-header-user-status-name {
  color: #fff;
  font-size: 0.75rem;
  white-space: nowrap;
}

.p-header-user-status-link {
  color: #fff;
  font-size: 0.625rem;
  text-decoration: none;
  transition: 0.15s opacity;
  white-space: nowrap;
}
.p-header-user-status-link:hover, .p-header-user-status-link:active, .p-header-user-status-link:focus {
  color: #f6f7f8;
  text-decoration: none;
}

.p-user-menu {
  color: #181818;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .p-user-menu {
    display: block;
  }
}
.p-user-menu.p-user-menu--followed {
  margin-bottom: 3.125rem;
}
@media (min-width: 768px) {
  .p-user-menu.p-user-menu--followed {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .p-user-menu.p-user-menu--followed {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1440px) {
  .p-user-menu.p-user-menu--followed {
    margin-bottom: 4.375rem;
  }
}
@media (min-width: 1650px) {
  .p-user-menu.p-user-menu--followed {
    margin-bottom: 5.625rem;
  }
}

@media (max-width: 767.98px) {
  .p-user-menu-authenticate {
    background-color: #f6f6f6;
    bottom: 0;
    left: 0;
    padding: 1.25rem 1.5rem;
    position: fixed;
    right: 0;
    z-index: 3;
  }
}

.p-user-menu-close {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1.25rem;
  padding: 0;
  position: absolute;
  right: 0.625rem;
  top: 0.75rem;
  z-index: 20;
}
@media (min-width: 1440px) {
  .p-user-menu-close {
    font-size: 1.375rem;
    line-height: 1.375rem;
    right: 0.9375rem;
    top: 0.9375rem;
  }
}
@media (min-width: 1650px) {
  .p-user-menu-close {
    font-size: 1.5rem;
    line-height: 1.5rem;
    right: 1.25rem;
    top: 1.25rem;
  }
}
.p-user-menu-close:hover svg, .p-user-menu-close:active svg, .p-user-menu-close:focus svg {
  fill: #777;
}
.p-user-menu-close svg {
  display: block;
  fill: #181818;
  height: 1em;
  transition: fill 0.15s;
  width: 1em;
}

.p-user-menu-title {
  color: #818181;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.125rem;
  margin-bottom: 0.9375rem;
  text-transform: uppercase;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-user-menu-title {
    margin-bottom: 0;
  }
}

.p-user-menu-list {
  list-style: none;
  padding: 0;
  width: 100%;
}

.p-user-menu-item {
  display: block;
  font-size: 1rem;
  position: relative;
}
@media (min-width: 1650px) {
  .p-user-menu-item {
    font-size: 1.125rem;
  }
}
.p-user-menu-item:hover, .p-user-menu-item:active, .p-user-menu-item:focus {
  background-color: #f6f6f6;
}

.p-user-menu-link {
  align-items: center;
  color: #181818;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
  position: relative;
  text-decoration: none;
}
@media (min-width: 1650px) {
  .p-user-menu-link {
    font-size: 1.125rem;
  }
}
.p-user-menu-link:hover, .p-user-menu-link:active, .p-user-menu-link:focus {
  text-decoration: none;
}
.p-user-menu-link:hover span::after, .p-user-menu-link:active span::after, .p-user-menu-link:focus span::after {
  opacity: 0;
}
.p-user-menu-link span {
  flex: 1 1 auto;
  padding: 0.625rem 0;
  transition: background-color 0.15s;
}
@media (min-width: 768px) {
  .p-user-menu-link span {
    padding: 0.5rem 0;
  }
}
.p-user-menu-link span::after {
  background-color: #eee;
  content: "";
  display: block;
  height: 0.0625rem;
  left: 0;
  position: absolute;
  top: 100%;
  transition: 0.15s opacity;
  width: 100%;
}

.p-user-menu-link-count {
  background-color: #ba2026;
  border-radius: 100%;
  color: #fff;
  font-size: 0.625rem;
  height: 1.25rem;
  line-height: 1.25rem;
  text-align: center;
  width: 1.25rem;
}

.p-user-menu-link-locale {
  align-items: center;
  display: flex;
}

.p-user-menu-link-language {
  color: #818181;
  font-size: 0.75rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-user-menu-link-language.p-user-menu-link-language--short {
    display: none;
  }
}
.p-user-menu-link-language.p-user-menu-link-language--long {
  display: none;
}
@media (min-width: 768px) {
  .p-user-menu-link-language.p-user-menu-link-language--long {
    display: block;
  }
}

.p-user-menu-link-flag {
  display: block;
  margin-left: 0.5em;
  width: 1.125rem;
}
@media (min-width: 1440px) {
  .p-user-menu-link-flag {
    margin-left: 1em;
  }
}
.p-user-menu-link-flag img {
  display: block;
  height: auto;
  width: 100%;
}

.p-user-menu-authenticate-button {
  border-radius: 0.125rem;
  font-weight: 500;
  margin: 0 auto 1.25rem;
  width: 86%;
}
@media (min-width: 768px) {
  .p-user-menu-authenticate-button {
    margin-bottom: 2.5rem;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .p-user-menu-authenticate-button {
    margin-bottom: 0.875rem;
  }
}
.p-user-menu-authenticate-button:last-child {
  margin-bottom: 0;
}

.p-user-menu-authenticate-link {
  color: #545454;
  font-size: 0.75rem;
  text-align: center;
}
.p-user-menu-authenticate-link a {
  color: #181818;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.125rem;
  margin-left: 0.375rem;
  padding-bottom: 0.125rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.15s color;
}
.p-user-menu-authenticate-link a:hover::after, .p-user-menu-authenticate-link a:active::after, .p-user-menu-authenticate-link a:focus::after {
  left: 0;
  right: auto;
  width: 100%;
}
.p-user-menu-authenticate-link a::before, .p-user-menu-authenticate-link a::after {
  background-color: #ccc;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.p-user-menu-authenticate-link a::after {
  background-color: #777;
  left: auto;
  right: 0;
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}

.p-user-menu-authenticate {
  display: flex;
  flex-direction: column;
}
.p-user-menu-authenticate .p-user-menu-authenticate-button {
  align-items: center;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 0.625rem;
  justify-content: center;
  line-height: 1.5rem;
  margin-bottom: 0.625rem;
  padding: 0.5rem 1rem;
  width: 100%;
}
.p-user-menu-authenticate .p-user-menu-authenticate-button .account-quicklinks-icon {
  height: 1.5rem;
  width: 1.5rem;
}

.p-user-menu-authenticate-link {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  margin: 0 auto;
  max-width: 18.75rem;
}
@media (min-width: 1199px) {
  .p-user-menu-authenticate-link {
    max-width: 100%;
  }
}
.p-user-menu-authenticate-link,
.p-user-menu-authenticate-link a {
  color: #333;
}
.p-user-menu-authenticate-link .benefit-discount,
.p-user-menu-authenticate-link a {
  font-weight: 700;
}
.p-user-menu-authenticate-link a {
  margin-left: 0;
}
.p-user-menu-authenticate-link a::before, .p-user-menu-authenticate-link a::after {
  background-color: #333;
}
.p-user-menu-authenticate-link a::after {
  background-color: #ccc;
}

/*md

# Global Navigation

*/
.p-nav {
  height: 100%;
}

.p-nav-list {
  display: flex;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-nav-list:hover .p-nav-item-link, .p-nav-list:active .p-nav-item-link, .p-nav-list:focus .p-nav-item-link {
  opacity: 0.4;
}

.p-nav-item {
  align-items: center;
  display: flex;
}
.p-nav-item:hover .p-nav-item-link, .p-nav-item:active .p-nav-item-link, .p-nav-item:focus .p-nav-item-link {
  opacity: 1;
}
.p-nav-item:hover .p-nav-item-link-inner::after, .p-nav-item:active .p-nav-item-link-inner::after, .p-nav-item:focus .p-nav-item-link-inner::after {
  opacity: 1;
  transform: none;
}

.p-nav-item-link {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 500;
  height: 100%;
  padding: 0 1.25rem;
  text-decoration: none;
  transition: 0.15s opacity;
}
@media (min-width: 1200px) {
  .p-nav-item-link {
    padding: 0 0.625rem;
  }
}
@media (min-width: 1440px) {
  .p-nav-item-link {
    padding: 0 1.25rem;
  }
}
@media (min-width: 1650px) {
  .p-nav-item-link {
    font-size: 1.125rem;
    padding: 0 1.875rem;
  }
}
.p-nav-item-link:hover, .p-nav-item-link:active, .p-nav-item-link:focus {
  color: #fff;
  text-decoration: none;
}

.p-nav-item-link-inner {
  padding: 0.1em 0;
  position: relative;
  white-space: nowrap;
}
.p-nav-item-link-inner::after {
  background-color: #ae946d;
  content: "";
  height: 0.125rem;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(2px);
  transition: 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-nav-item-subnav {
  background: #fff;
  color: #181818;
  left: 0;
  opacity: 0;
  padding: 2.5rem 0;
  position: absolute;
  top: 100%;
  transform: scaleY(0);
  transform-origin: center top;
  transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
  width: 100%;
}
.is-open .p-nav-item-subnav {
  opacity: 1;
  transform: scaleY(1);
}
@media (min-width: 1440px) {
  .p-nav-item-subnav {
    padding: 3.125rem 0;
  }
}
@media (min-width: 1650px) {
  .p-nav-item-subnav {
    padding: 5rem 0;
  }
}
.p-nav-item-subnav .p-nav-item-link {
  color: #181818;
}

.p-nav-subnav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .p-nav-subnav {
    padding: 0 1.875rem;
  }
}
@media (min-width: 1200px) {
  .p-nav-subnav {
    padding: 0 2.5rem;
  }
}
.p-nav-subnav.p-nav-subnav--centered {
  justify-content: center;
}

.p-nav-subnav-item {
  width: 20%;
}

.p-nav-subnav-item-inner {
  margin-right: 0.5rem;
}
@media (min-width: 1200px) {
  .p-nav-subnav-item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.p-nav-subnav-item-inner.p-nav-subnav-item-inner--categories {
  padding-top: 0;
  position: relative;
}
.p-nav-subnav-item-inner-underlined .p-nav-subnav-item-inner.p-nav-subnav-item-inner--categories {
  padding-top: 0;
}
.p-nav-subnav-item-inner-underlined .p-nav-subnav-item-inner.p-nav-subnav-item-inner--categories::before {
  content: none;
}
@media (min-width: 1440px) {
  .p-nav-subnav-item-inner.p-nav-subnav-item-inner--categories {
    padding-top: 0;
  }
}
.p-nav-subnav-item-inner.p-nav-subnav-item-inner--categories::before {
  background-color: none;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.15s;
  width: 100%;
}
.p-nav-subnav-item-inner.p-nav-subnav-item-inner--merged {
  margin-right: 0;
}

.p-nav-item-link-hover {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.p-nav-subnav-item-groups {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.p-nav-subnav-item-group {
  list-style: none;
  margin: 0 0 1.875rem;
  padding: 0;
}
@media (min-width: 1440px) {
  .p-nav-subnav-item-group {
    margin-bottom: 2.625rem;
  }
}
.p-nav-subnav-item-group:last-child {
  margin-bottom: 0;
}

.p-nav-subnav-item-group-title {
  color: #181818;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.4375rem;
}

.p-nav-subnav-link {
  color: #545454;
  font-size: 0.875rem;
  padding: 0.1875rem 0;
  position: relative;
  transition: color 0.15s;
}
.p-nav-subnav-item-inner--general .p-nav-subnav-link {
  font-size: 1rem;
  font-weight: 500;
}
@media (min-width: 1650px) {
  .p-nav-subnav-item-inner--general .p-nav-subnav-link {
    font-size: 1.125rem;
  }
}
.p-nav-subnav-item-inner--general .p-nav-subnav-link:hover, .p-nav-subnav-item-inner--general .p-nav-subnav-link:active, .p-nav-subnav-item-inner--general .p-nav-subnav-link:focus {
  color: #ae946d;
}
.p-nav-subnav-item-inner--image .p-nav-subnav-link {
  color: #181818;
  font-weight: 700;
  position: relative;
  text-align: center;
  transition: color 0.15s;
}
.p-nav-subnav-item-inner--image .p-nav-subnav-link:hover, .p-nav-subnav-item-inner--image .p-nav-subnav-link:active, .p-nav-subnav-item-inner--image .p-nav-subnav-link:focus {
  color: #ae946d;
}
.p-nav-subnav-item-inner--image .p-nav-subnav-link:hover .p-nav-subnav-item-link-image::after, .p-nav-subnav-item-inner--image .p-nav-subnav-link:active .p-nav-subnav-item-link-image::after, .p-nav-subnav-item-inner--image .p-nav-subnav-link:focus .p-nav-subnav-item-link-image::after {
  opacity: 0.08;
}
@media (min-width: 1440px) {
  .p-nav-subnav-link {
    font-size: 1rem;
  }
}
.p-nav-subnav-link:hover, .p-nav-subnav-link:active, .p-nav-subnav-link:focus {
  color: #181818;
  text-decoration: none;
}
.p-nav-subnav-link.p-nav-subnav-link--highlight {
  color: #ba2026;
}
.p-nav-subnav-link.p-nav-subnav-link--highlight:hover, .p-nav-subnav-link.p-nav-subnav-link--highlight:active, .p-nav-subnav-link.p-nav-subnav-link--highlight:focus {
  color: #ae946d;
  text-decoration: none;
}
.p-nav-subnav-link.p-nav-subnav-link--bold {
  color: #181818;
  font-weight: 700;
}
.p-nav-subnav-item-inner--general .p-nav-subnav-link.p-nav-subnav-link--bold {
  color: #ae946d;
}
.p-nav-subnav-link.p-nav-subnav-link--bold:hover, .p-nav-subnav-link.p-nav-subnav-link--bold:active, .p-nav-subnav-link.p-nav-subnav-link--bold:focus {
  color: #ae946d;
  text-decoration: none;
}

.p-nav-subnav-item-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  padding: 0.1875rem 0;
  transition: color 0.15s;
}
@media (min-width: 544px) {
  .p-nav-subnav-item-inner-underlined .p-nav-subnav-item-title {
    border-bottom: 0.125rem solid #000;
    padding: 0 0 0.625rem;
  }
}
@media (min-width: 1200px) {
  .p-nav-subnav-item-title {
    border-bottom: 0.125rem solid #000;
  }
}
.p-nav-subnav-item-title:hover, .p-nav-subnav-item-title:active, .p-nav-subnav-item-title:focus {
  color: #ae946d;
  text-decoration: none;
}

.p-nav-subnav-item-link-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  margin-bottom: 1.25rem;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
@media (min-width: 1200px) {
  .p-nav-subnav-item-link-image {
    display: block;
  }
}
.p-nav-subnav-item-link-image::after {
  background: #181818;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.15s;
}

.p-nav-item-gallery {
  overflow: hidden;
  position: relative;
  width: 40%;
  will-change: transform;
}
.p-nav-item-gallery .image {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
.p-nav-item-gallery .image:nth-child(n+3) {
  display: none;
}
.p-nav-item-gallery .image div {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.p-nav-item-gallery .image.is-showing {
  animation: navShowImage 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.p-nav-item-gallery .image.is-showing div {
  animation: navShowImageInner 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.p-nav-item-gallery .image.is-hiding {
  animation: navHideImage 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.p-nav-item-gallery-inner {
  display: block;
  overflow: hidden;
  padding-bottom: 63%;
  position: relative;
}

.p-nav-subnav-tier2 {
  font-size: 0.875rem;
}
@media (min-width: 1440px) {
  .p-nav-subnav-tier2 {
    font-size: 1rem;
  }
}

.p-nav-subnav-tier {
  color: #545454;
  font-size: 0.875rem;
  position: relative;
}
@media (min-width: 1440px) {
  .p-nav-subnav-tier {
    font-size: 1rem;
  }
}
.p-nav-subnav-tier:hover, .p-nav-subnav-tier:active, .p-nav-subnav-tier:focus {
  color: #545454;
  text-decoration: none;
}

.p-nav-subnav-link-last-child {
  margin-bottom: 0.5rem;
}
@media (min-width: 1440px) {
  .p-nav-subnav-link-last-child {
    font-size: 1rem;
  }
}

.p-nav-subnav-tier4 {
  font-size: 0.875rem;
}
@media (min-width: 1440px) {
  .p-nav-subnav-tier4 {
    font-size: 1rem;
  }
}

.p-nav-subnav-bottom {
  margin: 3rem auto 0;
}
.p-nav-subnav-bottom::before {
  border-top: 0.0625rem solid #ddd;
  content: "";
  height: 0.0625rem;
  padding-top: 0.75rem;
  width: 100%;
}
.p-nav-subnav-bottom .p-nav-subnav-item {
  padding-right: 0.75rem;
}
.p-nav-subnav-bottom .p-nav-subnav-bottom-title {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: underline;
  vertical-align: top;
}
.p-nav-subnav-bottom .p-nav-subnav-bottom-title:hover, .p-nav-subnav-bottom .p-nav-subnav-bottom-title:active, .p-nav-subnav-bottom .p-nav-subnav-bottom-title:focus {
  color: #ae946d;
}

@media (min-width: 768px) {
  [data-isexcludedesktopnavigation=true] {
    display: none;
  }
}
@media (max-width: 767px) {
  [data-isexcludedesktopnavigation=true] {
    display: block;
  }
}
.p-nav-subnav-item {
  width: 16.6666666667%;
}

.p-nav-item-subnav {
  transition: opacity 0s ease 0.3s, transform 0s ease 0.3s;
}

/*md
# Header search bar
*/
.p-header-search {
  position: relative;
}

.p-header-actions-search-bar {
  position: relative;
}
.p-header-actions-search-bar.is-mobile-only {
  height: 100%;
  overflow: auto;
}
@media (max-width: 767.98px) {
  @supports (-webkit-touch-callout: none) {
    .p-header-actions-search-bar.is-mobile-only.is-minimized {
      max-height: 55%;
    }
  }
}
.p-header-actions-search-bar .p-loader {
  left: auto;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.p-header-actions-search-bar .p-loader div {
  background-color: #fff;
  height: 0.3125rem;
  margin: 0 0.125rem;
  width: 0.3125rem;
}

.p-header-search-inner {
  display: block;
  font-size: 0.875rem;
  margin: 1.25rem 1.5rem;
  position: relative;
}
@media (min-width: 1200px) {
  .p-header-search-inner {
    margin: 1.25rem 0;
  }
}
@media (min-width: 1440px) {
  .p-header-search-inner {
    margin: 1.25rem 1.5rem;
  }
}
@media (min-width: 1650px) {
  .p-header-search-inner {
    font-size: 1rem;
  }
}

.p-header-search-icon {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  height: 1.125rem;
  left: 1.1875rem;
  line-height: 0;
  margin-top: 0.125rem;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
}
.is-mobile-only .p-header-search-icon {
  cursor: pointer;
  height: 0.9375rem;
  pointer-events: auto;
  width: 0.9375rem;
}
.is-mobile-only .p-header-search-icon svg {
  fill: #181818;
}
@media (min-width: 1440px) {
  .p-header-search-icon {
    left: 1.1875rem;
    width: 1.1875rem;
  }
}
@media (min-width: 1650px) {
  .p-header-search-icon {
    left: 1.3125rem;
    width: 1.3125rem;
  }
}
.p-header-search-icon svg {
  fill: #fff;
  height: 100%;
  transition: fill 0.15s;
  width: 100%;
}

.p-header-search-close {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
  height: 1.3125rem;
  line-height: 0;
  opacity: 0;
  outline: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.15s;
  visibility: hidden;
  width: 1.3125rem;
}
.is-mobile-only .p-header-search-close {
  background-color: #eee;
  border-radius: 100%;
  display: block;
  height: 1.25rem;
  pointer-events: auto;
  width: 1.25rem;
}
.is-mobile-only .p-header-search-close svg {
  fill: #777;
  height: 60%;
  margin: 0 auto;
  stroke: #777;
  stroke-width: 2px;
  width: 60%;
}
@media (min-width: 1650px) {
  .p-header-search-close {
    right: 1.3125rem;
  }
}
.p-header-search-close:hover svg, .p-header-search-close:active svg, .p-header-search-close:focus svg {
  fill: #adadad;
}
.p-header-search-close.p-header-search-close--visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.p-header-search-close svg {
  display: block;
  fill: #fff;
  height: 100%;
  transition: fill 0.15s;
  width: 100%;
}

.p-header-search-field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-clip: padding-box;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  outline: 0;
  padding: 0.6875rem 3rem 0.875rem;
  transition: border-color 0.15s;
  width: 18rem;
}
.is-mobile-only .p-header-search-field {
  background-color: #fff;
  border-color: transparent;
  color: #181818;
  width: 100%;
}
.is-mobile-only .p-header-search-field::-webkit-input-placeholder {
  color: #fff;
  color: #181818;
}
.is-mobile-only .p-header-search-field::-moz-placeholder {
  color: #fff;
  opacity: 1;
  color: #181818;
}
.is-mobile-only .p-header-search-field:-moz-placeholder {
  color: #fff;
  opacity: 1;
  color: #181818;
}
.is-mobile-only .p-header-search-field:-ms-input-placeholder {
  color: #fff;
  color: #181818;
}
.is-mobile-only .p-header-search-field.hf-user-valid + .p-header-search-close {
  opacity: 1;
  visibility: visible;
}
.p-header-search-field::-webkit-input-placeholder {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5rem;
  opacity: 0.4;
  text-transform: uppercase;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
  will-change: opacity;
}
@media (min-width: 1200px) {
  .p-header-search-field::-webkit-input-placeholder {
    line-height: 1.25rem;
  }
}
.p-header-search-field::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5rem;
  opacity: 0.4;
  text-transform: uppercase;
  -moz-transition: opacity 0.15s;
  transition: opacity 0.15s;
  will-change: opacity;
}
@media (min-width: 1200px) {
  .p-header-search-field::-moz-placeholder {
    line-height: 1.25rem;
  }
}
.p-header-search-field:-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5rem;
  opacity: 0.4;
  text-transform: uppercase;
  -moz-transition: opacity 0.15s;
  transition: opacity 0.15s;
  will-change: opacity;
}
@media (min-width: 1200px) {
  .p-header-search-field:-moz-placeholder {
    line-height: 1.25rem;
  }
}
.p-header-search-field:-ms-input-placeholder {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5rem;
  opacity: 0.4;
  text-transform: uppercase;
  -ms-transition: opacity 0.15s;
  transition: opacity 0.15s;
  will-change: opacity;
}
@media (min-width: 1200px) {
  .p-header-search-field:-ms-input-placeholder {
    line-height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .p-header-search-field {
    font-size: 0.875rem;
    padding: 0.625rem 0.625rem 0.75rem 2.8125rem;
    width: 11.25rem;
  }
  .p-header-search-field:hover, .p-header-search-field:active, .p-header-search-field:focus {
    border-color: rgba(255, 255, 255, 0.1);
  }
}
@media (min-width: 1440px) {
  .p-header-search-field {
    padding: 0.625rem 2.625rem 0.75rem 2.8125rem;
    width: 13.125rem;
  }
}
@media (min-width: 1650px) {
  .p-header-search-field {
    padding: 0.75rem 2.875rem 0.8125rem 3.0625rem;
    width: 15.75rem;
  }
}
.p-header-search-field::-ms-clear {
  display: none;
}
.p-header-search-field::-ms-clear, .p-header-search-field::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}
.p-header-search-field::-webkit-search-decoration, .p-header-search-field::-webkit-search-cancel-button, .p-header-search-field::-webkit-search-results-button, .p-header-search-field::-webkit-search-results-decoration {
  display: none;
}
.p-header-search-field:focus {
  border-color: rgba(255, 255, 255, 0.1);
}
.p-header-search-field:focus::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.3;
}
.p-header-search-field:focus::-moz-placeholder {
  color: #fff;
  opacity: 1;
  opacity: 0.3;
}
.p-header-search-field:focus:-moz-placeholder {
  color: #fff;
  opacity: 1;
  opacity: 0.3;
}
.p-header-search-field:focus:-ms-input-placeholder {
  color: #fff;
  opacity: 0.3;
}

/*md

# Mobile Navigation

*/
.p-mobile-nav {
  display: block;
  height: 100%;
  position: relative;
}
@media (min-width: 1200px) {
  .p-mobile-nav {
    display: none;
  }
}

.p-mobile-nav-screen {
  background-color: #fff;
  display: none;
  height: 100%;
  overflow: scroll;
  position: relative;
}
.p-mobile-nav-screen.is-active {
  display: block;
}
.p-mobile-nav-screen.is-showing {
  animation: mobileNavShowScreen 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  min-height: calc(100vh - 60px);
  z-index: 10;
}
.p-mobile-nav-screen.is-showing.is-back {
  animation-name: mobileNavShowScreenBack;
}
.p-mobile-nav-screen.is-hiding {
  animation: mobileNavHideScreen 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}
.p-mobile-nav-screen.is-hiding.is-back {
  animation-name: mobileNavHideScreenBack;
}
.p-mobile-nav-screen.p-mobile-nav-screen--spread {
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.p-mobile-nav-screen.p-mobile-nav-screen--spread.is-active, .p-mobile-nav-screen.p-mobile-nav-screen--spread.is-hiding {
  display: flex;
}

.p-mobile-nav-section.p-mobile-nav-section--small {
  padding: 2% 0;
}
.p-mobile-nav-section.p-mobile-nav-section--medium {
  padding: 8% 0 8%;
}
@media (min-width: 768px) {
  .p-mobile-nav-section.p-mobile-nav-section--medium {
    padding: 4% 0;
  }
}
.p-mobile-nav-section.p-mobile-nav-section--big {
  padding: 10% 0 15%;
}
@media (min-width: 768px) {
  .p-mobile-nav-section.p-mobile-nav-section--big {
    padding: 6% 0;
  }
}
.p-mobile-nav-section.p-mobile-nav-section--gray {
  background-color: #f6f6f6;
}
@media (max-width: 767.98px) {
  .p-mobile-nav-section.p-mobile-nav-section--gray {
    padding-bottom: 6.875rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .p-mobile-nav-section.p-mobile-nav-section--gray {
    padding-bottom: 25%;
  }
}

.p-mobile-nav-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-mobile-nav-column.p-mobile-nav-column--general {
  margin-top: 8%;
  order: 1;
}

.p-mobile-nav-container {
  display: block;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-mobile-nav-container {
    padding: 0 1.875rem;
  }
}

.p-mobile-nav-header {
  background-color: #f6f6f6;
  display: block;
  font-weight: 500;
  padding: 1.125rem 1.5rem;
  position: relative;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .p-mobile-nav-header {
    padding: 1.125rem 1.875rem;
  }
}

.p-mobile-nav-header-container {
  position: relative;
}

.p-mobile-nav-header-icon {
  height: 1.5rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
}
.p-mobile-nav-header-icon svg {
  display: block;
  height: 100%;
  width: 100%;
}

.p-mobile-nav-link {
  color: #181818;
  cursor: pointer;
  display: block;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 0 1.5rem;
  position: relative;
  text-decoration: none;
}
.p-mobile-nav-section--big .p-mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-mobile-nav-link {
    padding: 0 1.875rem;
  }
}
.p-mobile-nav-link:hover, .p-mobile-nav-link:active, .p-mobile-nav-link:focus {
  text-decoration: none;
}
.p-mobile-nav-link:hover .p-mobile-nav-inner, .p-mobile-nav-link:active .p-mobile-nav-inner, .p-mobile-nav-link:focus .p-mobile-nav-inner {
  background-color: #f6f6f6;
}
.p-mobile-nav-link:hover .p-mobile-nav-inner::after, .p-mobile-nav-link:active .p-mobile-nav-inner::after, .p-mobile-nav-link:focus .p-mobile-nav-inner::after {
  opacity: 0;
}
.p-mobile-nav-link.p-mobile-nav-link--highlight {
  color: #ba2026;
}

.p-mobile-nav-inner {
  display: block;
  padding: 0.625rem 0;
  position: relative;
  transition: background-color 0.15s;
}
@media (min-width: 768px) {
  .p-mobile-nav-inner {
    padding: 0.625rem 0;
  }
}
.p-mobile-nav-inner::after {
  background-color: #eee;
  content: "";
  display: block;
  height: 0.0625rem;
  left: 0;
  position: absolute;
  top: 100%;
  transition: 0.15s opacity;
  width: 100%;
}

.p-mobile-nav-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 33.4375rem;
}
@media (max-width: 1023.98px) {
  .p-mobile-nav-center {
    width: 86%;
  }
}
@media (min-width: 768px) {
  .p-mobile-nav-center {
    max-width: 32.5rem;
  }
}

.p-mobile-nav-icon {
  height: 1.5rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
}
.p-mobile-nav-icon svg {
  display: block;
  width: 100%;
}

.p-mobile-nav-footer-link {
  color: #181818;
  cursor: pointer;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5rem;
  padding: 1rem 1.375rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.15s color;
}
@media (min-width: 768px) {
  .p-mobile-nav-footer-link {
    padding: 0.625rem 0;
  }
}
.p-mobile-nav-footer-link:hover, .p-mobile-nav-footer-link:active, .p-mobile-nav-footer-link:focus {
  text-decoration: none;
}
.p-mobile-nav-footer-link:hover span::after, .p-mobile-nav-footer-link:active span::after, .p-mobile-nav-footer-link:focus span::after {
  left: 0;
  right: auto;
  width: 100%;
}
.p-mobile-nav-footer-link.p-mobile-nav-footer-link--top {
  padding-top: 0;
}
.p-mobile-nav-footer-link span {
  position: relative;
}
.p-mobile-nav-footer-link span::before, .p-mobile-nav-footer-link span::after {
  background-color: #ccc;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.p-mobile-nav-footer-link span::after {
  background-color: #777;
  left: auto;
  right: 0;
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}

.p-mobile-nav-group {
  margin-bottom: 2.1875rem;
}
.p-mobile-nav-group:last-child {
  margin-bottom: 0;
}

.p-mobile-nav-group-subtitle {
  color: #181818;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .p-mobile-nav-group-subtitle {
    padding: 0;
  }
}

@media (max-width: 1023.98px) {
  .p-mobile-nav-inner {
    padding-right: 1.125rem;
  }
}

.p-mobile-nav-header-container .p-mobile-nav-header-icon {
  top: 25%;
}
.p-mobile-nav-header-container .p-mobile-nav-container .p-mobile-nav-section.p-mobile-nav-section--big,
.p-mobile-nav-header-container .p-mobile-nav-container .p-mobile-nav-footer-link {
  padding: 0;
}

/*md

# Mini cart

*/
.card.bonus-product-button {
  align-items: center;
  background-color: #fafafa;
  border: 0;
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  font-weight: 700;
  justify-content: space-between;
  margin: 1.25rem 0 0;
  padding: 0.625rem 1.25rem;
  width: 100%;
}
@media (max-width: 767.98px) {
  .card.bonus-product-button span {
    font-size: 0.75rem;
  }
}

.remove-product-modal .btn-underline-link,
.card.bonus-product-button .btn-underline-link {
  border: none;
  padding-bottom: 0.1875rem;
  position: relative;
  transition: 0.15s color;
  color: #181818;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
  text-decoration: none;
  text-transform: uppercase;
}
.remove-product-modal .btn-underline-link:hover, .remove-product-modal .btn-underline-link:active, .remove-product-modal .btn-underline-link:focus,
.card.bonus-product-button .btn-underline-link:hover,
.card.bonus-product-button .btn-underline-link:active,
.card.bonus-product-button .btn-underline-link:focus {
  color: #181818;
  text-decoration: none;
}
.remove-product-modal .btn-underline-link:hover::after, .remove-product-modal .btn-underline-link:active::after, .remove-product-modal .btn-underline-link:focus::after,
.card.bonus-product-button .btn-underline-link:hover::after,
.card.bonus-product-button .btn-underline-link:active::after,
.card.bonus-product-button .btn-underline-link:focus::after {
  left: 0;
  right: auto;
  width: 100%;
}
.remove-product-modal .btn-underline-link::before, .remove-product-modal .btn-underline-link::after,
.card.bonus-product-button .btn-underline-link::before,
.card.bonus-product-button .btn-underline-link::after {
  background-color: #ccc;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.remove-product-modal .btn-underline-link::after,
.card.bonus-product-button .btn-underline-link::after {
  background-color: #777;
  left: auto;
  right: 0;
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}

.p-minicart {
  box-shadow: 0.625rem 0.625rem 0.625rem 0.9375rem rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 0 0 0 1.875rem;
  position: relative;
}
.p-minicart .p-cart-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.875rem;
  margin: 0 1.25rem 1.25rem 0;
  text-transform: capitalize;
}
.p-minicart .grand-total-number {
  color: #191919;
  font-weight: 400;
}
.p-minicart .p-product-info {
  border: 1px solid #eee;
  border-radius: 2px;
  display: flex;
  flex-wrap: nowrap;
  margin: 1.25rem 0 0 0;
  padding: 1.25rem;
}
.p-minicart .p-product-info.m-single-bonus-parent {
  padding-top: 5.25rem;
  position: relative;
}
.p-minicart .p-product-info .col-5,
.p-minicart .p-product-info .col-8 {
  flex: 0 0 auto;
  max-width: none;
  padding: 0;
}
.p-minicart .p-product-info-image {
  flex: 0 0 20%;
  margin-right: 0.9375rem;
  max-width: none;
  padding: 0;
  width: 20%;
}
.p-minicart .p-product-info-link {
  display: block;
  position: relative;
}
.p-minicart .p-product-info-link:hover, .p-minicart .p-product-info-link:active, .p-minicart .p-product-info-link:focus {
  text-decoration: none;
}
.p-minicart .p-product-image-wrapper {
  padding-bottom: 100%;
  position: relative;
}
.p-minicart .p-product-image {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.p-minicart .p-product-info-details {
  flex: unset;
  max-width: 100%;
  padding-right: 0;
}
@media (min-width: 1440px) {
  .p-minicart .p-product-info-details {
    padding-right: 0;
  }
}
.p-minicart .p-product-info-details .line-item-promo-callout-container:first-child {
  padding-top: 0;
}
.p-minicart .p-product-info-details .line-item-promo-callout {
  color: #ba2026;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.p-minicart .p-product-details-inner {
  align-items: flex-start;
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
}
.p-minicart .p-product-details-name {
  color: #181818;
  flex: 1 1 auto;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375rem;
  max-width: none;
  padding: 0 0.625rem 0 0;
}
@media (min-width: 1440px) {
  .p-minicart .p-product-details-name {
    line-height: 1.5rem;
  }
}
.p-minicart .price .value,
.p-minicart div[class*=item-total-],
.p-minicart div[class*=item-total-] .value {
  font-size: 1rem;
  line-height: inherit;
}
.p-minicart .p-product-details-price {
  color: #181818;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column-reverse;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  max-width: none;
  padding: 0;
  position: static;
  white-space: nowrap;
  width: auto;
}
@media (min-width: 1440px) {
  .p-minicart .p-product-details-price {
    line-height: 1.5rem;
  }
}
.p-minicart .p-product-details-price .strike-through,
.p-minicart .p-product-details-price .strike-through-none {
  font-weight: normal;
}
.p-minicart .p-product-details-price .strike-through .value,
.p-minicart .p-product-details-price .strike-through span,
.p-minicart .p-product-details-price .strike-through-none .value,
.p-minicart .p-product-details-price .strike-through-none span {
  color: #666;
}
.p-minicart .p-product-attributes {
  display: flex;
  font-size: 0.75rem;
  justify-content: space-between;
  margin-top: 0.625rem;
  padding-bottom: 0;
  position: relative;
}
@media (min-width: 1440px) {
  .p-minicart .p-product-attributes {
    margin-top: 1.25rem;
  }
}
.p-minicart .p-product-attribute {
  padding-bottom: 0;
}
.p-minicart .p-product-attribute-main {
  color: #818181;
  font-size: 0.75rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-minicart .p-product-attribute-main {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}
.p-minicart .p-product-attribute-main .p-attribute {
  margin-right: 1.25rem;
  padding: 0;
}
.p-minicart .p-product-attribute-main .p-attribute + .p-attribute {
  margin-top: 0.3125rem;
}
.p-minicart .p-product-attribute-main .p-attribute-style-number {
  display: none;
}
.p-minicart .p-product-attribute-main .p-attribute-quantity {
  margin-left: 0;
}
.p-minicart .p-product-attribute-main .p-attribute-name {
  color: #191919;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 0;
  text-transform: none;
}
.p-minicart .p-product-attribute-main .p-attribute-name::after {
  content: ":";
}
.p-minicart .p-product-attribute-main .p-attribute-value {
  color: #181818;
  text-transform: capitalize;
}
.p-minicart .p-product-attribute-main .adjust-quantity-message {
  display: block;
  max-width: 15.625rem;
}
.p-minicart .p-product-attribute-main .in-stock-icon,
.p-minicart .p-product-attribute-main .no-stock-icon {
  height: 1rem;
  margin-right: 0.125rem;
  margin-top: -0.25rem;
  width: 1rem;
}
.p-minicart .p-product-attribute-main .in-stock-icon {
  fill: #008827;
}
.p-minicart .p-product-attribute-main .no-stock-icon {
  fill: #c00;
}
.p-minicart .line-item-giftcard {
  flex: 0 0 100%;
}
.p-minicart .p-price-free {
  color: #008827;
  font-weight: 700;
  margin-bottom: 0;
}
.p-minicart .remove-product-btn .remove-product {
  position: relative;
}
.p-minicart .remove-product-btn .remove-icon {
  height: 1.25rem;
  width: 1.25rem;
}
.p-minicart .bonus-line-item-msg {
  background-color: #fafafa;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.25rem;
  padding: 0.625rem 1.25rem;
}
.p-minicart .bonus-line-item-msg.m-single-bonus-title {
  left: 1.25rem;
  position: absolute;
  right: 1.25rem;
  top: 0;
}
.p-minicart .p-cart-total {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  margin: 1.25rem 0;
  text-transform: none;
}
@media (min-width: 1440px) {
  .p-minicart .p-cart-total {
    margin: 2.1875rem 0;
  }
}
.p-minicart .p-cart-total p {
  color: #181818;
  font-size: 1rem;
  margin: 0;
}
@media (min-width: 1440px) {
  .p-minicart .p-cart-total p {
    font-size: 1.125rem;
  }
}
.p-minicart .p-cart-total .col-8 {
  flex-grow: 1;
}
.p-minicart .p-cart-total .col-4 {
  flex-shrink: 0;
}
.p-minicart .p-cart-total-row {
  display: flex;
  line-height: 1.5rem;
  margin: 0 0 0.625rem;
}
.p-minicart .p-cart-total-line {
  background-color: #181818;
  border: 0;
  height: 0.1375rem;
  margin: 0.9375rem 0;
  width: 100%;
}
@media (min-width: 1440px) {
  .p-minicart .p-cart-total-line {
    margin: 1.5625rem 0;
  }
}
.p-minicart .hide-shipping-discount,
.p-minicart .hide-order-discount {
  display: none;
}
.p-minicart .icon-lock {
  fill: #fff;
  height: 1.125rem;
  margin-right: 0.625rem;
  width: 1rem;
}
.p-minicart .btn {
  border-radius: 0.125rem;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8125rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.p-minicart .btn:disabled, .p-minicart .btn.disabled {
  background-color: #eee;
  color: #919191;
  cursor: not-allowed;
}
.p-minicart .btn:disabled:hover, .p-minicart .btn.disabled:hover {
  background-color: #eee;
}
.p-minicart .btn:disabled .icon-lock, .p-minicart .btn.disabled .icon-lock {
  fill: #919191;
}
.p-minicart .btn-primary {
  background-color: #ae946d;
  border-color: #ae946d;
  color: #fff;
  outline: none;
  transition: 0.15s background-color;
}
.p-minicart .btn-primary:hover, .p-minicart .btn-primary:active, .p-minicart .btn-primary:focus {
  background-color: rgb(183.0991189427, 160.0198237885, 125.4008810573);
  border-color: rgb(183.0991189427, 160.0198237885, 125.4008810573);
}
.p-minicart .btn-primary:focus, .p-minicart .btn-primary:active {
  box-shadow: none;
}
.p-minicart .btn-primary:not(:disabled):not(.disabled):active,
.p-minicart .btn-primary:not(:disabled):not(.disabled).active,
.p-minicart .show > .btn-primary.dropdown-toggle {
  background-color: rgb(183.0991189427, 160.0198237885, 125.4008810573);
  border-color: rgb(183.0991189427, 160.0198237885, 125.4008810573);
  box-shadow: none;
}
.p-minicart .btn-block {
  display: block;
}
.p-minicart .checkout-btn {
  align-items: center;
  display: flex;
  justify-content: center;
}
.p-minicart .paypal-button {
  background-color: #eee;
  border: 0;
  display: block;
  margin: 0.625rem 0 0;
  padding: 0.625rem;
  width: 100%;
}
.p-minicart .paypal-button:hover, .p-minicart .paypal-button:active, .p-minicart .paypal-button:focus {
  background-color: #e5e7eb;
}
.p-minicart .p-product-line {
  display: none;
}
.p-minicart .p-product-max-qty {
  display: none;
}
.p-minicart .bonus-product-parent-wrapper .p-product-info,
.p-minicart .bonus-product-parent-wrapper .bonus-product-line-item {
  border: none;
  margin: 0;
  padding: 0;
}
.p-minicart .bonus-product-parent-wrapper .p-product-info {
  margin-left: 0;
  margin-right: 0;
  margin-top: 20px;
  padding: 0;
}
.p-minicart .bonus-product-parent .p-product-info {
  margin-top: 0;
}
.p-minicart .pli-error-message {
  display: none;
}
.p-minicart .minicart-error-message {
  color: #ba2026;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .p-minicart .minicart-error-message {
    font-size: 0.875rem;
  }
}
.p-minicart .p-price-new {
  color: #ba2026;
  font-weight: 700;
}
.p-minicart .p-price-old {
  color: #545454;
}
.p-minicart .p-price-standard {
  font-weight: 700;
}
.p-minicart .line-item-quantity {
  padding: 0;
}
.p-minicart .quantity-form {
  margin-bottom: 0;
  margin-top: 0.625rem;
  max-width: 5.625rem;
}
.p-minicart .quantity-form .form-group {
  margin-bottom: 0;
}
.p-minicart .quantity-form .select-mask__overlay__display {
  height: 2.625rem;
}
.p-minicart .quantity-form .select-mask__overlay__text {
  padding: 0.4375rem 1rem;
}
.p-minicart .quantity-form .select-mask__overlay__value {
  font-size: 1rem;
  font-weight: 400;
}
.p-minicart .quantity-form .select-mask__overlay__icon {
  height: 0.625rem;
  width: 0.625rem;
}

.p-minicart-close {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 0;
  padding: 0;
  position: absolute;
  right: 1.875rem;
  top: 1.25rem;
  z-index: 20;
}
.p-minicart-close svg {
  fill: #181818;
  height: 1.25rem;
  width: 1.25rem;
}
@media (min-width: 1440px) {
  .p-minicart-close svg {
    height: 1.375rem;
    width: 1.375rem;
  }
}
@media (min-width: 1650px) {
  .p-minicart-close svg {
    height: 1.5rem;
    width: 1.5rem;
  }
}

.p-minicart-row {
  flex: 1 0 100%;
  max-width: 100%;
}
.p-minicart-row.hidden {
  display: none;
}
.p-minicart-row .info-tooltip::before {
  margin-left: 0.0625rem;
}
.p-minicart-row .paypal-btn-text,
.p-minicart-row .paypal-btn-image,
.p-minicart-row .paypal-button-image {
  display: inline-block;
  vertical-align: middle;
}
.p-minicart-row .paypal-btn-image,
.p-minicart-row .paypal-button-image {
  height: 1.375rem;
}
.p-minicart-row .paypal-btn-text {
  display: none;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.125rem;
}
.p-minicart-row .applepay-terms {
  font-size: 0.75rem;
  line-height: 1rem;
  margin: 0.625rem 0 1.25rem;
  padding: 0 0.625rem;
}
.p-minicart-row .paypal-applepay-btns {
  display: flex;
  margin: 0 -0.25rem;
}
.p-minicart-row .paypalcheckout:not(.checkout-button),
.p-minicart-row .applepay-container {
  margin: 0 0.25rem;
  width: 100%;
}

.p-minicart-view-bag {
  display: flex;
  justify-content: center;
  margin-top: 0.625rem;
}

.p-minicart-view-bag-link {
  color: #181818;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.125rem;
  padding-bottom: 0.1875rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s color;
}
.p-minicart-view-bag-link:hover, .p-minicart-view-bag-link:active, .p-minicart-view-bag-link:focus {
  text-decoration: none;
}
.p-minicart-view-bag-link:hover::after, .p-minicart-view-bag-link:active::after, .p-minicart-view-bag-link:focus::after {
  left: 0;
  right: auto;
  width: 100%;
}
.p-minicart-view-bag-link::before, .p-minicart-view-bag-link::after {
  background-color: #ccc;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.p-minicart-view-bag-link::after {
  background-color: #777;
  left: auto;
  right: 0;
  transition: width 0.3 cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}

.p-minicart-scroll-wrapper {
  max-height: 100%;
  overflow: auto;
  padding-right: 1.875rem;
  padding-top: 1.25rem;
  position: relative;
}
.p-minicart-scroll-wrapper::-webkit-scrollbar {
  width: 10px;
}
.p-minicart-scroll-wrapper::-webkit-scrollbar-track {
  background: #eee;
}
.p-minicart-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
}
.p-minicart-scroll-wrapper::-webkit-scrollbar-thumb:window-inactive {
  background: #ccc;
}
.p-minicart-scroll-wrapper .card {
  margin: 1.25rem 0 0;
  padding: 1.25rem;
}

.p-minicart-totals .p-cart-total-grand {
  color: #181818;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  margin-bottom: 0;
}
@media (min-width: 1440px) {
  .p-minicart-totals .p-cart-total-grand {
    line-height: 1.5rem;
  }
}
.p-minicart-totals .text-shipping-cost,
.p-minicart-totals .shipping-cost {
  font-size: 1.125rem;
  margin-bottom: 0;
}
.p-minicart-totals .grand-total-incl-vat .p-cart-total-grand {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
}
.p-minicart-totals .including-vat {
  color: #191919;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  padding-top: 0;
  text-transform: none;
}
.p-minicart-totals .totals-text-error {
  color: #ba2026;
  font-size: 0.875rem;
}

.p-minicart-footer {
  padding: 1.875rem 1.875rem 1.25rem 0;
  position: relative;
}
.p-minicart-footer .cart-shipping-message svg {
  display: none;
}
.p-minicart-footer .cart-shipping-message,
.p-minicart-footer .single-approaching-discount {
  border: none;
  color: #008827;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  text-align: left !important;
}

.shipping-cost-wrapper .shipping-cost {
  display: block;
}
.shipping-cost-wrapper .shipping-cost.surcharge-adjusted {
  display: none;
}
.shipping-cost-wrapper.show-surcharge-total .shipping-cost {
  display: none;
}
.shipping-cost-wrapper.show-surcharge-total .shipping-cost.surcharge-adjusted {
  display: block;
}

/*md

# Mini cart

*/
.card.bonus-product-button {
  align-items: center;
  background-color: #fafafa;
  border: 0;
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  font-weight: 700;
  justify-content: space-between;
  margin: 1.25rem 0 0;
  padding: 0.625rem 1.25rem;
  width: 100%;
}
@media (max-width: 767.98px) {
  .card.bonus-product-button span {
    font-size: 0.75rem;
  }
}

.remove-product-modal .btn-underline-link,
.card.bonus-product-button .btn-underline-link {
  border: none;
  padding-bottom: 0.1875rem;
  position: relative;
  transition: 0.15s color;
  color: #181818;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
  text-decoration: none;
  text-transform: uppercase;
}
.remove-product-modal .btn-underline-link:hover, .remove-product-modal .btn-underline-link:active, .remove-product-modal .btn-underline-link:focus,
.card.bonus-product-button .btn-underline-link:hover,
.card.bonus-product-button .btn-underline-link:active,
.card.bonus-product-button .btn-underline-link:focus {
  color: #181818;
  text-decoration: none;
}
.remove-product-modal .btn-underline-link:hover::after, .remove-product-modal .btn-underline-link:active::after, .remove-product-modal .btn-underline-link:focus::after,
.card.bonus-product-button .btn-underline-link:hover::after,
.card.bonus-product-button .btn-underline-link:active::after,
.card.bonus-product-button .btn-underline-link:focus::after {
  left: 0;
  right: auto;
  width: 100%;
}
.remove-product-modal .btn-underline-link::before, .remove-product-modal .btn-underline-link::after,
.card.bonus-product-button .btn-underline-link::before,
.card.bonus-product-button .btn-underline-link::after {
  background-color: #ccc;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.remove-product-modal .btn-underline-link::after,
.card.bonus-product-button .btn-underline-link::after {
  background-color: #777;
  left: auto;
  right: 0;
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}

.p-minicart {
  box-shadow: 0.625rem 0.625rem 0.625rem 0.9375rem rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 0 0 0 1.875rem;
  position: relative;
}
.p-minicart .p-cart-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.875rem;
  margin: 0 1.25rem 1.25rem 0;
  text-transform: capitalize;
}
.p-minicart .grand-total-number {
  color: #191919;
  font-weight: 400;
}
.p-minicart .p-product-info {
  border: 1px solid #eee;
  border-radius: 2px;
  display: flex;
  flex-wrap: nowrap;
  margin: 1.25rem 0 0 0;
  padding: 1.25rem;
}
.p-minicart .p-product-info.m-single-bonus-parent {
  padding-top: 5.25rem;
  position: relative;
}
.p-minicart .p-product-info .col-5,
.p-minicart .p-product-info .col-8 {
  flex: 0 0 auto;
  max-width: none;
  padding: 0;
}
.p-minicart .p-product-info-image {
  flex: 0 0 20%;
  margin-right: 0.9375rem;
  max-width: none;
  padding: 0;
  width: 20%;
}
.p-minicart .p-product-info-link {
  display: block;
  position: relative;
}
.p-minicart .p-product-info-link:hover, .p-minicart .p-product-info-link:active, .p-minicart .p-product-info-link:focus {
  text-decoration: none;
}
.p-minicart .p-product-image-wrapper {
  padding-bottom: 100%;
  position: relative;
}
.p-minicart .p-product-image {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.p-minicart .p-product-info-details {
  flex: unset;
  max-width: 100%;
  padding-right: 0;
}
@media (min-width: 1440px) {
  .p-minicart .p-product-info-details {
    padding-right: 0;
  }
}
.p-minicart .p-product-info-details .line-item-promo-callout-container:first-child {
  padding-top: 0;
}
.p-minicart .p-product-info-details .line-item-promo-callout {
  color: #ba2026;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.p-minicart .p-product-details-inner {
  align-items: flex-start;
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
}
.p-minicart .p-product-details-name {
  color: #181818;
  flex: 1 1 auto;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375rem;
  max-width: none;
  padding: 0 0.625rem 0 0;
}
@media (min-width: 1440px) {
  .p-minicart .p-product-details-name {
    line-height: 1.5rem;
  }
}
.p-minicart .price .value,
.p-minicart div[class*=item-total-],
.p-minicart div[class*=item-total-] .value {
  font-size: 1rem;
  line-height: inherit;
}
.p-minicart .p-product-details-price {
  color: #181818;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column-reverse;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  max-width: none;
  padding: 0;
  position: static;
  white-space: nowrap;
  width: auto;
}
@media (min-width: 1440px) {
  .p-minicart .p-product-details-price {
    line-height: 1.5rem;
  }
}
.p-minicart .p-product-details-price .strike-through,
.p-minicart .p-product-details-price .strike-through-none {
  font-weight: normal;
}
.p-minicart .p-product-details-price .strike-through .value,
.p-minicart .p-product-details-price .strike-through span,
.p-minicart .p-product-details-price .strike-through-none .value,
.p-minicart .p-product-details-price .strike-through-none span {
  color: #666;
}
.p-minicart .p-product-attributes {
  display: flex;
  font-size: 0.75rem;
  justify-content: space-between;
  margin-top: 0.625rem;
  padding-bottom: 0;
  position: relative;
}
@media (min-width: 1440px) {
  .p-minicart .p-product-attributes {
    margin-top: 1.25rem;
  }
}
.p-minicart .p-product-attribute {
  padding-bottom: 0;
}
.p-minicart .p-product-attribute-main {
  color: #818181;
  font-size: 0.75rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-minicart .p-product-attribute-main {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}
.p-minicart .p-product-attribute-main .p-attribute {
  margin-right: 1.25rem;
  padding: 0;
}
.p-minicart .p-product-attribute-main .p-attribute + .p-attribute {
  margin-top: 0.3125rem;
}
.p-minicart .p-product-attribute-main .p-attribute-style-number {
  display: none;
}
.p-minicart .p-product-attribute-main .p-attribute-quantity {
  margin-left: 0;
}
.p-minicart .p-product-attribute-main .p-attribute-name {
  color: #191919;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 0;
  text-transform: none;
}
.p-minicart .p-product-attribute-main .p-attribute-name::after {
  content: ":";
}
.p-minicart .p-product-attribute-main .p-attribute-value {
  color: #181818;
  text-transform: capitalize;
}
.p-minicart .p-product-attribute-main .adjust-quantity-message {
  display: block;
  max-width: 15.625rem;
}
.p-minicart .p-product-attribute-main .in-stock-icon,
.p-minicart .p-product-attribute-main .no-stock-icon {
  height: 1rem;
  margin-right: 0.125rem;
  margin-top: -0.25rem;
  width: 1rem;
}
.p-minicart .p-product-attribute-main .in-stock-icon {
  fill: #008827;
}
.p-minicart .p-product-attribute-main .no-stock-icon {
  fill: #c00;
}
.p-minicart .line-item-giftcard {
  flex: 0 0 100%;
}
.p-minicart .p-price-free {
  color: #008827;
  font-weight: 700;
  margin-bottom: 0;
}
.p-minicart .remove-product-btn .remove-product {
  position: relative;
}
.p-minicart .remove-product-btn .remove-icon {
  height: 1.25rem;
  width: 1.25rem;
}
.p-minicart .bonus-line-item-msg {
  background-color: #fafafa;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.25rem;
  padding: 0.625rem 1.25rem;
}
.p-minicart .bonus-line-item-msg.m-single-bonus-title {
  left: 1.25rem;
  position: absolute;
  right: 1.25rem;
  top: 0;
}
.p-minicart .p-cart-total {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  margin: 1.25rem 0;
  text-transform: none;
}
@media (min-width: 1440px) {
  .p-minicart .p-cart-total {
    margin: 2.1875rem 0;
  }
}
.p-minicart .p-cart-total p {
  color: #181818;
  font-size: 1rem;
  margin: 0;
}
@media (min-width: 1440px) {
  .p-minicart .p-cart-total p {
    font-size: 1.125rem;
  }
}
.p-minicart .p-cart-total .col-8 {
  flex-grow: 1;
}
.p-minicart .p-cart-total .col-4 {
  flex-shrink: 0;
}
.p-minicart .p-cart-total-row {
  display: flex;
  line-height: 1.5rem;
  margin: 0 0 0.625rem;
}
.p-minicart .p-cart-total-line {
  background-color: #181818;
  border: 0;
  height: 0.1375rem;
  margin: 0.9375rem 0;
  width: 100%;
}
@media (min-width: 1440px) {
  .p-minicart .p-cart-total-line {
    margin: 1.5625rem 0;
  }
}
.p-minicart .hide-shipping-discount,
.p-minicart .hide-order-discount {
  display: none;
}
.p-minicart .icon-lock {
  fill: #fff;
  height: 1.125rem;
  margin-right: 0.625rem;
  width: 1rem;
}
.p-minicart .btn {
  border-radius: 0.125rem;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8125rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.p-minicart .btn:disabled, .p-minicart .btn.disabled {
  background-color: #eee;
  color: #919191;
  cursor: not-allowed;
}
.p-minicart .btn:disabled:hover, .p-minicart .btn.disabled:hover {
  background-color: #eee;
}
.p-minicart .btn:disabled .icon-lock, .p-minicart .btn.disabled .icon-lock {
  fill: #919191;
}
.p-minicart .btn-primary {
  background-color: #ae946d;
  border-color: #ae946d;
  color: #fff;
  outline: none;
  transition: 0.15s background-color;
}
.p-minicart .btn-primary:hover, .p-minicart .btn-primary:active, .p-minicart .btn-primary:focus {
  background-color: rgb(183.0991189427, 160.0198237885, 125.4008810573);
  border-color: rgb(183.0991189427, 160.0198237885, 125.4008810573);
}
.p-minicart .btn-primary:focus, .p-minicart .btn-primary:active {
  box-shadow: none;
}
.p-minicart .btn-primary:not(:disabled):not(.disabled):active,
.p-minicart .btn-primary:not(:disabled):not(.disabled).active,
.p-minicart .show > .btn-primary.dropdown-toggle {
  background-color: rgb(183.0991189427, 160.0198237885, 125.4008810573);
  border-color: rgb(183.0991189427, 160.0198237885, 125.4008810573);
  box-shadow: none;
}
.p-minicart .btn-block {
  display: block;
}
.p-minicart .checkout-btn {
  align-items: center;
  display: flex;
  justify-content: center;
}
.p-minicart .paypal-button {
  background-color: #eee;
  border: 0;
  display: block;
  margin: 0.625rem 0 0;
  padding: 0.625rem;
  width: 100%;
}
.p-minicart .paypal-button:hover, .p-minicart .paypal-button:active, .p-minicart .paypal-button:focus {
  background-color: #e5e7eb;
}
.p-minicart .p-product-line {
  display: none;
}
.p-minicart .p-product-max-qty {
  display: none;
}
.p-minicart .bonus-product-parent-wrapper .p-product-info,
.p-minicart .bonus-product-parent-wrapper .bonus-product-line-item {
  border: none;
  margin: 0;
  padding: 0;
}
.p-minicart .bonus-product-parent-wrapper .p-product-info {
  margin-left: 0;
  margin-right: 0;
  margin-top: 20px;
  padding: 0;
}
.p-minicart .bonus-product-parent .p-product-info {
  margin-top: 0;
}
.p-minicart .pli-error-message {
  display: none;
}
.p-minicart .minicart-error-message {
  color: #ba2026;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .p-minicart .minicart-error-message {
    font-size: 0.875rem;
  }
}
.p-minicart .p-price-new {
  color: #ba2026;
  font-weight: 700;
}
.p-minicart .p-price-old {
  color: #545454;
}
.p-minicart .p-price-standard {
  font-weight: 700;
}
.p-minicart .line-item-quantity {
  padding: 0;
}
.p-minicart .quantity-form {
  margin-bottom: 0;
  margin-top: 0.625rem;
  max-width: 5.625rem;
}
.p-minicart .quantity-form .form-group {
  margin-bottom: 0;
}
.p-minicart .quantity-form .select-mask__overlay__display {
  height: 2.625rem;
}
.p-minicart .quantity-form .select-mask__overlay__text {
  padding: 0.4375rem 1rem;
}
.p-minicart .quantity-form .select-mask__overlay__value {
  font-size: 1rem;
  font-weight: 400;
}
.p-minicart .quantity-form .select-mask__overlay__icon {
  height: 0.625rem;
  width: 0.625rem;
}

.p-minicart-close {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 0;
  padding: 0;
  position: absolute;
  right: 1.875rem;
  top: 1.25rem;
  z-index: 20;
}
.p-minicart-close svg {
  fill: #181818;
  height: 1.25rem;
  width: 1.25rem;
}
@media (min-width: 1440px) {
  .p-minicart-close svg {
    height: 1.375rem;
    width: 1.375rem;
  }
}
@media (min-width: 1650px) {
  .p-minicart-close svg {
    height: 1.5rem;
    width: 1.5rem;
  }
}

.p-minicart-row {
  flex: 1 0 100%;
  max-width: 100%;
}
.p-minicart-row.hidden {
  display: none;
}
.p-minicart-row .info-tooltip::before {
  margin-left: 0.0625rem;
}
.p-minicart-row .paypal-btn-text,
.p-minicart-row .paypal-btn-image,
.p-minicart-row .paypal-button-image {
  display: inline-block;
  vertical-align: middle;
}
.p-minicart-row .paypal-btn-image,
.p-minicart-row .paypal-button-image {
  height: 1.375rem;
}
.p-minicart-row .paypal-btn-text {
  display: none;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.125rem;
}
.p-minicart-row .applepay-terms {
  font-size: 0.75rem;
  line-height: 1rem;
  margin: 0.625rem 0 1.25rem;
  padding: 0 0.625rem;
}
.p-minicart-row .paypal-applepay-btns {
  display: flex;
  margin: 0 -0.25rem;
}
.p-minicart-row .paypalcheckout:not(.checkout-button),
.p-minicart-row .applepay-container {
  margin: 0 0.25rem;
  width: 100%;
}

.p-minicart-view-bag {
  display: flex;
  justify-content: center;
  margin-top: 0.625rem;
}

.p-minicart-view-bag-link {
  color: #181818;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.125rem;
  padding-bottom: 0.1875rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s color;
}
.p-minicart-view-bag-link:hover, .p-minicart-view-bag-link:active, .p-minicart-view-bag-link:focus {
  text-decoration: none;
}
.p-minicart-view-bag-link:hover::after, .p-minicart-view-bag-link:active::after, .p-minicart-view-bag-link:focus::after {
  left: 0;
  right: auto;
  width: 100%;
}
.p-minicart-view-bag-link::before, .p-minicart-view-bag-link::after {
  background-color: #ccc;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.p-minicart-view-bag-link::after {
  background-color: #777;
  left: auto;
  right: 0;
  transition: width 0.3 cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}

.p-minicart-scroll-wrapper {
  max-height: 100%;
  overflow: auto;
  padding-right: 1.875rem;
  padding-top: 1.25rem;
  position: relative;
}
.p-minicart-scroll-wrapper::-webkit-scrollbar {
  width: 10px;
}
.p-minicart-scroll-wrapper::-webkit-scrollbar-track {
  background: #eee;
}
.p-minicart-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
}
.p-minicart-scroll-wrapper::-webkit-scrollbar-thumb:window-inactive {
  background: #ccc;
}
.p-minicart-scroll-wrapper .card {
  margin: 1.25rem 0 0;
  padding: 1.25rem;
}

.p-minicart-totals .p-cart-total-grand {
  color: #181818;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  margin-bottom: 0;
}
@media (min-width: 1440px) {
  .p-minicart-totals .p-cart-total-grand {
    line-height: 1.5rem;
  }
}
.p-minicart-totals .text-shipping-cost,
.p-minicart-totals .shipping-cost {
  font-size: 1.125rem;
  margin-bottom: 0;
}
.p-minicart-totals .grand-total-incl-vat .p-cart-total-grand {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
}
.p-minicart-totals .including-vat {
  color: #191919;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  padding-top: 0;
  text-transform: none;
}
.p-minicart-totals .totals-text-error {
  color: #ba2026;
  font-size: 0.875rem;
}

.p-minicart-footer {
  padding: 1.875rem 1.875rem 1.25rem 0;
  position: relative;
}
.p-minicart-footer .cart-shipping-message svg {
  display: none;
}
.p-minicart-footer .cart-shipping-message,
.p-minicart-footer .single-approaching-discount {
  border: none;
  color: #008827;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  text-align: left !important;
}

.shipping-cost-wrapper .shipping-cost {
  display: block;
}
.shipping-cost-wrapper .shipping-cost.surcharge-adjusted {
  display: none;
}
.shipping-cost-wrapper.show-surcharge-total .shipping-cost {
  display: none;
}
.shipping-cost-wrapper.show-surcharge-total .shipping-cost.surcharge-adjusted {
  display: block;
}

.cart-page-preorder-status {
  background-color: #fafafa;
  border: 1px solid #ccc;
  color: #222;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.875rem;
  padding: 0.5rem;
  width: 100%;
}
.cart-page-preorder-status .content-asset {
  color: #222;
  margin-right: 0.3125rem;
}
.cart-page-preorder-status span {
  color: #222;
  font-weight: 800;
}

.cart-page-preorder-status-time {
  font-size: 0.625rem;
  margin-bottom: 0.625rem;
  margin-top: 0.625rem;
  text-transform: uppercase;
}

.p-minicart div[class*=item-total-] .p-price-old,
.p-minicart div[class*=item-total-] .value .p-price-old {
  font-size: 0.75rem;
}
.p-minicart div[class*=item-total-] .p-price-old .value,
.p-minicart div[class*=item-total-] .value .p-price-old .value {
  font-size: 0.75rem;
}
.p-minicart div[class*=item-total-] .p-price-old .discount-percentage-value,
.p-minicart div[class*=item-total-] .value .p-price-old .discount-percentage-value {
  color: #ba2026;
  font-size: 0.75rem;
}

.p-minicart-row .paypal-content {
  margin-top: 0.625rem;
  padding: 0;
  width: 100%;
}

.p-minicart .cart-empty {
  margin-top: 3.75rem;
}
.cart-empty .cart-error-message {
  margin-bottom: 2.5rem;
}
.p-minicart .cart-empty .cart-error-message {
  color: #ba2026;
  margin-bottom: 1.875rem;
  padding: 0 3.125rem;
  text-align: center;
}

.cart-empty-message {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .cart-empty-message {
    font-size: 1.5rem;
  }
}

.cart-empty-icon {
  margin-bottom: 0.625rem;
}
.cart-empty-icon .icon {
  height: 4.375rem;
  width: 4.375rem;
}

.cart-empty-login {
  color: #181818;
  font-size: 1.125rem;
  margin-bottom: 2.8125rem;
}

.cart-empty-login-link {
  border: none;
  padding-bottom: 0.1875rem;
  position: relative;
  transition: 0.15s color;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.cart-empty-login-link:hover, .cart-empty-login-link:active, .cart-empty-login-link:focus {
  color: #181818;
  text-decoration: none;
}
.cart-empty-login-link:hover::after, .cart-empty-login-link:active::after, .cart-empty-login-link:focus::after {
  left: 0;
  right: auto;
  width: 100%;
}
.cart-empty-login-link::before, .cart-empty-login-link::after {
  background-color: #ccc;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.cart-empty-login-link::after {
  background-color: #777;
  left: auto;
  right: 0;
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}

.cart-empty-buttons {
  margin: 0 auto;
}
.p-minicart .cart-empty-buttons {
  display: none;
}
@media (min-width: 768px) {
  .cart-empty-buttons {
    max-width: 28.125rem;
  }
}
@media (min-width: 1200px) {
  .cart-empty-buttons {
    max-width: 37.5rem;
  }
}
.cart-empty-buttons .content-asset {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cart-empty-buttons a {
  background-color: #fff;
  border: 1px solid #181818;
  color: #181818;
  flex: 0 0 45%;
  font-weight: 700;
  margin: 0 0.5rem 0.5rem 0;
  max-width: 45%;
  padding: 0.5rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease 0s;
}
.cart-empty-buttons a:hover, .cart-empty-buttons a:active, .cart-empty-buttons a:focus {
  background-color: #181818;
  color: #fff;
}

.p-minicart .cart-empty-buttons {
  display: block;
}
.cart-empty-buttons a.btn-primary {
  background-color: #191919;
  border-color: #191919;
  border-radius: 2px;
  color: #fff;
  flex: 0 0 100%;
  max-width: calc(90% + 8px);
}
.cart-empty-buttons a.btn-primary:hover, .cart-empty-buttons a.btn-primary:active, .cart-empty-buttons a.btn-primary:focus {
  background-color: #191919;
  box-shadow: 0 0 0 3px rgba(38, 38, 38, 0.5) !important;
}
.cart-empty-buttons a.btn-primary:not(:disabled):not(.disabled):active {
  background-color: #191919;
  border-color: #191919;
}

.p-footer {
  background-color: #181818;
  color: #fff;
  display: block;
  padding-top: 3.125rem;
}
@media (min-width: 768px) {
  .p-footer {
    padding: 4.375rem 0;
  }
}
@media (min-width: 1440px) {
  .p-footer {
    padding: 5.625rem 0;
  }
}

.p-footer-container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .p-footer-container {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .p-footer-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.p-footer-container::after {
  clear: both;
  content: "";
  display: table;
}

.p-footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-footer-top {
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 1440px) {
  .p-footer-top {
    padding-bottom: 1.25rem;
  }
}

.p-footer-logo-link {
  display: none;
}
@media (min-width: 768px) {
  .p-footer-logo-link {
    display: block;
  }
}

.p-footer-logo {
  display: block;
  padding: 0.625rem;
}
@media (min-width: 1024px) {
  .p-footer-logo {
    opacity: 1;
    transform: none;
  }
}
.p-footer-logo .icon {
  display: block;
  height: 2.375rem;
  width: 2.375rem;
}
@media (min-width: 1440px) {
  .p-footer-logo .icon {
    height: 2.6875rem;
    width: 2.6875rem;
  }
}
@media (min-width: 1650px) {
  .p-footer-logo .icon {
    height: 3rem;
    width: 3rem;
  }
}
.p-footer-logo svg {
  fill: #fff;
}

@media (min-width: 768px) {
  .p-footer-section {
    padding-right: 0.5rem;
  }
}

.p-footer-section-inner {
  position: relative;
}
@media (min-width: 768px) {
  .p-footer-section-inner {
    border-top: 2px solid #fff;
    padding-top: 2rem;
  }
  .p-footer-nav-underlined .p-footer-section-inner {
    border-top: 0;
    padding-top: 0;
  }
}

.p-footer-section-title {
  font-weight: 500;
  position: relative;
}
@media (max-width: 767.98px) {
  .p-footer-section-title {
    cursor: pointer;
    padding: 0.625rem 0;
  }
}
@media (min-width: 768px) {
  .p-footer-section-title {
    margin-bottom: 0.625rem;
    pointer-events: none;
  }
  .p-footer-nav-underlined .p-footer-section-title {
    border-bottom: 2px solid #fff;
    margin-bottom: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}
.p-footer-section-title h2 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-footer-section-title--button {
  background: none;
  border: none;
  color: #fff;
  display: block;
  text-align: left;
  width: 100%;
}

.p-footer-link, .p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings {
  color: #818181;
  display: block;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  text-decoration: none;
  transition: color 0.15s;
}
@media (min-width: 768px) {
  .p-footer-link, .p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings {
    padding: 0.1875rem 0;
  }
}
.p-footer-link:hover, .p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings:hover, .p-footer-link:active, .p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings:active, .p-footer-link:focus, .p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings:focus {
  color: #fff;
  text-decoration: none;
}
.p-footer-link.p-footer-link--meta, .p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .p-footer-link--meta.optanon-show-settings {
  margin-right: 1rem;
}
.p-footer-link.p-footer-link--meta:last-child, .p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .p-footer-link--meta.optanon-show-settings:last-child {
  margin-right: 0;
}

.p-footer-newsletter {
  width: 100%;
}
.p-footer-nav-underlined .p-footer-newsletter {
  padding-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .p-footer-nav-underlined .p-footer-newsletter {
    float: right;
    margin-bottom: 3.75rem;
    padding-bottom: 0;
  }
}
.p-footer-nav-underlined .p-footer-newsletter .p-footer-section-title {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .p-footer-newsletter {
    flex-shrink: 0;
    width: 35%;
  }
}
@media (min-width: 1200px) {
  .p-footer-newsletter {
    width: 25%;
  }
}

.p-footer-newsletter-field {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .p-footer-newsletter-field {
    margin-top: 1rem;
  }
}

.p-newsletter-signup {
  display: block;
  position: relative;
}

.p-newsletter-signup-inner {
  border-radius: 0.125rem;
  position: relative;
}

.p-newsletter-signup-button {
  background-color: #fff;
  border: 0;
  color: #191919;
  cursor: pointer;
  height: 100%;
  outline: 0;
  transition: 0.15s;
  width: 100%;
}
.p-newsletter-signup-button:hover {
  background-color: #dfe0e1;
}

.p-footer-nav {
  border-top: 2px solid #fff;
  padding-top: 1.25rem;
}
@media (min-width: 768px) {
  .p-footer-nav {
    border-top: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 0;
  }
}

.p-footer-menu {
  width: 100%;
}
.p-footer-nav-underlined .p-footer-menu {
  border-top: 2px solid #fff;
  padding-top: 1.25rem;
}
@media (min-width: 768px) {
  .p-footer-nav-underlined .p-footer-menu {
    border-top: 0;
    float: left;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .p-footer-menu {
    width: 55%;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .p-footer-menu {
    display: grid;
    grid-template-columns: 50% auto;
  }
}
@media (min-width: 1024px) {
  .p-footer-menu {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 1200px) {
  .p-footer-menu {
    width: 66.6666666667%;
  }
}
.p-footer-menu .collapse:not(.show) {
  display: none;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .p-footer-menu .collapse:not(.show) {
    display: block;
  }
}
@media (min-width: 1200px) {
  .p-footer-menu .collapse:not(.show) {
    display: flex;
  }
}
.p-footer-menu .collapsing {
  height: 0;
  overflow: hidden;
  position: relative;
  transition: height 0.35s ease;
}

.p-footer-menu-category {
  border-bottom: 1px solid rgba(238, 238, 238, 0.15);
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .p-footer-menu-category.p-footer-menu-category--span-1 {
    width: 25%;
  }
}
@media (min-width: 1024px) {
  .p-footer-menu-category.p-footer-menu-category--span-2 {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .p-footer-menu-category.p-footer-menu-category--span-3 {
    width: 75%;
  }
}
@media (min-width: 768px) {
  .p-footer-menu-category {
    border-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .p-footer-menu-category.p-footer-menu-category--span-2 {
    grid-row: 1/span 2;
  }
}

.p-footer-menu-columns {
  display: flex;
}
@media (max-width: 767.98px) {
  .p-footer-menu-columns {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .p-footer-menu-columns {
    display: block;
  }
}

.p-footer-menu-column {
  box-sizing: border-box;
  padding-right: 0.9375rem;
}
@media (max-width: 767.98px) {
  .p-footer-menu-column {
    padding-bottom: 0.9375rem;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .p-footer-menu-column {
    flex: 1 0;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .p-footer-menu-column {
    width: 100%;
  }
}
@media only screen and (max-width: 350px) {
  .p-footer-menu-column {
    padding-bottom: 0;
    padding-right: 0;
    width: 100%;
  }
  .p-footer-menu-column:last-child {
    padding-bottom: 0.9375rem;
  }
}
.p-footer-menu-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-footer-menu-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.collapsed .p-footer-menu-icon {
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .p-footer-menu-icon {
    display: none;
  }
}
.p-footer-menu-icon .icon {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
}
.p-footer-menu-icon svg {
  fill: currentColor;
}

.storefinder-header {
  font-size: 28px;
  padding-left: 20px;
}

.storefinder-iframe {
  height: 500px;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .storefinder-iframe {
    height: 1000px;
  }
}
.p-footer-more {
  box-sizing: border-box;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .p-footer-more {
    flex-shrink: 0;
    padding: 0;
    width: 35%;
  }
  .p-footer-nav-underlined .p-footer-more {
    float: right;
  }
}
@media (min-width: 1200px) {
  .p-footer-more {
    width: 25%;
  }
}
@media (max-width: 767.98px) {
  .p-footer-more .p-footer-section-title {
    display: none;
  }
}

.p-footer-more-icon .icon {
  display: block;
  height: 1em;
  transition: transform 0.15s;
  width: 1em;
}
.p-footer-more-icon svg {
  fill: #fff;
  transition: fill 0.15s;
}

.p-footer-more-icons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 2rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-footer-more-icons {
    justify-content: flex-start;
    margin-left: -0.25em;
    margin-right: -0.25em;
    margin-top: -0.1em;
  }
}
@media (min-width: 1200px) {
  .p-footer-more-icons {
    font-size: 1.75rem;
    margin-left: -0.5em;
    margin-right: -0.5em;
    margin-top: -0.3em;
  }
  .p-footer-more-icons:hover .p-footer-more-icon svg, .p-footer-more-icons:active .p-footer-more-icon svg, .p-footer-more-icons:focus .p-footer-more-icon svg {
    fill: #777;
  }
}
@media (min-width: 1440px) {
  .p-footer-more-icons {
    font-size: 2rem;
  }
}
.p-footer-more-icons .p-footer-more-icon {
  padding: 0.35em;
}
@media (min-width: 768px) {
  .p-footer-more-icons .p-footer-more-icon {
    padding: 0.25em;
  }
}
@media (min-width: 1024px) {
  .p-footer-more-icons .p-footer-more-icon {
    padding: 0.5em;
  }
  .p-footer-more-icons .p-footer-more-icon:hover svg, .p-footer-more-icons .p-footer-more-icon:active svg, .p-footer-more-icons .p-footer-more-icon:focus svg {
    fill: #fff;
  }
}

.p-footer-featured {
  align-items: center;
  border-top: 1px solid rgba(238, 238, 238, 0.2);
  display: flex;
  margin-top: 1.25rem;
  padding-top: 1.875rem;
  text-decoration: none;
}
@media (min-width: 768px) {
  .p-footer-featured {
    margin-bottom: -2.5rem;
    margin-top: 5rem;
  }
}
@media (min-width: 1440px) {
  .p-footer-featured {
    margin-bottom: -3.75rem;
  }
}

.p-footer-featured-icon {
  margin-right: 1.875rem;
  width: 3.75rem;
}
@media (min-width: 1440px) {
  .p-footer-featured-icon {
    margin-right: 2.5rem;
  }
}

.p-footer-featured-text {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.125rem;
  margin-top: -0.375rem;
  padding-bottom: 0.1875rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.15s color;
}
.p-footer-featured-text:hover::after, .p-footer-featured-text:active::after, .p-footer-featured-text:focus::after {
  left: 0;
  right: auto;
  width: 100%;
}
.p-footer-featured-text::before, .p-footer-featured-text::after {
  background-color: #ae946d;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.p-footer-featured-text::after {
  background-color: #fff;
  left: auto;
  right: 0;
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}

.p-meta-footer {
  background-color: #181818;
  border-top: 1px solid rgba(238, 238, 238, 0.1);
  color: #fff;
  display: block;
}

.p-meta-footer-inner {
  padding: 1.875rem 0;
}
@media (min-width: 768px) {
  .p-meta-footer-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.625rem 0;
  }
}

@media (min-width: 768px) {
  .p-meta-footer-inner-left {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .p-meta-footer-inner-left {
    width: 66.6666666667%;
  }
}
@media (min-width: 1200px) {
  .p-meta-footer-inner-left.p-meta-footer-inner-left--alone {
    width: 100%;
  }
}

.p-meta-footer-inner-right {
  display: none;
}
@media (min-width: 1200px) {
  .p-meta-footer-inner-right {
    display: block;
    width: 33.3333333333%;
  }
}

.p-meta-footer-language {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  font-size: 0.875rem;
  margin-bottom: 1.875rem;
  min-width: 14rem;
  padding: 1rem 3rem 1rem 1.375rem;
  position: relative;
  transition: border 0.15s;
}
@media (min-width: 768px) {
  .p-meta-footer-language {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .p-meta-footer-language:hover, .p-meta-footer-language:active, .p-meta-footer-language:focus {
    border-color: rgba(255, 255, 255, 0.15);
  }
}

.p-meta-footer-language-flag {
  display: block;
  margin-right: 1.125rem;
  width: 1.25rem;
}

.p-meta-footer-language-label {
  color: #fff;
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.125rem;
  text-transform: uppercase;
}

.p-meta-footer-language-arrow {
  position: absolute;
  right: 0.3125rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.p-meta-footer-language-arrow .icon {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
}
.p-meta-footer-language-arrow svg {
  fill: #fff;
}

.p-meta-footer-language-link-mask {
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.p-meta-footer-copyright {
  color: #fff;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .p-meta-footer-copyright {
    margin-bottom: 0;
  }
}

.p-meta-footer-links {
  align-items: baseline;
  display: flex;
}

.p-meta-footer-images {
  display: none;
}
@media (min-width: 768px) {
  .p-meta-footer-images {
    align-items: center;
    display: flex;
    justify-content: flex-end;
  }
}

.p-meta-footer-images-item {
  border-radius: 0.125rem;
  display: block;
  height: 1.5rem;
  margin-right: 0.5rem;
}
.p-meta-footer-images-item:last-child {
  margin-right: 0;
}

@media (min-width: 768px) {
  .p-meta-footer-section {
    margin: 1.25rem 0;
  }
}
.p-meta-footer-section p {
  margin: 0;
}

@media (max-width: 767.98px) {
  .p-meta-footer-cookie {
    order: 5;
  }
}
.p-meta-footer-cookie + .p-footer-link.p-footer-link--meta, .p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .p-meta-footer-cookie + .p-footer-link--meta.optanon-show-settings {
  margin-right: 1.875rem;
}
@media (min-width: 768px) {
  .p-meta-footer-cookie + .p-footer-link.p-footer-link--meta, .p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .p-meta-footer-cookie + .p-footer-link--meta.optanon-show-settings {
    margin-left: 1.875rem;
    margin-right: 0;
  }
}

/*md

# Locale modal

*/
.locale-modal-header {
  display: block;
  position: relative;
}

.locale-modal-logo-link {
  outline: none;
  position: absolute;
}

.locale-modal-logo-icon {
  fill: #000;
  filter: drop-shadow(1px 1px 1px #ccc);
  height: 3.5rem;
  margin: 0.6875rem 0.75rem 0.625rem 2rem;
  outline: 0;
  width: 3.5rem;
}

.modal-open .locale-modal {
  overflow-y: hidden;
}
.locale-modal .locale-modal-title {
  font-size: 1rem;
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
  text-align: center;
}
.locale-modal .locale-modal-btn-close {
  align-items: center;
  display: flex;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.locale-modal .locale-modal-body {
  background-color: #eee;
}

.locale-modal-header-text {
  padding-left: 0.4375rem;
}

.locale-selector {
  margin: 0 auto;
  max-width: 44.375rem;
  text-align: center;
}

.locale-selector-language-list {
  display: flex;
  justify-content: space-around;
}

.locale-selector-language-link {
  font-size: 0.875rem;
}
@media (min-width: 544px) {
  .locale-selector-language-link {
    font-size: 1rem;
  }
}

.locale-label {
  margin: 0;
}

.locale-selector-divider {
  border: 1px solid #fff;
}

.locale-selector-finder-body {
  font-size: 0.75rem;
}

.locale-selector-search {
  margin: 0 auto;
  max-width: 32.5rem;
}
.locale-selector-search .input-group-addon {
  background-color: #fff;
  border: 0;
  padding: 0;
}

.locale-selector-search-input-group {
  border: 1px solid #ccc;
}
.locale-selector-search-input-group .input-group-text {
  background-color: #fff;
  border: 0;
}

.locale-selector-search-icon {
  fill: #ccc;
  height: 1.3125rem;
  margin-left: 0.3125rem;
  width: 1.3125rem;
}

.locale-selector-search-input {
  border: 0;
  padding: 1rem;
}
.locale-selector-search-input::-ms-clear {
  display: none;
}

.locale-selector-search-clear {
  display: none;
  fill: #777;
  padding-right: 0.3125rem;
}
.locale-selector-search-clear:hover, .locale-selector-search-clear:active, .locale-selector-search-clear:focus {
  fill: rgb(93.5, 93.5, 93.5);
}
.locale-selector-search-clear svg {
  height: 0.625rem;
  width: 0.625rem;
}

.locale-selector-countries-list {
  display: none;
}

.locale-selector-countries-country {
  align-items: center;
  display: flex;
}

.locale-selector-countries-country-flag {
  height: 1.625rem;
  margin: 1rem;
  width: 1.625rem;
}

.choose-bonus-product-dialog.modal-dialog {
  max-width: 43.5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .choose-bonus-product-dialog.modal-dialog {
    max-width: 41.3125rem;
  }
}
.choose-bonus-product-dialog .modal-content {
  max-height: 100vh;
  padding: 0 1rem;
}
@media (min-width: 544px) {
  .choose-bonus-product-dialog .modal-content {
    padding: 0 2.5rem 0;
  }
}
.choose-bonus-product-dialog .modal-header {
  border-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  padding: 1rem 0 1.25rem;
}
@media (min-width: 544px) {
  .choose-bonus-product-dialog .modal-header {
    padding-bottom: 1.875rem;
  }
}
.choose-bonus-product-dialog .close {
  opacity: 1;
  padding: 0.125rem;
  position: static;
}
.choose-bonus-product-dialog .modal-body {
  flex-shrink: 1;
  max-height: calc(100vh - 184px);
  overflow-y: auto;
  padding: 0 1rem 0 0;
}
@media (min-width: 1024px) {
  .choose-bonus-product-dialog .modal-body {
    max-height: calc(74vh - 194px);
  }
}
.choose-bonus-product-dialog .modal-footer {
  border: 0;
  padding: 1rem 0 1.25rem;
}
.choose-bonus-product-dialog .bonus-product-body-title {
  font-weight: 600;
}
.choose-bonus-product-dialog .bonus-product-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 1.25rem;
  padding: 0 0 1.25rem;
}
@media (min-width: 544px) {
  .choose-bonus-product-dialog .product-quickview-details {
    padding-left: 1.875rem;
  }
}
@media (max-width: 543.98px) {
  .choose-bonus-product-dialog .bonus-product-action-buttons-container {
    padding-left: 0;
  }
}
.choose-bonus-product-dialog .bonus-product-action-buttons {
  align-items: center;
}
.choose-bonus-product-dialog .bonus-product-error-message {
  color: #ba2026;
  font-size: 0.75rem;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .choose-bonus-product-dialog .bonus-product-error-message {
    font-size: 0.875rem;
  }
}
.choose-bonus-product-dialog .choice-of-bonus-product .product-quickview {
  padding: 0;
}
.choose-bonus-product-dialog .choice-of-bonus-product .product-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 0.9375rem;
}
@media (min-width: 544px) {
  .choose-bonus-product-dialog .choice-of-bonus-product .product-name {
    margin-bottom: 1.5625rem;
  }
}
.choose-bonus-product-dialog .choice-of-bonus-product .product-quickview-attributes-wrapper {
  margin-bottom: 1.25rem;
}
@media (max-width: 543.98px) {
  .choose-bonus-product-dialog .choice-of-bonus-product .product-quickview-attributes-wrapper {
    padding: 0;
  }
}
.choose-bonus-product-dialog .choice-of-bonus-product .attribute-container {
  display: flex;
  flex-direction: column-reverse;
}
.choose-bonus-product-dialog .choice-of-bonus-product .attribute-name {
  margin-bottom: 0.5rem;
}
@media (min-width: 544px) {
  .choose-bonus-product-dialog .choice-of-bonus-product .attribute-name {
    margin-bottom: 0.8125rem;
  }
}
.choose-bonus-product-dialog .choice-of-bonus-product .attribute-name__text {
  color: #181818;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
}
.choose-bonus-product-dialog .choice-of-bonus-product .attribute-name__text::after {
  content: ":";
}
.choose-bonus-product-dialog .choice-of-bonus-product .attribute-color {
  margin-bottom: 1.25rem;
}
.choose-bonus-product-dialog .choice-of-bonus-product .attribute-item {
  display: inline-block;
  margin: 0 0.25rem 0.25rem 0;
}
.choose-bonus-product-dialog .choice-of-bonus-product .attribute-item.disabled {
  display: none;
  visibility: hidden;
}
.choose-bonus-product-dialog .choice-of-bonus-product .size-value {
  border-color: #ccc;
  height: 2.625rem;
  margin: 0 0.25rem 0.25rem 0;
  text-decoration: none;
  width: 2.625rem;
}
.choose-bonus-product-dialog .choice-of-bonus-product .size-value .swatch {
  align-items: center;
  display: flex;
  font-size: 0.875rem;
  font-weight: 400;
  justify-content: center;
}
.choose-bonus-product-dialog .choice-of-bonus-product .line-item-style-number {
  font-size: 0.625rem;
  line-height: 0.625rem;
  position: absolute;
}
@media (max-width: 543.98px) {
  .choose-bonus-product-dialog .choice-of-bonus-product .line-item-style-number {
    margin-bottom: 1rem;
    position: relative;
  }
}
@media (max-width: 543.98px) {
  .choose-bonus-product-dialog .choice-of-bonus-product .product-quickview__product-image {
    align-items: flex-start;
    display: flex;
    height: 100%;
  }
}
.choose-bonus-product-dialog .choice-of-bonus-product .product-image {
  max-width: 13.75rem;
  width: 100%;
}
.choose-bonus-product-dialog .choice-of-bonus-product .availability-wrapper {
  display: none;
}
.choose-bonus-product-dialog .form-group {
  margin-bottom: 0;
}
.choose-bonus-product-dialog .select-mask__overlay__display {
  height: 2.625rem;
}
.choose-bonus-product-dialog .select-mask__overlay__dropdown svg {
  height: 0.625rem;
  width: 0.625rem;
}
@media (min-width: 544px) {
  .choose-bonus-product-dialog .selected-bonus-products-wrapper {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.choose-bonus-product-dialog .exclude-colors {
  padding: 0;
}
.choose-bonus-product-dialog .footer-action-buttons {
  display: flex;
  flex-basis: 100%;
  justify-content: space-between;
  margin-top: 1.25rem;
}
.choose-bonus-product-dialog .footer-action-button {
  flex-basis: 49%;
  font-weight: 700;
  max-width: 100%;
  width: 49%;
}
.choose-bonus-product-dialog .footer-action-button[disabled],
.choose-bonus-product-dialog .footer-action-button.disabled {
  background-color: #eee;
  border-color: #eee;
  color: #999;
}
.choose-bonus-product-dialog .cancel-bonus-products {
  align-items: center;
  display: flex;
  justify-content: center;
}
.choose-bonus-product-dialog .cancel-bonus-products:hover, .choose-bonus-product-dialog .cancel-bonus-products:active, .choose-bonus-product-dialog .cancel-bonus-products:focus {
  background-color: white;
  border-color: #444;
  color: #444;
}
@media (min-width: 544px) {
  .choose-bonus-product-dialog .selected-bonus-products {
    flex-basis: 100%;
  }
}
.choose-bonus-product-dialog .bonus-summary-wrapper {
  text-align: center;
}
@media (max-width: 1023.98px) {
  .choose-bonus-product-dialog .bonus-summary-wrapper {
    text-align: left;
  }
}
.choose-bonus-product-dialog .bonus-summary-icon {
  display: none;
  height: 0.5rem;
  margin-left: 0.625rem;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 0.5rem;
}
.choose-bonus-product-dialog .bonus-summary {
  color: #181818;
  display: inline-block;
  font-weight: 600;
}
.choose-bonus-product-dialog .bonus-summary[data-is-selected-available=true] {
  cursor: pointer;
}
.choose-bonus-product-dialog .bonus-summary[data-is-selected-available=true] .bonus-summary-icon {
  display: inline-block;
}
.choose-bonus-product-dialog .bonus-summary.selected-products-openned .bonus-summary-icon {
  transform: rotate(180deg);
}
.choose-bonus-product-dialog .selected-pid {
  background-color: #fafafa;
  color: #181818;
  margin-top: 0.625rem;
  padding: 0.625rem 0.9375rem;
  position: relative;
}
.choose-bonus-product-dialog .remove-bonus-product-popup-icon {
  cursor: pointer;
  fill: #181818;
  height: 1.125rem;
  margin-left: auto;
}
@media (max-width: 1023.98px) {
  .choose-bonus-product-dialog .remove-bonus-product-popup-icon {
    bottom: 0.9375rem;
    position: absolute;
    right: 0.9375rem;
  }
}
.choose-bonus-product-dialog .bonus-product-header {
  align-items: center;
  display: flex;
  margin-bottom: 0.625rem;
}
.choose-bonus-product-dialog .bonus-product-name {
  font-weight: 700;
}
.choose-bonus-product-dialog .bonus-product-attr {
  display: inline-block;
  font-size: 0.875rem;
  margin-right: 1.875rem;
}
.choose-bonus-product-dialog .bonus-product-attr .label {
  color: #777;
}
@media (max-width: 1023.98px) {
  .choose-bonus-product-dialog .bonus-product-attr.bonus-product-color {
    display: block;
    margin-bottom: 0.3125rem;
  }
}
@media (max-width: 543.98px) {
  .choose-bonus-product-dialog.sea-choose-bonus-product-dialog.modal-dialog {
    max-height: 100%;
  }
}

.choose-bonus-product-header {
  color: #008827;
}

.giftcardModal .modal-dialog {
  max-width: 41.25rem;
}
.giftcardModal .modal-content {
  padding: 3.125rem;
}
.giftcardModal .close {
  right: 2.5rem;
  top: 2.5rem;
}
.giftcardModal .modal-body {
  padding: 0;
}

.giftcard-modal-header {
  color: #222;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  margin-bottom: 1.5625rem;
}

.giftcard-modal-frame {
  height: 19.375rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .giftcard-modal-frame {
    height: 20.625rem;
  }
}

.unsupported-browser-modal {
  display: none;
}
.unsupported-browser-modal .modal-dialog {
  max-width: 35rem;
}
.unsupported-browser-modal .modal-content {
  padding: 2.5rem 1.25rem;
}
.unsupported-browser-modal .close {
  opacity: 1;
  padding: 0.3125rem;
  right: 1.25rem;
  top: 1.25rem;
}
.unsupported-browser-modal .modal-body {
  padding: 0;
}

.unsupported-browser-modal-header {
  margin-bottom: 2.5rem;
}

.unsupported-browser-modal-title {
  color: #181818;
  font-size: 1.5rem;
  margin: 0 auto;
  max-width: 18.75rem;
  text-align: center;
}

.unsupported-browser-modal-icons {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.unsupported-browser-modal-icon.unsupported-browser-modal-icon + .unsupported-browser-modal-icon.unsupported-browser-modal-icon {
  margin-left: 1.875rem;
}
@media (min-width: 768px) {
  .unsupported-browser-modal-icon.unsupported-browser-modal-icon + .unsupported-browser-modal-icon.unsupported-browser-modal-icon {
    margin-left: 3.125rem;
  }
}

.unsupported-browser-modal-icon-link {
  border: none;
  padding-bottom: 0.1875rem;
  position: relative;
  transition: 0.15s color;
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.125rem;
  text-transform: uppercase;
}
.unsupported-browser-modal-icon-link:hover, .unsupported-browser-modal-icon-link:active, .unsupported-browser-modal-icon-link:focus {
  color: #181818;
  text-decoration: none;
}
.unsupported-browser-modal-icon-link:hover::after, .unsupported-browser-modal-icon-link:active::after, .unsupported-browser-modal-icon-link:focus::after {
  left: 0;
  right: auto;
  width: 100%;
}
.unsupported-browser-modal-icon-link::before, .unsupported-browser-modal-icon-link::after {
  background-color: #ccc;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.unsupported-browser-modal-icon-link::after {
  background-color: #777;
  left: auto;
  right: 0;
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}

.unsupported-browser-modal-icon-title {
  display: block;
  margin-top: 0.9375rem;
}

.unsupported-browser-modal-footer {
  margin: 2.5rem 0 0.625rem;
  position: relative;
  text-align: center;
}
.unsupported-browser-modal-footer .close {
  color: #222;
  float: none;
  padding: 0 0 0.1875rem 0;
  position: static;
}
.unsupported-browser-modal-footer .close:hover, .unsupported-browser-modal-footer .close:active, .unsupported-browser-modal-footer .close:focus {
  opacity: 1 !important;
  outline: none;
}

.emailSignupModal .newsletter-container {
  height: 37.5rem;
  max-width: 43.75rem;
}
@media (max-width: 767.98px) {
  .emailSignupModal .newsletter-container {
    height: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
  }
}
.emailSignupModal .newsletter-container iframe {
  border: 0;
  height: 100%;
  width: 100%;
}
.emailSignupModal .newsletter-container .modal-et {
  border: 1px solid #ccc;
  padding-top: 1.25rem;
}
.emailSignupModal .modal-dialog {
  max-width: 700px;
  width: 100%;
}
.emailSignupModal .modal-dialog aside h5 {
  text-transform: uppercase;
}
.emailSignupModal .modal-dialog aside p {
  font-size: 1rem;
  margin: 0 0 0.3125rem;
  padding: 0;
}
.emailSignupModal .modal-dialog .dialog-title {
  text-transform: uppercase;
}
.emailSignupModal .modal-dialog .container--wide {
  padding: 1.25rem;
}
.emailSignupModal .modal-dialog .link {
  color: #c00;
}
.emailSignupModal .modal-dialog .privacy-policy {
  font-size: 0.75rem;
  padding: 0.625rem 0;
}
.emailSignupModal .modal-dialog .privacy-policy a,
.emailSignupModal .modal-dialog .content-asset a {
  color: #c00;
  text-decoration: none;
}
.emailSignupModal .modal-dialog .privacy-policy a:hover, .emailSignupModal .modal-dialog .privacy-policy a:active, .emailSignupModal .modal-dialog .privacy-policy a:focus,
.emailSignupModal .modal-dialog .content-asset a:hover,
.emailSignupModal .modal-dialog .content-asset a:active,
.emailSignupModal .modal-dialog .content-asset a:focus {
  text-decoration: none;
}
.emailSignupModal .modal-content {
  border: 0;
}
@media (max-width: 767.98px) {
  .emailSignupModal .modal-content {
    height: 100%;
  }
}
@media (max-width: 543.98px) {
  .emailSignupModal.modal-fs-mobile .modal-body {
    height: 100%;
    overflow: auto;
    padding: 0;
  }
}
.emailSignupModal .dialog-head-banner {
  background: url(../../../ja/images/newsletter/newsletter-banner-puma.png) no-repeat top center;
  height: 12.5rem;
  padding: 1.25rem;
  position: relative;
}
.emailSignupModal .dialog-head-banner h4 {
  bottom: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
}
@media (min-width: 1024px) {
  .emailSignupModal .dialog-head-banner h4 {
    font-size: 2.375rem;
  }
}

.kop-newsletter-form {
  margin-top: 3.75rem;
  text-align: left;
}
@media (min-width: 1024px) {
  .kop-newsletter-form {
    min-width: 47.1875rem;
  }
}
@media (max-width: 1439.98px) {
  .kop-newsletter-form {
    margin-top: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  .kop-newsletter-form .custom-control-description {
    font-size: 0.75rem;
    margin-left: 0.625rem;
  }
  .kop-newsletter-form .form-group {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }
}
.kop-newsletter-form .row {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .kop-newsletter-form .row {
    max-width: 46.25rem;
  }
}
.kop-newsletter-form .custom-checkbox .custom-control-input[type=radio]:indeterminate ~ .custom-control-indicator {
  background-color: #fff;
  background-image: none;
}
.kop-newsletter-form .custom-checkbox:last-of-type {
  margin-right: 0;
}
@media (max-width: 767.98px) {
  .kop-newsletter-form .form-group .form-group-options {
    display: block;
  }
}
.kop-newsletter-form .form-group label {
  width: 6.25rem;
}
.kop-newsletter-form .form-group .custom-control {
  width: auto;
}
.kop-newsletter-form .form-group .select-mask__overlay__display {
  background: #fff;
}
.kop-newsletter-form .form-group .form-control {
  display: inline-block;
  padding-bottom: 0.125rem;
  padding-top: 0.125rem;
  width: calc(100% - 6.5625rem);
}
.kop-newsletter-form .form-group .form-control-feedback {
  padding-left: 6.5625rem;
}

.kopNewsletterFormViewModal .modal-dialog {
  max-width: 46.875rem;
}

[name=strava-challenge].kop-newsletter-form .custom-controls-stacked > a,
[name=newsletter].kop-newsletter-form .custom-controls-stacked > a,
[name=strava-running].kop-newsletter-form .custom-controls-stacked > a {
  color: #fff;
}
[name=strava-challenge].kop-newsletter-form .custom-controls-stacked > a:hover,
[name=newsletter].kop-newsletter-form .custom-controls-stacked > a:hover,
[name=strava-running].kop-newsletter-form .custom-controls-stacked > a:hover {
  color: #fff;
}

@media (max-width: 543.98px) {
  [name=strava-challenge].kop-newsletter-form {
    margin-top: 0;
  }
  [name=strava-challenge].kop-newsletter-form .form-group {
    font-size: 14px;
  }
  [name=strava-challenge].kop-newsletter-form .form-group.custom-controls-stacked {
    font-size: 12px;
  }
  [name=strava-challenge].kop-newsletter-form .form-control {
    height: 1.625rem;
  }
  [name=strava-challenge].kop-newsletter-form .btn {
    padding: 0.5rem;
  }
}
@media (min-width: 1024px) {
  [name=strava-challenge].kop-newsletter-form .row {
    max-width: 48rem;
  }
}
[name=strava-challenge].kop-newsletter-form .custom-checkbox .custom-control-description {
  margin-left: 1.0625rem;
}

@media (max-width: 1023.98px) {
  body.mobile-search--active #wps_popup {
    z-index: 1599 !important;
  }
}

#full-bleed-hero-large-run-puma-strava-form-ss21 .kop-hero-content-header h2 {
  font-size: 40px;
}
@media (max-width: 543.98px) {
  #full-bleed-hero-large-run-puma-strava-form-ss21 .kop-hero-content-header h2 {
    font-size: 18px;
  }
}

.newsletter-general-form.kop-newsletter-form .custom-controls-stacked > a {
  color: #fff;
}
.newsletter-general-form.kop-newsletter-form .custom-controls-stacked > a:hover {
  color: #fff;
}
.newsletter-general-form.kop-newsletter-form .form-group.custom-radio-gender .floatl {
  display: flex;
}
.newsletter-general-form.kop-newsletter-form .form-group.custom-radio-gender .floatl > label {
  width: 6.5625rem;
}
.newsletter-general-form.kop-newsletter-form .form-group.custom-radio-gender .form-group-options {
  width: calc(100% - 6.5625rem);
}

/*md

# Search suggestions

*/
@media (min-width: 1200px) {
  .p-search-dropdown {
    display: block;
    left: 0;
    margin-top: 0.25rem;
    position: absolute;
    top: 100%;
  }
}
@media (min-width: 1200px) {
  .p-search-dropdown.p-search-dropdown--columns {
    margin-left: -25rem;
  }
}
@media (min-width: 1650px) {
  .p-search-dropdown.p-search-dropdown--columns {
    margin-left: -18.75rem;
  }
}

.p-search-dropdown-panel {
  animation: showPanelDropdown 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  background-color: #fff;
  border-radius: 0.125rem;
  box-shadow: 0.625rem 0.625rem 1.875rem rgba(0, 0, 0, 0.05);
  color: #181818;
  display: block;
  padding: 0;
  position: absolute;
}
.is-mobile-only .p-search-dropdown-panel {
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.p-search-dropdown-columns {
  display: flex;
}
.is-mobile-only .p-search-dropdown-columns {
  flex-direction: column-reverse;
}

.p-search-dropdown-column {
  padding: 1.5625rem;
}
.is-mobile-only .p-search-dropdown-column {
  padding: 0;
}
.is-mobile-only .p-search-dropdown-column:last-child {
  border-left: 0;
}
.is-mobile-only .p-search-dropdown-column.p-search-dropdown-column--text {
  width: 100%;
}
.is-mobile-only .p-search-dropdown-column.p-search-dropdown-column--products {
  width: 100%;
}
@media (min-width: 1650px) {
  .p-search-dropdown-column {
    padding: 1.875rem 2.5rem;
  }
}
.p-search-dropdown-column:last-child {
  border-left: 2px solid #f6f6f6;
}
.p-search-dropdown-column.p-search-dropdown-column--text {
  width: 19.375rem;
}
.p-search-dropdown-column.p-search-dropdown-column--products {
  width: 21.875rem;
}
@media (min-width: 1650px) {
  .p-search-dropdown-column.p-search-dropdown-column--products {
    padding: 1.875rem;
    width: 22.5rem;
  }
}

.p-search-dropdown-section {
  margin-bottom: 1.875rem;
  position: relative;
}
.is-mobile-only .p-search-dropdown-section {
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
  padding: 1.5625rem 1.5625rem 1.25rem;
}
@media (min-width: 1650px) {
  .p-search-dropdown-section {
    margin-bottom: 2.5rem;
  }
}
.p-search-dropdown-section:last-child {
  margin-bottom: 0;
}

.p-search-dropdown-section-title {
  color: #adadad;
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.125rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.p-search-dropdown-link {
  cursor: pointer;
  display: block;
  font-size: 1rem;
  position: relative;
}
@media (min-width: 1650px) {
  .p-search-dropdown-link {
    font-size: 1.125rem;
  }
  .p-search-dropdown-link:hover .p-search-dropdown-link-inner, .p-search-dropdown-link:active .p-search-dropdown-link-inner, .p-search-dropdown-link:focus .p-search-dropdown-link-inner {
    background-color: #f6f6f6;
  }
}
.p-search-dropdown-link:hover, .p-search-dropdown-link:active, .p-search-dropdown-link:focus {
  text-decoration: none;
}

.p-search-dropdown-link-inner {
  color: #818181;
  display: block;
  padding: 0.625rem 0;
  transition: background-color 0.15s;
}
@media (min-width: 768px) {
  .p-search-dropdown-link-inner {
    padding: 0.375rem 0;
  }
}
@media (min-width: 1200px) {
  .p-search-dropdown-link-inner {
    margin: 0 -0.625rem;
    padding: 0.375rem 0.625rem;
  }
}
@media (min-width: 1650px) {
  .p-search-dropdown-link-inner {
    margin: 0 -1.25rem;
    padding: 0.375rem 1.25rem;
  }
}
.p-search-dropdown-link-inner strong {
  color: #181818;
}

.p-search-dropdown-link-icon {
  display: inline-block;
  font-size: 1.125rem;
  height: 1rem;
  margin-top: -0.125rem;
  vertical-align: middle;
  width: 1rem;
}

.p-search-mobile-links {
  padding: 1.5rem;
}
@media (min-width: 1200px) {
  .p-search-mobile-links {
    display: none;
  }
}

.p-search-mobile-link {
  border: 1px solid #ccc;
  padding: 1.3em 1.2em 1.2em 1.6em;
}
.p-search-mobile-link:not(:last-child) {
  margin-bottom: 0.7em;
}

.p-search-mobile-link-container {
  padding-right: 2em;
}

.p-search-mobile-link-inner {
  align-items: flex-start;
  display: flex;
}
.p-search-mobile-link-inner .label {
  margin-top: -0.3125rem;
}
.p-search-mobile-link-inner .label-title {
  font-weight: 700;
}
.p-search-mobile-link-inner .label-text {
  font-size: 0.875rem;
}

.p-search-mobile-link-image {
  flex-shrink: 0;
  height: auto;
  margin-right: 1rem;
  width: 2.125rem;
}

.p-search-dropdown-product {
  align-items: center;
  border: 2px solid transparent;
  color: #181818;
  display: flex;
  padding: 0.9375rem;
  text-decoration: none;
  transition: border-color 0.15s;
}
@media (min-width: 1200px) {
  .p-search-dropdown-product {
    padding: 0.75rem;
  }
}
@media (min-width: 1650px) {
  .p-search-dropdown-product {
    padding: 0.9375rem;
  }
}
.p-search-dropdown-product:hover, .p-search-dropdown-product:active, .p-search-dropdown-product:focus {
  text-decoration: none;
}
@media (min-width: 1200px) {
  .p-search-dropdown-product:hover, .p-search-dropdown-product:active, .p-search-dropdown-product:focus {
    border: 2px solid #eee;
  }
}
.p-search-dropdown-product:last-child {
  margin-bottom: 0;
}

.p-search-dropdown-product-image {
  display: block;
  flex-shrink: 0;
  height: auto;
  margin-right: 1.5625rem;
  width: 4.375rem;
}
@media (min-width: 1200px) {
  .p-search-dropdown-product-image {
    margin-right: 1.25rem;
    width: 3.125rem;
  }
}
@media (min-width: 1650px) {
  .p-search-dropdown-product-image {
    margin-right: 1.5625rem;
    width: 4.375rem;
  }
}

.p-search-dropdown-product-title {
  font-weight: 500;
  line-height: 1.25rem;
}

.p-search-dropdown-product-prices {
  align-items: center;
  display: flex;
}

.p-search-dropdown-product-price {
  color: #545454;
}
.is-sale .p-search-dropdown-product-price {
  color: #ba2026;
  margin-right: 0.5em;
}

.p-search-dropdown-product-old-price {
  color: #545454;
  display: none;
  font-size: 0.875rem;
  margin-bottom: -0.1em;
  text-decoration: line-through;
}
.is-sale .p-search-dropdown-product-old-price {
  display: block;
}

.search-option {
  background-color: #fff;
  padding: 1.5rem;
}

.search-option-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.125rem;
  margin-bottom: 1.0625rem;
  padding-top: 0.4375rem;
}

.search-option-link {
  border: solid 1px #ccc;
  border-radius: 0.125rem;
  display: flex;
  margin-bottom: 0.625rem;
  padding: 1.5rem 1.625rem 1.5rem 1.875rem;
}

.search-option-link-icon {
  padding-top: 0.4375rem;
}

.search-option-link-description {
  padding: 0 1rem;
}
.search-option-link-description p {
  margin: 0;
}

.search-option-link-head {
  font-weight: 800;
}

.search-option-link-body {
  font-size: 0.875rem;
}

.search-option-link-arrow {
  align-items: center;
  display: flex;
}

.search-option-link-arrow-svg {
  height: 1.25rem;
  width: 0.4375rem;
}

.search-option-cart {
  padding: 3.75rem 1.5rem 0.25rem 1.5rem;
}
.search-option-cart .search-option-link:last-of-type {
  margin: 0;
}

.pdp-promo-code .tooltip-promo-code,
.kop-hero-content .tooltip-promo-code,
.p-bottom-promo-coupon .tooltip-promo-code,
.signup-journey-discount-code .tooltip-promo-code {
  display: inline-block;
  margin-top: 0.75rem;
  position: relative;
}
.pdp-promo-code .tooltip-promo-code-msg,
.kop-hero-content .tooltip-promo-code-msg,
.p-bottom-promo-coupon .tooltip-promo-code-msg,
.signup-journey-discount-code .tooltip-promo-code-msg {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0.25rem;
  color: #000;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.625rem 0.75rem;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  z-index: 1500;
}
@media (min-width: 1200px) {
  .pdp-promo-code .tooltip-promo-code-msg,
  .kop-hero-content .tooltip-promo-code-msg,
  .p-bottom-promo-coupon .tooltip-promo-code-msg,
  .signup-journey-discount-code .tooltip-promo-code-msg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.pdp-promo-code .tooltip-promo-code-msg.info-msg,
.kop-hero-content .tooltip-promo-code-msg.info-msg,
.p-bottom-promo-coupon .tooltip-promo-code-msg.info-msg,
.signup-journey-discount-code .tooltip-promo-code-msg.info-msg {
  font-size: 0.875rem;
  line-height: 1.75rem;
  padding: 0.1875rem 0.8125rem;
  text-transform: capitalize;
}
.pdp-promo-code .tooltip-promo-code .tooltip-btn-close,
.kop-hero-content .tooltip-promo-code .tooltip-btn-close,
.p-bottom-promo-coupon .tooltip-promo-code .tooltip-btn-close,
.signup-journey-discount-code .tooltip-promo-code .tooltip-btn-close {
  background-color: #fff;
  border: none;
  margin-left: 0.3125rem;
}
.pdp-promo-code .tooltip-promo-code .tooltip-btn-close-icon,
.kop-hero-content .tooltip-promo-code .tooltip-btn-close-icon,
.p-bottom-promo-coupon .tooltip-promo-code .tooltip-btn-close-icon,
.signup-journey-discount-code .tooltip-promo-code .tooltip-btn-close-icon {
  fill: #181818;
  height: 0.9375rem;
  margin-top: -0.3125rem;
  width: 0.9375rem;
}
.pdp-promo-code .tooltip-promo-code .promo-code-text,
.kop-hero-content .tooltip-promo-code .promo-code-text,
.p-bottom-promo-coupon .tooltip-promo-code .promo-code-text,
.signup-journey-discount-code .tooltip-promo-code .promo-code-text {
  align-items: center;
  background-color: transparent;
  border: 1px dashed #000;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.125rem;
  line-height: 1.25rem;
  padding: 0.375rem 0.75rem;
  text-transform: uppercase;
}
.pdp-promo-code .tooltip-promo-code .promo-code-text-btn-copy,
.kop-hero-content .tooltip-promo-code .promo-code-text-btn-copy,
.p-bottom-promo-coupon .tooltip-promo-code .promo-code-text-btn-copy,
.signup-journey-discount-code .tooltip-promo-code .promo-code-text-btn-copy {
  align-items: center;
  background: transparent;
  border: none;
  display: flex;
  padding-right: 0;
}
.pdp-promo-code .tooltip-promo-code .promo-code-text-btn-copy-icon,
.kop-hero-content .tooltip-promo-code .promo-code-text-btn-copy-icon,
.p-bottom-promo-coupon .tooltip-promo-code .promo-code-text-btn-copy-icon,
.signup-journey-discount-code .tooltip-promo-code .promo-code-text-btn-copy-icon {
  fill: #000;
  height: 1.125rem;
  width: 1.125rem;
}

.product-quickview .tooltip-promo-code {
  display: none;
}

#large-full-bleed-black-friday-info-aw21 .kop-hero-wrapper,
#full-bleed-hero-large-black-friday-form-black-aw21 .kop-hero-wrapper {
  position: static;
}
#large-full-bleed-black-friday-info-aw21 .kop-hero-media,
#full-bleed-hero-large-black-friday-form-black-aw21 .kop-hero-media {
  display: none;
}
#large-full-bleed-black-friday-info-aw21 .without-hotspots,
#full-bleed-hero-large-black-friday-form-black-aw21 .without-hotspots {
  background-color: #000;
}
#large-full-bleed-black-friday-info-aw21 .without-hotspots .kop-hero-content-wrapper.overlay-content-text,
#full-bleed-hero-large-black-friday-form-black-aw21 .without-hotspots .kop-hero-content-wrapper.overlay-content-text {
  position: static;
}
#large-full-bleed-black-friday-info-aw21 .without-hotspots,
#large-full-bleed-black-friday-info-aw21 .kop-hero-wrapper,
#full-bleed-hero-large-black-friday-form-black-aw21 .without-hotspots,
#full-bleed-hero-large-black-friday-form-black-aw21 .kop-hero-wrapper {
  background-repeat: no-repeat;
}

#large-full-bleed-black-friday-info-aw21 .without-hotspots {
  background-image: url("../../images/strava-b1-bg1.jpg");
  background-position: 10% top;
}
#large-full-bleed-black-friday-info-aw21 .kop-hero-wrapper {
  background-image: url("../../images/strava-b1-bg2.jpg");
  background-position: right bottom;
}

#full-bleed-hero-large-black-friday-form-black-aw21 .without-hotspots {
  background-image: url("../../images/strava-b2-bg1.jpg");
  background-position: right top;
}
#full-bleed-hero-large-black-friday-form-black-aw21 .kop-hero-wrapper {
  background-image: url("../../images/strava-b2-bg2.jpg");
  background-position: left bottom;
}
#full-bleed-hero-large-black-friday-form-black-aw21 .kop-html-text {
  padding-bottom: 1.25rem;
}

@media (max-width: 480px) {
  #full-bleed-hero-large-black-friday-form-black-aw21-content-copy {
    margin-bottom: 1.125rem;
  }
  #full-bleed-hero-large-black-friday-form-aw21 .kop-hero-content-copy {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  #large-full-bleed-black-friday-info-aw21 .without-hotspots,
  #large-full-bleed-black-friday-info-aw21 .kop-hero-wrapper,
  #full-bleed-hero-large-black-friday-form-black-aw21 .without-hotspots,
  #full-bleed-hero-large-black-friday-form-black-aw21 .kop-hero-wrapper {
    background-size: 30%;
  }
}
@media (max-width: 1199.98px) {
  #large-full-bleed-black-friday-info-aw21 .kop-html-text {
    padding-bottom: 1.25rem;
  }
  #large-full-bleed-black-friday-info-aw21 .without-hotspots,
  #large-full-bleed-black-friday-info-aw21 .kop-hero-wrapper,
  #full-bleed-hero-large-black-friday-form-black-aw21 .without-hotspots,
  #full-bleed-hero-large-black-friday-form-black-aw21 .kop-hero-wrapper {
    background-size: 15%;
  }
}
@media screen and (min-width: 1024px) {
  .kop-hero.without-hotspots .kop-hero-content-wrapper[data-vertical~=middle] {
    justify-content: center;
  }
  .kop-hero.without-hotspots .kop-hero-content-wrapper[data-vertical~=top] {
    justify-content: flex-start;
  }
  .kop-hero.without-hotspots .kop-hero-content-wrapper[data-vertical~=bottom] {
    justify-content: flex-end;
  }
  .kop-hero.without-hotspots .kop-hero-content-wrapper[data-horizontal~=center] {
    align-items: center;
  }
  .kop-hero.without-hotspots .kop-hero-content-wrapper[data-horizontal~=left] {
    align-items: flex-start;
  }
  .kop-hero.without-hotspots .kop-hero-content-wrapper[data-horizontal~=right] {
    align-items: flex-end;
  }
  .kop-hero.without-hotspots .kop-hero-content-wrapper[data-alignment~=center] {
    text-align: center !important;
  }
  .kop-hero.without-hotspots .kop-hero-content-wrapper[data-alignment~=left] {
    text-align: left !important;
  }
  .kop-hero.without-hotspots .kop-hero-content-wrapper[data-alignment~=right] {
    text-align: right !important;
  }
  #large-full-bleed-black-friday-info-aw21 .without-hotspots,
  #large-full-bleed-black-friday-info-aw21 .kop-hero-wrapper,
  #full-bleed-hero-large-black-friday-form-black-aw21 .without-hotspots,
  #full-bleed-hero-large-black-friday-form-black-aw21 .kop-hero-wrapper {
    background-repeat: no-repeat;
    background-size: auto;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  .category-plp-inside-results-slot .kop-thirds-media-picture img {
    min-height: 43vw;
  }
}
.category-plp-inside-results-slot {
  display: none;
  margin-bottom: rem-cal(32px);
  margin-top: rem-cal(32px);
}

.search-results-row .row.product-grid .category-plp-inside-results-slot {
  display: block;
}

@media (min-width: 1024px) and (max-width: 1439.98px) {
  .kop-hero-content .hero-mobile-text-hide-on-desktop {
    display: inline-block;
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .kop-hero-content .hero-mobile-text-hide-on-desktop {
    display: none;
  }
}
.kop-hero-content .tooltip-promo-code-msg {
  top: 0;
}
.kop-hero-content .tooltip-promo-code-msg.success-msg {
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  right: 50%;
  transform: translate(50%, -115%);
}
@media (min-width: 1024px) {
  .kop-hero-content .tooltip-promo-code-msg.success-msg {
    box-shadow: none;
    right: 100%;
    transform: translate(100%, -130%);
  }
}
.kop-hero-content .tooltip-promo-code-msg.info-msg {
  right: 0;
  transform: translate(10%, -140%);
}
.kop-hero-content .tooltip-promo-code .promo-code-text {
  border: 1px dashed currentColor;
}
@media (min-width: 1200px) {
  .kop-hero-content .tooltip-promo-code .promo-code-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.kop-hero-content .tooltip-promo-code .promo-code-text > * {
  color: currentColor;
}
.kop-hero-content .tooltip-promo-code .promo-code-text-btn-copy-icon {
  fill: currentColor;
}

@media screen and (min-width: 1024px) {
  .kop-hero.without-hotspots .kop-hero-content-wrapper[data-alignment~=right] .tooltip-promo-code-msg.success-msg {
    right: 0;
    transform: translateY(-130%);
  }
  .kop-hero.without-hotspots .kop-hero-content-wrapper[data-alignment~=right] .tooltip-promo-code-msg.info-msg {
    right: 0;
    transform: translate(10%, -140%);
  }
}
/*md

# Quote

*/
.kop-quote {
  margin: 0 auto;
  max-width: 90rem;
  padding: 2rem 3rem;
}
@media (min-width: 960px) {
  .kop-quote {
    padding: 3rem 0;
  }
}

.kop-quote-wrapper {
  color: #000;
  text-align: center;
}
.kop-quote-wrapper.kop-quote-wrapper--singlecolumn {
  padding-bottom: 4rem;
  padding-top: 4rem;
}
@media (min-width: 960px) {
  .kop-quote-wrapper.kop-quote-wrapper--singlecolumn {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.kop-quote-header {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.375rem;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}
@media (min-width: 544px) {
  .kop-quote-header {
    font-size: 1.625rem;
    line-height: 1.625rem;
  }
}
@media (min-width: 960px) {
  .kop-quote-header {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}

.kop-quote-content-wrapper {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kop-quote-wrapper--singlecolumn .kop-quote-content-wrapper {
  display: block;
  flex-direction: unset;
}
@media (min-width: 960px) {
  .kop-quote-content-wrapper {
    flex-direction: row;
  }
}

.kop-quote-content {
  align-self: center;
  justify-self: center;
  width: 100%;
}
.kop-quote-content-wrapper--layout-left .kop-quote-content {
  order: 2;
}
.kop-quote-content-wrapper--layout-right .kop-quote-content {
  order: 2;
}
.kop-quote-content-wrapper--layout-right .kop-quote-content {
  padding-bottom: 1.5rem;
}
@media (min-width: 960px) {
  .kop-quote-content {
    padding: 2rem 4rem;
    width: 50%;
  }
  .kop-quote-content-wrapper--layout-left .kop-quote-content {
    border-left: 1px #999 solid;
    order: 2;
  }
  .kop-quote-content-wrapper--layout-right .kop-quote-content {
    border-right: 1px #999 solid;
    order: 1;
    padding-bottom: 2rem;
  }
  .kop-quote-wrapper--singlecolumn .kop-quote-content {
    padding: 0;
    width: 100%;
  }
}

.kop-quote-content-copy {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5rem;
}
@media (min-width: 544px) {
  .kop-quote-content-copy {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
@media (min-width: 960px) {
  .kop-quote-content-copy {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

.kop-quote-content-cta {
  display: block;
  margin-top: 1.25rem;
}

@media (max-width: 959.98px) {
  .kop-quote-btn {
    font-size: 0.875rem;
  }
}

.kop-quote-text-wrapper {
  align-self: center;
  justify-self: center;
}
.kop-quote-content-wrapper--layout-left .kop-quote-text-wrapper {
  order: 1;
  padding-bottom: 1.5rem;
}
.kop-quote-content-wrapper--layout-right .kop-quote-text-wrapper {
  order: 1;
  padding-bottom: 1.5rem;
}
@media (min-width: 960px) {
  .kop-quote-text-wrapper {
    padding: 2rem 4rem;
    width: 50%;
  }
  .kop-quote-content-wrapper--layout-left .kop-quote-text-wrapper {
    border-right: 1px #999 solid;
    margin-right: -0.0625rem;
    order: 1;
    padding-bottom: 2rem;
  }
  .kop-quote-content-wrapper--layout-right .kop-quote-text-wrapper {
    border-left: 1px #999 solid;
    margin-left: -0.0625rem;
    order: 2;
    padding-bottom: 2rem;
  }
  .kop-quote-wrapper--singlecolumn .kop-quote-text-wrapper {
    width: 100%;
  }
}

.kop-quote-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.125rem;
  margin: 0 0 0.5rem;
  quotes: "“" "”" "«" "»";
  text-transform: uppercase;
}
@media (min-width: 544px) {
  .kop-quote-text {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 960px) {
  .kop-quote-text {
    font-size: 2rem;
    letter-spacing: 0.125rem;
    line-height: 2rem;
  }
}

.kop-quote-content .kop-quote-content-cta {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .kop-quote-content .kop-quote-content-cta {
    flex-direction: column;
  }
  .kop-quote-content .kop-quote-content-cta .kop-quote-btn {
    margin-right: 0;
    margin-top: 1.5rem;
  }
  .kop-quote-content .kop-quote-content-cta .kop-quote-btn:first-of-type {
    margin-top: 0;
  }
}
@media (min-width: 960px) {
  .kop-quote-content .kop-quote-content-cta .kop-quote-btn {
    margin-right: 1.5rem;
  }
}
.kop-quote-content .kop-quote-content-cta .kop-quote-btn:last-of-type {
  margin-right: 0;
}

.kop-wrapped .kop-quote {
  padding: 1.25rem 3rem 2rem;
}
@media (min-width: 960px) {
  .kop-wrapped .kop-quote {
    padding: 1.25rem 0 2.5rem;
  }
}
.kop-wrapped .kop-quote .kop-quote-wrapper--singlecolumn {
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}

/*md

# Trending Now

*/
@media (min-width: 768px) {
  .kop-trendinggroup-wrapper {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}

.kop-trendingtile {
  width: 100%;
}
@media (max-width: 1023.98px) {
  .kop-trendingtile.overlay-content-text-mobile {
    margin-bottom: 1.1875rem;
    position: relative;
  }
}

.kop-trendingtile-media {
  position: relative;
}
.kop-trendingtile-media.background-color-styling {
  padding-top: 100%;
}

.kop-trendingtile-link {
  display: block;
}
.kop-trendingtile-link:focus-visible {
  outline-offset: -2px;
}

.kop-trendingtile-picture {
  display: block;
  min-height: 17.81vw;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .kop-trendingtile-picture {
    min-height: 54vw;
  }
}
@media (max-width: 767.98px) {
  .kop-trendingtile-picture {
    min-height: 100vw;
  }
}
.kop-trendingtile-picture.is-lazy-loaded {
  min-height: inherit;
}

.kop-trendingtile-wrapper {
  position: relative;
}

.kop-trendingtile-content-wrapper {
  pointer-events: none;
  position: relative;
}
@media (min-width: 959px) {
  .kop-trendingtile-content-wrapper[data-alignment~=center] {
    text-align: center !important;
  }
  .kop-trendingtile-content-wrapper[data-alignment~=left] {
    text-align: left !important;
  }
  .kop-trendingtile-content-wrapper[data-alignment~=right] {
    text-align: right !important;
  }
}
@media (max-width: 1198.98px) {
  .kop-trendingtile-content-wrapper[data-alignment-mobile~=center] {
    text-align: center !important;
  }
  .kop-trendingtile-content-wrapper[data-alignment-mobile~=left] {
    text-align: left !important;
  }
  .kop-trendingtile-content-wrapper[data-alignment-mobile~=right] {
    text-align: right !important;
  }
}
@media (min-width: 1200px) {
  .kop-trendingtile-content-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    bottom: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) and (min-width: 959px) {
  .kop-trendingtile-content-wrapper[data-vertical~=middle] {
    justify-content: center;
  }
  .kop-trendingtile-content-wrapper[data-vertical~=top] {
    justify-content: flex-start;
  }
  .kop-trendingtile-content-wrapper[data-vertical~=bottom] {
    justify-content: flex-end;
  }
  .kop-trendingtile-content-wrapper[data-horizontal~=center] {
    align-items: center;
  }
  .kop-trendingtile-content-wrapper[data-horizontal~=left] {
    align-items: flex-start;
  }
  .kop-trendingtile-content-wrapper[data-horizontal~=right] {
    align-items: flex-end;
  }
}
@media (min-width: 1200px) and (max-width: 1198.98px) {
  .kop-trendingtile-content-wrapper[data-vertical-mobile~=middle] {
    justify-content: center;
  }
  .kop-trendingtile-content-wrapper[data-vertical-mobile~=top] {
    justify-content: flex-start;
  }
  .kop-trendingtile-content-wrapper[data-vertical-mobile~=bottom] {
    justify-content: flex-end;
  }
  .kop-trendingtile-content-wrapper[data-horizontal-mobile~=center] {
    align-items: center;
  }
  .kop-trendingtile-content-wrapper[data-horizontal-mobile~=left] {
    align-items: flex-start;
  }
  .kop-trendingtile-content-wrapper[data-horizontal-mobile~=right] {
    align-items: flex-end;
  }
}
@media (min-width: 1200px) and (min-width: 959px) {
  .kop-trendingtile-content-wrapper[data-alignment~=center] {
    text-align: center !important;
  }
  .kop-trendingtile-content-wrapper[data-alignment~=left] {
    text-align: left !important;
  }
  .kop-trendingtile-content-wrapper[data-alignment~=right] {
    text-align: right !important;
  }
}
@media (min-width: 1200px) and (max-width: 1198.98px) {
  .kop-trendingtile-content-wrapper[data-alignment-mobile~=center] {
    text-align: center !important;
  }
  .kop-trendingtile-content-wrapper[data-alignment-mobile~=left] {
    text-align: left !important;
  }
  .kop-trendingtile-content-wrapper[data-alignment-mobile~=right] {
    text-align: right !important;
  }
}
@media (min-width: 1200px) {
  .kop-trendingtile-content-wrapper.overlay-content-text {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (max-width: 1199.98px) {
  .kop-trendingtile-content-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    text-align: center;
  }
}
@media (max-width: 1199.98px) and (min-width: 959px) {
  .kop-trendingtile-content-wrapper[data-vertical~=middle] {
    justify-content: center;
  }
  .kop-trendingtile-content-wrapper[data-vertical~=top] {
    justify-content: flex-start;
  }
  .kop-trendingtile-content-wrapper[data-vertical~=bottom] {
    justify-content: flex-end;
  }
  .kop-trendingtile-content-wrapper[data-horizontal~=center] {
    align-items: center;
  }
  .kop-trendingtile-content-wrapper[data-horizontal~=left] {
    align-items: flex-start;
  }
  .kop-trendingtile-content-wrapper[data-horizontal~=right] {
    align-items: flex-end;
  }
}
@media (max-width: 1199.98px) and (max-width: 1198.98px) {
  .kop-trendingtile-content-wrapper[data-vertical-mobile~=middle] {
    justify-content: center;
  }
  .kop-trendingtile-content-wrapper[data-vertical-mobile~=top] {
    justify-content: flex-start;
  }
  .kop-trendingtile-content-wrapper[data-vertical-mobile~=bottom] {
    justify-content: flex-end;
  }
  .kop-trendingtile-content-wrapper[data-horizontal-mobile~=center] {
    align-items: center;
  }
  .kop-trendingtile-content-wrapper[data-horizontal-mobile~=left] {
    align-items: flex-start;
  }
  .kop-trendingtile-content-wrapper[data-horizontal-mobile~=right] {
    align-items: flex-end;
  }
}
@media (max-width: 1199.98px) and (min-width: 959px) {
  .kop-trendingtile-content-wrapper[data-alignment~=center] {
    text-align: center !important;
  }
  .kop-trendingtile-content-wrapper[data-alignment~=left] {
    text-align: left !important;
  }
  .kop-trendingtile-content-wrapper[data-alignment~=right] {
    text-align: right !important;
  }
}
@media (max-width: 1199.98px) and (max-width: 1198.98px) {
  .kop-trendingtile-content-wrapper[data-alignment-mobile~=center] {
    text-align: center !important;
  }
  .kop-trendingtile-content-wrapper[data-alignment-mobile~=left] {
    text-align: left !important;
  }
  .kop-trendingtile-content-wrapper[data-alignment-mobile~=right] {
    text-align: right !important;
  }
}
@media (max-width: 1199.98px) {
  .kop-trendingtile-content-wrapper.overlay-content-text-mobile {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.kop-trendingtile-content {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .kop-trendingtile-content {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 1199.98px) {
  .kop-trendingtile-content .hide-on-mobile {
    display: none;
  }
}
@media (min-width: 1024px) {
  .kop-trendingtile-content .hide-on-desktop {
    display: none;
  }
}

.kop-trendingtile-content-header > h3 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.375rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
}
@media (min-width: 544px) {
  .kop-trendingtile-content-header > h3 {
    font-size: 1.625rem;
    line-height: 1.625rem;
  }
}
@media (min-width: 768px) {
  .kop-trendingtile-content-header > h3 {
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin: 0 0 0.5rem;
  }
}

.kop-trendingtile-content-copy {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  margin: 0 0 1rem;
}
@media (min-width: 544px) {
  .kop-trendingtile-content-copy {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
@media (min-width: 768px) {
  .kop-trendingtile-content-copy {
    font-size: 0.875rem;
    line-height: 1.125rem;
    margin: 0 0 0.5625rem;
  }
}

.kop-trendingtile-content-cta {
  display: flex;
  flex-direction: column;
  margin: 0 0 1rem;
}
@media (min-width: 1024px) {
  .kop-trendingtile-content-cta {
    align-items: center;
  }
  [data-alignment~=center] .kop-trendingtile-content-cta {
    align-items: center;
  }
  [data-alignment~=right] .kop-trendingtile-content-cta {
    align-items: flex-end;
  }
  [data-alignment~=left] .kop-trendingtile-content-cta {
    align-items: flex-start;
  }
}
@media (max-width: 1199.98px) {
  .kop-trendingtile-content-cta {
    align-items: center;
  }
  [data-alignment-mobile~=center] .kop-trendingtile-content-cta {
    align-items: center;
  }
  [data-alignment-mobile~=right] .kop-trendingtile-content-cta {
    align-items: flex-end;
  }
  [data-alignment-mobile~=left] .kop-trendingtile-content-cta {
    align-items: flex-start;
  }
}

.kop-trendingtile-btn {
  margin: 0 0.3125rem 0.75rem;
  pointer-events: auto;
}
@media (max-width: 767.98px) {
  .kop-trendingtile-btn {
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) {
  .kop-trendingtile-btn:nth-child(3) {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}

.kop-trendinggroup {
  padding: 1.25rem 0 0 0;
}
@media (min-width: 768px) {
  .kop-trendinggroup {
    padding: 1.25rem 1.25rem 0;
  }
}
@media (min-width: 960px) {
  .kop-trendinggroup {
    background-color: #fff !important;
  }
}
@media (min-width: 1024px) {
  .kop-trendinggroup.three-tiles .kop-trendingtile-media.background-color-styling {
    padding-top: 55.4166%;
  }
}

.kop-trendinggrouptile-enable-padding .kop-trendingtile {
  padding: 0 0.5rem;
}
@media (min-width: 960px) {
  .kop-trendinggrouptile-enable-padding .kop-trendingtile {
    padding: 0 0.25rem;
  }
}

.kop-trendinggroup-title {
  margin: 0 auto;
  max-width: 90rem;
  padding: 1.25rem 0 0;
}

.kop-trendinggroup-title-wrapper {
  color: #000;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 960px) {
  .kop-trendinggroup-title-wrapper.kop-trendinggroup-title-wrapper--singlecolumn {
    padding: 0 4rem;
  }
}

.kop-trendinggroup-title-header {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.375rem;
  text-transform: uppercase;
}
@media (min-width: 960px) {
  .kop-trendinggroup-title-header {
    font-size: 1.75rem;
    line-height: 1.75rem;
  }
}

/*md

# Variables

*/
/*md

# Color variables

*/
/*md

# Fonts variables

*/
/*md

# Functions

This section describes core functions used for development in the project.

## Function strip-unit

Removes the unit (e.g. px, em, rem) from a value, returning the number only.

Returns the same number, sans unit.

## Function value-to-rem

**Private function**.
Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value.
By default, the base pixel value used to calculate the rem value is taken from the `$globalFontSize` variable.

Returns a number in rems, calculated based on the given value and the base pixel value.
rem values are passed through as is.

## Function rem-calc

Converts one or more pixel values into matching rem values.
By default, the base pixel value used to calculate the rem value is taken from the `$globalFontSize` variable.
If you need to convert a comma-separated list, wrap the list in parentheses.

Return a list of converted values.

## Function map-safe-get

Safely return a value from a map.

Returns found value. Can has any SASS data type

## Function map-deep-get

**Private function**.

Safely return a value from a map.

Returns found value.

*/
/*md

# Mixins

This section describes core mixins used for development in the project.

## Mixin generate-font-face

Generate `@font-face` rules

## Mixin when-inside

Helps make context selector a little more friendly

### Mixin on-event

Event wrapper. Setting up `:hover`, `:active`, `:focus` pseudo classes for selector

## Mixin clearfix

Quickly and easily clear floated content within a container

## Mixin placeholder

Setting up 'color' property for input placeholder for different browsers

## Mixin text-truncate

Truncate text overflow

## Mixins for Glide carousel

glide-carousel-title, glide-carousel-slides, glide-carousel-bullets-space, glide-carousel-bullets-item

*/
.product-horizontal-carousel {
  padding: 3.75rem 0 2.8125rem;
}
@media (min-width: 1024px) {
  .product-horizontal-carousel {
    padding: 3.75rem 0 7.5rem;
  }
}

.product-horizontal-carousel-title {
  margin: 0 1.5rem 1.875rem;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .product-horizontal-carousel-title {
    margin: 0 0.9375rem 1.5625rem;
  }
}

.product-horizontal-carousel-title-text {
  color: #000;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.125rem;
  line-height: 2rem;
  margin: 0.625rem 0 0;
}
@media (max-width: 1023.98px) {
  .product-horizontal-carousel-title-text {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 768px) {
  .product-horizontal-carousel-title-icon {
    display: block;
    margin: auto;
    max-width: 50%;
  }
}

.product-horizontal-carousel-title-img {
  max-width: 100%;
}

.product-horizontal-carousel-image-link {
  border: 1px solid #fafafa;
  display: block;
}

@media (min-width: 1200px) {
  .product-horizontal-carousel-glide-arrows .glide-carousel-arrow {
    top: 24vw;
    transform: translateY(calc(-24vw / 2 - 1rem / 2 - 1.5rem));
  }
}
@media (min-width: 1440px) {
  .product-horizontal-carousel-glide-arrows .glide-carousel-arrow {
    top: 27vw;
    transform: translateY(calc(-27vw / 2 - 1rem / 2 - 1.5rem));
  }
}

.product-horizontal-carousel-title {
  color: #000;
}
.product-horizontal-carousel-title .product-horizontal-carousel-title-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.25rem;
  margin: 1rem 0 0.5rem;
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  .product-horizontal-carousel-title .product-horizontal-carousel-title-text {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.product-horizontal-carousel-title .product-horizontal-carousel-subtitle-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 0;
}
@media (max-width: 1023.98px) {
  .product-horizontal-carousel-title .product-horizontal-carousel-subtitle-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.kop-wrapped .product-horizontal-carousel {
  padding-top: 1.875rem;
}

.product-tile-badge.product-tile-badge--stock {
  color: #191919 !important;
}
.product-tile-badge.product-tile-badge--stock .icon {
  display: inline-block;
  height: 0.75rem;
  margin-right: 0.3125rem;
  width: 0.75rem;
}
.product-tile-badge.product-tile-badge--stock .in-stock-icon {
  fill: #008827;
}

.product-tile--has-badge.tile-has-badge {
  opacity: 0.7;
}
.product-tile--has-badge.tile-has-badge.pre-order-product {
  opacity: 1;
}

.skip-link {
  background: #fff;
  border: 0;
  border-radius: 0.25rem;
  clip: rect(0 0 0 0);
  height: 0.0625rem;
  left: 1.5rem;
  margin: -0.0625rem;
  outline: 0.125rem solid transparent;
  outline-offset: 0.125rem;
  overflow: hidden;
  padding: 1rem;
  position: absolute;
  top: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 0.0625rem;
  z-index: 9999;
}
.skip-link:focus {
  clip: auto;
  height: auto;
  width: auto;
}

h1[class=page-title] {
  background-color: #000;
  color: white;
  display: inline-block;
  font-size: 1.5rem;
  margin: 1.375rem 0;
  padding: 0.3125em 0.625em 0.3125em 10px;
  position: relative;
}
@media (max-width: 958.98px) {
  h1[class=page-title] {
    left: 0;
  }
}
@media (min-width: 544px) {
  h1[class=page-title] {
    font-size: 2rem;
  }
}
@media (min-width: 959px) and (max-width: 1198.98px) {
  h1[class=page-title] {
    left: calc((100% - 960px) / 2);
  }
}
@media (min-width: 959px) {
  h1[class=page-title] {
    font-size: 3rem;
  }
}
@media (min-width: 1199px) and (max-width: 1438.98px) {
  h1[class=page-title] {
    left: calc((100% - 1180px) / 2);
  }
}
h1[class=page-title]::before {
  background-color: #000;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
}
@media (min-width: 1199px) and (max-width: 1438.98px) {
  h1[class=page-title]::before {
    left: calc((100vw - 1180px) / 2 * -1);
    width: calc((100vw - 1180px) / 2);
  }
}
@media (min-width: 959px) and (max-width: 1198.98px) {
  h1[class=page-title]::before {
    left: calc((100vw - 960px) / 2 * -1);
    width: calc((100vw - 960px) / 2);
  }
}

.hero {
  background-position: 50%;
  background-size: cover;
  height: 25vw;
  position: relative;
}
.hero h1[class=page-title] {
  margin: -1rem 0 0 0;
  top: 50%;
}

@media (min-width: 544px) {
  .slant-down::after {
    border: 0 solid transparent;
    border-bottom: 4vw solid #fff;
    border-left-width: 90vw;
    border-right-width: 0;
    bottom: 0;
    content: "";
    height: 0;
    position: absolute;
    right: 0;
    width: 0;
  }
}

@media (min-width: 544px) {
  .slant-up::after {
    border: 0 solid transparent;
    border-left-width: 0;
    border-right-width: 90vw;
    border-top: 4vw solid #fff;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
  }
}

.form-nav .nav-tabs .nav-link {
  color: #333;
}

.form-nav .nav-tabs .nav-link.active,
.form-nav .nav-tabs .nav-link.active:focus,
.form-nav .nav-tabs .nav-link.active:hover {
  background-color: #fff;
  color: #333;
}

.nav-tabs .nav-link.active {
  background-color: transparent;
}

@media (min-width: 1199px) {
  .form-nav .nav-item > .nav-link {
    color: #333;
  }
}
/*md

# Product tile swatches

*/
.swatch-container {
  border: 1px solid transparent;
  border-radius: 0.125rem;
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  text-decoration: none;
  width: 2.5625rem;
}
.swatch--selected .swatch-container {
  border: 1px solid #ccc;
  cursor: default;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .swatch-container {
    width: 2.75rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439.98px) {
  .swatch-container {
    width: 3.875rem;
  }
}
@media (min-width: 1200px) {
  .swatch-container {
    width: 3.25rem;
  }
}
.swatch-container .swatch {
  border-radius: 0.125rem;
  height: 100%;
  width: 100%;
}
.product-detail .swatch-container {
  font-size: 0.875rem;
  height: 3.375rem;
  width: 3.375rem;
}
@media (min-width: 768px) {
  .product-detail .swatch-container {
    height: 3.75rem;
    width: 3.75rem;
  }
}
.product-detail .swatch-container.selected {
  border-color: #181818;
  cursor: default;
}

.attribute-color-name {
  color: #666;
  font-size: 0.75rem;
}

.swatches-carousel {
  margin: 0 auto;
  width: 20rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .swatches-carousel {
    width: 14.125rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439.98px) {
  .swatches-carousel {
    width: 19.625rem;
  }
}
@media (min-width: 1200px) {
  .swatches-carousel {
    width: 34.5625rem;
  }
}
.swatches-carousel .glide-carousel-slide {
  background: none;
  border: 0;
  color: inherit;
  padding: 0;
}

.product-badge {
  color: #f00;
  font-weight: 700;
  text-transform: uppercase;
}
.product-quickview .product-badge {
  display: none;
}

.product-badge-box {
  background: #181818;
  border-radius: 0.125rem;
  color: #fff;
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  margin: 0 0.5rem 1.25rem 0;
  padding: 0.375rem 1rem;
  text-transform: uppercase;
  z-index: 1;
}
.product-badge-box.product-badge-box--black-friday-deal, .product-badge-box.product-badge-box--cyber-monday-deal, .product-badge-box.product-badge-box--singles-day-special, .product-badge-box.product-badge-box[class*=percent], .product-badge-box.product-badge-box--sale {
  background: #ba2026;
}
.product-badge-box.product-badge-box--best-seller, .product-badge-box.product-badge-box--exclusive, .product-badge-box.product-badge-box--online-exclusive, .product-badge-box.product-badge-box--limited-edition, .product-badge-box.product-badge-box--puma-select {
  background: #ae946d;
}
.product-badge-box.product-badge-box--customize, .product-badge-box.product-badge-box--personalise {
  background: linear-gradient(90deg, rgb(14, 235, 249) 0%, rgb(148, 111, 186) 33%, rgb(242, 0, 108) 66%, rgb(248, 77, 4) 100%);
}
.product-badge-box.product-badge-box--vegan, .product-badge-box.product-badge-box--sustainable-material, .product-badge-box.product-badge-box--sustainable, .product-badge-box.product-badge-box--recycled-materials, .product-badge-box.product-badge-box--organic-cotton, .product-badge-box.product-badge-box--bio-based, .product-badge-box.product-badge-box--recycled, .product-badge-box.product-badge-box--organically-grown-cotton, .product-badge-box.product-badge-box--recycled-upper, .product-badge-box.product-badge-box--chrome-free-leather, .product-badge-box.product-badge-box--bio-based-upper {
  background: #008827;
}
.product-badge-box.product-badge-box--womens {
  background: transparent;
  border: 1px solid #181818;
  color: #181818;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
}

.add-to-cart,
.add-to-cart--update {
  width: 100%;
}
.add-to-cart[disabled], .add-to-cart.disabled,
.add-to-cart--update[disabled],
.add-to-cart--update.disabled {
  background: #999;
  border-color: #999;
  cursor: not-allowed;
  pointer-events: all !important;
}

.addToBagOverlay .modal-dialog,
.addToWishlistOverlay .modal-dialog {
  background-color: #fff;
  border-radius: 0.125rem;
  box-shadow: 0.625rem 0.625rem 1.875rem 0 rgba(0, 0, 0, 0.05);
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: 0;
  position: fixed;
  top: 3.75rem;
  transform: translate(0, 0) !important;
  width: 100%;
}
@media (min-width: 544px) {
  .addToBagOverlay .modal-dialog,
  .addToWishlistOverlay .modal-dialog {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    width: 35.375rem;
  }
}
.addToBagOverlay .modal-dialog .modal-content,
.addToWishlistOverlay .modal-dialog .modal-content {
  height: auto;
}
.addToBagOverlay .modal-dialog .close,
.addToWishlistOverlay .modal-dialog .close {
  line-height: 1.375rem;
  opacity: 1;
  padding: 0;
  right: 1rem;
  top: 1rem;
}
@media (min-width: 544px) {
  .addToBagOverlay .modal-dialog .close,
  .addToWishlistOverlay .modal-dialog .close {
    right: 2.5rem;
    top: 1.875rem;
  }
}
.addToBagOverlay .modal-dialog .close:focus,
.addToWishlistOverlay .modal-dialog .close:focus {
  outline: none;
}
.addToBagOverlay .modal-dialog .close:focus-visible,
.addToWishlistOverlay .modal-dialog .close:focus-visible {
  box-shadow: none;
  outline: 2px solid #8c9198;
  outline-offset: 2px;
}
.addToBagOverlay .modal-dialog .modal-body,
.addToWishlistOverlay .modal-dialog .modal-body {
  padding: 1rem 1rem 1.25rem;
}
@media (min-width: 544px) {
  .addToBagOverlay .modal-dialog .modal-body,
  .addToWishlistOverlay .modal-dialog .modal-body {
    padding: 1.875rem 2.5rem 1.25rem;
  }
}
.addToBagOverlay .product-carousel,
.addToWishlistOverlay .product-carousel {
  padding: 0 3.125rem;
}

.addToWishlistOverlay .modal-body {
  padding: 1.875rem 1.875rem 1.25rem;
}
@media (min-width: 544px) {
  .addToWishlistOverlay .modal-dialog {
    left: auto;
    right: 1.25rem;
    top: 5.5rem;
    transform: none !important;
    width: 33.5rem;
  }
  .addToWishlistOverlay .modal-dialog .close {
    right: 1.875rem;
    top: 1.875rem;
  }
}

.bag-overlay .adjust-quantity-message {
  color: #c00;
}
.bag-overlay .line-item-attribute-value {
  display: inline-table;
  word-break: break-all;
  word-wrap: break-word;
}

.bag-overlay-recommendations-header {
  font-size: 2.25rem;
}
@media (max-width: 767.98px) {
  .bag-overlay-recommendations-header {
    font-size: 1.5rem;
  }
}

.bag-overlay-quantity-added {
  color: #008827;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .bag-overlay-quantity-added {
    margin-bottom: 1.875rem;
  }
}
.bag-overlay-quantity-added .icon {
  height: 1.25rem;
  margin-right: 0.625rem;
  vertical-align: middle;
  width: 1.25rem;
}

.bag-overlay-product-overview {
  display: flex;
  margin-bottom: 1.875rem;
}

.bag-overlay-product-image-wrapper,
.bag-overlay-product-info-wrapper {
  padding: 0;
}

.bag-overlay-product-info-wrapper {
  padding-left: 0.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .bag-overlay-product-info-wrapper {
    padding-left: 1.25rem;
  }
}

.bag-overlay-attributes-container {
  margin-bottom: 0.625rem;
}

.bag-overlay-product-name {
  color: #181818;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .bag-overlay-product-name {
    font-size: 1rem;
  }
}

.bag-overlay-price {
  text-align: right;
}
@media (min-width: 544px) {
  .bag-overlay-price {
    flex-grow: 1;
    width: 100%;
  }
}
.bag-overlay-price.bag-overlay-price--desktop {
  display: none;
}
@media (min-width: 544px) {
  .bag-overlay-price.bag-overlay-price--desktop {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.bag-overlay-price.bag-overlay-price--mobile {
  display: block;
  margin-bottom: 0.625rem;
  text-align: left;
}
@media (min-width: 544px) {
  .bag-overlay-price.bag-overlay-price--mobile {
    display: none;
  }
}

.bag-overlay-attributes {
  font-size: 0.75rem;
  line-height: 1rem;
  margin-bottom: 0.625rem;
  padding: 0;
}
@media (min-width: 768px) {
  .bag-overlay-attributes {
    font-size: 0.875rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
  }
}

.bag-overlay-attribute {
  color: #181818;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}
@media (min-width: 768px) {
  .bag-overlay-attribute {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}
.bag-overlay-attribute .attr-label {
  color: #777;
  margin-bottom: 0;
}
.bag-overlay-attribute + .bag-overlay-attribute {
  margin-top: 0.3125rem;
}
.bag-overlay-attribute span {
  word-break: break-word;
}

.bag-overlay-additional-btns,
.bag-overlay-basic-btns {
  display: flex;
  padding: 0;
}

.bag-overlay-btn-wrapper {
  padding: 0;
}
.bag-overlay-btn-wrapper.bag-overlay-btn-wrapper--right {
  padding-right: 0.25rem;
}
.bag-overlay-btn-wrapper.bag-overlay-btn-wrapper--left {
  padding-left: 0.25rem;
}
.bag-overlay-btn-wrapper .btn-primary {
  font-weight: 700;
  text-transform: uppercase;
}
.bag-overlay-btn-wrapper .btn-outline-dark {
  border-color: #181818;
  color: #181818;
  padding: 0.75rem 1rem;
  width: 100%;
}
.bag-overlay-btn-wrapper .btn-outline-dark:hover, .bag-overlay-btn-wrapper .btn-outline-dark:active, .bag-overlay-btn-wrapper .btn-outline-dark:focus {
  background-color: #181818;
  border-color: #181818;
  color: #fff;
}
.bag-overlay-btn-wrapper .btn--checkout {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.bag-overlay-additional-btns {
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bag-overlay-additional-btns .paypal-btn-text {
  display: none;
}

.bag-overlay-recommendations {
  border-top: 5px solid #eee;
}
@media (max-width: 767.98px) {
  .bag-overlay-recommendations {
    padding: 1.25rem;
  }
}
.bag-overlay-recommendations .product-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .bag-overlay-recommendations .product-list {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .bag-overlay-recommendations .product-list__tile {
    flex: 1;
    max-width: 12.5rem;
    padding: 0.625rem;
  }
}
.bag-overlay-recommendations .product-list__link:hover, .bag-overlay-recommendations .product-list__link:active, .bag-overlay-recommendations .product-list__link:focus {
  text-decoration: none;
}
.bag-overlay-recommendations .product-list__link:hover .product-list__btn, .bag-overlay-recommendations .product-list__link:active .product-list__btn, .bag-overlay-recommendations .product-list__link:focus .product-list__btn {
  display: block;
}
.bag-overlay-recommendations .product-list__image-wrapper {
  position: relative;
  text-align: center;
}
.bag-overlay-recommendations .product-list__btn-wrapper {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  align-items: center;
  display: flex;
  justify-content: center;
}
.bag-overlay-recommendations .product-list__hr {
  border-color: #ccc;
}
.bag-overlay-recommendations .product-list__btn {
  display: none;
}
.bag-overlay-recommendations .product-list__image {
  max-width: 100%;
  width: auto;
}

@media (min-width: 1200px) {
  .addToBagOverlay .modal-content {
    max-height: 90vh;
    overflow-y: auto;
  }
  .addToBagOverlay .modal-content::-webkit-scrollbar {
    width: 10px;
  }
  .addToBagOverlay .modal-content::-webkit-scrollbar-track {
    background: #eee;
  }
  .addToBagOverlay .modal-content::-webkit-scrollbar-thumb {
    background: #ccc;
  }
  .addToBagOverlay .modal-content::-webkit-scrollbar-thumb:window-inactive {
    background: #ccc;
  }
}

@media (max-width: 767.98px) {
  .addToBagOverlay .modal-dialog {
    overflow-y: auto;
  }
}

.p-minicart .configured-attribute .line-item-attribute-name {
  font-size: 0.75rem;
  margin: 0 0.625rem 0 0;
}
.p-minicart .configured-attribute .line-item-attribute-name::after {
  content: ":";
}
.p-minicart .configured-attribute .line-item-attribute-value {
  color: #181818;
}
.addToBagOverlay .configured-attribute {
  margin-top: 0.3125rem;
}
.addToBagOverlay .configured-attribute .line-item-attribute-name {
  color: #777;
  margin: 0 0.3125rem 0 0;
}
.addToBagOverlay .configured-attribute .line-item-attribute-name::after {
  content: ":";
}
.cart-product-wrapper .configured-attribute .line-item-attribute-name {
  margin-right: 0.625rem;
}

.wishlist-overlay .row {
  margin: 0;
}

.wishlist-overlay-item-added {
  color: #181818;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  padding: 0 1.5625rem 1.25rem 0;
}
.wishlist-overlay-item-added .icon {
  height: 1.5rem;
  margin-right: 1.0625rem;
  vertical-align: middle;
  width: 1.5rem;
}

.wishlist-overlay-product-overview {
  border-top: 1px solid #eee;
  display: flex;
  padding: 0.4375rem 0;
}

.wishlist-overlay-product-image-wrapper {
  padding: 0;
}

.wishlist-overlay-product-image {
  max-width: 5rem;
}

.wishlist-overlay-product-name {
  color: #181818;
  font-size: 1.125rem;
  font-weight: 500;
}

.wishlist-overlay-price {
  margin-bottom: 1.25rem;
}
.wishlist-overlay-price .price {
  display: inline-block;
}

.wishlist-overlay-status {
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

.wishlist-overlay-action-btn {
  display: block;
}

.product-quickview .product-name {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.product-quickview .prices .sales {
  color: #222;
  font-size: 1.375rem;
}
.product-quickview .prices .is-sale-price {
  color: #ba2026;
}
.product-quickview .product-vat-style {
  color: #666;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.product-quickview .line-item-promo {
  margin-bottom: 1.1875rem;
}
.product-quickview .line-item-promo-callout {
  font-weight: 600;
  margin: 0.4375rem 0;
}
.product-quickview .full-pdp-link,
.product-quickview .full-wishlist-link {
  border: none;
  padding-bottom: 0.1875rem;
  position: relative;
  transition: 0.15s color;
  color: #181818;
  cursor: pointer;
  padding-bottom: 0.1875rem;
}
.product-quickview .full-pdp-link:hover, .product-quickview .full-pdp-link:active, .product-quickview .full-pdp-link:focus,
.product-quickview .full-wishlist-link:hover,
.product-quickview .full-wishlist-link:active,
.product-quickview .full-wishlist-link:focus {
  color: #181818;
  text-decoration: none;
}
.product-quickview .full-pdp-link:hover::after, .product-quickview .full-pdp-link:active::after, .product-quickview .full-pdp-link:focus::after,
.product-quickview .full-wishlist-link:hover::after,
.product-quickview .full-wishlist-link:active::after,
.product-quickview .full-wishlist-link:focus::after {
  left: 0;
  right: auto;
  width: 100%;
}
.product-quickview .full-pdp-link::before, .product-quickview .full-pdp-link::after,
.product-quickview .full-wishlist-link::before,
.product-quickview .full-wishlist-link::after {
  background-color: #ccc;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.product-quickview .full-pdp-link::after,
.product-quickview .full-wishlist-link::after {
  background-color: #777;
  left: auto;
  right: 0;
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}
.product-quickview .sign-up-to-buy-wrap-bottom {
  color: #000;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
.product-quickview .sign-up-to-buy-wrap-bottom p {
  display: inline;
}
.product-quickview .sign-up-to-buy-wrap-bottom a {
  border: none;
  padding-bottom: 0.125rem;
  position: relative;
  transition: 0.15s color;
  color: #191919;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
}
.product-quickview .sign-up-to-buy-wrap-bottom a:hover, .product-quickview .sign-up-to-buy-wrap-bottom a:active, .product-quickview .sign-up-to-buy-wrap-bottom a:focus {
  color: #181818;
  text-decoration: none;
}
.product-quickview .sign-up-to-buy-wrap-bottom a:hover::after, .product-quickview .sign-up-to-buy-wrap-bottom a:active::after, .product-quickview .sign-up-to-buy-wrap-bottom a:focus::after {
  left: 0;
  right: auto;
  width: 100%;
}
.product-quickview .sign-up-to-buy-wrap-bottom a::before, .product-quickview .sign-up-to-buy-wrap-bottom a::after {
  background-color: #ccc;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.product-quickview .sign-up-to-buy-wrap-bottom a::after {
  background-color: #777;
  left: auto;
  right: 0;
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}

.product-quickview-item-image {
  margin-bottom: 1rem;
}
@media (min-width: 544px) {
  .product-quickview-item-image {
    margin-bottom: 0;
  }
}

.product-quickview-attributes .availability-wrapper.visually-hidden {
  display: none;
}
.product-quickview-attributes .max-order-qty-msg.hidden {
  display: none;
}

.product-attribute.product-attribute--size.hidden, .product-attribute.product-attribute--quantity.hidden {
  display: none;
}

.quickViewModal .modal-body {
  padding: 1.875rem;
}

.quantity-limit {
  border: 1px #ba2026 solid;
  display: none;
  margin: 0.3125rem 0 1.25rem;
  padding: 0.3125rem 0.625rem 0.625rem;
}
.quantity-limit.has-message {
  display: block;
}

.modal-backdrop + .modal-backdrop:last-child {
  z-index: 9999;
}

.line-item-promo-modal {
  z-index: 10000;
}

.bag-overlay .adjust-quantity-message {
  color: #c00;
}
.bag-overlay .line-item-attribute-value {
  display: inline-table;
  word-break: break-all;
  word-wrap: break-word;
}

.bag-overlay-recommendations-header {
  font-size: 2.25rem;
}
@media (max-width: 767.98px) {
  .bag-overlay-recommendations-header {
    font-size: 1.5rem;
  }
}

.bag-overlay-quantity-added {
  color: #008827;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .bag-overlay-quantity-added {
    margin-bottom: 1.875rem;
  }
}
.bag-overlay-quantity-added .icon {
  height: 1.25rem;
  margin-right: 0.625rem;
  vertical-align: middle;
  width: 1.25rem;
}

.bag-overlay-product-overview {
  display: flex;
  margin-bottom: 1.875rem;
}

.bag-overlay-product-image-wrapper,
.bag-overlay-product-info-wrapper {
  padding: 0;
}

.bag-overlay-product-info-wrapper {
  padding-left: 0.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .bag-overlay-product-info-wrapper {
    padding-left: 1.25rem;
  }
}

.bag-overlay-attributes-container {
  margin-bottom: 0.625rem;
}

.bag-overlay-product-name {
  color: #181818;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .bag-overlay-product-name {
    font-size: 1rem;
  }
}

.bag-overlay-price {
  text-align: right;
}
@media (min-width: 544px) {
  .bag-overlay-price {
    flex-grow: 1;
    width: 100%;
  }
}
.bag-overlay-price.bag-overlay-price--desktop {
  display: none;
}
@media (min-width: 544px) {
  .bag-overlay-price.bag-overlay-price--desktop {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.bag-overlay-price.bag-overlay-price--mobile {
  display: block;
  margin-bottom: 0.625rem;
  text-align: left;
}
@media (min-width: 544px) {
  .bag-overlay-price.bag-overlay-price--mobile {
    display: none;
  }
}

.bag-overlay-attributes {
  font-size: 0.75rem;
  line-height: 1rem;
  margin-bottom: 0.625rem;
  padding: 0;
}
@media (min-width: 768px) {
  .bag-overlay-attributes {
    font-size: 0.875rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
  }
}

.bag-overlay-attribute {
  color: #181818;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}
@media (min-width: 768px) {
  .bag-overlay-attribute {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}
.bag-overlay-attribute .attr-label {
  color: #777;
  margin-bottom: 0;
}
.bag-overlay-attribute + .bag-overlay-attribute {
  margin-top: 0.3125rem;
}
.bag-overlay-attribute span {
  word-break: break-word;
}

.bag-overlay-additional-btns,
.bag-overlay-basic-btns {
  display: flex;
  padding: 0;
}

.bag-overlay-btn-wrapper {
  padding: 0;
}
.bag-overlay-btn-wrapper.bag-overlay-btn-wrapper--right {
  padding-right: 0.25rem;
}
.bag-overlay-btn-wrapper.bag-overlay-btn-wrapper--left {
  padding-left: 0.25rem;
}
.bag-overlay-btn-wrapper .btn-primary {
  font-weight: 700;
  text-transform: uppercase;
}
.bag-overlay-btn-wrapper .btn-outline-dark {
  border-color: #181818;
  color: #181818;
  padding: 0.75rem 1rem;
  width: 100%;
}
.bag-overlay-btn-wrapper .btn-outline-dark:hover, .bag-overlay-btn-wrapper .btn-outline-dark:active, .bag-overlay-btn-wrapper .btn-outline-dark:focus {
  background-color: #181818;
  border-color: #181818;
  color: #fff;
}
.bag-overlay-btn-wrapper .btn--checkout {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.bag-overlay-additional-btns {
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bag-overlay-additional-btns .paypal-btn-text {
  display: none;
}

.bag-overlay-recommendations {
  border-top: 5px solid #eee;
}
@media (max-width: 767.98px) {
  .bag-overlay-recommendations {
    padding: 1.25rem;
  }
}
.bag-overlay-recommendations .product-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .bag-overlay-recommendations .product-list {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .bag-overlay-recommendations .product-list__tile {
    flex: 1;
    max-width: 12.5rem;
    padding: 0.625rem;
  }
}
.bag-overlay-recommendations .product-list__link:hover, .bag-overlay-recommendations .product-list__link:active, .bag-overlay-recommendations .product-list__link:focus {
  text-decoration: none;
}
.bag-overlay-recommendations .product-list__link:hover .product-list__btn, .bag-overlay-recommendations .product-list__link:active .product-list__btn, .bag-overlay-recommendations .product-list__link:focus .product-list__btn {
  display: block;
}
.bag-overlay-recommendations .product-list__image-wrapper {
  position: relative;
  text-align: center;
}
.bag-overlay-recommendations .product-list__btn-wrapper {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  align-items: center;
  display: flex;
  justify-content: center;
}
.bag-overlay-recommendations .product-list__hr {
  border-color: #ccc;
}
.bag-overlay-recommendations .product-list__btn {
  display: none;
}
.bag-overlay-recommendations .product-list__image {
  max-width: 100%;
  width: auto;
}

@media (min-width: 1200px) {
  .addToBagOverlay .modal-content {
    max-height: 90vh;
    overflow-y: auto;
  }
  .addToBagOverlay .modal-content::-webkit-scrollbar {
    width: 10px;
  }
  .addToBagOverlay .modal-content::-webkit-scrollbar-track {
    background: #eee;
  }
  .addToBagOverlay .modal-content::-webkit-scrollbar-thumb {
    background: #ccc;
  }
  .addToBagOverlay .modal-content::-webkit-scrollbar-thumb:window-inactive {
    background: #ccc;
  }
}

@media (max-width: 767.98px) {
  .addToBagOverlay .modal-dialog {
    overflow-y: auto;
  }
}

.p-minicart .configured-attribute .line-item-attribute-name {
  font-size: 0.75rem;
  margin: 0 0.625rem 0 0;
}
.p-minicart .configured-attribute .line-item-attribute-name::after {
  content: ":";
}
.p-minicart .configured-attribute .line-item-attribute-value {
  color: #181818;
}
.addToBagOverlay .configured-attribute {
  margin-top: 0.3125rem;
}
.addToBagOverlay .configured-attribute .line-item-attribute-name {
  color: #777;
  margin: 0 0.3125rem 0 0;
}
.addToBagOverlay .configured-attribute .line-item-attribute-name::after {
  content: ":";
}
.cart-product-wrapper .configured-attribute .line-item-attribute-name {
  margin-right: 0.625rem;
}

.size-chart-body .measurements .measurements__image {
  width: 12rem !important;
}
.size-chart-body .measurements .measurements__subtitle {
  width: 7rem;
}

#fitanalytics__button {
  right: 0 !important;
}
@media (max-width: 360px) {
  #fitanalytics__button {
    top: 1.5625rem !important;
  }
}
#fitanalytics__button:hover, #fitanalytics__button:active, #fitanalytics__button:focus {
  color: #181818;
  outline: none;
}

.pdp-product-size-container #fitanalytics__button {
  position: relative !important;
}

.applepay-disable-paypal {
  display: none;
}

@supports (-webkit-appearance: -apple-pay-button) {
  .cart-page .applepay-container button {
    -webkit-appearance: -apple-pay-button;
    border-radius: 0;
    -apple-pay-button-style: white-outline;
    -apple-pay-button-type: plain;
  }
}
.cart-page .applepay-container > div {
  display: flex;
  height: 2.625rem;
}
.cart-page .applepay-terms {
  font-size: 0.75rem;
  margin-top: 0.625rem;
}

@supports (-webkit-appearance: -apple-pay-button) {
  .paypal-applepay-btns .applepay-container button {
    -webkit-appearance: -apple-pay-button;
    border-radius: 0;
    margin: 0.625rem 0 0 !important;
    -apple-pay-button-style: white-outline;
    -apple-pay-button-type: plain;
  }
}
.paypal-applepay-btns .applepay-container > div {
  display: flex;
  height: 100%;
}

.data-checkout-stage[data-checkout-stage] button[class=apple-pay-cart] {
  display: block;
}
@supports (-webkit-appearance: -apple-pay-button) {
  .data-checkout-stage .applepay-container button {
    -webkit-appearance: -apple-pay-button;
    -apple-pay-button-type: check-out;
  }
}
.data-checkout-stage .applepay-container > div {
  background: #000;
}
.data-checkout-stage .applepay-terms {
  font-size: 0.75rem;
  padding: 0 0.625rem;
}

@supports (-webkit-appearance: -apple-pay-button) {
  .addToBagOverlay .applepay-container button {
    -webkit-appearance: -apple-pay-button;
    border-radius: 0;
    margin: 0.625rem 0 0 !important;
    -apple-pay-button-style: white-outline;
    -apple-pay-button-type: plain;
  }
}
.addToBagOverlay .applepay-container > div {
  padding: 0.0625rem;
}
.addToBagOverlay .applepay-terms {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  display: block;
  font-size: 0.75rem;
  margin: 0.625rem 0;
  padding: 0 0.625rem;
}
.addToBagOverlay .paypal-button {
  background-color: #eee;
  border-color: transparent;
  margin: 0.625rem 0 0;
  padding: 0.5rem 0;
  width: 100%;
}
.addToBagOverlay .paypal-button:hover, .addToBagOverlay .paypal-button:active, .addToBagOverlay .paypal-button:focus {
  background-color: #e5e7eb;
}
.addToBagOverlay .paypal-btn-image,
.addToBagOverlay .paypal-button-image {
  max-width: 5.625rem;
}

#modal-applepay-term .modal-dialog,
#modal-applepay-privacy .modal-dialog,
#modal-applepay-withdrawal .modal-dialog {
  top: 1.875rem;
  transform: translateX(-50%) !important;
}
#modal-applepay-term .modal-header,
#modal-applepay-privacy .modal-header,
#modal-applepay-withdrawal .modal-header {
  padding: 0;
}

.p-minicart-row .applepay-terms,
.cart-page .applepay-terms,
.data-checkout-stage .applepay-terms {
  color: #777;
  margin-top: 0.875rem;
}
.p-minicart-row .applepay-terms .overlay-link,
.cart-page .applepay-terms .overlay-link,
.data-checkout-stage .applepay-terms .overlay-link {
  color: #333;
  font-weight: 400;
}

.scanner-overlay {
  display: block;
}
.scanner-overlay video {
  height: 100%;
}
.scanner-overlay .modal-fs__body,
.scanner-overlay .modal-fs__title {
  padding: 0;
}
.scanner-overlay .modal-fs__close {
  padding: 1rem 0.8125rem 1.0625rem;
  z-index: 2;
}
.scanner-overlay .modal-fs__close span {
  display: flex;
}
.scanner-overlay .modal-body.modal-fs__body {
  position: static;
}
.scanner-overlay-image {
  height: 75%;
  position: relative;
  top: 70px;
  z-index: 9999;
}
.scanner-overlay .p-header-simple.headroom {
  z-index: 1;
}
.scanner-modal__header__text {
  color: #000;
  font-family: "FFDINforPuma", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  font-stretch: normal;
  font-style: normal;
  font-weight: 700;
  left: 0;
  letter-spacing: normal;
  line-height: normal;
  margin: auto;
  padding: 1.25rem;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  top: 0;
}
.scanner-modal__help__text {
  background: transparent;
  bottom: 0.625rem;
  color: #fff;
  margin: 0 auto;
  padding: 1.25rem;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.overlay-image {
  height: 90%;
  padding: 1.25rem;
}

/*md

# Variables

*/
/*md

# Color variables

*/
/*md

# Fonts variables

*/
/*md

# Functions

This section describes core functions used for development in the project.

## Function strip-unit

Removes the unit (e.g. px, em, rem) from a value, returning the number only.

Returns the same number, sans unit.

## Function value-to-rem

**Private function**.
Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value.
By default, the base pixel value used to calculate the rem value is taken from the `$globalFontSize` variable.

Returns a number in rems, calculated based on the given value and the base pixel value.
rem values are passed through as is.

## Function rem-calc

Converts one or more pixel values into matching rem values.
By default, the base pixel value used to calculate the rem value is taken from the `$globalFontSize` variable.
If you need to convert a comma-separated list, wrap the list in parentheses.

Return a list of converted values.

## Function map-safe-get

Safely return a value from a map.

Returns found value. Can has any SASS data type

## Function map-deep-get

**Private function**.

Safely return a value from a map.

Returns found value.

*/
/*md

# Mixins

This section describes core mixins used for development in the project.

## Mixin generate-font-face

Generate `@font-face` rules

## Mixin when-inside

Helps make context selector a little more friendly

### Mixin on-event

Event wrapper. Setting up `:hover`, `:active`, `:focus` pseudo classes for selector

## Mixin clearfix

Quickly and easily clear floated content within a container

## Mixin placeholder

Setting up 'color' property for input placeholder for different browsers

## Mixin text-truncate

Truncate text overflow

## Mixins for Glide carousel

glide-carousel-title, glide-carousel-slides, glide-carousel-bullets-space, glide-carousel-bullets-item

*/
.wishlistItemCards .line-item-attributes {
  font-size: 0.75rem;
  margin-bottom: 0.3125rem;
  padding: 0;
}
@media (min-width: 959px) {
  .wishlistItemCards .line-item-attributes {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }
}
.wishlistItemCards .line-item-attributes__label {
  color: #191919;
  margin-right: 0.625rem;
}
.wishlistItemCards .line-item-attributes__value {
  color: #181818;
}
.wishlistItemCards .item-attributes__qty {
  margin-top: 0.3125rem;
  padding-right: 0;
}
.wishlistItemCards .item-attributes__qty .select-mask__overlay__label {
  display: none;
}
.wishlistItemCards .item-attributes__qty .select-mask__overlay__value {
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 958.98px) {
  .wishlistItemCards .item-attributes__price {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
  }
}
.wishlistItemCards .item-attributes {
  display: block;
  margin: 0;
}
.wishlistItemCards .line-item-img {
  padding-left: 0.625rem;
}
.wishlistItemCards .line-item-img .product-image-wrapper {
  max-width: none;
}
@media (min-width: 544px) {
  .wishlistItemCards .line-item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 543.98px) {
  .wishlistItemCards .line-item-cta {
    margin-top: 1.25rem;
  }
}
.wishlistItemCards .line-item-cta .add-to-cart[disabled],
.wishlistItemCards .line-item-cta .add-to-cart.disabled {
  background-color: #eee;
  border-color: #eee;
  color: #999;
}
.wishlistItemCards .line-item-header {
  color: #181818;
  font-size: 1rem;
  font-weight: 700;
}
.wishlistItemCards .line-item-details {
  padding: 1.25rem 0 0;
}
.wishlistItemCards .card {
  border: 0;
  margin: 2.5rem 0;
}
.wishlistItemCards .price {
  color: #181818;
  font-size: 1rem;
  font-weight: 700;
}
.wishlistItemCards .price .sales {
  display: block;
  font-size: 1rem;
}
.wishlistItemCards .price .sales.text-danger {
  color: #ba2026;
}
@media (min-width: 544px) {
  .wishlistItemCards .custom-control {
    margin-top: 0.625rem;
  }
}
.wishlistItemCards .select-mask__overlay__display {
  height: 2.625rem;
}
.wishlistItemCards .select-mask__overlay__text {
  padding: 0.4375rem 0.6875rem;
}
.wishlistItemCards .my-account {
  margin: 2.5rem auto 5rem;
  padding: 0;
}
@media (min-width: 544px) {
  .wishlistItemCards .my-account {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 1199px) {
  .wishlistItemCards .my-account {
    margin-bottom: 7.5rem;
  }
}
.wishlistItemCards .edit-add-to-wishlist {
  padding-top: 0;
}
.wishlistItemCards .remove-icon,
.wishlistItemCards .edit-icon {
  height: 1.3125rem;
  width: 1.3125rem;
}

.wishlist-product-actions {
  display: flex;
  justify-content: flex-end;
}
.wishlist-product-actions a {
  color: #000;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-right: 0.9375rem;
  text-decoration: underline;
  text-transform: uppercase;
}
.wishlist-product-actions a:last-child {
  margin-right: 0;
}

.wishlist-container .wishlist-empty-icon {
  align-items: center;
  background-color: #eee;
  border-radius: 50%;
  display: flex;
  height: 4.375rem;
  margin: 0 auto 10px;
  width: 4.375rem;
}
.wishlist-container .wishlist-empty-icon .icon {
  height: 1.875rem;
  width: 1.875rem;
}
.wishlist-container .wishlist-empty-text {
  margin-bottom: 1rem;
}
@media (max-width: 543.98px) {
  .wishlist-container .wishlist-empty-text {
    margin: 0 auto;
    max-width: 14.375rem;
    text-align: center;
  }
}
.wishlist-container .wishlist-empty-title {
  display: block;
  font-size: 1.5rem;
  margin: 0.625rem 0 2.5rem;
  text-align: center;
  width: 100%;
}
@media (max-width: 543.98px) {
  .wishlist-container .wishlist-empty-title {
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
  }
}
.wishlist-container .wishlist-empty-description {
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 544px) {
  .wishlist-container .wishlist-empty-description {
    font-size: 1.125rem;
  }
}

@media (min-width: 544px) {
  .login-page.wishlist-login-page {
    padding-top: 3.75rem;
  }
}
@media (min-width: 1199px) {
  .login-page.wishlist-login-page {
    max-width: 64rem;
  }
}
.login-page.wishlist-login-page .wishlist-empty-text {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.25rem;
  padding: 0.25rem 0.875rem 1.75rem;
  text-align: left;
}
@media (max-width: 543.98px) {
  .login-page.wishlist-login-page .wishlist-empty-text {
    font-size: 1.125rem;
    line-height: 1.375rem;
    max-width: 100%;
  }
}
@media (min-width: 544px) {
  .login-page.wishlist-login-page .wishlist-empty-text {
    padding: 0 1.375rem;
  }
}
.login-page.wishlist-login-page .login-form-nav {
  border-bottom: 0;
  padding-bottom: 0;
}

.add-to-wishlist-container {
  flex: 0;
  padding: 0;
}
.add-to-wishlist-container .btn-add-to-wish-list-pdp {
  background-color: #fff;
  border-color: #eee;
  line-height: 0.875rem;
  padding: 0.75rem;
}

.add-to-wishlist-messages,
.remove-from-wishlist-messages {
  font-size: 0.875rem;
  left: 50%;
  position: fixed;
  top: 6.875rem;
  transform: translate(-50%, -50%);
  width: 20.5rem;
  z-index: 1600;
}
@media (min-width: 544px) {
  .add-to-wishlist-messages,
  .remove-from-wishlist-messages {
    left: unset;
    right: 2.0625rem;
    transform: unset;
  }
}
@media (min-width: 959px) {
  .add-to-wishlist-messages,
  .remove-from-wishlist-messages {
    left: unset;
    right: 4.9375rem;
    transform: unset;
  }
}

.add-to-wishlist-alert,
.remove-from-wishlist-alert {
  animation: fade 5s linear forwards;
  background-color: #fafafa;
  border: 1px solid #ccc;
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.875rem;
  text-transform: uppercase;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.add-to-wishlist-alert.show,
.remove-from-wishlist-alert.show {
  display: block;
}

.wishlist-empty-message {
  font-size: 1.5rem;
  margin: 3.125rem 0;
}

.hidden {
  display: none;
}

.shareWishlistModal .close {
  color: #181818;
  opacity: 1;
  padding: 1.25rem;
}
.shareWishlistModal .modal-dialog {
  max-width: 21.5625rem;
}
@media (min-width: 544px) {
  .shareWishlistModal .modal-dialog {
    max-width: 23.4375rem;
  }
}
.shareWishlistModal .modal-content {
  border: none;
}
@media (max-width: 543.98px) {
  .shareWishlistModal .modal-content {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 544px) {
  .shareWishlistModal .modal-body {
    padding: 2.5rem;
  }
}
@media (max-width: 958.98px) {
  .shareWishlistModal .modal-body {
    padding: 2.5rem 1.25rem !important;
  }
}
.shareWishlistModal .public-confirmation-header {
  margin-bottom: 1.25rem;
}
.shareWishlistModal .public-confirmation-body {
  margin-bottom: 2.5rem;
}
@media (max-width: 543.98px) {
  .shareWishlistModal .public-confirmation-body {
    font-size: 0.875rem;
  }
}
.shareWishlistModal .btn-primary {
  margin-bottom: 1.25rem;
  width: 100%;
}
.shareWishlistModal .public-confirmation-btn-link {
  border: none;
  padding-bottom: 0.1875rem;
  position: relative;
  transition: 0.15s color;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.125rem;
  padding: 0 0 0.1875rem;
  text-transform: uppercase;
}
.shareWishlistModal .public-confirmation-btn-link:hover, .shareWishlistModal .public-confirmation-btn-link:active, .shareWishlistModal .public-confirmation-btn-link:focus {
  color: #181818;
  text-decoration: none;
}
.shareWishlistModal .public-confirmation-btn-link:hover::after, .shareWishlistModal .public-confirmation-btn-link:active::after, .shareWishlistModal .public-confirmation-btn-link:focus::after {
  left: 0;
  right: auto;
  width: 100%;
}
.shareWishlistModal .public-confirmation-btn-link::before, .shareWishlistModal .public-confirmation-btn-link::after {
  background-color: #ccc;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.shareWishlistModal .public-confirmation-btn-link::after {
  background-color: #777;
  left: auto;
  right: 0;
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}

.remove-item-from-wishlist {
  font-size: 1.5rem;
}

.search-wishlist-section {
  border: 1px solid #eee;
  margin: 3.75rem 0.875rem 5rem;
  padding: 1.875rem 1.25rem;
}
@media (min-width: 1199px) {
  .search-wishlist-section {
    margin-bottom: 7.5rem;
    padding: 2.5rem;
  }
}
@media (min-width: 544px) {
  .search-wishlist-section {
    margin-bottom: 6.25rem;
  }
}
.search-wishlist-section .form-group {
  align-items: flex-end;
}
.search-wishlist-section .form-control,
.search-wishlist-section .form-control-icons {
  height: 2.625rem;
}
.search-wishlist-section .form-control {
  border-radius: 0.125rem;
}
.search-wishlist-section .has-success > .form-control {
  border-color: #ccc;
}
.search-wishlist-section .has-danger > .form-control {
  border-color: #c00;
}
.search-wishlist-section .form-control-icons {
  display: flex;
}
.search-wishlist-section .form-control-icon {
  height: 1.25rem;
  width: 1.25rem;
}

.search-wishlist-header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.search-wishlist-title {
  color: #181818;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  margin-bottom: 0;
  text-transform: uppercase;
}

.search-wishlist-note {
  margin: 0.625rem 0 0;
  width: 100%;
}
.search-wishlist-note span {
  color: #ba2026;
  margin-right: 0.625rem;
}

.search-wishlist-count {
  color: #6c6c6c;
  font-size: 1.25rem;
  line-height: 2rem;
  margin-left: 0.625rem;
}

.search-wishlist-text {
  margin-bottom: 1.875rem;
}

.search-wishlist-list {
  list-style: none;
  padding: 0;
}

.search-wishlist-item {
  margin-bottom: 1.25rem;
}

.search-wishlist-link {
  color: #181818;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
}
.search-wishlist-link:hover, .search-wishlist-link:active, .search-wishlist-link:focus {
  color: #ae946d;
  font-weight: 700;
  text-decoration: none;
}

.search-wishlist-another-link {
  border: none;
  padding-bottom: 0.1875rem;
  position: relative;
  transition: 0.15s color;
  font-size: 0.75rem;
}
.search-wishlist-another-link:hover, .search-wishlist-another-link:active, .search-wishlist-another-link:focus {
  color: #181818;
  text-decoration: none;
}
.search-wishlist-another-link:hover::after, .search-wishlist-another-link:active::after, .search-wishlist-another-link:focus::after {
  left: 0;
  right: auto;
  width: 100%;
}
.search-wishlist-another-link::before, .search-wishlist-another-link::after {
  background-color: #ccc;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.search-wishlist-another-link::after {
  background-color: #777;
  left: auto;
  right: 0;
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0;
}
.search-wishlist-another-link:hover, .search-wishlist-another-link:active, .search-wishlist-another-link:focus {
  color: #181818;
}

.wishlist-error-search {
  margin-bottom: 0;
}

puma-location-banner {
  display: none;
  left: 50%;
  position: fixed;
  top: 7.5rem;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1600;
}

.puma-cookie-banner-overlay {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1601;
}

@media (min-width: 480px) {
  puma-location-banner {
    left: auto;
    right: 1.25rem;
    top: 9.375rem;
    transform: none;
    width: 20.5rem;
  }
}
@media (min-width: 1180px) {
  puma-location-banner {
    width: 25rem;
  }
}
puma-cookie-banner {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 1601;
}

@media (min-width: 480px) and (max-width: 980px) {
  puma-cookie-banner {
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
  }
}
@media (min-width: 980px) {
  puma-cookie-banner {
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
  }
}
@media (min-width: 1150px) {
  puma-cookie-banner {
    bottom: 1.25rem;
    left: 50%;
    max-width: 69.375rem;
    right: auto;
    transform: translateX(-50%);
    width: 100%;
  }
}
.cookie-banner-onetrust {
  display: none;
}
.p-meta-footer-cookie .cookie-banner-onetrust {
  display: block !important;
}
.cookie-banner-onetrust .optanon-show-settings-popup-wrapper {
  height: auto;
}
.cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle {
  background: transparent !important;
  border: 0;
  float: none;
  height: auto !important;
  padding: 0;
}
.cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings {
  display: inline-block !important;
  font-family: "FFDINforPuma", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  margin: 0;
}
puma-cookie-banner .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings {
  color: #fff !important;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}
puma-cookie-banner .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings::before, puma-cookie-banner .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings::after {
  content: '"';
}
.p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings {
  color: #818181 !important;
  margin-right: 1rem;
}
@media (max-width: 767.98px) {
  .p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings {
    margin: 0 0 0 1rem;
  }
}
.p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings:hover, .p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings:active, .p-meta-footer-cookie .cookie-banner-onetrust .optanon-show-settings-popup-wrapper .optanon-show-settings-middle .optanon-show-settings:focus {
  color: #fff !important;
}
.cookie-banner-onetrust .optanon-show-settings-left,
.cookie-banner-onetrust .optanon-show-settings-right {
  display: none;
}

.optanon-close-link {
  display: none;
}

.hide-klarna-msg {
  display: none;
}

@media only screen and (max-width: 600px) {
  #onetrust-consent-sdk #onetrust-banner-sdk.vertical-align-content {
    max-height: 100% !important;
    overflow-x: visible !important;
    overflow-y: initial !important;
    top: 50%;
    transform: translateY(-50%);
    width: 95%;
  }
  #onetrust-consent-sdk #onetrust-banner-sdk #onetrust-policy-title {
    display: inline-block;
    margin-bottom: 0.9375rem;
  }
  #onetrust-consent-sdk #onetrust-banner-sdk #onetrust-policy-text {
    display: block;
    height: 16.875rem;
    overflow-y: auto;
    padding-right: 0.875rem;
  }
}
@media only screen and (min-width: 896px) {
  #onetrust-banner-sdk #onetrust-button-group-parent {
    text-align: right !important;
  }
  #onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container,
  #onetrust-banner-sdk:not(.ot-iab-2) #onetrust-button-group-parent {
    width: 100% !important;
  }
  #onetrust-banner-sdk:not(.ot-iab-2).vertical-align-content #onetrust-button-group-parent {
    position: unset !important;
    text-align: right;
    transform: none !important;
    width: 100% !important;
  }
}
#onetrust-consent-sdk #onetrust-banner-sdk {
  bottom: unset !important;
  margin: 0 auto;
  top: 40%;
  width: 80%;
}
@media only screen and (max-width: 1024px) {
  #onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group {
    flex-direction: column-reverse !important;
    margin-right: unset !important;
  }
  #onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group button {
    margin-bottom: 0.75rem !important;
    margin-right: unset !important;
  }
  #onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group #onetrust-reject-all-handler {
    padding-left: 0.625rem !important;
    padding-top: 0 !important;
    text-align: center !important;
  }
}
#onetrust-consent-sdk #onetrust-banner-sdk:focus {
  outline-color: transparent !important;
  outline-width: 0 !important;
}
#onetrust-consent-sdk #onetrust-banner-sdk *:focus {
  outline-color: transparent !important;
  outline-width: 0 !important;
}
#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group-parent {
  padding-left: 2% !important;
  padding-right: 2% !important;
}
#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-group-container {
  padding: 1.5rem 2% 1.25rem 2% !important;
}
#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group {
  display: flex !important;
  margin-top: 0 !important;
}
#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group button {
  margin-top: 0 !important;
}
#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group #onetrust-reject-all-handler {
  background-color: #222 !important;
  border: none !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  opacity: 1 !important;
  order: 1 !important;
  padding-left: 0;
  text-align: left;
  text-decoration: underline !important;
}
#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group #onetrust-pc-btn-handler,
#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group #onetrust-accept-btn-handler {
  background-color: transparent !important;
  border: 1px solid #8c9198 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 1.25rem !important;
  padding: 0.5rem 2.5rem !important;
  text-decoration: none !important;
}
#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group #onetrust-pc-btn-handler {
  margin-left: auto !important;
  order: 2 !important;
}
#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group #onetrust-accept-btn-handler {
  background-color: #fff !important;
  border-color: #fff !important;
  color: #191919 !important;
  order: 3 !important;
}
#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group #onetrust-accept-btn-handler:hover {
  background-color: #dfe0e1 !important;
}
#onetrust-consent-sdk #onetrust-policy {
  margin: 0 !important;
}

.onetrust-pc-dark-filter {
  background: rgba(0, 0, 0, 0.6) !important;
  z-index: 214748364 !important;
}
.onetrust-pc-dark-filter.bg-enabled {
  display: block !important;
}

.onetrust-cookie-enabled {
  overflow: hidden;
}

puma-cookie-banner {
  display: none;
}

.amazon-btn {
  padding: 0.625rem 0 0;
  text-align: center;
}

.amazon-btn img {
  max-width: 100%;
}

#addressBookWidgetDiv .widget-container,
#walletWidgetDiv .widget-container,
#addressBookWidgetDiv iframe,
#walletWidgetDiv iframe {
  width: 100% !important;
}

#addressBookWidgetDiv,
#walletWidgetDiv {
  height: 14.25rem;
  max-width: 37.5rem;
  min-width: 17.5rem;
  padding: 0 0 2.5rem;
  width: 100%;
}

.amazonheader {
  margin: 0 0 0 -1.5625rem;
  padding: 0 0 0.625rem 0;
}

.amazonpopup {
  padding: 0 0 0 3.125rem;
}

.amazon-button {
  padding: 0 0 0.3125rem 0;
}

/* Desktop and tablet */
@media only screen and (min-width: 768px) {
  #addressBookWidgetDiv {
    height: 14.25rem;
    padding: 0 0 0.625rem 3.125rem;
    width: 28.125rem;
  }
  #walletWidgetDiv {
    height: 14.25rem;
    padding: 0 0 2.5rem 3.125rem;
    width: 25rem;
  }
}
.form-control-icons {
  display: none;
}

.product-detail-giftcard-form .row {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
@media (min-width: 1024px) {
  .product-detail-giftcard-form .row {
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }
}
.product-detail-giftcard-form .col-6,
.product-detail-giftcard-form .col-12 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
@media (min-width: 1024px) {
  .product-detail-giftcard-form .col-6,
  .product-detail-giftcard-form .col-12 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }
}
.product-detail-giftcard-form .form-group {
  margin-bottom: 0.25rem;
}
.product-detail-giftcard-form .col-6 .form-group {
  margin-bottom: 1.25rem;
}
.product-detail-giftcard-form .form-control.has-counter {
  min-height: 9.375rem;
  text-transform: none;
}
.product-detail-giftcard-form .form-control.has-counter::-moz-placeholder {
  text-transform: uppercase;
}
.product-detail-giftcard-form .form-control.has-counter::placeholder {
  text-transform: uppercase;
}
.product-detail-giftcard-form .floatl__input--textarea {
  color: #000;
  width: 100%;
}
.product-detail-giftcard-form .floatl__input--textarea.hf-user-valid {
  font-size: 0.875rem;
  font-weight: 600;
  padding-left: 0.5rem;
}
.product-detail-giftcard-form .symbols-counter {
  padding: 0.625rem 0 1.25rem;
  text-align: left;
}
@media (min-width: 1024px) {
  .product-detail-giftcard-form .symbols-counter {
    padding: 0.625rem 0;
  }
}
.product-detail-giftcard-form .giftcard-labels {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1200px) {
  .product-detail-info-giftcard {
    padding-bottom: 1.875rem;
  }
}

@media (min-width: 1200px) {
  .product-detail-info-giftcard .attributes-container {
    margin-bottom: 0;
  }
}

.product-quickview .product-detail-giftcard-form .row {
  margin-left: -0.3125rem;
  margin-right: -0.3125rem;
}
.product-quickview .product-detail-giftcard-form .col-6,
.product-quickview .product-detail-giftcard-form .col-12 {
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
}
.product-quickview .product-detail-giftcard-form .form-group {
  margin-bottom: 0.625rem;
}
.product-quickview .product-detail-giftcard-form .col-6 .form-group {
  margin-bottom: 0.625rem;
}
.product-quickview .product-detail-giftcard-form .product-variation-label {
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 1.25rem;
  text-transform: none;
}

.gift-card-message {
  border: solid 1px #c8d6ee;
  border-radius: 0.125rem;
  margin: 1.875rem 0;
  padding: 0.625rem;
  text-align: center;
  /* stylelint-disable */
}
.gift-card-message span {
  color: #0070d2;
  font-size: 0.875rem;
  font-weight: 700;
}
@media (max-width: 1199.98px) {
  .gift-card-message {
    margin: 1.25rem;
  }
}

.giftcard-promo-banner {
  margin: 5rem auto;
  max-width: 103.75rem;
  position: relative;
}
@media (max-width: 1199.98px) {
  .giftcard-promo-banner {
    margin: 0 0 2.5rem 0;
  }
}
.giftcard-promo-banner img {
  min-height: 22.5rem;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .giftcard-promo-banner img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}
.giftcard-promo-banner p {
  font-size: 1.125rem;
  margin-bottom: 1.5625rem;
  padding: 0 0.625rem;
}
.giftcard-promo-banner h2 {
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}
.giftcard-promo-banner .gc-banner-content {
  color: #fff;
  left: 0;
  margin-left: 3.125rem;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(0, -50%);
  width: 37%;
}
@media (max-width: 1199.98px) {
  .giftcard-promo-banner .gc-banner-content {
    margin: 0;
    width: 100%;
  }
}
.giftcard-promo-banner .btn-kop-primary-white {
  background: #fff;
  color: #000;
}

.gc-rec-title {
  color: #181818;
  margin: 5rem 0 1.25rem 0;
  padding: 0 1.875rem;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .gc-rec-title {
    margin: 2.5rem 0 0.625rem 0;
    padding: 0 1.25rem;
  }
}

.web-chat-icon {
  align-items: center;
  background-color: #fff;
  border: 0.0625rem solid #191919;
  border-radius: 3.125rem;
  bottom: 5.625rem;
  cursor: pointer;
  display: inline-flex;
  height: 3.125rem;
  justify-content: flex-end;
  overflow: hidden;
  position: fixed;
  right: 1.4375rem;
  transition: width 0.3s ease-out;
  width: 3.125rem;
  z-index: 15;
}
@media (min-width: 1200px) {
  .web-chat-icon:hover {
    flex-flow: row-reverse; /* Reverse the order of icon and message */
    width: 19.375rem; /* Expands button width on hover */
  }
  .web-chat-icon:hover .web-chat-icon-message-container {
    width: 16.25rem; /* Expands to show the message */
  }
  .web-chat-icon:hover .web-chat-icon-message {
    margin-left: 0.375rem;
    opacity: 1;
    transform: translateX(0); /* Slide the message in from left to right */
  }
}
.web-chat-icon-container {
  align-items: center;
  border-radius: 3.125rem;
  display: flex;
  height: 3.125rem;
  justify-content: center;
  position: relative;
  width: 3.125rem;
}
.web-chat-icon-popup {
  position: relative;
}
.web-chat-icon-popup svg {
  color: #191919;
  height: 1.5rem;
  width: 1.5rem;
}
.web-chat-icon-message-container {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  transition: width 0.3s ease-out;
  width: 0;
}
.web-chat-icon-message {
  color: #000;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.03125rem;
  opacity: 0;
  text-transform: uppercase;
  transform: translateX(-100%); /* Start off-screen (to the left) */
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Webchat main window in windowed mode */
@media screen and (min-width: 576px) {
  [data-cognigy-webchat-root] [data-cognigy-webchat] {
    border-radius: 0.3125rem !important;
    bottom: 0.9375rem !important;
    height: 45rem !important;
    right: 0.9375rem !important;
    width: 26.375rem !important;
  }
}
@media screen and (min-width: 576px) and (max-height: 750px) {
  [data-cognigy-webchat-root] [data-cognigy-webchat] {
    height: calc(100% - 30px) !important;
  }
}
/* Webchat toggle button */
[data-cognigy-webchat-root] [data-cognigy-webchat-toggle] {
  display: none !important;
}

/* Webchat main window in full screen mode */
[data-cognigy-webchat-root] {
  border-radius: 0 !important;
}

/* Header logo */
[data-cognigy-webchat-root] [data-cognigy-webchat] .webchat-header-logo {
  background-image: url("../../images/header-logo.png") !important;
  width: 7.5rem !important;
}

/* Webchat input - disalbe the transition when it looses focus */
[data-cognigy-webchat-root] [data-cognigy-webchat] .webchat-input-menu-form {
  transition: none !important;
}

/* Webchat input - remove the bottom border */
[data-cognigy-webchat-root] [data-cognigy-webchat] .webchat-input-menu-form[data-active=true] {
  border: none !important;
}

/* Bot message avatars - remove borders and make the custom shape */
[data-cognigy-webchat-root] [data-cognigy-webchat] .webchat-avatar.bot {
  background-image: url("../../images/bot-avatar.png") !important;
  border: none !important;
  border-radius: 50% 5px 50% 50% !important;
}

/* Agent message avatars - remove borders and make them custom shape */
[data-cognigy-webchat-root] [data-cognigy-webchat] .webchat-avatar.agent {
  border: none !important;
  border-radius: 50% 5px 50% 50% !important;
}

/* User message avatars - hide */
[data-cognigy-webchat-root] [data-cognigy-webchat] .webchat-avatar.user {
  display: none !important;
}

/* Bot and Agent message bubbles */
[data-cognigy-webchat-root] .regular-message.bot,
[data-cognigy-webchat-root] .regular-message.agent,
[data-cognigy-webchat-root] .webchat-quick-reply-template-header-message {
  background: #f1f1f1 !important;
  border: none !important;
  border-radius: 4px 20px 20px !important;
  box-shadow: none !important;
  color: #161616 !important;
}

/* Bot message of type Text with Buttons - message container */
[data-cognigy-webchat-root] .webchat-buttons-template-root {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #161616 !important;
  width: auto !important;
}

/* Text with buttons - Message bubble (header with the text) */
[data-cognigy-webchat-root] .webchat-buttons-template-header {
  background: #f1f1f1 !important;
  border-radius: 4px 20px 20px !important;
}

/* Text with buttons - container for the buttons */
[data-cognigy-webchat-root] .webchat-buttons-template-root div {
  display: flex !important;
  flex-wrap: wrap !important;
  margin: 5px -3px 0 -3px !important;
}

/* Text with buttons - buttons themselves */
[data-cognigy-webchat-root] .webchat-buttons-template-button {
  background: none !important;
  border: 0.0625rem solid #161616 !important;
  border-radius: 2.5rem !important;
  margin: 0.3125rem !important;
  width: auto !important;
}

/* Text with Buttons - hide the separator line between buttons */
[data-cognigy-webchat-root] .webchat-buttons-template-root div div {
  display: none !important;
}

/* [data-cognigy-webchat-root] .webchat-buttons-template-root div {
  display: flex;
  flex-wrap: wrap;
  margin: 5px -3px 0 -3px;
} */
[data-cognigy-webchat-root] .webchat-quick-reply-template-replies-container {
  text-align: left !important;
}

/* User message bubble */
[data-cognigy-webchat-root] [data-cognigy-webchat] .regular-message.user {
  background: #161616 !important;
  border-radius: 20px 4px 20px 20px;
  color: #fff !important;
}

/* Make hyperlinks within bot messages same color as the text */
[data-cognigy-webchat-root] [data-cognigy-webchat] .webchat-message-row a {
  color: inherit !important;
}

/* Position the avatars to the top of the message bubble */
[data-cognigy-webchat-root] [data-cognigy-webchat].webchat .webchat-avatar {
  align-self: flex-start !important;
}

/* Style the primary adaptive card button */
[data-cognigy-webchat-root] [data-cognigy-webchat] .ac-pushButton.style-default {
  background: #161616 !important;
  border: none !important;
  border-radius: 0.1875rem !important;
  color: #fff !important;
  padding: 0.5rem !important;
  width: 100% !important;
}

/* Webchat toggle button */
[data-cognigy-webchat-root] [data-cognigy-webchat-toggle].webchat-toggle-button {
  display: none !important;
}