@media only screen and (min-width: 1400px) {
  .container {
    width: 1320px;
  }
}
@font-face {
  font-family: "Rubik";
  src: url(/styles/fonts/Rubik-VariableFont_wght.ttf);
  font-weight: 300 900;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url(/styles/fonts/Rubik-Italic-VariableFont_wght.ttf);
  font-weight: 300 900;
  font-style: italic;
}
html {
  font-size: 16px;
}

body {
  font-family: "Rubik", sans-serif;
  color: #393c4c;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 0;
}

.body-order h2 {
  display: none;
}

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

h1, .h1 {
  font-size: 2.5rem;
}
@media only screen and (max-width: 767px) {
  h1, .h1 {
    font-size: 2rem;
  }
}

h2, .h2 {
  font-size: 2.25rem;
}
@media only screen and (max-width: 767px) {
  h2, .h2 {
    font-size: 1.75rem;
  }
}

h3, .h3 {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  h3, .h3 {
    font-size: 1.625rem;
  }
}

h4, .h4 {
  font-size: 1.75rem;
}
@media only screen and (max-width: 767px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  h5, .h5 {
    font-size: 1.375rem;
  }
}

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

p.large {
  font-size: 1.125rem;
}
p.extra-large {
  font-size: 1.25rem;
}
@media only screen and (max-width: 991px) {
  p.extra-large {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  p.large {
    font-size: 1rem;
  }
  p.extra-large {
    font-size: 1rem;
  }
}

a {
  color: #393c4c;
  text-decoration: underline;
  transition: all 0.15s ease-in-out 0s;
}
a:hover, a:focus {
  color: #fe5000;
}

input,
textarea,
select {
  box-shadow: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: #fe5000 solid 1px;
}

.custom-button {
  display: inline-block;
  background: #fe5000;
  border: 0;
  border-radius: 0;
  color: #fff;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  text-decoration: none !important;
  padding: 1rem 2rem;
  transition: all 0.15s ease-in-out 0s;
}
.custom-button:hover, .custom-button:focus {
  background: #393c4c;
  color: #fff;
}

.btn {
  background: #bbb;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: none !important;
  white-space: unset;
  outline: none !important;
  padding: 0.75rem 1rem 0.625rem;
  transition: all 0.15s ease-in-out 0s;
}
.btn:hover, .btn:focus, .btn:active {
  background: rgb(169.15, 169.15, 169.15) !important;
  color: #fff;
}

.btn-large {
  font-size: 1rem;
  padding: 1.5rem 2rem 1.375rem;
}

.btn-default {
  background: #fe5000;
  color: #fff;
}
.btn-default:hover, .btn-default:focus, .btn-default:active {
  background: rgb(218.3, 68.7559055118, 0) !important;
  color: #fff;
}

.btn-primary {
  background: #00ab00;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: rgb(0, 135.3, 0) !important;
  color: #fff;
}

.main-color {
  color: #fe5000;
}

.main-color-2 {
  color: #393c4c;
}

@media only screen and (max-width: 767px) {
  .xs-text-center {
    text-align: center;
  }
}
.nowrap {
  white-space: nowrap;
}

.uppercase {
  text-transform: uppercase;
}

label {
  font-weight: 400;
}

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

/* ------------------------- */
/* ----- PRODUCT FLAGS ----- */
/* ------------------------- */
.flags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.flags span {
  background: rgba(57, 60, 76, 0.15);
  color: #393c4c;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem 0.125rem;
  margin: 0;
}

/* --------------------------- */
/* ----------- 404 ----------- */
/* --------------------------- */
.not-found-404 {
  max-width: 100%;
  text-align: center;
}
.not-found-404 .fa-times-circle-o {
  color: #da0000;
  opacity: 1;
}
.not-found-404 h1 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.not-found-404 p {
  font-size: 1em;
  margin: 0;
}

/* ----------------------------------------------------- */
/* -- CUSTOM ------------------------------------------- */
/* ----------------------------------------------------- */
.page-wrapper {
  background: #f6f6f6;
}
.page-wrapper .page-wrapper-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
}
.page-wrapper .page-wrapper-inner .page-content {
  flex-grow: 1;
}

body:not(.body-index) .page-wrapper .page-wrapper-inner .page-content {
  padding-top: 12rem;
}
@media only screen and (max-width: 991px) {
  body:not(.body-index) .page-wrapper .page-wrapper-inner .page-content {
    padding-top: 8.5rem;
  }
}
@media only screen and (max-width: 767px) {
  body:not(.body-index) .page-wrapper .page-wrapper-inner .page-content {
    padding-top: 7.5rem;
  }
}

