:root {
  --pa-color-primary: #0094BF;
  --pa-color-primary--light: #59c2de;
  --pa-color-secondary: #FBEC7A;
  --pa-color-secondary--dark: #ffce44;
  --pa-color-secondary--light: #ffffdc;
  --pa-color-grey-1: #707070;
  --pa-color-grey-2: #757575;
  --pa-color-dark: #676767;
  --pa-color-bright: #ff5722;
  --pa-color-green: #29cc29;
  --pa-color-text: #1c1c1c;
  --pa-font-base: 'Gotham Light', sans-serif;
  --pa-font-base--500: 'Gotham Medium', sans-serif;
  --pa-font-base--700: 'Gotham Bold', sans-serif;
  --pa-font-secondary: 'Pantamera Black', sans-serif;
  --pa-font-body: var(--pa-font-base);
  --pa-font-title: var(--pa-font-secondary);
  --pa-container-size: 1800px;
  --pa-container-size-small: 1295px;
  --pa-container-space-x: 2rem;
  --pa-icon-check: url(../images/check-icon.svg);
  --pa-icon-dot: url(../images/dot-icon.svg);
  --pa-icon-cart: url(../images/cart-icon.svg);
  --pa-icon-remove: url(../images/remove-icon.svg);
  --pa-icon-user: url(../images/user-icon.svg);
}

@media screen and (min-width: 2300px) {
  :root {
    --pa-container-size: 2000px;
    --pa-container-size-small: 1365px;
  }
}
/* Mixin for adaptive font size:

Example: @include fluid-type($min_width, $max_width, $min_font, $max_font);

*/
/* Mixin for custom scroll bar:

Example: @include custom_scrollbar(5px, 5px, #e4e4e4, #b2b2b2, #fff, 20px);

*/
@font-face {
  font-family: "Gotham Medium";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local("Gotham Medium"), url(../fonts/gotham/gotham-medium.woff2) format("woff2");
}
@font-face {
  font-family: "Gotham Light";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local("Gotham Light"), url(../fonts/gotham/gotham-light.woff2) format("woff2");
}
@font-face {
  font-family: "Gotham Bold";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local("Gotham Bold"), url(../fonts/gotham/gotham-bold.woff2) format("woff2");
}
@font-face {
  font-family: "Pantamera Black";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local("Pantamera Black"), url(../fonts/pantamera/pantamera-black.woff2) format("woff2");
}
h1 {
  font-size: 3rem;
  font-family: var(--pa-font-title);
}

.page-main > .page-title-wrapper .page-title {
  font-size: 4.6rem;
  font-family: var(--pa-font-base--700);
  color: var(--pa-color-primary);
  margin-bottom: 2rem;
}
@media screen and (max-width: 575px) {
  .page-main > .page-title-wrapper .page-title {
    font-size: 3.6rem;
  }
}

.pa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 5px 2rem;
  min-height: 54px;
  min-width: 150px;
  text-decoration: none !important;
  border: 2px solid transparent;
  outline: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 30px;
  font-family: var(--pa-font-base--500);
  font-size: 1.6rem;
  color: var(--pa-color-text);
  background-color: var(--pa-color-grey-1);
  text-transform: none;
}
@media screen and (min-width: 1200px) {
  .pa-btn {
    transition-duration: 0.3s;
    transition-property: border-color, color, background-color;
    transition-timing-function: ease;
  }
}
.pa-btn.secondary {
  background-color: var(--pa-color-secondary);
}
@media screen and (min-width: 1200px) {
  .pa-btn.secondary:hover {
    background-color: transparent;
    border-color: currentColor;
    color: var(--pa-color-text);
  }
}
.pa-btn.light {
  background-color: transparent;
  border-color: var(--pa-color-text);
  color: var(--pa-color-text);
}
@media screen and (min-width: 1200px) {
  .pa-btn.light:hover {
    border-color: var(--pa-color-primary);
    background-color: var(--pa-color-primary);
    color: #fff;
  }
}
.pa-btn.primary {
  border-color: var(--pa-color-primary);
  background-color: var(--pa-color-primary);
  color: #fff;
}
.pa-btn.primary:visited {
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .pa-btn.primary:hover {
    background-color: transparent;
    border-color: currentColor;
    color: var(--pa-color-primary);
  }
}
.pa-btn.primary.light {
  border-color: var(--pa-color-primary);
  color: var(--pa-color-primary);
}
@media screen and (min-width: 1200px) {
  .pa-btn.primary.light:hover {
    background-color: var(--pa-color-primary);
    color: #fff;
  }
}

div.pagebuilder-button-primary,
div.pagebuilder-button-secondary,
a.pagebuilder-button-primary,
a.pagebuilder-button-secondary,
button.pagebuilder-button-primary,
button.pagebuilder-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 5px 2rem;
  min-height: 54px;
  min-width: 150px;
  text-decoration: none !important;
  border: 2px solid transparent;
  outline: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 30px;
  font-family: var(--pa-font-base--500);
  font-size: 1.6rem;
  color: var(--pa-color-text);
  background-color: var(--pa-color-grey-1);
  text-transform: none;
}
@media screen and (min-width: 1200px) {
  div.pagebuilder-button-primary,
  div.pagebuilder-button-secondary,
  a.pagebuilder-button-primary,
  a.pagebuilder-button-secondary,
  button.pagebuilder-button-primary,
  button.pagebuilder-button-secondary {
    transition-duration: 0.3s;
    transition-property: border-color, color, background-color;
    transition-timing-function: ease;
  }
}

div.pagebuilder-button-primary,
a.pagebuilder-button-primary,
button.pagebuilder-button-primary {
  border-color: var(--pa-color-primary);
  background-color: var(--pa-color-primary);
  color: #fff;
}
div.pagebuilder-button-primary:visited,
a.pagebuilder-button-primary:visited,
button.pagebuilder-button-primary:visited {
  color: #fff;
}
@media screen and (min-width: 1200px) {
  div.pagebuilder-button-primary:hover,
  a.pagebuilder-button-primary:hover,
  button.pagebuilder-button-primary:hover {
    background-color: transparent;
    border-color: currentColor;
    color: var(--pa-color-primary);
  }
}
div.pagebuilder-button-primary:hover,
a.pagebuilder-button-primary:hover,
button.pagebuilder-button-primary:hover {
  background-color: transparent;
  border-width: 2px;
}
.light > div.pagebuilder-button-primary,
.light > a.pagebuilder-button-primary,
.light > button.pagebuilder-button-primary {
  background-color: transparent;
  border-color: var(--pa-color-text);
  color: var(--pa-color-text);
}
@media screen and (min-width: 1200px) {
  .light > div.pagebuilder-button-primary:hover,
  .light > a.pagebuilder-button-primary:hover,
  .light > button.pagebuilder-button-primary:hover {
    border-color: var(--pa-color-primary);
    background-color: var(--pa-color-primary);
    color: #fff;
  }
}

