@keyframes mainHeadingFadeIn {
  from {
    transform: translateX(calc(-100% - 1rem - 15px));
  }
  to {
    transform: translateX(0);
  }
}
@font-face {
  font-family: "Barlow";
  src: url(/styles/fonts/Barlow-Light.ttf);
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Barlow";
  src: url(/styles/fonts/Barlow-LightItalic.ttf);
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Barlow";
  src: url(/styles/fonts/Barlow-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Barlow";
  src: url(/styles/fonts/Barlow-Italic.ttf);
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Barlow";
  src: url(/styles/fonts/Barlow-Medium.ttf);
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Barlow";
  src: url(/styles/fonts/Barlow-MediumItalic.ttf);
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Barlow";
  src: url(/styles/fonts/Barlow-SemiBold.ttf);
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Barlow";
  src: url(/styles/fonts/Barlow-SemiBoldItalic.ttf);
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Barlow";
  src: url(/styles/fonts/Barlow-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Barlow";
  src: url(/styles/fonts/Barlow-BoldItalic.ttf);
  font-weight: 700;
  font-style: italic;
}
html {
  font-size: 16px;
}

body {
  font-family: "Barlow", sans-serif;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.25px;
  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: #ffffff;
  text-decoration: underline;
  transition: all 0.15s ease-in-out 0s;
}
a:hover, a:focus {
  color: #ffffff;
  text-decoration: none;
}

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

.custom-button {
  display: inline-block;
  background: #000;
  border: 1px solid #ffffff;
  border-radius: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  text-decoration: none !important;
  padding: 0.875rem 1.5rem;
  transition: all 0.15s ease-in-out 0s;
}
.custom-button.white-button {
  background: #000;
  border-color: #fff;
  color: #fff;
}
.custom-button.white-button:hover, .custom-button.white-button:focus {
  background: #fff;
  color: #000;
}
.custom-button:hover, .custom-button:focus {
  background: #ffffff;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .custom-button {
    font-size: 0.875rem;
  }
}

.btn {
  background: #bbb;
  border: 1px solid #ffffff;
  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: #000;
  color: #ffffff;
}
.btn-default:hover, .btn-default:focus, .btn-default:active {
  background: transparent !important;
  color: #ffffff !important;
}

.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: #ffffff;
}

.main-color-2 {
  color: #EF7F1A;
}

@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(255, 255, 255, 0.15);
  color: #ffffff;
  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-image: url("/images/bg-decoration.png?f");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
  background-color: #000;
  margin-left: auto;
  margin-right: auto;
}
.page-wrapper .page-wrapper-inner .page-content {
  flex-grow: 1;
}

.custom-header-wrapper {
  width: 100%;
  background: transparent;
  margin-bottom: 3rem;
  z-index: 50;
  transition: all 0.5s ease-in-out 0s;
}
.custom-header-wrapper .header-line {
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding-top: 1.25rem;
  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 {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  text-transform: capitalize;
}
.custom-header-wrapper .header-line .langs a {
  font-weight: 600;
  text-decoration: none;
}
.custom-header-wrapper .header-line .langs a.active {
  text-decoration: underline;
}
.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 .brand-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}
.custom-header-wrapper .custom-header .brand-wrapper .logo {
  flex-shrink: 0;
  width: 9rem;
  z-index: 100;
}
.custom-header-wrapper .custom-header .main-heading {
  position: relative;
  display: inline-block;
  font-weight: 500;
}
.custom-header-wrapper .custom-header .main-heading .text {
  position: relative;
  display: inline-block;
  transform: translateX(calc(-100% - 1rem - 15px));
  z-index: 0;
  animation: mainHeadingFadeIn 2s forwards 1s;
}
.custom-header-wrapper .custom-header .main-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  width: 200%;
  height: 100%;
  background-color: #000;
  transform: translateX(calc(-100% - 1rem - 15px));
  z-index: 10;
}
.custom-header-wrapper .custom-header .custom-navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 0;
  transition: all 0.5s ease-in-out 0s;
}
.custom-header-wrapper .custom-header .custom-navbar a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  text-decoration: none;
  padding: 0.125rem 0.75rem;
  transition: all 0.15s ease-in-out 0s;
}
.custom-header-wrapper .custom-header .custom-navbar a:hover, .custom-header-wrapper .custom-header .custom-navbar a:focus {
  text-decoration: underline;
}
.custom-header-wrapper .custom-header .custom-navbar a.active {
  background-color: #ffffff;
  color: #000;
}
.custom-header-wrapper .custom-header .custom-navbar a.button {
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none !important;
  padding: 0.125rem 0.75rem;
}
.custom-header-wrapper .custom-header .custom-navbar a.button:hover, .custom-header-wrapper .custom-header .custom-navbar a.button:focus {
  background: #EF7F1A;
}
.custom-header-wrapper .custom-header .custom-navbar a.button.active {
  background: #ffffff;
  color: #000;
}
.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;
}
@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: 8rem;
  }
  .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;
    z-index: 10000;
  }
  .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.8rem;
    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: 6rem;
  }
}
@media only screen and (max-width: 575px) {
  .custom-header-wrapper .custom-header .brand-wrapper {
    gap: 30px !important;
  }
  .custom-header-wrapper .custom-header .brand-wrapper .navbar-brand {
    width: 50%;
    height: auto;
    padding: 0;
  }
  .custom-header-wrapper .custom-header .brand-wrapper .navbar-brand img {
    margin-right: 0;
  }
  .custom-header-wrapper .custom-header .brand-wrapper .main-heading {
    width: 50%;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
  }
}
@media only screen and (max-width: 400px) {
  .custom-header-wrapper .header-line .content img {
    display: none;
  }
  .custom-header-wrapper .custom-header .logo {
    width: 5rem;
  }
  .custom-header-wrapper.scrolled .custom-header .logo {
    width: 4rem;
  }
}

