@charset "UTF-8";
/*----------------------------------------------------------------------

	MASTER STYLESHEET

	Project:        MartiniP Studios
	Version:        1.4
	Author:         Mārtiņš Puķītis
	Email           info@MartiniPStudios.lv

-----------------------------------------------------------------------*/
/*------------------------------------*\
  Generic > Box Sizing
\*------------------------------------*/
/**
 * Set the global `box-sizing` state to `border-box`.
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  box-sizing: border-box;
}

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

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

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

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

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

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

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

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

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

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

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

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/*------------------------------------*\
  Generic > Reset
\*------------------------------------*/
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
  margin-bottom: 0;
}

/**
 * Remove default table spacing.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*------------------------------------*\
  Generic > Shared
\*------------------------------------*/
/**
 * Shared declarations for certain elements.
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
address,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 0px;
}

/**
 * Consistent indentation for lists.
 */
dd, ol, ul {
  margin-left: 0px;
}

/*------------------------------------*\
  Elements > Page
\*------------------------------------*/
body {
  color: #392e2b;
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*::-moz-selection {
  color: #ffffff;
  background: #771421;
}

*::selection {
  color: #ffffff;
  background: #771421;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1440px;
  }
}
/*------------------------------------*\
  Elements > Links
\*------------------------------------*/
a, button {
  color: #771421;
  font-weight: 700;
  background: white;
  padding: 0.75rem 1rem;
  display: inline-block;
  border-bottom: 0.1rem solid #771421;
  border-radius: unset;
  text-decoration: none;
  text-transform: none;
  line-height: initial;
  transition: all ease 0.3s;
}
a svg, button svg {
  margin-right: 0.5rem;
}
a:hover, button:hover {
  color: #ffffff;
  background: #771421;
  text-decoration: none;
  transition: all ease 0.3s;
}

/*------------------------------------*\
  Elements > img
\*------------------------------------*/
img {
  display: block;
  max-width: 100%;
}

/*------------------------------------*\
  Elements > Headings
\*------------------------------------*/
p {
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 26px;
  padding: 1rem;
}

h1 {
  color: #771421;
  font-size: 54.4px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 71px;
}
@media (max-width: 576px) {
  h1 {
    font-size: 44.4px;
    line-height: 61px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 39.4px;
    line-height: 56px;
  }
}

h2 {
  color: #771421;
  font-size: 42.5px;
  font-weight: 700;
  line-height: 55px;
}
@media (max-width: 576px) {
  h2 {
    font-size: 32.5px;
    line-height: 45px;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 27.5px;
    line-height: 40px;
  }
}

h3 {
  color: #771421;
  font-size: 34px;
  font-weight: 700;
  line-height: 41px;
}
@media (max-width: 480px) {
  h3 {
    font-size: 17.5px;
    line-height: 30px;
  }
}

h4 {
  color: #771421;
  font-size: 23.8px;
  font-weight: 700;
  line-height: 29px;
}

h5 {
  color: #771421;
  font-size: 22.1px;
  font-weight: 700;
  line-height: 33px;
}

/*------------------------------------*\
  Objects > Lists
\*------------------------------------*/
ul li {
  list-style: none;
  display: inline-block;
}

.animated-icon1, .animated-icon2, .animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.animated-icon1 span {
  background: #771421;
}

.animated-icon2 span {
  background: #e3f2fd;
}

.animated-icon3 span {
  background: #f3e5f5;
}

.animated-icon1 span:nth-child(1) {
  top: 0px;
}

.animated-icon1 span:nth-child(2) {
  top: 10px;
}

.animated-icon1 span:nth-child(3) {
  top: 20px;
}

.animated-icon1.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.animated-icon1.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

/* Icon 3*/
.animated-icon2 span:nth-child(1) {
  top: 0px;
}

.animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
  top: 10px;
}

.animated-icon2 span:nth-child(4) {
  top: 20px;
}

.animated-icon2.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.animated-icon2.open span:nth-child(2) {
  transform: rotate(45deg);
}

.animated-icon2.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.animated-icon2.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

/* Icon 4 */
.animated-icon3 span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

.animated-icon3 span:nth-child(2) {
  top: 10px;
  transform-origin: left center;
}

.animated-icon3 span:nth-child(3) {
  top: 20px;
  transform-origin: left center;
}

.animated-icon3.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 8px;
}

.animated-icon3.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.animated-icon3.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 21px;
  left: 8px;
}

.navbar-toggler:focus {
  outline: unset;
}

.star-ratings-sprite {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/2605/star-rating-sprite.png") repeat-x;
  font-size: 0;
  height: 21px;
  line-height: 0;
  overflow: hidden;
  text-indent: -999em;
  width: 110px;
  margin: 0 auto;
}
.star-ratings-sprite-rating {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/2605/star-rating-sprite.png") repeat-x;
  background-position: 0 100%;
  float: left;
  height: 21px;
  display: block;
}

.star-ratings-number {
  text-align: center;
  display: block;
  padding: 0;
  padding-top: 0.5rem;
  color: #771421;
}