.custom-header-wrapper {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 50;
  transition: all 0.5s ease-in-out 0s;
}
.custom-header-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.8274509804);
  backdrop-filter: blur(4px);
}
.custom-header-wrapper .header-line {
  height: 2.5rem;
  display: flex;
  align-items: center;
  background: #8f8f8f;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  overflow: hidden;
  transition: all 0.5s ease-in-out 0s;
}
.custom-header-wrapper .header-line .container {
  position: relative;
}
.custom-header-wrapper .header-line .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
}
.custom-header-wrapper .header-line .content img {
  height: 1.25rem;
}
.custom-header-wrapper .header-line .langs {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(-50%);
}
.custom-header-wrapper .header-line .langs img {
  width: 2rem;
}
.custom-header-wrapper .custom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  transition: all 0.5s ease-in-out 0s;
}
.custom-header-wrapper .custom-header .logo {
  flex-shrink: 0;
  width: 12rem;
  transition: all 0.5s ease-in-out 0s;
}
.custom-header-wrapper .custom-header .custom-navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding: 0;
  transition: all 0.5s ease-in-out 0s;
}
.custom-header-wrapper .custom-header .custom-navbar a {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  text-decoration: none;
  transition: all 0.15s ease-in-out 0s;
}
.custom-header-wrapper .custom-header .custom-navbar a:hover {
  color: #fe5000;
}
.custom-header-wrapper .custom-header .custom-navbar a:focus {
  color: #393c4c;
}
.custom-header-wrapper .custom-header .custom-navbar a.active {
  text-decoration: underline;
  text-underline-offset: 0.375rem;
  text-decoration-thickness: 2px;
}
.custom-header-wrapper .custom-header .custom-navbar a.button {
  background: #fe5000;
  color: #fff;
  text-decoration: none !important;
  padding: 0.125rem 0.75rem;
}
.custom-header-wrapper .custom-header .custom-navbar a.button:hover {
  background: #393c4c;
}
.custom-header-wrapper .custom-header .custom-navbar a.button:focus {
  background: #fe5000;
}
.custom-header-wrapper .custom-header .custom-navbar a.shopping-cart-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
}
.custom-header-wrapper .custom-header .custom-navbar a.shopping-cart-status img {
  width: 1.75rem;
  margin-bottom: 0.25rem;
}
.custom-header-wrapper .custom-header .custom-navbar .langs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.custom-header-wrapper .custom-header .custom-navbar .langs img {
  width: 2rem;
}
.custom-header-wrapper.scrolled .header-line {
  height: 0;
  opacity: 0;
}
@media only screen and (max-width: 1199px) {
  .custom-header-wrapper .custom-header .custom-navbar {
    gap: 1.5rem;
  }
  .custom-header-wrapper .custom-header .custom-navbar a {
    font-size: 1.125rem;
    letter-spacing: 0.02rem;
  }
}
@media only screen and (max-width: 991px) {
  .custom-header-wrapper .custom-header {
    padding: 1rem 0;
  }
  .custom-header-wrapper .custom-header .logo {
    width: 10rem;
  }
  .custom-header-wrapper .custom-header .custom-navbar {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #393c4c;
    padding-top: 6rem !important;
  }
  .custom-header-wrapper .custom-header .custom-navbar a {
    color: #fff;
    font-size: 1rem;
  }
  .custom-header-wrapper .custom-header .custom-navbar.active {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .custom-header-wrapper .header-line .content {
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0.375rem 0;
  }
  .custom-header-wrapper .header-line .content img {
    height: 1.125rem;
  }
  .custom-header-wrapper .header-line .langs {
    display: none;
  }
  .custom-header-wrapper .custom-header .logo {
    width: 8rem;
  }
}
@media only screen and (max-width: 400px) {
  .custom-header-wrapper .header-line .content img {
    display: none;
  }
}

.burger-button {
  display: none;
  position: relative;
  width: 3rem;
  height: 3rem;
  background: none;
  border: 0;
  border-radius: 0;
}
.burger-button span {
  position: absolute;
  left: 50%;
  width: 2.25rem;
  height: 5px;
  background: #393c4c;
  transform: translateX(-50%);
  transition: all 0.15s ease-in-out 0s;
}
.burger-button span:nth-child(1) {
  top: calc(50% - 13px);
}
.burger-button span:nth-child(2) {
  top: calc(50% - 2px);
}
.burger-button span:nth-child(3) {
  top: calc(50% - 2px);
}
.burger-button span:nth-child(4) {
  top: calc(50% + 9px);
}
.burger-button:hover span {
  background: #fe5000;
}
.burger-button.active span {
  background: #fe5000;
}
.burger-button.active span:nth-child(1) {
  top: calc(50% - 2px);
  opacity: 0;
}
.burger-button.active span:nth-child(2) {
  transform: translateX(-50%) rotate(45deg);
}
.burger-button.active span:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
}
.burger-button.active span:nth-child(4) {
  top: calc(50% - 2px);
  opacity: 0;
}
@media only screen and (max-width: 991px) {
  .burger-button {
    display: block;
  }
}

.socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid #393c4c;
  border-radius: 0.5rem;
  text-decoration: none !important;
}
.socials a i.fa {
  color: #393c4c;
  font-size: 2rem;
  transition: all 0.15s ease-in-out 0s;
}
.socials a:hover {
  background: #393c4c;
}
.socials a:hover i.fa {
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .socials a {
    width: 2.5rem;
    height: 2.5rem;
  }
  .socials a i.fa {
    font-size: 1.5rem;
  }
}