div.pagebuilder-button-secondary,
a.pagebuilder-button-secondary,
button.pagebuilder-button-secondary {
  background-color: var(--pa-color-secondary);
}
@media screen and (min-width: 1200px) {
  div.pagebuilder-button-secondary:hover,
  a.pagebuilder-button-secondary:hover,
  button.pagebuilder-button-secondary:hover {
    background-color: transparent;
    border-color: currentColor;
    color: var(--pa-color-text);
  }
}
div.pagebuilder-button-secondary:hover,
a.pagebuilder-button-secondary:hover,
button.pagebuilder-button-secondary:hover {
  background-color: transparent;
  border-width: 2px;
}
.light > div.pagebuilder-button-secondary,
.light > a.pagebuilder-button-secondary,
.light > button.pagebuilder-button-secondary {
  background-color: transparent;
  border-color: var(--pa-color-text);
  color: var(--pa-color-text);
}
@media screen and (min-width: 1200px) {
  .light > div.pagebuilder-button-secondary:hover,
  .light > a.pagebuilder-button-secondary:hover,
  .light > button.pagebuilder-button-secondary:hover {
    border-color: var(--pa-color-primary);
    background-color: var(--pa-color-primary);
    color: #fff;
  }
}

div.pagebuilder-button-link,
a.pagebuilder-button-link,
button.pagebuilder-button-link {
  text-decoration: none !important;
  --bg-h: 1px;
  background: linear-gradient(0deg, currentColor, currentColor) no-repeat right bottom/0 var(--bg-h);
  padding-bottom: 1px;
  background-size: 100% var(--bg-h);
}
@media screen and (min-width: 1200px) {
  div.pagebuilder-button-link,
  a.pagebuilder-button-link,
  button.pagebuilder-button-link {
    transition: background-size 350ms;
  }
  div.pagebuilder-button-link:where(:hover, :focus-visible),
  a.pagebuilder-button-link:where(:hover, :focus-visible),
  button.pagebuilder-button-link:where(:hover, :focus-visible) {
    background-size: 0 var(--bg-h);
    background-position-x: right;
    color: currentColor;
  }
}
div.pagebuilder-button-link,
a.pagebuilder-button-link,
button.pagebuilder-button-link {
  padding: 0;
  font-size: 1.8rem;
  color: var(--pa-color-primary);
  font-family: var(--pa-font-base--500);
}
div.pagebuilder-button-link:hover, div.pagebuilder-button-link:visited,
a.pagebuilder-button-link:hover,
a.pagebuilder-button-link:visited,
button.pagebuilder-button-link:hover,
button.pagebuilder-button-link:visited {
  color: var(--pa-color-primary);
}

.action.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 5px 2rem;
  min-height: 54px;
  min-width: 150px;
  text-decoration: none !important;
  border: 2px solid transparent;
  outline: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 30px;
  font-family: var(--pa-font-base--500);
  font-size: 1.6rem;
  color: var(--pa-color-text);
  background-color: var(--pa-color-grey-1);
  text-transform: none;
}
@media screen and (min-width: 1200px) {
  .action.primary {
    transition-duration: 0.3s;
    transition-property: border-color, color, background-color;
    transition-timing-function: ease;
  }
}
.action.primary {
  border-color: var(--pa-color-primary);
  background-color: var(--pa-color-primary);
  color: #fff;
}
.action.primary:visited {
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .action.primary:hover {
    background-color: transparent;
    border-color: currentColor;
    color: var(--pa-color-primary);
  }
}
.action.primary {
  text-transform: none;
}
.action.primary.light {
  background-color: transparent;
  border-color: var(--pa-color-text);
  color: var(--pa-color-text);
}
@media screen and (min-width: 1200px) {
  .action.primary.light:hover {
    border-color: var(--pa-color-primary);
    background-color: var(--pa-color-primary);
    color: #fff;
  }
}
.action.primary:hover, .action.primary:active, .action.primary:focus {
  border-width: 2px;
}

a.action.primary {
  display: inline-flex;
}
.actions-toolbar a.action.primary {
  display: inline-flex;
}

.page-wrapper > .breadcrumbs {
  background: none;
  color: var(--pa-color-text);
  font-size: 1.2rem;
}
.page-wrapper > .breadcrumbs .items {
  max-width: calc(var(--pa-container-size-small) + var(--pa-container-space-x) * 2);
  padding: 3.5rem var(--pa-container-space-x) 3rem;
}
.page-wrapper > .breadcrumbs .items > li {
  text-transform: none;
}
.page-wrapper > .breadcrumbs .items > li:not(:last-child):after {
  width: 16px;
}
.page-wrapper > .breadcrumbs .items > li.home a {
  width: auto;
  text-indent: 0;
}
.page-wrapper > .breadcrumbs .items > li.home a:after {
  display: none;
}
.page-wrapper > .breadcrumbs .items > li a {
  color: var(--pa-color-grey-2);
}
.page-wrapper > .breadcrumbs .items > li a:hover {
  color: var(--pa-color-primary);
}
.page-wrapper > .breadcrumbs .items > li strong {
  font-family: var(--pa-font-body);
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=time],
input[type=week],
textarea,
select {
  font-family: var(--pa-font-body);
  height: 60px;
  border-radius: 0;
  border: 1px solid var(--pa-color-dark);
  background-color: #fff;
  font-size: 1.8rem;
  padding: 5px 2rem;
  width: 100%;
  color: var(--pa-color-text);
  transition-duration: 0.2s;
  transition-property: border-color, color, box-shadow;
  transition-timing-function: ease;
}
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
input[type=color]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
textarea:focus,
select:focus {
  border-color: var(--pa-color-primary);
  box-shadow: inset 0 0 0 2px var(--pa-color-primary) !important;
}
input[type=email].mage-error,
input[type=number].mage-error,
input[type=password].mage-error,
input[type=search].mage-error,
input[type=tel].mage-error,
input[type=text].mage-error,
input[type=url].mage-error,
input[type=color].mage-error,
input[type=date].mage-error,
input[type=datetime].mage-error,
input[type=datetime-local].mage-error,
input[type=month].mage-error,
input[type=time].mage-error,
input[type=week].mage-error,
textarea.mage-error,
select.mage-error {
  border-color: var(--pa-color-bright);
  box-shadow: inset 0 0 0 2px var(--pa-color-bright) !important;
}