.topbar {
  background: white;
}
.topbar__top {
  padding: 1rem 0;
  background: #450c13;
}
.topbar__top__contact a {
  background: #450c13;
  color: #ffffff;
  border: none;
}
.topbar__top__contact a:hover {
  background: #ffffff;
  color: #771421;
}
.topbar__top__auth a {
  background: #450c13;
  color: #ffffff;
  border: none;
}
.topbar__top__auth a:hover {
  background: #ffffff;
  color: #771421;
}
.topbar__bottom__logo img {
  display: block;
  height: 8rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.topbar__bottom__search form input {
  border-radius: 0;
  border: 0.1rem solid rgba(119, 20, 33, 0.3);
  height: 4rem;
  padding-left: 3rem;
}
.topbar__bottom__search form input:focus {
  border-color: rgba(119, 20, 33, 0.3);
  box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -webkit-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -moz-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
}
.topbar__bottom__search form svg {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  left: 1.25rem;
  color: #771421;
}
.topbar__bottom__shoppingCart a {
  padding: 0.5rem 0.5rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.topbar__bottom__shoppingCart a div {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column;
  position: relative;
}
.topbar__bottom__shoppingCart a div span:first-child {
  font-size: 1.25rem;
  padding: 0;
}
.topbar__bottom__shoppingCart a div span:last-child {
  font-size: 1rem;
  padding: 0;
}
.topbar__bottom__shoppingCart a div .cartCount {
  transition: all ease 0.3s;
  position: absolute;
  left: -3rem;
  width: 2.2rem;
  top: 0.15rem;
  color: #ffffff;
  font-weight: 700;
}
.topbar__bottom__shoppingCart a svg {
  display: block;
  font-size: 3rem;
}
.topbar__bottom__shoppingCart a:hover {
  background: #771421;
  box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -webkit-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -moz-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
}
.topbar__bottom__shoppingCart a:hover .cartCount {
  transition: all ease 0.3s;
  color: #771421;
}

.navigation {
  background: #771421;
  padding: 0.5rem 0;
}
.navigation nav.front .animated-icon1 span {
  background: #ffffff;
}
.navigation nav.front .animated-icon2 span {
  background: #ffffff;
}
.navigation nav.front .animated-icon3 span {
  background: #ffffff;
}
.navigation nav.front .navbar-nav li a {
  color: white;
  background: #771421;
  border-bottom: 0.1rem solid #771421;
}
.navigation nav.front .navbar-nav li a:hover {
  border-bottom: 0.1rem solid #ffffff;
}
.navigation .nav-toggle img {
  width: 8rem;
}
.navigation .nav-toggle form span {
  color: #ffffff;
  background-color: transparent;
  border: 0.1rem solid #ffffff;
  border-radius: 0;
}
.navigation .nav-toggle form input {
  border: 0.1rem solid #ffffff;
  border-radius: 0;
}
.navigation .nav-toggle form input:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.navigation .nav-toggle a {
  background: #771421;
  color: #ffffff;
  margin: 0;
}
.navigation .nav-toggle .toggle {
  position: unset;
  top: 1.75rem;
  left: 1rem;
  background: #771421;
}
.navigation .nav-toggle .toggle span {
  background: #ffffff;
}
.navigation .nav-toggle .toggle span::after, .navigation .nav-toggle .toggle span::before {
  background: #ffffff;
}

.nav-container, .hc-offcanvas-nav .nav-wrapper, .hc-offcanvas-nav ul {
  background: #771421;
}

.bg-picture img {
  position: absolute;
  height: 10rem;
  right: 0;
}

.nav-container a:focus, .hc-offcanvas-nav .nav-wrapper a:focus, .hc-offcanvas-nav ul a:focus {
  outline: unset;
}

.nav-container li a, .hc-offcanvas-nav .nav-wrapper li a, .hc-offcanvas-nav ul li a {
  background: #771421;
  color: #ffffff;
  border: none;
}

.nav-container li a:hover, .hc-offcanvas-nav .nav-wrapper li a:hover, .hc-offcanvas-nav ul li a:hover {
  background: #771421;
  color: #ffffff;
}

.nav-container li .nav-item-wrapper a, .hc-offcanvas-nav .nav-wrapper li .nav-item-wrapper a, .hc-offcanvas-nav ul li .nav-item-wrapper a {
  background: #771421;
  color: #ffffff;
}

.nav-container li .nav-item-wrapper a:hover, .hc-offcanvas-nav .nav-wrapper li .nav-item-wrapper a:hover, .hc-offcanvas-nav ul li .nav-item-wrapper a:hover {
  background: #771421;
  color: #ffffff;
}

.nav-container li.nav-close a, .hc-offcanvas-nav .nav-wrapper li.nav-close a, .hc-offcanvas-nav ul li.nav-close a {
  background: #ffffff;
  color: #771421;
}

.nav-container li.nav-close a:hover, .hc-offcanvas-nav .nav-wrapper li.nav-close a:hover, .hc-offcanvas-nav ul li.nav-close a:hover {
  background: #ffffff;
  color: #771421;
}

.nav-container li.nav-close a span, .hc-offcanvas-nav .nav-wrapper li.nav-close a span, .hc-offcanvas-nav ul li.nav-close a span {
  background: #771421;
  border: 0.1rem solid #ffffff;
}

.nav-container .search form span, .hc-offcanvas-nav .nav-wrapper .search form span, .hc-offcanvas-nav ul .search form span {
  color: #ffffff;
  background-color: transparent;
  border: 0.1rem solid #ffffff;
  border-radius: 0;
}

.nav-container .search form input, .hc-offcanvas-nav .nav-wrapper .search form input, .hc-offcanvas-nav ul .search form input {
  border: 0.1rem solid #ffffff;
  border-radius: 0;
}

.nav-container .search form input:focus, .hc-offcanvas-nav .nav-wrapper .search form input:focus, .hc-offcanvas-nav ul .search form input:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.nav-container .search form button, .hc-offcanvas-nav .nav-wrapper .search form button, .hc-offcanvas-nav ul .search form button {
  height: calc(1.5em + .75rem + 2px);
  padding: 0.375rem 0.75rem;
  border: 0.1rem solid #ffffff;
  background: rgba(255, 255, 255, 0.85);
  color: #771421;
}

.nav-container .search form button:hover, .hc-offcanvas-nav .nav-wrapper .search form button:hover, .hc-offcanvas-nav ul .search form button:hover {
  background: white;
}

.nav-container .search form button svg, .hc-offcanvas-nav .nav-wrapper .search form button svg, .hc-offcanvas-nav ul .search form button svg {
  margin: 0;
}

.nav-container .nav-content h2, .hc-offcanvas-nav .nav-wrapper .nav-content h2, .hc-offcanvas-nav ul .nav-content h2 {
  color: #ffffff;
  font-weight: 700;
}

.nav-container .nav-content .nav-item, .hc-offcanvas-nav .nav-wrapper .nav-content .nav-item, .hc-offcanvas-nav ul .nav-content .nav-item {
  border: none;
}

.hc-offcanvas-nav .nav-next span {
  border-left: 0.1rem solid #ffffff;
}

.hero__nav {
  height: 36rem;
  background: #771421;
}

.hero__nav p {
  background: #771421;
  color: #ffffff;
  font-weight: 700;
  padding: 1.94rem;
  text-align: center;
}

body::-webkit-scrollbar {
  width: 1em;
}

body::-webkit-scrollbar-track {
  box-shadow: unset;
}

body::-webkit-scrollbar-thumb {
  background-color: #771421;
  outline: unset;
}

.hero__nav {
  height: 36rem;
  background: #771421;
  overflow-y: scroll;
  overflow: unset;
}
.hero__nav::-webkit-scrollbar {
  width: 1rem;
}
.hero__nav::-webkit-scrollbar-track {
  box-shadow: unset;
}
.hero__nav::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  outline: unset;
}
.hero__nav p {
  background: #771421;
  color: #ffffff;
  font-weight: 700;
  padding: 1.94rem;
  text-align: left;
}
.hero__nav ul li {
  display: block;
  position: relative;
}
.hero__nav ul li a {
  background: #771421;
  color: #ffffff;
  border: none;
  display: block;
  padding: 0.025rem 0.75rem;
}
.hero__nav ul li a svg {
  float: right;
}
.hero__nav ul li:hover a {
  background: #ffffff;
  color: #771421;
}
.hero__nav ul li:hover a svg {
  color: #771421;
}
.hero__nav ul li:hover .hero__nav--content {
  transition: all ease 0.3s;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: -webkit-min-content -webkit-min-content -webkit-min-content;
  grid-template-rows: min-content min-content min-content;
  position: absolute;
  top: -2rem;
  left: 100%;
  z-index: 10;
  width: 52.03rem;
}
.hero__nav--content {
  display: none;
}
.hero__nav--content--catName {
  display: inline-block;
  background: #ffffff;
}
.hero__nav--content--catName p {
  padding: 1rem;
  font-size: 0.82rem;
  text-align: center;
  background: #450c13;
}
.hero__box .swiper-slide {
  position: relative;
  height: auto;
}
.hero__box .swiper-button-prev {
  top: 2rem;
  background: #771421;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
}
.hero__box .swiper-button-prev svg {
  color: white;
  font-size: 2rem;
}
.hero__box .swiper-button-next {
  top: 2rem;
  background: #771421;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
}
.hero__box .swiper-button-next svg {
  color: white;
  font-size: 2rem;
}
.hero__box .swiper-pagination-bullet-active {
  background: #771421;
}
.hero__box--content {
  padding: 2rem;
  height: 32rem;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.hero__box--content img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: -1000;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__box h1, .hero__box p, .hero__box a {
  background: #771421;
  padding: 1rem;
}
.hero__box h1 {
  color: white;
}
@media (max-width: 767px) {
  .hero__box h1 {
    text-align: center;
  }
}
.hero__box p {
  color: white;
  font-weight: 400;
  font-size: 23.8px;
  line-height: 29px;
}
.hero__box a {
  margin: 1rem 0;
  background: #771421;
  color: #ffffff;
  box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -webkit-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -moz-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
}
.hero__aside {
  position: relative;
}
.hero__aside--content {
  height: 18rem;
}
.hero__aside--content img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: -1000;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__aside--content a {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 2rem;
  background: #771421;
  color: #ffffff;
  box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -webkit-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -moz-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
}
.hero__aside--content a span {
  display: block;
  font-size: 13px;
  text-align: center;
}
.hero__aside--content--link:nth-child(2) {
  font-size: 13px;
  right: unset;
  bottom: unset;
  left: 1rem;
  top: 8rem;
  padding: 0.5rem 0.7rem;
  margin: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  perspective: 1000px;
  -webkit-animation: shake 3.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
          animation: shake 3.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
}
@media (max-width: 1200px) {
  .hero__aside--content--link:nth-child(2) {
    padding: 0.25rem 0.5rem;
  }
}
.hero__aside--content--link:nth-child(3) {
  font-size: 13px;
  right: unset;
  bottom: unset;
  left: 10rem;
  bottom: 10rem;
  padding: 0.5rem 0.7rem;
  margin: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  perspective: 1000px;
  -webkit-animation: shake 1.62s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
          animation: shake 1.62s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
}
@media (max-width: 1200px) {
  .hero__aside--content--link:nth-child(3) {
    left: 6rem;
    bottom: 9.5rem;
    padding: 0.25rem 0.5rem;
  }
}
.hero__aside--content--link:nth-child(4) {
  font-size: 13px;
  right: unset;
  bottom: unset;
  left: 10rem;
  top: 10rem;
  padding: 0.5rem 0.7rem;
  margin: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  perspective: 1000px;
  -webkit-animation: shake 2.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
          animation: shake 2.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
}
@media (max-width: 1200px) {
  .hero__aside--content--link:nth-child(4) {
    left: 7rem;
    padding: 0.25rem 0.5rem;
  }
}
.hero__aside--content--link:nth-child(5) {
  font-size: 13px;
  right: unset;
  bottom: unset;
  right: 6rem;
  bottom: 13rem;
  padding: 0.5rem 0.7rem;
  margin: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  perspective: 1000px;
  -webkit-animation: shake 1.32s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
          animation: shake 1.32s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
}
@media (max-width: 1200px) {
  .hero__aside--content--link:nth-child(5) {
    right: 3rem;
    bottom: 11rem;
    padding: 0.25rem 0.5rem;
  }
}
.hero__aside--content--link:nth-child(6) {
  font-size: 13px;
  right: unset;
  bottom: unset;
  right: 0rem;
  bottom: 4rem;
  padding: 0.5rem 0.7rem;
  margin: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  perspective: 1000px;
  -webkit-animation: shake 2.52s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
          animation: shake 2.52s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
}
@media (max-width: 1200px) {
  .hero__aside--content--link:nth-child(6) {
    padding: 0.25rem 0.5rem;
    bottom: 6rem;
  }
}
.hero__aside--content--link:nth-child(7) {
  font-size: 13px;
  right: unset;
  bottom: unset;
  right: 0rem;
  bottom: 14rem;
  padding: 0.5rem 0.7rem;
  margin: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  perspective: 1000px;
  -webkit-animation: shake 1.22s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
          animation: shake 1.22s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
}
@media (max-width: 1200px) {
  .hero__aside--content--link:nth-child(7) {
    padding: 0.25rem 0.5rem;
  }
}
@-webkit-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(1px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-2px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(2px, 0, 0);
  }
}
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(1px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-2px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(2px, 0, 0);
  }
}
.hero__aside .swiper-cta--first, .hero__aside .swiper-cta--second {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.hero__aside .swiper-cta--first .swiper-slide, .hero__aside .swiper-cta--second .swiper-slide {
  position: relative;
  height: auto;
}
.hero__aside .swiper-button-prev {
  top: 2rem;
  background: #771421;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
}
.hero__aside .swiper-button-prev svg {
  color: white;
  font-size: 2rem;
}
.hero__aside .swiper-button-next {
  top: 2rem;
  background: #771421;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
}
.hero__aside .swiper-button-next svg {
  color: white;
  font-size: 2rem;
}
.hero__aside .swiper-pagination-bullet-active {
  background: #771421;
}
.hero__newest--heading {
  margin: 3rem 0;
}
.hero__newest--content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero__newest--content--name {
  text-align: center;
}
.hero__newest--content--name p {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #771421;
  font-weight: 700;
}
.hero__newest--content--picture {
  position: relative;
}
.hero__newest--content--picture img {
  width: 10rem;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__newest--content--picture--price {
  position: absolute;
  top: 0;
  left: 0;
}
.hero__newest--content--picture--price p {
  background: #771421;
  padding: 0.5rem;
  color: #ffffff;
  font-size: 1.5rem;
}
.hero__newest--content--picture--price p span {
  font-size: 0.75rem;
}
.hero__newest--content--link {
  position: absolute;
  bottom: 0;
}
@media (max-width: 992px) {
  .hero__newest--content--link {
    bottom: 3.5rem;
  }
}
.hero__newest--content--link a {
  display: block;
  opacity: 0;
  visibility: hidden;
  border: unset;
  transform: scale(0.15);
}
@media (max-width: 992px) {
  .hero__newest--content--link a {
    transform: none;
    opacity: 0.6;
    visibility: visible;
  }
}
.hero__newest--content--link a svg {
  margin: 0;
}
.hero__newest--content:hover .hero__newest--content--link a {
  opacity: 0.6;
  visibility: visible;
  transform: translateY(-3.5rem) scale(1);
}
.hero__newest--content:hover .hero__newest--content--link a:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .hero__newest--content:hover .hero__newest--content--link a {
    bottom: 3.5;
    opacity: 0.6;
    visibility: visible;
    transform: none;
  }
  .hero__newest--content:hover .hero__newest--content--link a:hover {
    opacity: 0.6;
  }
}
.hero__newest .swiper-cta--third {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.hero__newest .swiper-cta--third .swiper-slide {
  position: relative;
  height: auto;
}
.hero__newest .swiper-cta--third .swiper-button-prev {
  bottom: 3.5rem;
  top: unset;
  left: 1rem;
  background: #771421;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
@media (max-width: 992px) {
  .hero__newest .swiper-cta--third .swiper-button-prev {
    opacity: 1;
    visibility: visible;
  }
}
.hero__newest .swiper-cta--third .swiper-button-prev svg {
  color: white;
  font-size: 2rem;
}
.hero__newest .swiper-cta--third .swiper-button-next {
  bottom: 3.5rem;
  top: unset;
  right: 1rem;
  background: #771421;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
@media (max-width: 992px) {
  .hero__newest .swiper-cta--third .swiper-button-next {
    opacity: 1;
    visibility: visible;
  }
}
.hero__newest .swiper-cta--third .swiper-button-next svg {
  color: white;
  font-size: 2rem;
}
.hero__newest .swiper-cta--third .swiper-pagination-bullet-active {
  background: #771421;
}
.hero__newest .swiper-cta--third:hover .swiper-button-prev, .hero__newest .swiper-cta--third:hover .swiper-button-next {
  transition: all ease 0.3s;
  opacity: 0.6;
  visibility: visible;
}
@media (max-width: 992px) {
  .hero__newest .swiper-cta--third:hover .swiper-button-prev, .hero__newest .swiper-cta--third:hover .swiper-button-next {
    opacity: 1;
  }
}
.hero__newest .swiper-cta--third:hover .swiper-button-prev:hover, .hero__newest .swiper-cta--third:hover .swiper-button-next:hover {
  transition: all ease 0.3s;
  opacity: 1;
}
.hero__inner .hero__nav {
  height: auto;
}
.hero__inner--breadcrumb p {
  padding: 0.5rem 0;
}
.hero__inner--breadcrumb p a {
  border: none;
  font-style: italic;
}
.hero__inner--breadcrumb p a:hover {
  background: #ffffff;
  color: #771421;
  text-decoration: underline;
}
.hero__inner--breadcrumb p svg {
  color: #771421;
  margin: 0 1rem;
}
.hero__inner .bg {
  background: #771421;
}

.about {
  background-size: 300px 300px;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.about__heading {
  margin: 3rem 0;
}
.about__box p svg {
  margin-right: 0.5rem;
  color: #771421;
}

.info {
  background: linear-gradient(to left, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../images/box_color.svg");
  background-repeat: no-repeat;
  background-position: 100% 100%;
}
.info__heading {
  margin: 3rem 0;
}
.info__heading h2 {
  text-align: center;
}
.info__box {
  padding: 2rem 0;
}
.info__box a {
  display: table;
  border: none;
  margin-left: 1rem;
  background: transparent;
}
.info__box a:hover {
  background: #771421;
}
.info__box h4 {
  padding: 1rem;
}
.info__box ul {
  padding: 1rem;
}
.info__box ul li {
  display: block;
}
.info__box ul li a {
  padding: 0.25rem 0.5rem;
  border: unset;
  display: block;
}
.info__box.addShadow {
  padding: 2rem 3rem 3rem;
  background: #ffffff;
  box-shadow: 0px 43px 83px -15px rgba(119, 20, 33, 0.44);
  -webkit-box-shadow: 0px 43px 83px -15px rgba(119, 20, 33, 0.44);
  -moz-box-shadow: 0px 43px 83px -15px rgba(119, 20, 33, 0.44);
}
.info__box.addShadow h3 {
  padding: 0;
}
.info__box.addShadow form .input-group {
  margin: 1rem 0;
  position: relative;
}
.info__box.addShadow form .input-group input, .info__box.addShadow form .input-group textarea {
  border: 0.1rem solid rgba(119, 20, 33, 0.3);
  height: 4rem;
  padding-left: 3rem;
}
.info__box.addShadow form .input-group input:focus, .info__box.addShadow form .input-group textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(119, 20, 33, 0.25);
}
.info__box.addShadow form .input-group svg {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  left: 1.25rem;
  color: #771421;
}
.info__box.addShadow form .input-group:nth-child(4) textarea {
  padding: 1.25rem;
  padding-left: 3rem;
  height: 6rem;
  min-height: 4rem;
  max-height: 8rem;
}
.info__box.addShadow form button {
  display: block;
  text-align: center;
  width: 100%;
  background: #771421;
  border: none;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -webkit-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -moz-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
}

.footer {
  background: #450c13;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #450c13;
  margin-right: 0.5rem;
  border: none;
}
.footer__logo a:hover {
  text-decoration: underline;
}
.footer__logo a img {
  height: 4rem;
  width: 4rem;
  margin-left: 0.5rem;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social p {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}
.footer__social a {
  background: transparent;
  font-size: 175%;
  color: #ffffff;
  border: none;
}
.footer__social a:hover {
  text-decoration: underline;
}
.footer__info {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__info a {
  background: #450c13;
  color: #ffffff;
  border: none;
}
.footer__info a:hover {
  text-decoration: underline;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  background: #ffffff;
  width: 100%;
  z-index: 5;
}
.cookie-consent__message {
  display: block;
  background: #ffffff;
  margin: 0 auto;
  padding: 2rem;
}
.cookie-consent button {
  border: none;
  background: #771421;
  color: #ffffff;
}
.cookie-consent__links a {
  padding: 0.5rem 0.25rem;
  border: none;
}
.cookie-consent__links a:hover {
  background: transparent;
  text-decoration: underline;
  color: #771421;
}

.product__heading h1 {
  font-size: 2.5rem;
  line-height: 2.8rem;
  padding: 1.28rem 0;
}
.product__item {
  transition: all ease 0.3s;
  margin: 2rem 0;
  padding: 0.75rem;
}
.product__item--image {
  position: relative;
}
.product__item--image img {
  height: 10rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__item--image--price {
  position: absolute;
  top: 0;
  left: 0;
}
.product__item--image--price p {
  background: #771421;
  padding: 0.5rem;
  color: #ffffff;
  font-size: 1.5rem;
}
.product__item--image--price p span {
  font-size: 0.75rem;
}
.product__item--image--price span {
  font-size: 60%;
  background: #771421;
  color: #ffffff;
  padding: 0.5rem;
}
.product__item--name p {
  padding: 0.25rem;
  text-transform: capitalize;
  font-weight: 700;
  text-align: center;
}
.product__item--category a {
  padding: 0.5rem;
  border: none;
  display: block;
  text-align: center;
  text-transform: uppercase;
}
.product__item--links {
  position: absolute;
  left: 4.5rem;
  top: 0;
}
@media (max-width: 992px) {
  .product__item--links {
    top: 9.5rem;
    left: 2.2rem;
  }
}
.product__item--links a {
  opacity: 0;
  visibility: hidden;
  border: unset;
  transform: scale(0.15);
}
@media (max-width: 992px) {
  .product__item--links a {
    transform: none;
    opacity: 0.6;
    visibility: visible;
  }
}
.product__item--links a svg {
  margin: 0;
}
.product__item:hover {
  box-shadow: 5px 5px 20px rgba(57, 46, 43, 0.44);
  -webkit-box-shadow: 5px 5px 20px rgba(57, 46, 43, 0.44);
  -moz-box-shadow: 5px 5px 20px rgba(57, 46, 43, 0.44);
  transition: all ease 0.3s;
}
.product__item:hover .product__item--links a {
  opacity: 0.6;
  visibility: visible;
  transform: translateY(8.5rem) scale(1);
}
.product__item:hover .product__item--links a:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .product__item:hover .product__item--links a {
    bottom: 3.5;
    opacity: 0.6;
    visibility: visible;
    transform: none;
  }
  .product__item:hover .product__item--links a:hover {
    opacity: 0.6;
  }
}
.product form .singleProduct__form--radio {
  text-align: center;
}
.product form .singleProduct__form--radio label {
  position: relative;
  height: 1em;
  font-weight: 700;
  padding-left: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: rgba(119, 20, 33, 0.6);
  letter-spacing: 1px;
  margin: 1rem;
}
.product form .singleProduct__form--radio label:hover input:not(:checked) ~ .radio {
  opacity: 0.8;
}
.product form .singleProduct__form--radio .label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
}
.product form .singleProduct__form--radio .label span {
  line-height: 1em;
}
.product form .singleProduct__form--radio input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  left: -2000px;
}
.product form .singleProduct__form--radio input:checked ~ .radio {
  background-color: #771421;
  transition: background 0.3s;
}
.product form .singleProduct__form--radio input:checked ~ .radio::after {
  opacity: 1;
}
.product form .radio {
  position: absolute;
  top: 0.2rem;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  background: rgba(119, 20, 33, 0.6);
  border-radius: 50%;
}
.product form .radio::after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 0.5rem;
  left: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
}
.product form button, .product form input[type=submit] {
  text-align: center;
  background: #771421;
  border: none;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -webkit-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -moz-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-bottom: 0.1rem solid #771421;
  line-height: initial;
  transition: all ease 0.3s;
}
.product form .input-group {
  margin: 1rem 0;
  position: relative;
}
.product form .input-group input, .product form .input-group textarea {
  border: 0.1rem solid rgba(119, 20, 33, 0.3);
  height: 4rem;
  padding-left: 3rem;
}
.product form .input-group input:focus, .product form .input-group textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(119, 20, 33, 0.25);
}
.product form .input-group svg {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  left: 1.25rem;
  color: #771421;
}

.checkout .StripeElement {
  background-color: white;
  padding: 16px 16px;
  border: 0.1rem solid rgba(119, 20, 33, 0.3);
  transition: all ease 0.3s;
}
.checkout .StripeElement--focus {
  box-shadow: 0 0 0 0.2rem rgba(119, 20, 33, 0.25);
  transition: all ease 0.3s;
}
.checkout .StripeElement--invalid {
  border-color: #fa755a;
}
.checkout .StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
.checkout #card-errors {
  color: #fa755a;
}
.checkout form .checkout__box--radio {
  text-align: center;
}
.checkout form .checkout__box--radio label {
  position: relative;
  height: 1em;
  font-weight: 700;
  padding-left: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: rgba(119, 20, 33, 0.6);
  letter-spacing: 1px;
  margin: 1rem;
}
.checkout form .checkout__box--radio label:hover input:not(:checked) ~ .radio {
  opacity: 0.8;
}
.checkout form .checkout__box--radio .label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
}
.checkout form .checkout__box--radio .label span {
  line-height: 1em;
}
.checkout form .checkout__box--radio input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  left: -2000px;
}
.checkout form .checkout__box--radio input:checked ~ .radio {
  background-color: #771421;
  transition: background 0.3s;
}
.checkout form .checkout__box--radio input:checked ~ .radio::after {
  opacity: 1;
}
.checkout form .error {
  background: rgba(255, 169, 180, 0.8);
  padding: 1rem;
}
.checkout form .radio {
  position: absolute;
  top: 0.2rem;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  background: rgba(119, 20, 33, 0.6);
  border-radius: 50%;
}
.checkout form .radio::after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 0.5rem;
  left: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
}
.checkout form .input-group {
  margin: 1rem 0;
  position: relative;
}
.checkout form .input-group input, .checkout form .input-group textarea, .checkout form .input-group select {
  border: 0.1rem solid rgba(119, 20, 33, 0.3);
  height: 4rem;
  padding-left: 3rem;
}
.checkout form .input-group input:focus, .checkout form .input-group textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(119, 20, 33, 0.25);
}
.checkout form .input-group svg, .checkout form .input-group img {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  left: 1.25rem;
  color: #771421;
}
.checkout form .input-group img {
  height: 1rem;
  width: 1.5rem;
}
.checkout form .input-group:nth-child(4) textarea {
  padding: 1.25rem;
  padding-left: 3rem;
  height: 6rem;
  min-height: 4rem;
  max-height: 8rem;
}
.checkout form .error {
  background: rgba(255, 169, 180, 0.8);
  color: #ffffff;
}
.checkout form button {
  display: block;
  text-align: center;
  width: 100%;
  background: #771421;
  border: none;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -webkit-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -moz-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
}
.checkout form button:disabled {
  background: #392e2b;
  cursor: not-allowed;
}
.checkout__box h5 span {
  font-size: 2rem;
}
.checkout__box .list-group-item.active {
  background: #771421;
  border: none;
}
@media (max-width: 992px) {
  .checkout__box {
    padding: 1rem 0;
  }
}