.custom-footer {
  position: relative;
  bottom: auto;
  height: auto;
  background: #fff;
  color: #393c4c;
  line-height: 1.6;
}
.custom-footer a {
  color: #393c4c;
  text-decoration: none;
}
.custom-footer a:hover {
  color: #393c4c;
  text-decoration: underline;
  opacity: 1;
}
.custom-footer img {
  height: auto;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .custom-footer {
    text-align: left;
    font-size: 1em;
  }
}

.footer-top {
  padding: 10rem 0 4rem;
}
.footer-top p {
  margin: 0;
}
.footer-top .made-in-info {
  text-align: center;
  padding-bottom: 10rem;
}
.footer-top .made-in-info .heading {
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-top .made-in-info .text {
  font-weight: 600;
  line-height: 1.6;
}
.footer-top .columns {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  line-height: 1.5;
}
.footer-top .columns .column-1 {
  display: flex;
  gap: 2rem;
}
.footer-top .columns .column-1 .logo {
  flex-shrink: 0;
}
.footer-top .columns .column-1 .logo img {
  width: 5rem;
}
.footer-top .columns .logo-bikeboard {
  width: 100%;
  max-width: 15rem;
}
@media only screen and (max-width: 991px) {
  .footer-top {
    text-align: center;
    padding: 6rem 0 3rem;
  }
  .footer-top .made-in-info {
    padding-bottom: 6rem;
  }
  .footer-top .columns {
    display: grid;
    grid-template-columns: 1fr;
  }
  .footer-top .columns .column-1 {
    justify-content: center;
    width: 100%;
    gap: 1.5rem;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top .made-in-info .text br {
    display: none;
  }
}

.footer-bottom {
  background: #EBECED;
  font-size: 0.875rem;
  font-weight: 450;
  padding: 4rem 0 5rem;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom .columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
}
.footer-bottom .rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  line-height: 1.4;
}
.footer-bottom .socials {
  justify-content: flex-end;
}
.footer-bottom .logo-gopay {
  margin-top: 2.5rem;
}
.footer-bottom .logo-gopay img {
  width: 8rem;
  margin-right: 0;
}
@media only screen and (max-width: 991px) {
  .footer-bottom {
    padding: 3rem 0 4rem;
  }
  .footer-bottom .columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom .rows {
    gap: 0.25rem;
  }
  .footer-bottom .socials {
    justify-content: flex-start;
  }
  .footer-bottom .logo-gopay {
    margin-top: 2rem;
  }
  .footer-bottom .logo-gopay img {
    margin-left: 0;
  }
}
@media only screen and (max-width: 500px) {
  .footer-bottom .columns {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .footer-bottom .columns .column-3 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .footer-bottom .rows br {
    display: none;
  }
}

.footer-made-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #EBECED;
  padding: 0 1rem 3rem;
}
.footer-made-by .logo {
  flex-shrink: 0;
  width: 3rem;
}
.footer-made-by p {
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}

.hp-section-voucher {
  position: relative;
  background-color: #6A734D;
  padding-top: 15rem;
  padding-bottom: 4rem;
}
.hp-section-voucher .inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hp-section-voucher .text {
  width: 60%;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 3rem;
  z-index: 3;
}
.hp-section-voucher .text .heading {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}
.hp-section-voucher .text .big {
  font-size: 2.75rem;
  line-height: 1.25;
  margin-bottom: 3rem;
}
.hp-section-voucher .text p {
  margin-bottom: 0;
}
.hp-section-voucher .image {
  width: 40%;
}
.hp-section-voucher .image img {
  max-width: 100%;
}
@media only screen and (max-width: 1199px) {
  .hp-section-voucher .text {
    width: 100%;
    font-size: 1.5rem;
  }
  .hp-section-voucher .text .heading {
    font-size: 3.25rem;
    margin-bottom: 1.25rem;
  }
  .hp-section-voucher .text .big {
    font-size: 2.75rem;
    margin-bottom: 2.25rem;
  }
}
@media only screen and (max-width: 991px) {
  .hp-section-voucher {
    padding-top: 13rem;
  }
  .hp-section-voucher .inner {
    flex-wrap: wrap;
    gap: 3rem;
  }
  .hp-section-voucher .text {
    width: 100%;
    font-size: 1.25rem;
    padding-bottom: 0;
  }
  .hp-section-voucher .text .big {
    font-size: 2.125rem;
    margin-bottom: 2.25rem;
  }
  .hp-section-voucher .image {
    width: 100%;
  }
  .hp-section-voucher .image img {
    width: 250px;
  }
}
@media only screen and (max-width: 767px) {
  .hp-section-voucher {
    padding-top: 11rem;
  }
  .hp-section-voucher .text {
    font-size: 1rem;
  }
  .hp-section-voucher .text .heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .hp-section-voucher .text .big {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.hp-section-1 {
  position: relative;
  height: 300vh;
}
.hp-section-1 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2;
}
.hp-section-1 .scroll-icon {
  position: fixed;
  bottom: 2rem;
  left: calc(50% - 1rem);
  width: 2rem;
  z-index: 10;
  animation: scrollIconBounce 2s infinite;
  transition: all 0.15s ease-in-out 0s;
}
.hp-section-1 .scroll-icon.scrolled {
  opacity: 0;
}
.hp-section-1 .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3.375rem;
  font-weight: 500;
  z-index: 3;
}
.hp-section-1 .text .inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1170px;
  padding: 0 1rem;
}
.hp-section-1 .text .inner p {
  margin: 0;
}
.hp-section-1 .sticker {
  position: sticky;
  top: 0;
  max-width: 1920px;
  margin: 0 auto;
}
.hp-section-1 .sticker canvas {
  display: block;
  width: 100%;
  height: 100vh;
}
@media only screen and (max-width: 1199px) {
  .hp-section-1 .text {
    font-size: 2.75rem;
  }
  .hp-section-1 .text .inner {
    max-width: 970px;
  }
  .hp-section-1 .sticker {
    padding-top: 10vh;
  }
  .hp-section-1 .sticker canvas {
    height: 90vh;
  }
}
@media only screen and (max-width: 991px) {
  .hp-section-1 .text {
    font-size: 2.125rem;
  }
  .hp-section-1 .text .inner {
    max-width: 750px;
  }
  .hp-section-1 .sticker {
    padding-top: 15vh;
  }
  .hp-section-1 .sticker canvas {
    height: 70vh;
  }
}
@media only screen and (max-width: 767px) {
  .hp-section-1 .text {
    font-size: 1.5rem;
  }
  .hp-section-1 .text .inner {
    padding: 1rem;
  }
  .hp-section-1 .sticker {
    padding-top: 25vh;
  }
  .hp-section-1 .sticker canvas {
    height: 45vh;
  }
}