select {
  --arrow-position: 15px;
  --arrow-size: 28px;
  -webkit-appearance: none;
  appearance: none;
  text-indent: 1px;
  text-overflow: ellipsis;
  padding-right: 50px;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--arrow-position)) center;
  background-size: var(--arrow-size) var(--arrow-size);
  background-image: url("../images/arrow-down.svg");
}

textarea {
  height: auto;
  min-height: 150px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
textarea:focus {
  box-shadow: none;
}

input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border: 3px solid #676767;
  background-color: #fffffa;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 12px;
  padding: 0;
  margin: 0;
  transition: 0.2s background-color, border-color ease;
}
input[type=checkbox]:focus {
  box-shadow: none;
}
input[type=checkbox]:checked {
  background-color: #000;
  border-color: #000;
  background-image: var(--pa-icon-check);
}

input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border: 2px solid #000;
  background-color: #fffffa;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  transition: 0.2s background-color, border-color ease;
}
input[type=radio]:focus {
  box-shadow: none;
}
input[type=radio]:checked {
  background-image: var(--pa-icon-dot);
}

.fieldset {
  letter-spacing: normal;
}
.fieldset > .field,
.fieldset > .fields > .field {
  margin-bottom: 2rem;
}
.fieldset > .field .label,
.fieldset > .fields > .field .label {
  font-family: var(--pa-font-base--500);
  font-size: 2rem;
  color: var(--pa-color-dark);
  margin-bottom: 1rem;
  display: block;
  padding-left: 0;
  line-height: 1.5;
}
.fieldset > .field.required > .label:after, .fieldset > .field._required > .label:after,
.fieldset > .fields > .field.required > .label:after,
.fieldset > .fields > .field._required > .label:after {
  color: var(--pa-color-dark);
  margin-left: 0.1rem;
}
.fieldset > .field .additional,
.fieldset > .fields > .field .additional {
  margin-top: 1rem;
}
.fieldset > .field .action,
.fieldset > .fields > .field .action {
  text-decoration: none !important;
  --bg-h: 1px;
  background: linear-gradient(0deg, currentColor, currentColor) no-repeat right bottom/0 var(--bg-h);
  padding-bottom: 1px;
  background-size: 100% var(--bg-h);
}
@media screen and (min-width: 1200px) {
  .fieldset > .field .action,
  .fieldset > .fields > .field .action {
    transition: background-size 350ms;
  }
  .fieldset > .field .action:where(:hover, :focus-visible),
  .fieldset > .fields > .field .action:where(:hover, :focus-visible) {
    background-size: 0 var(--bg-h);
    background-position-x: right;
    color: currentColor;
  }
}
.fieldset > .field .action,
.fieldset > .fields > .field .action {
  color: var(--pa-color-primary);
  font-family: var(--pa-font-base--500);
}
.fieldset > .field.choice > input,
.fieldset > .fields > .field.choice > input {
  display: none;
}
.fieldset > .field.choice > input:checked + .label:before,
.fieldset > .field.choice > input:checked + label:before,
.fieldset > .fields > .field.choice > input:checked + .label:before,
.fieldset > .fields > .field.choice > input:checked + label:before {
  background-color: #000;
  border-color: #000;
}
.fieldset > .field.choice > input:checked + .label:after,
.fieldset > .field.choice > input:checked + label:after,
.fieldset > .fields > .field.choice > input:checked + .label:after,
.fieldset > .fields > .field.choice > input:checked + label:after {
  content: "";
  display: inline-block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  height: 14px;
  width: 9px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 10px;
  top: 5px;
}
.fieldset > .field.choice .label, .fieldset > .field.choice label,
.fieldset > .fields > .field.choice .label,
.fieldset > .fields > .field.choice label {
  padding-left: 50px;
  position: relative;
  min-height: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.fieldset > .field.choice .label:before, .fieldset > .field.choice label:before,
.fieldset > .fields > .field.choice .label:before,
.fieldset > .fields > .field.choice label:before {
  content: "";
  width: 30px;
  height: 30px;
  border: 3px solid #676767;
  background-color: #fffffa;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.2s background-color, border-color ease;
}
.fieldset > .field .password-strength-meter,
.fieldset > .fields > .field .password-strength-meter {
  font-size: 1.4rem;
}
.fieldset > .legend {
  font-family: var(--pa-font-base--500);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--pa-color-text);
  text-transform: none;
}
.fieldset.create > .legend {
  font-family: var(--pa-font-base--500);
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: var(--pa-color-text);
}

div.mage-error,
.field-error {
  font-size: 1.4rem;
  color: var(--pa-color-bright);
}

.field-tooltip > .label {
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0 !important;
  left: 0;
  top: 0;
}
.field-tooltip .field-tooltip-content:before, .field-tooltip .field-tooltip-content:after {
  left: -20px;
}
.field-tooltip .field-tooltip-content:after {
  left: -19px;
}

.field._error .control input,
.field._error .control select,
.field._error .control textarea {
  border-color: var(--pa-color-bright);
  box-shadow: inset 0 0 0 2px var(--pa-color-bright) !important;
}
.field.street .field > .label {
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0 !important;
  left: 0;
  top: 0;
}

#totop {
  background-color: var(--pa-color-primary);
  width: 45px;
  transition: 0.2s -webkit-transform ease;
  transition: 0.2s transform ease;
  transition: 0.2s transform ease, 0.2s -webkit-transform ease;
}
#totop:hover {
  background-color: var(--pa-color-primary);
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
#totop .svg-icon {
  vertical-align: middle;
}

.ln_overlay .loader {
  border-top-color: var(--pa-color-primary);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.loading-mask {
  background: rgba(255, 255, 255, 0.5);
}
.loading-mask .loader {
  border: 2px solid transparent;
  border-top-color: var(--pa-color-primary);
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  display: inline-block;
  -o-border-image: none;
  border-image: none;
  border-radius: 50%;
  vertical-align: middle;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.loading-mask .loader:before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: inherit;
  height: inherit;
  border: inherit;
  border-radius: inherit;
  border-top-color: inherit;
  -webkit-animation: spin 1.5s infinite;
  animation: spin 1.5s infinite;
  margin: 0;
}

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 640px) and (max-width: 991px) {
  .table-wrapper {
    overflow-y: hidden;
    overflow-x: auto;
  }
}
@media screen and (max-width: 639px) {
  .table-wrapper {
    border-top: 0;
  }
}
@media screen and (max-width: 639px) {
  .table-wrapper .table:not(.totals):not(.cart):not(.table-comparison) > tbody > tr td[data-th]:before {
    font-family: var(--pa-font-base--500);
    color: var(--pa-color-text);
  }
}
@media screen and (max-width: 639px) {
  .table-wrapper .table:not(.totals):not(.cart):not(.table-comparison) > tbody > tr td {
    padding-bottom: 2rem;
  }
  .table-wrapper .table:not(.totals):not(.cart):not(.table-comparison) > tbody > tr td:first-child {
    padding-top: 2.5rem;
  }
  .table-wrapper .table:not(.totals):not(.cart):not(.table-comparison) > tbody > tr td:last-child {
    padding-bottom: 2.5rem;
  }
}