.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: #fff;
  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: #fff;
}
.burger-button.active span {
  background: #fff;
}
.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;
  }
}

.custom-footer {
  position: relative;
  bottom: auto;
  height: auto;
  background: transparent;
  color: #ffffff;
  line-height: 1.6;
}
.custom-footer a {
  color: #ffffff;
  text-decoration: none;
}
.custom-footer a:hover {
  color: #ffffff;
  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-content {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 5rem 0;
}
.footer-content p {
  margin: 0;
}
.footer-content strong {
  font-weight: 500;
}
.footer-content .columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
}
.footer-content .column:nth-child(4) {
  position: relative;
}
.footer-content .column:nth-child(4)::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1rem;
  bottom: -1rem;
  width: 1px;
  background-color: #fff;
}
.footer-content .logo-gopay {
  margin-top: 0.5rem;
}
.footer-content .logo-gopay img {
  width: 8rem;
  margin-left: 0;
}
.footer-content .menu {
  display: flex;
  justify-content: flex-end;
  width: 50%;
}
.footer-content .menu .items {
  position: relative;
  padding-left: 1.5rem;
}
@media only screen and (max-width: 991px) {
  .footer-content {
    padding: 3rem 0 4rem;
  }
  .footer-content .columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content .menu {
    justify-content: normal;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footer-content .columns {
    text-align: center;
  }
  .footer-content .column:nth-child(4)::before {
    content: none;
  }
  .footer-content .logo-gopay img {
    margin-left: auto;
  }
  .footer-content .menu {
    justify-content: center;
  }
  .footer-content .menu .items {
    padding-left: 0;
  }
}
@media only screen and (max-width: 500px) {
  .footer-content .columns {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .footer-content .columns .column-3 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .footer-content .logo-gopay {
    margin-bottom: 3rem;
  }
}

.footer-made-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 1rem 3rem;
}
.footer-made-by .logo {
  flex-shrink: 0;
  width: 3rem;
}
.footer-made-by p {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 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(255, 255, 255, 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: #ffffff;
  font-size: 0.75rem;
}
.product-qty-switcher button:hover {
  color: #EF7F1A;
}

.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 #ffffff;
  transform: translateY(-50%);
}
.custom-checkbox-field label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.3125rem;
  width: 0.625rem;
  height: 0.625rem;
  background: #ffffff;
  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(255, 255, 255, 0.5);
  border-radius: 0;
  color: #000;
  padding: 0 0.625rem;
  margin: 0;
}
.contact-form-table input:focus, .contact-form-table select:focus {
  border-color: #ffffff;
}
.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: #EF7F1A;
  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(255, 255, 255, 0.5);
  border-radius: 0;
  box-shadow: none;
  color: #ffffff;
}
.form-control:focus {
  border-color: #ffffff;
  box-shadow: none;
  outline: #ffffff solid 1px;
}