.hp-section-2 .content {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 450;
  padding-top: 25vh;
}
@media only screen and (max-width: 767px) {
  .hp-section-2 .content {
    font-size: 1.5rem;
    text-align: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
  }
}

.hp-section-3 {
  position: relative;
  overflow: hidden;
}
.hp-section-3 .moving-image-wrapper {
  position: relative;
  padding-top: 30rem;
}
.hp-section-3 .moving-image-wrapper .moving-image {
  position: absolute;
  max-width: unset;
  width: 90rem;
}
.hp-section-3 .content {
  max-width: 600px;
  padding-top: 25rem;
  padding-bottom: 8rem;
  margin-left: 27rem;
}
.hp-section-3 .content p {
  font-size: 2rem;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .hp-section-3 .moving-image-wrapper {
    padding-top: 20rem;
  }
  .hp-section-3 .moving-image-wrapper .moving-image {
    width: 70rem;
  }
  .hp-section-3 .content {
    padding-top: 15rem;
    padding-bottom: 6rem;
    margin-left: 18rem;
  }
}
@media only screen and (max-width: 991px) {
  .hp-section-3 .content {
    margin-left: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .hp-section-3 .moving-image-wrapper {
    padding-top: 12rem;
  }
  .hp-section-3 .moving-image-wrapper .moving-image {
    width: 35rem;
  }
  .hp-section-3 .content {
    padding-top: 7rem;
    padding-bottom: 3rem;
    margin-left: 0;
  }
  .hp-section-3 .content p {
    font-size: 1.5rem;
  }
}

.hp-section-4 {
  position: relative;
  height: 350vh;
}
.hp-section-4 .sticker {
  position: sticky;
  top: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding-bottom: 8rem;
}
.hp-section-4 .sticker .text {
  position: relative;
  font-size: 2rem;
  font-weight: 450;
  max-width: 600px;
  margin: 0;
  z-index: 2;
}
.hp-section-4 .sticker .moving-image-wrapper {
  position: relative;
  height: 16rem;
  margin-top: 1rem;
}
.hp-section-4 .sticker .moving-image-wrapper .moving-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 35rem;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .hp-section-4 .sticker {
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .hp-section-4 {
    height: 225vh;
  }
  .hp-section-4 .sticker {
    padding-bottom: 1rem;
  }
  .hp-section-4 .sticker .text {
    font-size: 1.5rem;
  }
  .hp-section-4 .sticker .moving-image-wrapper {
    height: 8rem;
  }
  .hp-section-4 .sticker .moving-image-wrapper .moving-image {
    width: 16rem;
  }
}

.hp-section-5 {
  position: relative;
  max-width: 1920px;
  height: 300vh;
  margin: 0 auto;
}
.hp-section-5 .sticker {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  align-items: center;
}
.hp-section-5 .sticker .sticker-inner {
  width: 100%;
  padding-top: 10vh;
}
.hp-section-5 .sticker canvas {
  display: block;
  width: 864px;
  height: 480px;
  margin-left: auto;
}
.hp-section-5 .sticker .content {
  position: relative;
  max-width: 650px;
  font-size: 2rem;
  font-weight: 450;
  margin-top: -5rem;
  z-index: 10;
}
@media only screen and (max-width: 1299px) {
  .hp-section-5 .sticker .content {
    margin-top: -2rem;
  }
}
@media only screen and (max-width: 1199px) {
  .hp-section-5 .sticker canvas {
    width: 648px;
    height: 360px;
  }
  .hp-section-5 .sticker .content {
    font-size: 1.875rem;
    margin-top: -1rem;
  }
}
@media only screen and (max-width: 991px) {
  .hp-section-5 .sticker .sticker-inner {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hp-section-5 .sticker canvas {
    width: 318.6px;
    height: 177px;
  }
  .hp-section-5 .sticker .content {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

.hp-section-6 {
  position: relative;
  max-width: 1920px;
  height: 300vh;
  margin: 0 auto;
}
.hp-section-6 .sticker {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  align-items: center;
}
.hp-section-6 .sticker .sticker-inner {
  width: 100%;
  padding-top: 6rem;
}
.hp-section-6 .sticker canvas {
  display: block;
  width: 864px;
  height: 480px;
  margin-right: auto;
}
.hp-section-6 .sticker .content {
  position: relative;
  max-width: 650px;
  font-size: 2rem;
  font-weight: 450;
  margin-top: -5rem;
  margin-left: 50%;
  z-index: 10;
}
@media only screen and (max-width: 1299px) {
  .hp-section-6 .sticker .content {
    margin-top: -3rem;
  }
}
@media only screen and (max-width: 1199px) {
  .hp-section-6 .sticker .sticker-inner {
    padding-top: 3rem;
  }
  .hp-section-6 .sticker canvas {
    width: 756px;
    height: 420px;
  }
  .hp-section-6 .sticker .content {
    font-size: 1.75rem;
    margin-left: 42%;
  }
}
@media only screen and (max-width: 991px) {
  .hp-section-6 .sticker .sticker-inner {
    padding-top: 0;
  }
  .hp-section-6 .sticker canvas {
    width: 648px;
    height: 360px;
  }
  .hp-section-6 .sticker .content {
    margin-top: -2rem;
    margin-left: 20%;
  }
}
@media only screen and (max-width: 767px) {
  .hp-section-6 .sticker canvas {
    width: 318.6px;
    height: 177px;
  }
  .hp-section-6 .sticker .content {
    font-size: 1.5rem;
    margin-top: 0;
    margin-left: 0;
  }
}

.empty-cart-page {
  text-align: center;
}

.cart-page h2 {
  display: block;
}
.cart-page .order-note {
  display: block;
  width: 100%;
  min-height: 8rem;
  background: #fff;
  border: 1px solid rgba(57, 60, 76, 0.5);
  border-radius: 0;
  padding: 0.25rem 0.625rem;
  margin: 0;
  resize: vertical;
}
.cart-page .order-submit-wrapper {
  text-align: right;
}
.cart-page .order-submit-wrapper p {
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
@media only screen and (max-width: 767px) {
  .cart-page .order-submit-wrapper {
    text-align: left;
  }
}

.product-qty-switcher {
  display: flex;
  width: 6rem;
  border: 1px solid #ddd;
}
.product-qty-switcher input {
  flex-grow: 1;
  background: none;
  border: 0;
  border-radius: 0;
  text-align: center;
}
.product-qty-switcher input[type=number]::-webkit-inner-spin-button,
.product-qty-switcher input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.product-qty-switcher button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: none;
  border: none;
  border-radius: 0;
  color: #fe5000;
  font-size: 0.75rem;
}
.product-qty-switcher button:hover {
  background: rgba(254, 80, 0, 0.15);
}

.order-products-table {
  margin-top: 2.5rem;
}
.order-products-table thead th {
  font-size: 0.875rem;
  font-weight: normal;
  text-transform: uppercase;
}
.order-products-table tbody td {
  border-bottom: 2px solid #ddd;
  vertical-align: middle !important;
}
.order-products-table tbody td.td-label {
  font-weight: 700;
}
.order-products-table tbody td.td-label a {
  text-decoration: none;
}
.order-products-table tbody td.td-qty {
  text-align: center;
}
.order-products-table tbody td .product-qty-switcher {
  margin-left: auto;
  margin-right: auto;
}
.order-products-table tbody td .delete {
  color: #da0000;
  text-decoration: none !important;
}
.order-products-table tbody td .delete:before {
  content: "\f00d";
  font-family: "FontAwesome";
}
@media only screen and (max-width: 767px) {
  .order-products-table {
    display: block;
    margin-top: 0;
  }
  .order-products-table thead {
    display: none;
  }
  .order-products-table tbody {
    display: block;
  }
  .order-products-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
  }
  .order-products-table tbody td {
    border: 0;
  }
  .order-products-table tbody td.td-image {
    width: 100%;
  }
  .order-products-table tbody td.td-label {
    width: 100%;
    text-align: center;
  }
  .order-products-table tbody td.td-code {
    display: none;
  }
  .order-products-table tbody td.td-qty {
    width: 100%;
  }
  .order-products-table tbody td.td-newprice {
    width: 40%;
  }
  .order-products-table tbody td.td-totalproducts {
    width: 40%;
  }
  .order-products-table tbody td.td-delete {
    width: 20%;
  }
}

.order-sum-table {
  text-align: right;
  border-top: 2px solid #ddd;
}
.order-sum-table .tr-totalSum td {
  border-top: 2px solid #ddd;
  border-bottom: 3px solid #ddd;
  font-weight: 700;
}
.order-sum-table .tr-total-sum-with-coupon td {
  border-bottom: 3px solid #ddd;
  font-weight: 700;
}

.delivery-payment-table {
  border-bottom: 1px solid #ddd;
}

.custom-checkbox-field {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.custom-checkbox-field input {
  position: absolute;
  opacity: 0;
}
.custom-checkbox-field label {
  position: relative;
  font-weight: 400;
  line-height: 1.3;
  padding-left: 2.25rem;
  margin-bottom: 0;
  cursor: pointer;
}
.custom-checkbox-field label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #393c4c;
  transform: translateY(-50%);
}
.custom-checkbox-field label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.3125rem;
  width: 0.625rem;
  height: 0.625rem;
  background: #fe5000;
  transform: translateY(-50%);
  opacity: 0;
}
.custom-checkbox-field .logo {
  flex-shrink: 0;
}
.custom-checkbox-field .logo img {
  width: auto;
  height: 1.25rem;
}
.custom-checkbox-field input:checked + label:after {
  opacity: 1;
}

.contact-form-table td {
  border-top: 0 !important;
}
.contact-form-table td:first-child {
  width: 10rem;
  white-space: nowrap;
  padding: 1rem 0.625rem 0.375rem 0;
}
.contact-form-table label.required:after {
  content: "*";
  color: #da0000;
  padding-left: 0.25rem;
}
.contact-form-table input, .contact-form-table select {
  display: block;
  width: 100%;
  max-width: 25rem;
  height: 2.25rem;
  background: #fff;
  border: 1px solid rgba(57, 60, 76, 0.5);
  border-radius: 0;
  padding: 0 0.625rem;
  margin: 0;
}
.contact-form-table input:focus, .contact-form-table select:focus {
  border-color: #fe5000;
}
.contact-form-table .description {
  display: none;
  color: #da0000;
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 3px;
}
.contact-form-table input.invalid + .description {
  display: block;
}
@media only screen and (max-width: 767px) {
  .contact-form-table {
    border: 0;
  }
  .contact-form-table, .contact-form-table tbody, .contact-form-table tr, .contact-form-table td {
    display: block;
  }
  .contact-form-table td {
    border: 0 !important;
    padding: 0 !important;
  }
  .contact-form-table td label {
    margin: 0.625rem 0 0.125rem;
  }
  .contact-form-table input, .contact-form-table select {
    max-width: 100%;
  }
}

#flash-message {
  background: #fe5000;
  list-style: none;
  color: #fff;
  font-weight: 400;
  padding: 1rem 1.5rem;
  margin: 0 0 2rem;
}

.form-control {
  max-width: 25rem;
  height: 2.25rem;
  border: 1px solid rgba(57, 60, 76, 0.5);
  border-radius: 0;
  box-shadow: none;
  color: #393c4c;
}
.form-control:focus {
  border-color: #fe5000;
  box-shadow: none;
  outline: #fe5000 solid 1px;
}

.wrap-bg-dark {
  background-color: #393C4C;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  color: #fff;
}

.hp-section-sizes {
  padding: 8rem 0;
}
.hp-section-sizes .text {
  max-width: 800px;
  margin-top: 6rem;
}
.hp-section-sizes .hp-sizes-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.hp-section-sizes .hp-sizes-photo {
  width: 50%;
  flex-shrink: 0;
}
.hp-section-sizes .hp-sizes-photo h2 {
  margin-bottom: 2rem;
}
.hp-section-sizes .hp-sizes-bike-wrapper {
  position: relative;
  height: 30rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 100%);
}
.hp-section-sizes .hp-sizes-bike-wrapper::after {
  content: "";
  position: absolute;
  bottom: 12%;
  left: 50%;
  width: 55%;
  height: 2rem;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
}
.hp-section-sizes .hp-sizes-bike-wrapper img {
  position: absolute;
  top: 50%;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  transform: translateY(-50%);
  z-index: 1;
}
.hp-section-sizes .hp-sizes-bike-wrapper.js-hp-sizes-animate img {
  animation: hpSizesSlideIn 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-section-sizes .hp-sizes-bike-wrapper.js-hp-sizes-animate::after {
  animation: hpSizesShadowSlideIn 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-section-sizes .hp-sizes-diagram {
  position: relative;
  width: 50%;
}
.hp-section-sizes .hp-sizes-box {
  position: absolute;
  left: 3%;
  width: 94%;
  height: 30%;
  border: 3px solid transparent;
  border-radius: 1rem;
  color: #fff;
  text-decoration: none !important;
  cursor: pointer;
  outline: none;
  transition: all 0.15s ease-in-out 0s;
}
.hp-section-sizes .hp-sizes-box:focus {
  outline: none;
}
.hp-section-sizes .hp-sizes-box:hover {
  border-color: rgba(254, 80, 0, 0.5);
}
.hp-section-sizes .hp-sizes-box.active {
  border-color: #fe5000;
}
.hp-section-sizes .hp-sizes-box.active .hp-sizes-box-name {
  color: #fe5000;
}
.hp-section-sizes .hp-sizes-box .hp-sizes-box-name {
  position: absolute;
  top: 3%;
  left: 4%;
  font-weight: 700;
  font-size: clamp(0.8rem, 1.5vw, 1.35rem);
}
.hp-section-sizes .hp-sizes-box .hp-sizes-box-width {
  position: absolute;
  top: 82%;
  left: 37%;
  font-size: clamp(0.52rem, 1.2vw, 0.875rem);
  opacity: 0.85;
}
.hp-section-sizes .hp-sizes-box .hp-sizes-box-height {
  position: absolute;
  top: 50%;
  right: 6%;
  font-size: clamp(0.52rem, 1.2vw, 0.875rem);
  opacity: 0.85;
}
@media (max-width: 993px) and (min-width: 768px) {
  .hp-section-sizes .hp-sizes-box .hp-sizes-box-height {
    right: 3%;
  }
}
@media only screen and (max-width: 767px) {
  .hp-section-sizes .hp-sizes-inner {
    flex-direction: column;
  }
  .hp-section-sizes .hp-sizes-photo,
  .hp-section-sizes .hp-sizes-diagram {
    width: 100%;
  }
  .hp-section-sizes .hp-sizes-bike-wrapper {
    height: auto;
    aspect-ratio: 4/3;
  }
  .hp-section-sizes .hp-sizes-bike-wrapper::after {
    bottom: 3%;
  }
}

@keyframes hpSizesSlideIn {
  0% {
    transform: translateY(-50%) translateX(-40rem);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
@keyframes hpSizesShadowSlideIn {
  0% {
    transform: translateX(-50%) translateX(-40rem);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateX(0);
    opacity: 1;
  }
}
.hp-section-params {
  margin-top: 10rem;
}
.hp-section-params .params-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.hp-section-params .params-grid .item {
  text-align: center;
  font-weight: 500;
}
.hp-section-params .params-grid .item img {
  width: 100%;
  max-width: 10rem;
}
.hp-section-params .params-grid .item p {
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .hp-section-params {
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 991px) {
  .hp-section-params {
    margin-top: 4rem;
  }
  .hp-section-params .params-grid .item img {
    max-width: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  .hp-section-params {
    margin-top: 3rem;
  }
  .hp-section-params .params-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .hp-section-params .params-grid .item img {
    max-width: 6rem;
  }
}

.custom-product-page .columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}
.custom-product-page .product-gallery-slider {
  margin-bottom: 0.5rem;
}
.custom-product-page .product-gallery-slider a {
  outline: none;
}
.custom-product-page .product-preview-gallery-slider a {
  outline: none;
  padding: 0.25rem;
}
.custom-product-page .title {
  margin-top: 0;
  margin-bottom: 2rem;
}
.custom-product-page .brief {
  margin-top: -2rem;
  margin-bottom: 2rem;
}
.custom-product-page .flags {
  margin-bottom: 2rem;
}
.custom-product-page .qty-wrapper {
  display: flex;
  margin-bottom: 2rem;
}
.custom-product-page .qty-wrapper .qty-label {
  display: flex;
  align-items: center;
  min-width: 4.5rem;
  font-weight: 500;
  margin-right: 1.5rem;
}
.custom-product-page .qty-wrapper .qty-input {
  width: 4.5rem;
  border: 2px solid #393c4c;
  text-align: center;
  outline: none;
}
.custom-product-page .qty-wrapper .qty-input::-webkit-inner-spin-button, .custom-product-page .qty-wrapper .qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.custom-product-page .qty-wrapper .qty-input:focus {
  border-color: #fe5000;
}
.custom-product-page .qty-wrapper .qty-buttons {
  display: flex;
  flex-direction: column;
}
.custom-product-page .qty-wrapper .qty-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 0.25rem 0.5rem;
}
.custom-product-page .qty-wrapper .qty-buttons button:hover {
  color: #fe5000;
}
.custom-product-page .price-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.custom-product-page .price-wrapper .newprice {
  margin: 0;
}
.custom-product-page .price-wrapper .baseprice {
  opacity: 0.5;
  margin: 0;
}
.custom-product-page .price-wrapper .stock-status {
  color: #fe5000;
}
.custom-product-page .price-wrapper .stock-status .stock-status-highlight {
  font-size: 1.125em;
  font-weight: 600;
  text-transform: uppercase;
}
.custom-product-page .contact-hint {
  margin-top: 1.5rem;
}
.custom-product-page .contact-hint .contact-hint-link {
  color: #fe5000;
  font-weight: 500;
}
.custom-product-page .large-button {
  width: 100%;
  max-width: 20rem;
  font-size: 1.125em;
  font-weight: 400;
  text-transform: uppercase;
  padding: 1.125rem 2rem 1rem;
}
.custom-product-page .more-information-button {
  background: #8f8f8f;
}
.custom-product-page .more-information-button:focus {
  background: #8f8f8f !important;
}
.custom-product-page .more-information-button:hover {
  background: rgb(117.5, 117.5, 117.5) !important;
}
.custom-product-page .unavailable-text {
  color: #da0000;
  margin: 0;
}
.custom-product-page .description {
  margin: 3rem 0;
}
@media only screen and (max-width: 1199px) {
  .custom-product-page .columns {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .custom-product-page .columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
  .custom-product-page .title {
    margin-bottom: 1.5rem;
  }
  .custom-product-page .brief {
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
  }
  .custom-product-page .flags {
    margin-bottom: 1.5rem;
  }
  .custom-product-page .price-wrapper {
    margin-bottom: 1.5rem;
  }
  .custom-product-page .large-button {
    font-size: 1em;
  }
  .custom-product-page .description {
    margin: 2rem 0;
  }
}

.product-variants {
  margin-bottom: 2rem;
}
.product-variants .variant-name {
  width: 6rem;
  font-weight: 500;
  padding-right: 1.5rem;
}
.product-variants .variant-items {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.product-variants .variant-items a {
  flex: 1 1 auto;
  min-width: 6rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #393c4c;
  line-height: 1.4;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none !important;
  min-height: 45px;
  padding-block: 0.45rem;
  padding-inline: 1rem;
  transition: all 0.15s ease-in-out 0s;
}
.product-variants .variant-items a:hover {
  border-color: #fe5000;
  color: #fe5000;
}
.product-variants .variant-items a.active {
  background: #393c4c;
  border-color: #393c4c;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .product-variants {
    margin-bottom: 1.5rem;
  }
  .product-variants tbody, .product-variants tr, .product-variants td {
    display: block;
    width: auto;
  }
  .product-variants .variant-name {
    padding-right: 0;
    margin-bottom: 0.5rem;
  }
  .product-variants .variant-items {
    gap: 0.5rem;
    padding-bottom: 15px;
  }
  .product-variants .variant-items a {
    font-size: 0.8125rem;
    min-height: 38px;
    padding: 0.375rem 0.5rem;
  }
}

.product-description-table {
  width: 100%;
  font-weight: 450;
}
.product-description-table .heading {
  color: #fe5000;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.product-description-table td {
  padding: 0.5rem 1rem 0.5rem 0;
}
.product-description-table td:first-child {
  color: #fe5000;
  font-weight: 500;
}

.responsive-youtube-video .inner {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
}
.responsive-youtube-video .inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hp-video {
  max-width: 800px;
  margin: 5rem auto;
}
@media only screen and (max-width: 767px) {
  .hp-video {
    margin: 1rem auto;
  }
}

.map {
  width: 100%;
  height: 500px;
}

.map-marker {
  width: 31px;
  height: 50px;
  background-size: cover;
}

.leaflet-tile {
  filter: grayscale(100%) brightness(1.1) !important;
}

.custom-form {
  margin: 5rem 0;
}
.custom-form label.is-required:after {
  content: "*";
  color: #da0000;
}
.custom-form .separator {
  margin-top: 3rem;
}

.raffle-form .gdpr-group .input-wrapper {
  text-align: right;
}
.raffle-form .gdpr-group .input-wrapper input {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 11px;
}
.raffle-form .gdpr-group .control-label {
  max-width: 25rem;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .raffle-form .gdpr-group .input-wrapper {
    text-align: left;
  }
}

@keyframes scrollIconBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-1rem);
  }
  60% {
    transform: translateY(-0.5rem);
  }
}
.about-us-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.about-us-page .signature {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .about-us-page {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.coupon-area .content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.coupon-area .content label {
  font-weight: 400;
  margin: 0.25rem 1rem 0.25rem 0;
}
.coupon-area .content .controls {
  display: flex;
  align-items: center;
}
.coupon-area .content .controls .form-control {
  width: 12.5rem;
  height: 2.5rem;
}
.coupon-area .content .controls button {
  height: 2.5rem;
  padding: 0 1rem;
  margin-left: -1px;
}
.coupon-area .info {
  font-weight: 600;
  text-align: right;
  margin-top: 0.75rem;
}
@media only screen and (max-width: 767px) {
  .coupon-area .content {
    justify-content: center;
  }
  .coupon-area .info {
    text-align: center;
  }
}

.accessories-page .description .wrap-bg-dark {
  position: relative;
  z-index: 0;
}
.accessories-page .description .wrap-bg-dark:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #393C4C;
  transform: translateX(-50%);
  z-index: -1;
}
.accessories-page.merch-page {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#packeta-widget {
  display: block;
  transform: none;
  max-width: 100%;
}

.packeta-plugin-v6 {
  margin-top: 1rem;
}
.packeta-plugin-v6 .selected-branch {
  font-weight: 400;
}
.packeta-plugin-v6 .selected-branch.custom-alert {
  color: #da0000;
}
.packeta-plugin-v6 .select-branch-button {
  display: inline-block;
  background: #da0000;
  border: 0;
  border-radius: 0.25rem;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 400;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
}
.packeta-plugin-v6 .select-branch-button:hover {
  background: #393c4c;
}

.orderform-alert-message {
  display: inline-block;
  background: #da0000;
  color: #fff;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.container:has(.partners_site) {
  width: 100%;
  padding: 0;
}
.container:has(.partners_site) .map {
  margin-bottom: -10px;
}

.partners_site {
  margin-bottom: 25px;
}/*# sourceMappingURL=custom.css.map */