.table > caption {
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0 !important;
  left: 0;
  top: 0;
}
.table thead th.col {
  font-family: var(--pa-font-base--500);
  color: var(--pa-color-text);
  text-transform: none;
  font-size: 1.4rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.29);
  line-height: 1;
}
@media screen and (min-width: 640px) and (max-width: 991px) {
  .table thead th.col {
    white-space: nowrap;
  }
}
.table thead th.col:first-child {
  padding-left: 0;
}
@media screen and (min-width: 1700px) {
  .table thead th.col {
    font-size: 1.6rem;
  }
}
.table tbody td.col {
  font-size: 1.4rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  vertical-align: middle;
  line-height: 1.2;
  position: relative;
}
@media screen and (min-width: 640px) {
  .table tbody td.col {
    height: 10rem;
  }
}
.table tbody td.col:first-child {
  padding-left: 0;
}
.table tbody td.col.actions > a {
  color: var(--pa-color-text);
  transition: 0.2s opacity ease;
  margin: 0 0.5rem;
  display: inline-block;
}
.table tbody td.col.actions > a:after {
  display: none !important;
}
.table tbody td.col.actions > a:hover {
  opacity: 0.5;
}
.table tbody td.col.actions > a span {
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0 !important;
  left: 0;
  top: 0;
}
.table tbody td.col.actions > a.edit:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  min-width: 14px;
  line-height: 20px;
  color: currentColor;
  content: "\f826";
  font-family: "porto-icons";
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
  margin-right: 5px;
}
.table tbody td.col.actions > a.delete {
  color: var(--pa-color-text) !important;
}
.table tbody td.col.actions > a.delete:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 19px;
  -webkit-mask-image: url("../images/remove-icon.svg");
  mask-image: url("../images/remove-icon.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: currentColor;
}
@media screen and (min-width: 1700px) {
  .table tbody td.col {
    font-size: 1.6rem;
  }
}

.modal-slide .modal-inner-wrap,
.modal-popup .modal-inner-wrap {
  box-shadow: 0 0 12px 12px rgba(0, 0, 0, 0.1);
}

.modal-popup.modal-slide .modal-inner-wrap {
  overflow-x: hidden;
}
.modal-popup .modal-header {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
.modal-popup .modal-title {
  font-size: 2.8rem;
  font-family: var(--pa-font-base--500);
  text-transform: none;
  color: var(--pa-color-text);
  border-bottom-color: #000;
  margin-bottom: 2.5rem;
}
.modal-popup .modal-footer {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
.modal-popup .action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 5px 2rem;
  min-height: 54px;
  min-width: 150px;
  text-decoration: none !important;
  border: 2px solid transparent;
  outline: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 30px;
  font-family: var(--pa-font-base--500);
  font-size: 1.6rem;
  color: var(--pa-color-text);
  background-color: var(--pa-color-grey-1);
  text-transform: none;
}
@media screen and (min-width: 1200px) {
  .modal-popup .action-secondary {
    transition-duration: 0.3s;
    transition-property: border-color, color, background-color;
    transition-timing-function: ease;
  }
}
.modal-popup .action-secondary {
  background-color: transparent;
  border-color: var(--pa-color-text);
  color: var(--pa-color-text);
}
@media screen and (min-width: 1200px) {
  .modal-popup .action-secondary:hover {
    border-color: var(--pa-color-primary);
    background-color: var(--pa-color-primary);
    color: #fff;
  }
}
.modal-popup .action-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 5px 2rem;
  min-height: 54px;
  min-width: 150px;
  text-decoration: none !important;
  border: 2px solid transparent;
  outline: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 30px;
  font-family: var(--pa-font-base--500);
  font-size: 1.6rem;
  color: var(--pa-color-text);
  background-color: var(--pa-color-grey-1);
  text-transform: none;
}
@media screen and (min-width: 1200px) {
  .modal-popup .action-primary {
    transition-duration: 0.3s;
    transition-property: border-color, color, background-color;
    transition-timing-function: ease;
  }
}
.modal-popup .action-primary {
  border-color: var(--pa-color-primary);
  background-color: var(--pa-color-primary);
  color: #fff;
}
.modal-popup .action-primary:visited {
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .modal-popup .action-primary:hover {
    background-color: transparent;
    border-color: currentColor;
    color: var(--pa-color-primary);
  }
}
.modal-popup .action-secondary,
.modal-popup .action-primary,
.modal-popup .action.primary {
  min-height: 45px;
  font-size: 1.4rem;
  margin: 0.5rem 0.5rem 0.5rem 0;
}
@media screen and (max-width: 575px) {
  .modal-popup .action-secondary,
  .modal-popup .action-primary,
  .modal-popup .action.primary {
    width: 100%;
    margin-right: 0;
  }
}

.modal-custom.authentication-dropdown {
  border: 0;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12);
  max-width: 570px;
  right: 0;
}
.modal-custom.authentication-dropdown .block-title {
  font-size: 2.6rem;
}
.modal-custom.authentication-dropdown .modal-inner-wrap {
  padding: 2.5rem 3rem;
  overflow-x: hidden;
}
.modal-custom.authentication-dropdown .actions-toolbar {
  padding-top: 0;
}
.modal-custom.authentication-dropdown .action.action-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 5px 2rem;
  min-height: 54px;
  min-width: 150px;
  text-decoration: none !important;
  border: 2px solid transparent;
  outline: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 30px;
  font-family: var(--pa-font-base--500);
  font-size: 1.6rem;
  color: var(--pa-color-text);
  background-color: var(--pa-color-grey-1);
  text-transform: none;
}
@media screen and (min-width: 1200px) {
  .modal-custom.authentication-dropdown .action.action-login {
    transition-duration: 0.3s;
    transition-property: border-color, color, background-color;
    transition-timing-function: ease;
  }
}
.modal-custom.authentication-dropdown .action.action-login {
  border-color: var(--pa-color-primary);
  background-color: var(--pa-color-primary);
  color: #fff;
}
.modal-custom.authentication-dropdown .action.action-login:visited {
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .modal-custom.authentication-dropdown .action.action-login:hover {
    background-color: transparent;
    border-color: currentColor;
    color: var(--pa-color-primary);
  }
}
.modal-custom.authentication-dropdown .action.action-login {
  min-height: 45px;
}
.modal-custom.authentication-dropdown .action.action-remind > span {
  text-decoration: none !important;
  --bg-h: 1px;
  background: linear-gradient(0deg, currentColor, currentColor) no-repeat right bottom/0 var(--bg-h);
  padding-bottom: 1px;
  background-size: 100% var(--bg-h);
}
@media screen and (min-width: 1200px) {
  .modal-custom.authentication-dropdown .action.action-remind > span {
    transition: background-size 350ms;
  }
  .modal-custom.authentication-dropdown .action.action-remind > span:where(:hover, :focus-visible) {
    background-size: 0 var(--bg-h);
    background-position-x: right;
    color: currentColor;
  }
}
.modal-custom.authentication-dropdown .action.action-remind > span {
  display: inline;
  font-family: var(--pa-font-base--500);
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: var(--pa-font-body);
  color: var(--pa-color-text);
}