.relatedCategory {
  margin: 3rem 0;
}
.relatedCategory__heading h2 {
  text-align: center;
}
.relatedCategory__cat {
  margin: 2rem 0;
  padding: 0.5rem;
  transition: all ease 0.3s;
  text-align: center;
  position: relative;
}
.relatedCategory__cat p {
  background: #771421;
  color: #ffffff;
  position: absolute;
  bottom: 4rem;
}
.relatedCategory__cat img {
  height: 12rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.relatedCategory__cat a {
  border: none;
}
.relatedCategory__cat:hover {
  transition: all ease 0.3s;
  box-shadow: 5px 5px 20px rgba(57, 46, 43, 0.44);
  -webkit-box-shadow: 5px 5px 20px rgba(57, 46, 43, 0.44);
  -moz-box-shadow: 5px 5px 20px rgba(57, 46, 43, 0.44);
}

.singleProduct__box {
  padding: 3rem 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column;
  height: 100%;
  text-align: left;
}
.singleProduct__box img {
  padding: 1rem;
  box-shadow: 5px 5px 20px rgba(57, 46, 43, 0.44);
  -webkit-box-shadow: 5px 5px 20px rgba(57, 46, 43, 0.44);
  -moz-box-shadow: 5px 5px 20px rgba(57, 46, 43, 0.44);
}
.singleProduct__box--name h1 {
  font-size: 1.36rem;
  line-height: 1.6rem;
  text-transform: capitalize;
  font-weight: 700;
}
.singleProduct__box--cat a {
  padding: 0;
  border: none;
  text-align: center;
  text-transform: uppercase;
}
.singleProduct__box--cat a:hover {
  color: #771421;
  background: #ffffff;
  text-decoration: underline;
}
.singleProduct__box--code, .singleProduct__box--cat, .singleProduct__box--size {
  padding: 0.25rem;
}
.singleProduct__box--code p, .singleProduct__box--cat p, .singleProduct__box--size p {
  color: rgba(57, 46, 43, 0.6);
  padding: 0.25rem;
}
.singleProduct__box--price p {
  padding: 0.5rem;
  color: #771421;
  font-weight: 700;
  font-size: 2rem;
}
.singleProduct__box--price p span {
  font-size: 1rem;
}
.singleProduct__box--price p:hover {
  cursor: not-allowed;
}
.singleProduct__box--price span {
  font-size: 60%;
  color: #771421;
  padding: 0.5rem;
}
@media (max-width: 992px) {
  .singleProduct__box {
    align-items: center;
    padding: 1rem 0;
  }
}
.singleProduct__form {
  padding: 3rem 0;
}
.singleProduct__form form .singleProduct__form--radio {
  text-align: center;
}
.singleProduct__form form .singleProduct__form--radio label {
  position: relative;
  height: 1em;
  font-weight: 700;
  padding-left: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: rgba(119, 20, 33, 0.6);
  letter-spacing: 1px;
  margin: 1rem;
}
.singleProduct__form form .singleProduct__form--radio label:hover input:not(:checked) ~ .radio {
  opacity: 0.8;
}
.singleProduct__form form .singleProduct__form--radio .label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
}
.singleProduct__form form .singleProduct__form--radio .label span {
  line-height: 1em;
}
.singleProduct__form form .singleProduct__form--radio input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  left: -2000px;
}
.singleProduct__form form .singleProduct__form--radio input:checked ~ .radio {
  background-color: #771421;
  transition: background 0.3s;
}
.singleProduct__form form .singleProduct__form--radio input:checked ~ .radio::after {
  opacity: 1;
}
.singleProduct__form form .radio {
  position: absolute;
  top: 0.2rem;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  background: rgba(119, 20, 33, 0.6);
  border-radius: 50%;
}
.singleProduct__form form .radio::after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 0.5rem;
  left: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
}
.singleProduct__form form button {
  text-align: center;
  background: #771421;
  border: none;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -webkit-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -moz-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
}
.singleProduct__form form .input-group {
  margin: 1rem 0;
  position: relative;
}
.singleProduct__form form .input-group input, .singleProduct__form form .input-group textarea {
  border: 0.1rem solid rgba(119, 20, 33, 0.3);
  height: 4rem;
  padding-left: 3rem;
}
.singleProduct__form form .input-group input:focus, .singleProduct__form form .input-group textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(119, 20, 33, 0.25);
}
.singleProduct__form form .input-group svg {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  left: 1.25rem;
  color: #771421;
}
@media (max-width: 992px) {
  .singleProduct__form {
    padding: 1rem 0;
  }
}