.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 {
  text-transform: uppercase;
  margin-top: 0;
}
.custom-product-page .brief {
  margin-bottom: 3rem;
}
.custom-product-page .flags {
  margin-bottom: 2rem;
}
.custom-product-page .properties {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 4rem;
}
.custom-product-page .properties td {
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.375rem 2rem 0.25rem 0;
}
.custom-product-page .properties td:first-child {
  width: 1%;
  font-weight: 500;
  text-transform: lowercase;
  white-space: nowrap;
}
.custom-product-page .properties td:last-child {
  padding-right: 0;
}
.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;
  background: transparent;
  border: 2px solid #ffffff;
  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: #EF7F1A;
}
.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: #EF7F1A;
}
.custom-product-page .price-wrapper {
  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 .add-to-cart-button {
  width: 100%;
  max-width: 20rem;
  background-color: #ffffff;
  color: #000;
  font-size: 1.125em;
  font-weight: 400;
  text-transform: uppercase;
  padding: 1.125rem 2rem 1rem;
}
.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 .flags {
    margin-bottom: 1.5rem;
  }
  .custom-product-page .properties {
    margin-bottom: 1.5rem;
  }
  .custom-product-page .price-wrapper {
    margin-bottom: 1.5rem;
  }
  .custom-product-page .add-to-cart-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: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.product-variants .variant-items a {
  border: 2px solid #ffffff;
  line-height: 1.4;
  font-weight: 500;
  text-decoration: none !important;
  padding: 0.75rem 1.125rem 0.625rem;
  transition: all 0.15s ease-in-out 0s;
}
.product-variants .variant-items a:hover {
  border-color: #ffffff;
  color: #ffffff;
}
.product-variants .variant-items a.active {
  background: #ffffff;
  border-color: #ffffff;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .product-variants {
    margin-bottom: 1.5rem;
  }
}

.product-description-table {
  width: 100%;
  font-weight: 450;
}
.product-description-table .heading {
  color: #ffffff;
  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: #ffffff;
  font-weight: 500;
}

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

@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: 2rem;
}
.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;
  }
}

.custom-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 5rem;
}
.custom-tiles .tile {
  background: #ffffff;
}
.custom-tiles .tile .text {
  color: #fff;
  padding: 1rem;
}
.custom-tiles .tile .text .heading {
  margin-top: 0;
  margin-bottom: 1rem;
}
.custom-tiles .tile .text p {
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .custom-tiles {
    grid-template-columns: 1fr;
  }
}

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

.packeta-plugin-v6 .selected-branch {
  margin-top: 10px;
}
.packeta-plugin-v6 .selected-branch.custom-alert {
  color: #da0000;
}
.packeta-plugin-v6 .select-branch-button {
  display: inline-block;
  background: #000;
  border: 1px solid #ffffff;
  border-radius: 0;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  padding: 6px 10px;
  margin-top: 5px;
  transition: all 0.15s ease-in-out 0s;
}
.packeta-plugin-v6 .select-branch-button:hover, .packeta-plugin-v6 .select-branch-button:focus {
  border-color: #adadad;
}

.orderform-alert-message {
  display: inline-block;
  background: #da0000;
  color: #fff;
  padding: 10px 20px 5px 20px;
  margin-top: 15px;
}

.custom-tile {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 475px;
  border: 2px solid #ffffff;
  text-decoration: none !important;
  padding: 2rem;
  margin-bottom: 4rem;
  overflow: hidden;
}
.custom-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.custom-tile .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: transform 1s ease;
}
.custom-tile .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.custom-tile .content .logo {
  margin-left: 0;
}
.custom-tile .content p {
  color: #ffffff;
  font-size: 1.5rem;
}
.custom-tile .content .custom-button {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 1.75rem;
}
.custom-tile:hover .image, .custom-tile:focus .image {
  transform: scale(1.1);
}
@media only screen and (max-width: 991px) {
  .custom-tile {
    min-height: 400px;
  }
  .custom-tile .content .logo {
    max-width: 200px;
    max-height: 100px;
  }
  .custom-tile .content p {
    font-size: 1.125rem;
  }
  .custom-tile .content .custom-button {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .custom-tile .image {
    -o-object-position: calc(100% + 150px) center;
    object-position: calc(100% + 150px) center;
  }
}
@media only screen and (max-width: 500px) {
  .custom-tile::before {
    background-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 10%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  }
}