strong, b {
  font-family: var(--pa-font-base--500);
}

a {
  color: var(--pa-color-primary);
  transition: 0.2s color ease;
}
a:visited {
  color: var(--pa-color-primary);
}

.svg-icon {
  fill: currentColor;
}

[data-content-type=html] {
  word-wrap: normal;
}

/* Cookie Bot */
#CybotCookiebotDialog {
  font-family: Gotham, Arial, serif !important;
  border-radius: 0 !important;
  background-color: #ffffdc !important;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper .CybotCookiebotScrollContainer {
  border-bottom: none;
  padding: 0;
  color: #113266;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper {
  /* Logotypes */
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogHeader {
  display: none;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper {
  /* Tabs */
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogNav {
  border-bottom: 1px solid #eff6ff;
}
@media (min-width: 62rem) {
  #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogNav {
    padding: 1rem 2.5rem 0;
  }
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogNav ul li a {
  color: #113266;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogNav ul li a:hover {
  color: #0094bf;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogNav ul li a.CybotCookiebotDialogActive {
  color: #113266;
  border-bottom-color: #113266;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper {
  /* Dialog body text */
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent .CybotCookiebotDialogBodyLevelButtonSliderWrapper input:checked + .CybotCookiebotDialogBodyLevelButtonSlider {
  background-color: #113266;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent .CybotCookiebotDialogBodyLevelButtonSliderWrapper .CybotCookiebotDialogBodyLevelButtonSlider {
  background-color: #9e9c9c;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent .CybotCookiebotDialogBodyLevelButtonSliderWrapper .CybotCookiebotDialogBodyLevelButtonSlider:before {
  background-color: #eff6ff;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent #CybotCookiebotDialogBody {
  color: #113266;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent #CybotCookiebotDialogBody .CybotCookiebotScrollContainer {
  max-height: none;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent #CybotCookiebotDialogBody .CybotCookiebotScrollContainer .CybotCookiebotScrollArea {
  scrollbar-color: #113266 #9e9c9c !important;
}
@media (min-width: 62rem) {
  #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent #CybotCookiebotDialogBody .CybotCookiebotScrollContainer .CybotCookiebotScrollArea {
    padding: 0 2.5rem;
  }
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent #CybotCookiebotDialogBody .CybotCookiebotScrollContainer .CybotCookiebotScrollArea h2 {
  font-family: Pantamera, Arial;
  font-size: 1.5rem;
}
@media (min-width: 48rem) {
  #CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent #CybotCookiebotDialogBody .CybotCookiebotScrollContainer .CybotCookiebotScrollArea h2 {
    font-size: 2.25rem;
  }
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent #CybotCookiebotDialogBody .CybotCookiebotDialogBodyBottomWrapper #CybotCookiebotDialogBodyLevelButtonsSelectPane {
  border-bottom: none;
  padding: 0;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent #CybotCookiebotDialogBody .CybotCookiebotDialogBodyBottomWrapper #CybotCookiebotDialogBodyLevelButtonsSelectPane .CybotCookiebotDialogBodyLevelButtonWrapper {
  border-right: none;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent #CybotCookiebotDialogBody .CybotCookiebotDialogBodyBottomWrapper #CybotCookiebotDialogBodyLevelButtonsSelectPane .CybotCookiebotDialogBodyLevelButtonWrapper label strong:hover {
  color: #0094bf;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent #CybotCookiebotDialogDetailBody #CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CookieCard {
  color: #113266;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogTabContent #CybotCookiebotDialogDetailBody #CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CookieCard button:hover {
  color: #0094bf;
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper {
  /* Buttons */
}
#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonsWrapper button {
  border-color: #113266;
  color: #113266;
  border-radius: 0;
  background-color: #eff6ff;
}
#CybotCookiebotDialog {
  /* Link */
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyContentText a,
#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonIABHeaderViewPartnersLink,
#CybotCookiebotDialog #CybotCookiebotDialogDetailBulkConsentList dt a,
#CybotCookiebotDialog #CybotCookiebotDialogDetailFooter a,
#CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonIABDescription a,
#CybotCookiebotDialog .CybotCookiebotDialogDetailBodyContentCookieLink,
#CybotCookiebotDialog #CybotCookiebotDialogDetailBodyContentTextAbout a,
#CybotCookiebotDialog .CookieCard a {
  color: #0094bf !important;
}

.CybotCookiebotDialogActive + #CybotCookiebotDialogBodyUnderlay {
  opacity: 0.8 !important;
}

.CybotCookiebotFader {
  display: none;
}

.cookieconsent-optout-marketing {
  background: #fffffa;
  font-family: "Gotham", Arial, serif;
  border-radius: 0.9375rem;
  text-align: center;
  width: 100%;
  margin-top: 3rem;
}
.cookieconsent-optout-marketing a {
  outline: none;
  position: relative;
  font-weight: 700;
  color: #0094bf;
  text-decoration: none;
  margin-right: 0.3rem;
}

main.page-main {
  min-height: 400px;
  padding-top: 3rem;
}

@media screen and (min-width: 992px) {
  .container {
    max-width: calc(var(--pa-container-size) + var(--pa-container-space-x) * 2);
    padding-left: var(--pa-container-space-x);
    padding-right: var(--pa-container-space-x);
  }
}

.sidebar-opened .logo {
  z-index: 0;
}

header.page-header {
  border: 0;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}