.relatedProduct__heading h2 {
  text-align: center;
}
.relatedProduct__item {
  transition: all ease 0.3s;
  margin: 2rem 0;
  padding: 0.75rem;
}
.relatedProduct__item--image {
  position: relative;
}
.relatedProduct__item--image img {
  height: 10rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.relatedProduct__item--image--price {
  position: absolute;
  top: 0;
  left: 0;
}
.relatedProduct__item--image--price p {
  background: #771421;
  padding: 0.5rem;
  color: #ffffff;
  font-size: 1.5rem;
}
.relatedProduct__item--image--price p span {
  font-size: 0.75rem;
}
.relatedProduct__item--image--price span {
  font-size: 60%;
  background: #771421;
  color: #ffffff;
  padding: 0.5rem;
}
.relatedProduct__item--name p {
  padding: 0.25rem;
  text-transform: capitalize;
  font-weight: 700;
  text-align: center;
}
.relatedProduct__item--category a {
  padding: 0.5rem;
  border: none;
  display: block;
  text-align: center;
  text-transform: uppercase;
}
.relatedProduct__item--links {
  position: absolute;
  left: 5.5rem;
  top: 0;
}
@media (max-width: 992px) {
  .relatedProduct__item--links {
    top: 9.5rem;
    left: 2.2rem;
  }
}
.relatedProduct__item--links a {
  opacity: 0;
  visibility: hidden;
  border: unset;
  transform: scale(0.15);
}
@media (max-width: 992px) {
  .relatedProduct__item--links a {
    transform: none;
    opacity: 0.6;
    visibility: visible;
  }
}
.relatedProduct__item--links a svg {
  margin: 0;
}
.relatedProduct__item--links form .singleProduct__form--radio {
  text-align: center;
}
.relatedProduct__item--links form .singleProduct__form--radio label {
  position: relative;
  height: 1em;
  font-weight: 700;
  padding-left: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: rgba(119, 20, 33, 0.6);
  letter-spacing: 1px;
  margin: 1rem;
}
.relatedProduct__item--links form .singleProduct__form--radio label:hover input:not(:checked) ~ .radio {
  opacity: 0.8;
}
.relatedProduct__item--links form .singleProduct__form--radio .label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
}
.relatedProduct__item--links form .singleProduct__form--radio .label span {
  line-height: 1em;
}
.relatedProduct__item--links form .singleProduct__form--radio input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  left: -2000px;
}
.relatedProduct__item--links form .singleProduct__form--radio input:checked ~ .radio {
  background-color: #771421;
  transition: background 0.3s;
}
.relatedProduct__item--links form .singleProduct__form--radio input:checked ~ .radio::after {
  opacity: 1;
}
.relatedProduct__item--links form .radio {
  position: absolute;
  top: 0.2rem;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  background: rgba(119, 20, 33, 0.6);
  border-radius: 50%;
}
.relatedProduct__item--links form .radio::after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 0.5rem;
  left: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
}
.relatedProduct__item--links form button, .relatedProduct__item--links form input[type=submit] {
  text-align: center;
  background: #771421;
  border: none;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -webkit-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -moz-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-bottom: 0.1rem solid #771421;
  line-height: initial;
  transition: all ease 0.3s;
}
.relatedProduct__item--links form .input-group {
  margin: 1rem 0;
  position: relative;
}
.relatedProduct__item--links form .input-group input, .relatedProduct__item--links form .input-group textarea {
  border: 0.1rem solid rgba(119, 20, 33, 0.3);
  height: 4rem;
  padding-left: 3rem;
}
.relatedProduct__item--links form .input-group input:focus, .relatedProduct__item--links form .input-group textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(119, 20, 33, 0.25);
}
.relatedProduct__item--links form .input-group svg {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  left: 1.25rem;
  color: #771421;
}
.relatedProduct__item:hover {
  box-shadow: 5px 5px 20px rgba(57, 46, 43, 0.44);
  -webkit-box-shadow: 5px 5px 20px rgba(57, 46, 43, 0.44);
  -moz-box-shadow: 5px 5px 20px rgba(57, 46, 43, 0.44);
  transition: all ease 0.3s;
}
.relatedProduct__item:hover .relatedProduct__item--links a {
  opacity: 0.6;
  visibility: visible;
  transform: translateY(8.5rem) scale(1);
}
.relatedProduct__item:hover .relatedProduct__item--links a:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .relatedProduct__item:hover .relatedProduct__item--links a {
    bottom: 3.5;
    opacity: 0.6;
    visibility: visible;
    transform: none;
  }
  .relatedProduct__item:hover .relatedProduct__item--links a:hover {
    opacity: 0.6;
  }
}
.relatedProduct__info {
  margin: 3rem 0;
}
.relatedProduct__info h2 {
  text-align: center;
}