header.page-header .panel.wrapper {
  min-height: unset;
}
header.page-header .header.content {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 992px) {
  header.page-header .header.content {
    max-width: calc(var(--pa-container-size) + var(--pa-container-space-x) * 2);
    padding-left: var(--pa-container-space-x);
    padding-right: var(--pa-container-space-x);
  }
}
header.page-header .logo {
  min-width: 150px;
  margin-right: 1rem;
}
@media screen and (max-width: 1399px) {
  header.page-header .logo {
    max-width: 200px;
  }
}
@media screen and (max-width: 991px) {
  header.page-header .logo {
    max-width: 150px;
  }
}
header.page-header.sticky-header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}
header.page-header.sticky-header .main-panel-top {
  display: none;
}
@media screen and (min-width: 992px) {
  header.page-header.sticky-header .minicart-wrapper {
    position: static !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
  header.page-header.sticky-header .nav-sections {
    width: auto !important;
    background: none !important;
    position: static !important;
    box-shadow: none !important;
  }
}
@media screen and (max-width: 991px) {
  header.page-header.sticky-header .header-main {
    position: static;
    box-shadow: none;
    background-color: var(--pa-color-secondary);
  }
}

.main-panel-top {
  background-color: var(--pa-color-primary);
  padding: 0.9rem 0;
}

.header-message {
  color: #fff;
  text-align: center;
  font-family: var(--pa-font-base--500);
  font-size: 2rem;
  width: 90%;
  font-weight: normal;
}
@media screen and (max-width: 1199px) {
  .header-message {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .header-message {
    font-size: 1.4rem;
  }
}
.header-message p {
  margin: 0;
  line-height: 1.2;
}

.header-left {
  color: #fff;
  text-align: center;
  font-family: var(--pa-font-base--500);
  font-size: 2rem;
  font-weight: normal;
  width: 10%;
}
@media screen and (max-width: 1199px) {
  .header-left {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .header-left {
    font-size: 1.4rem;
  }
}

.header.content {
  display: flex;
  align-items: center;
}
.header.content .minicart-wrapper {
  order: 5;
  margin-left: 2rem;
}
@media screen and (max-width: 991px) {
  .header.content .minicart-wrapper {
    margin-left: 1rem;
  }
}

.header-nav--group {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 1399px) {
  .header-nav--group {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .header-nav--group {
    flex-shrink: 0;
    --pa-menu-space-x: min(3vw, 20px);
  }
}
@media screen and (min-width: 1200px) {
  .header-nav--group {
    --pa-menu-space-x: min(3.5vw, 40px);
  }
}
@media screen and (min-width: 1400px) {
  .header-nav--group {
    --pa-menu-space-x: min(5vw, 77px);
  }
}

@media screen and (min-width: 992px) {
  .panel.header > .header.links {
    display: flex;
    align-items: center;
  }
}
.panel.header > .header.links > li:not(.custom-link):last-child {
  display: none;
}
.panel.header > .header.links > li > a {
  color: var(--pa-color-text);
  padding: 0;
  transition: 0.3s color ease;
  line-height: 1.2;
  text-transform: none;
}
@media screen and (min-width: 992px) {
  .panel.header > .header.links > li > a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .panel.header > .header.links > li > a {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .panel.header > .header.links > li > a:hover {
    color: var(--pa-color-primary);
  }
}
.panel.header > .header.links > li.greet.welcome {
  display: none;
}
@media screen and (min-width: 992px) {
  .panel.header > .header.links > li.customer-welcome {
    display: none;
  }
}
.panel.header > .header.links .authorization-link {
  display: none;
}

.header.links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header.links li {
  margin: 0 var(--pa-menu-space-x) 0 0;
  text-transform: none;
}
.header.links li a {
  font-family: var(--pa-font-base--500);
  color: var(--pa-color-text);
}

.header-main {
  background-color: var(--pa-color-secondary);
  padding: 1.775rem 0;
}
@media screen and (max-width: 991px) {
  .header-main {
    padding: 0.775rem 0;
  }
}
.header-main .header-left,
.header-main .header-center,
.header-main .header-right {
  padding: 0;
}

.header-contact a {
  color: var(--pa-color-text);
}
.header-contact a .svg-icon {
  vertical-align: middle;
}
@media screen and (max-width: 575px) {
  .header-contact a .svg-icon {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 991px) {
  .header-row .header-center {
    margin: 0 0 0 auto;
    flex: none;
  }
}
@media screen and (max-width: 991px) {
  .header-row .header-right {
    margin-left: 0;
  }
}

@media screen and (max-width: 991px) {
  header.page-header .nav-sections-item-title {
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    height: 5rem;
    font-family: var(--pa-font-base--500);
    font-weight: normal;
  }
}
header.page-header .nav-sections-item-title:not(.active) {
  background-color: var(--pa-color-primary);
}
@media screen and (max-width: 991px) {
  header.page-header .nav-sections-item-title.active > a, header.page-header .nav-sections-item-title.active > a:hover, header.page-header .nav-sections-item-title.active > a:focus {
    color: var(--pa-color-primary);
  }
}

.page-header .navigation a, .panel.header > .header.links a {
  font-size: 1.7rem !important;
  font-family: var(--pa-font-base--700) !important;
}

.page-header.type1 .navigation:not(.side-megamenu) .level0 .level-top {
  color: var(--pa-color-text);
  font-family: var(--pa-font-base--500);
  transition: 0.3s color ease;
  text-transform: none;
  font-weight: normal;
}
@media screen and (min-width: 992px) {
  .page-header.type1 .navigation:not(.side-megamenu) .level0 .level-top {
    font-size: 1.4rem;
    padding: 0;
    letter-spacing: normal;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .page-header.type1 .navigation:not(.side-megamenu) .level0 .level-top {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-header.type1 .navigation:not(.side-megamenu) .level0 .level-top:hover {
    color: var(--pa-color-primary);
  }
}
.page-header .navigation {
  padding: 0;
}
.page-header .navigation:not(.side-megamenu) .level0 {
  margin-right: var(--pa-menu-space-x);
}
@media screen and (min-width: 992px) {
  .page-header .navigation:not(.side-megamenu) .level0.parent:hover:before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100% + 3px);
    z-index: 1;
  }
  .page-header .navigation:not(.side-megamenu) .level0.parent:hover > a {
    color: var(--pa-color-primary);
  }
  .page-header .navigation:not(.side-megamenu) .level0.parent:hover > a > span:before {
    bottom: -11px;
  }
  .page-header .navigation:not(.side-megamenu) .level0.parent:hover > a > span:after {
    bottom: -12px;
  }
}
.page-header .navigation:not(.side-megamenu) .level0.parent > a:after {
  min-width: 9px;
}
@media screen and (max-width: 991px) {
  .page-header .navigation a {
    color: var(--pa-color-text) !important;
  }
}
@media screen and (max-width: 991px) {
  .page-header .navigation a:hover {
    color: var(--pa-color-text) !important;
    text-transform: none;
  }
}
@media screen and (max-width: 991px) {
  .page-header .navigation li.level0 .ui-menu-item > a:before {
    color: var(--pa-color-primary);
  }
}
.page-header .nav-toggle {
  color: var(--pa-color-text);
}

@media screen and (max-width: 991px) {
  .nav-sections .header.links a, .nav-sections .header.links a:hover {
    color: var(--pa-color-text) !important;
    text-transform: none;
  }
}
@media screen and (max-width: 991px) {
  .nav-sections {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 991px) {
  .nav-open .nav-sections {
    box-shadow: 0 0 12px 0 rgba(50, 50, 50, 0.3);
  }
}

@media screen and (min-width: 992px) {
  .sw-megamenu.navigation li.level0.fullwidth .submenu {
    top: calc(100% + 10px);
  }
}
@media screen and (min-width: 992px) {
  .sw-megamenu.navigation li.level0.fullwidth .submenu li.level1 > a {
    text-transform: none;
    color: var(--pa-color-text);
  }
}

@media screen and (min-width: 991px) {
  ul#category-menu {
    position: absolute;
    background: #faeb7a;
    margin-top: 0px;
    width: 330px;
    border-radius: 25px;
    margin-left: -20px;
    padding-top: 20px;
  }
  .sw-megamenu.navigation li > a > span {
    position: relative;
    margin: 20px;
  }
}
@media screen and (max-width: 991px) {
  ul#category-menu {
    display: block !important;
  }
  .nav-open .nav-sections {
    background: #faeb7a;
  }
  .navigation .level0 {
    border: none !important;
  }
  .nav-sections .header.links li {
    border: none !important;
  }
  .navigation li.level0:last-child {
    padding-bottom: 20px;
  }
  .navigation li.level0 > a.level-top {
    padding: 29px 36px 16px 19px;
    font-size: 14px !important;
  }
  header.page-header .nav-sections-item-title:not(.active) {
    display: none;
  }
  header.page-header .nav-sections-item-title {
    width: 100px;
  }
  .navigation .header.links > li {
    border-bottom: 2px solid white !important;
  }
}
.footer-middle {
  --footer-column-space-x: min(5vw, 85px);
  background-color: var(--pa-color-primary);
  color: #fff;
}
@media screen and (max-width: 1399px) {
  .footer-middle {
    --footer-column-space-x: min(3.1vw, 75px);
  }
}
.footer-middle > .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.footer-middle > .container:after {
  display: none;
}
.footer-middle a.pa-btn {
  color: var(--pa-color-text) !important;
}
.footer-middle .column-1 {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .footer-middle .column-1 {
    border-right: 1px solid #fff;
  }
}
.footer-middle .column-1 img {
  margin: 0 auto 2rem;
  max-height: 28px;
  display: block;
}
.footer-middle .column-1 .pa-btn {
  margin-top: 2rem;
  width: 100%;
  max-width: 320px;
}
@media screen and (min-width: 992px) {
  .footer-middle .column-1 .inner {
    padding-right: var(--footer-column-space-x);
  }
}
@media screen and (min-width: 992px) {
  .footer-middle .column:not(.column-1) {
    padding: 2rem 0 2rem var(--footer-column-space-x);
  }
}
.footer-middle ul:not(.social) li {
  padding: 0.3rem 0;
}
.footer-middle ul:not(.social) a {
  text-decoration: none !important;
}
@media screen and (min-width: 1200px) {
  .footer-middle ul:not(.social) a {
    background: linear-gradient(0deg, currentColor, currentColor) no-repeat right bottom/0 var(--bg-h);
    transition: background-size 350ms;
    --bg-h: 1px;
    padding-bottom: 1px;
  }
  .footer-middle ul:not(.social) a:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
  }
}
.footer-middle ul:not(.social) a {
  color: #fff;
}
.footer-middle ul:not(.social) a:visited {
  color: #fff;
}

.footer-bottom {
  background-color: var(--pa-color-primary--light);
  color: var(--pa-color-text);
  padding: 1.9rem 0;
  font-size: 1.2rem;
}

.footer-ribbon {
  background: none;
}
.footer-ribbon:before {
  display: none;
}

.page-footer {
  --pa-container-size: 1700px;
}
.page-footer .logo {
  margin: 0 auto 2rem;
  max-height: 28px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 320px;
}
.page-footer .social {
  display: flex;
  padding-top: 2rem;
}
.page-footer .social li:not(:last-child) {
  margin-right: 3rem;
}
.page-footer .social a {
  color: var(--pa-color-secondary);
}
@media screen and (min-width: 1200px) {
  .page-footer .social a {
    transition-duration: 0.3s;
    transition-property: color;
    transition-timing-function: ease;
  }
}
@media screen and (min-width: 1200px) {
  .page-footer .social a:hover {
    color: var(--pa-color-text);
  }
}
.page-footer .payment {
  font-size: 1.2rem;
}
.page-footer .payment > div {
  max-width: 28rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
}
@media screen and (min-width: 992px) {
  .page-footer .payment > div {
    margin-left: auto;
  }
}
.page-footer .payment hr {
  background: #fff;
  width: 100%;
}
.page-footer .payment img {
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 2rem;
  max-height: 40px;
}
.page-footer .payment img:last-of-type {
  margin-right: 0;
}

.sidebar-opened {
  overflow: hidden;
}

.sidebar .sidebar-content .block-category-list {
  padding: 0;
  border: 0;
}

@media screen and (min-width: 769px) {
  .header .block-search {
    min-width: 2.6rem;
  }
}
.header .block-search .control {
  margin: 0 -5px 0;
  padding: 0;
}
.header .block-search .field input {
  border-radius: 0;
  background: none;
  padding: 0;
  font-size: 1.4rem;
  outline: none;
  box-shadow: none;
  height: 3rem;
  border: 0;
}
@media screen and (min-width: 992px) {
  .header .block-search .field input {
    border-bottom: 1px solid var(--pa-color-grey-1);
  }
}
.header .block-search .field input::-webkit-input-placeholder {
  color: var(--pa-color-grey-1);
  opacity: 1;
}
.header .block-search .field input:-ms-input-placeholder {
  color: var(--pa-color-grey-1);
  opacity: 1;
}
.header .block-search .field input::-ms-input-placeholder {
  color: var(--pa-color-grey-1);
  opacity: 1;
}
.header .block-search .field input::placeholder {
  color: var(--pa-color-grey-1);
  opacity: 1;
}
.header .block-search .field input:focus {
  outline: none;
  box-shadow: none !important;
}
@media screen and (min-width: 992px) {
  .header .block-search .field input:focus {
    box-shadow: inset 0 -2px 0 0 var(--pa-color-primary) !important;
    border-bottom-color: var(--pa-color-primary);
  }
}
.header .block-search .field.search {
  margin-left: 3rem;
}
@media screen and (max-width: 991px) {
  .header .block-search .field.search {
    margin-left: 4rem;
  }
}
.header .block-search .form .action.search {
  color: #000;
  left: 0;
  right: auto !important;
  height: 3rem;
  line-height: 3rem;
  width: auto !important;
}
@media screen and (max-width: 991px) {
  .header .block-search .form .action.search {
    left: 10px;
    position: absolute;
    top: 0;
  }
}
.header .block-search .form .action.search:before {
  display: none;
}
.header .block-search .form .action.search[disabled] {
  opacity: 1;
}
.header .block-search .form .action.search .svg-icon {
  vertical-align: bottom;
}
@media screen and (max-width: 991px) {
  .header .block-search .form .action.search .svg-icon {
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-bottom: 3px;
  }
}
.header .search-area {
  width: auto;
}
@media screen and (min-width: 992px) {
  .header .search-area {
    flex-shrink: 1;
    flex-basis: 240px;
    margin-left: min(3vw, 40px);
  }
}
@media screen and (min-width: 1400px) {
  .header .search-area {
    margin-left: min(6vw, 120px);
  }
}
.header .search-area .block.block-search {
  background: none;
  border-radius: 0;
}
@media screen and (max-width: 991px) {
  .header .search-area .block.block-search {
    border-width: 3px;
    background: #fff;
    right: -10px;
  }
}
@media screen and (min-width: 992px) {
  .header .search-area .block.block-search {
    width: unset;
    min-width: unset;
  }
}
@media screen and (max-width: 575px) {
  .header .search-area .block.block-search {
    right: -8rem;
    min-width: calc(100vw - 4rem);
  }
}
.header .search-area .search-toggle-icon {
  color: var(--pa-color-text);
}
.header .search-area .search-toggle-icon .svg-icon {
  vertical-align: middle;
}
@media screen and (max-width: 575px) {
  .header .search-area .search-toggle-icon .svg-icon {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 992px) {
  .header .search-area .input-text {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .header .search-area #search_mini_form {
    width: unset;
    min-width: unset;
  }
}

.minicart-wrapper .action-subtotal {
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0 !important;
  left: 0;
  top: 0;
}
.minicart-wrapper .action.showcart {
  color: var(--pa-color-text);
}
@media screen and (max-width: 575px) {
  .minicart-wrapper .action.showcart .svg-icon {
    width: 28px;
    height: 21px;
  }
}
.minicart-wrapper .action.showcart:after {
  min-width: 11px;
  display: none;
}
.minicart-wrapper .action.showcart .counter.qty {
  background-color: var(--pa-color-primary);
  right: -8px;
  top: -12px;
  font-size: 1.1rem;
}
.minicart-wrapper .block-minicart {
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12);
  font-size: 1.2rem;
}
.minicart-wrapper .block-minicart .total-count .actions a {
  opacity: 0.5;
  color: #1c1c1c;
  transition: 0.2s color, opacity ease;
}
.minicart-wrapper .block-minicart .total-count .actions a:hover {
  opacity: 1;
  color: var(--pa-color-primary);
}

.block-minicart .block-content > .actions > .primary .action.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 5px 2rem;
  min-height: 54px;
  min-width: 150px;
  text-decoration: none !important;
  border: 2px solid transparent;
  outline: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 30px;
  font-family: var(--pa-font-base--500);
  font-size: 1.6rem;
  color: var(--pa-color-text);
  background-color: var(--pa-color-grey-1);
  text-transform: none;
}
@media screen and (min-width: 1200px) {
  .block-minicart .block-content > .actions > .primary .action.primary {
    transition-duration: 0.3s;
    transition-property: border-color, color, background-color;
    transition-timing-function: ease;
  }
}
.block-minicart .block-content > .actions > .primary .action.primary {
  border-color: var(--pa-color-primary);
  background-color: var(--pa-color-primary);
  color: #fff;
}
.block-minicart .block-content > .actions > .primary .action.primary:visited {
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .block-minicart .block-content > .actions > .primary .action.primary:hover {
    background-color: transparent;
    border-color: currentColor;
    color: var(--pa-color-primary);
  }
}

.minicart-items .product-item-details > *:not(.product-item-name) {
  font-size: 1.2rem;
}
.minicart-items .product-item-details .price,
.minicart-items .product-item-details .price-including-tax,
.minicart-items .product-item-details .price-excluding-tax {
  font-size: 1.2rem;
}
.minicart-items .product-item-name {
  font-size: 1.6rem;
}
.minicart-items .product-item-name a:hover {
  color: var(--pa-color-primary) !important;
}
.minicart-items .product-item-pricing .label {
  font-family: var(--pa-font-base--500);
  color: var(--pa-color-text);
  width: auto;
  margin-right: 1rem;
}
.minicart-items .item-qty {
  height: 28px;
  width: 42px;
  border-radius: 6px;
}

@media screen and (min-width: 576px) {
  .minicart-wrapper .block-minicart {
    min-width: 400px;
  }
}
.minicart-wrapper .block-minicart .total-count {
  text-transform: none;
  font-family: var(--pa-font-base--500);
  font-size: 1.4rem;
}
.minicart-wrapper .block-minicart .subtotal {
  text-transform: none;
  font-family: var(--pa-font-base--500);
  font-size: 1.6rem;
}
.minicart-wrapper .block-minicart .product .actions > .secondary {
  box-shadow: none;
  background: none;
  border-radius: 0;
}
.minicart-wrapper li > .product {
  width: 100%;
}

.minicart-items-wrapper {
  -ms-scrollbar-base-color: #b2b2b2;
  scrollbar-color: rgba(178, 178, 178, 0.5) #e4e4e4;
  scrollbar-width: thin;
}
.minicart-items-wrapper::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
.minicart-items-wrapper::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  box-shadow: inset 0px 0px 0px 1.5px #fff;
}
.minicart-items-wrapper::-webkit-scrollbar-thumb {
  height: 5px;
  width: 5px;
  background-color: #b2b2b2;
  border-radius: 5px;
}
.minicart-items-wrapper {
  padding-right: 1rem;
}

.search-autocomplete ul li .amount {
  font-family: var(--pa-font-base--500);
  color: var(--pa-color-primary);
}
/*# sourceMappingURL=styles.css.map */