.shoppingCart p {
  padding: 0.25rem;
}
.shoppingCart__image img {
  width: 10rem;
  height: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.shoppingCart__box--name a, .shoppingCart__box--name button {
  padding: none;
  border: none;
  background: #ffffff;
}
.shoppingCart__box--name a:hover, .shoppingCart__box--name button:hover {
  text-decoration: underline;
  color: #771421;
}
.shoppingCart__box--name a:focus, .shoppingCart__box--name button:focus {
  outline: unset;
}
.shoppingCart__box--quantity form input {
  border-radius: 0;
  border: 0.1rem solid rgba(119, 20, 33, 0.3);
  height: 2rem;
}
.shoppingCart__box--quantity form input:focus {
  border-color: rgba(119, 20, 33, 0.3);
  box-shadow: none;
}
.shoppingCart__box--quantity form button {
  padding: 0;
  border: none;
  margin-left: 1rem;
}
.shoppingCart__box--quantity form button:hover {
  background: #ffffff;
  color: #771421;
  text-decoration: underline;
}
.shoppingCart__box--quantity form button:focus {
  outline: none;
}
.shoppingCart__box--price p {
  color: #771421;
}
.shoppingCart__box--totalPrice p {
  padding: 2rem 0;
  text-align: right;
  color: #771421;
}
.shoppingCart__box--totalPrice p span {
  font-size: 2rem;
}
.shoppingCart__box--totalPrice--links {
  display: flex;
  justify-content: space-between;
}
.shoppingCart__box--totalPrice--links a {
  background: #771421;
  color: #ffffff;
}

.confirmation {
  padding: 2rem 0;
  text-align: center;
}
.confirmation__box img {
  margin: 0 auto;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.confirmation__box a {
  border: none;
  padding: 0;
  color: #771421;
  background: #ffffff;
}
.confirmation__box a:hover {
  text-decoration: underline;
  color: #771421;
}

.choose__box {
  text-align: center;
  padding: 2rem 0;
}
.choose__box img {
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.choose__box a {
  margin: 2rem 0;
  background: #771421;
  color: #ffffff;
}
.choose__box a:hover {
  background: #ffffff;
  color: #771421;
}

.howItWorks__heading h1 {
  font-size: 2.5rem;
  line-height: 2.8rem;
  padding: 1.28rem 0;
}
.howItWorks__box img {
  height: 15rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.howItWorks__box p {
  text-align: center;
}

.contact__box {
  padding: 3rem 0;
}
.contact__box svg {
  color: #771421;
  font-size: 4rem;
  display: block;
  margin: 2rem auto;
}
.contact__box p svg {
  font-size: 1rem;
  color: #771421;
  margin-right: 0.5rem;
}
.contact__box a {
  border: none;
  display: block;
  text-align: center;
}
.contact__box h3 {
  text-align: center;
}

.auth {
  margin: 3rem 0;
}
.auth__form--intro {
  text-align: center;
}
.auth__form--intro p:first-child {
  text-transform: uppercase;
  font-size: 17px;
  color: rgba(57, 46, 43, 0.6);
  font-weight: 700;
  letter-spacing: 0.25rem;
  padding: 0;
}
.auth__form--intro p:first-child span {
  display: block;
  color: #771421;
  font-size: 2rem;
  line-height: 2.3rem;
}
.auth__form--intro p:last-child {
  padding: 0.5rem;
  color: rgba(57, 46, 43, 0.4);
}
.auth__form form .input-group {
  margin: 1rem 0;
  position: relative;
}
.auth__form form .input-group input, .auth__form form .input-group textarea {
  border: 0.1rem solid rgba(119, 20, 33, 0.3);
  height: 4rem;
  padding-left: 3rem;
}
.auth__form form .input-group input:focus, .auth__form form .input-group textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(119, 20, 33, 0.25);
}
.auth__form form .input-group svg {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  left: 1.25rem;
  color: #771421;
}
.auth__form form .input-group:nth-child(4) textarea {
  padding: 1.25rem;
  padding-left: 3rem;
  height: 6rem;
  min-height: 4rem;
  max-height: 8rem;
}
.auth__form form button {
  display: block;
  text-align: center;
  width: 100%;
  background: #771421;
  border: none;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -webkit-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
  -moz-box-shadow: -6px 6px 3px rgba(119, 20, 33, 0.5);
}
.auth__form--helpers p {
  font-size: 14px;
  padding: 0;
  display: block;
}
.auth__form--helpers p a {
  padding: 0.5rem 1rem;
  border: none;
}

.home .info {
  background: rgba(119, 20, 33, 0.7);
  border: 0.1rem solid #771421;
  padding: 1rem;
  margin: 1rem 0rem;
  transition: all ease 0.3s;
  position: relative;
}
.home .info p {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.3rem;
}
.home .info svg {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 1rem;
  top: 25%;
}
.home .info button, .home .info a {
  background: #771421;
  padding: 0.75rem 1rem;
  color: #ffffff;
  border: 0.1rem solid transparent;
  border-radius: unset;
  font-weight: 700;
  line-height: 1;
}
.home .info button:hover, .home .info a:hover {
  border: 0.1rem solid #ffffff;
}
.home .info:hover {
  transition: all ease 0.3s;
  background: #771421;
}
.home .info.opened {
  background: #ffffff;
}
.home .info.opened p {
  color: #771421;
}
.home .info.opened a, .home .info.opened button, .home .info.opened select {
  margin-left: 0rem 2rem;
}

.data .card-header h4, .data .card-header h5, .data .card-header h6 {
  color: #ffffff;
}
.data .card-body p b {
  text-align: right;
}
.data ul li {
  display: block;
}
.data .table a {
  display: block;
}
.data__tutorials {
  margin: 2rem 0;
  text-align: center;
}
.data__tutorials h4 {
  background: #771421;
  padding: 1rem;
  color: #ffffff;
  text-align: center;
}
.data__tutorials a {
  margin: 1rem 0;
  text-align: center;
  text-decoration: underline;
  border-left: 0 solid transparent;
}
.data__tutorials a:hover {
  border-left: 0.5rem solid white;
  border-color: white;
}
.data__tutorials--info img {
  height: 20rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline;
}

main {
  min-height: 80vh;
  height: auto;
}

.card {
  border: unset;
}

.card-header {
  background-color: #771421;
  border-bottom: 1px solid rgba(255, 255, 255, 0.125);
  color: #ffffff;
}

.pagination {
  justify-content: center;
}
.pagination .page-item.active .page-link {
  background-color: #771421;
  border: unset;
  color: #ffffff;
}
.pagination .page-item .page-link {
  border: unset;
  color: #771421;
}

.table td, .table th {
  vertical-align: middle;
  text-align: center;
}

.navigation nav.front .navbar-nav li.active a {
  border-bottom: 0.1rem solid #ffffff;
}

.form .card-header h4, .form .card-header h5 {
  color: #ffffff;
}

form .input-error .input-group-text {
  background: red;
  color: #ffffff;
}
form .input-error input {
  background: rgba(255, 0, 0, 0.075);
}

.modal button, .modal input[type=submit] {
  color: #771421;
  font-weight: 700;
  background: #771421;
  color: #ffffff;
  padding: 0.75rem 1rem;
  display: inline-block;
  border-radius: unset;
  text-decoration: none;
  text-transform: none;
  line-height: initial;
  border: none;
  transition: all ease 0.3s;
}
.modal button svg, .modal input[type=submit] svg {
  margin-right: 0.5rem;
}
.modal button:hover, .modal input[type=submit]:hover {
  color: #ffffff;
  background: white;
  color: #771421;
  text-decoration: none;
  transition: all ease 0.3s;
}

/*------------------------------------*\
  Trumbs > Hide
\*------------------------------------*/
/**
 * Hide visually and from screen readers.
 */
/*------------------------------------*\
  Trumbs > Align
\*------------------------------------*/
