@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: #222222;
  font-size: 17px;
  font-family: "Alata", sans-serif;
  font-weight: 300;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/*------------------------------------*\
  Elements > Links
\*------------------------------------*/

a,
button {
  color: black;
  font-weight: 700;
  padding: 0.75rem 1rem;
  display: inline-block;
  border-bottom: 0.1rem solid black;
  border-radius: 0rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all ease 0.3s;
}

a:hover,
button:hover {
  color: #ffffff;
  border-bottom: 0.1rem solid black;
  background: black;
  text-decoration: none;
  transition: all ease 0.3s;
}

a svg,
button svg {
  margin-right: 0.5rem;
}

/*------------------------------------*\
  Elements > img
\*------------------------------------*/

img {
  display: block;
  max-width: 100%;
}

/*------------------------------------*\
  Elements > Headings
\*------------------------------------*/

p {
  font-size: 17px;
  font-family: "Alata", sans-serif;
  font-weight: 400;
  line-height: 26px;
  padding: 1rem;
}

h1 {
  color: black;
  font-size: 48px;
  font-family: "Alata", sans-serif;
  font-weight: 700;
  line-height: 62px;
}

@media (max-width: 576px) {
  h1 {
    font-size: 38px;
    line-height: 52px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 33px;
    line-height: 47px;
  }
}

h2 {
  color: black;
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
}

@media (max-width: 576px) {
  h2 {
    font-size: 35px;
    line-height: 47px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 30px;
    line-height: 42px;
  }
}

h3 {
  color: black;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
}

h4 {
  color: black;
  font-size: 24px;
  font-weight: 300;
  line-height: 29px;
}

h5 {
  color: black;
  font-size: 20.8px;
  font-weight: 300;
  line-height: 31px;
}

/*------------------------------------*\
  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: black;
}

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

.topbar {
  background: rgba(0, 0, 0, 0.02);
}

.topbar__links {
  padding: 1rem 0;
}

.topbar__links a {
  position: relative;
  padding: 0 1rem;
  font-size: 75%;
  border: none;
  color: rgba(0, 0, 0, 0.6);
}

.topbar__links a:hover {
  background: transparent;
  color: black;
}

.topbar__links a svg {
  font-size: 155%;
}

.topbar__links a span {
  transition: all ease 0.3s;
  position: absolute;
  top: -1.5rem;
  left: -0.25rem;
  width: 2rem;
  height: 2rem;
  background: #f18b3e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  opacity: 0.6;
}

.topbar__links a:hover span {
  transition: all ease 0.3s;
  opacity: 1;
}

.topbar__main img {
  width: 100%;
  height: 6rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.topbar__main form {
  border-bottom: 0.25rem solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 4px rgba(34, 34, 34, 0.2);
}

.topbar__main form input {
  border: none;
  font-family: "Alata", sans-serif;
  font-weight: 700;
}

.topbar__main form input:focus {
  box-shadow: unset;
}

.topbar__main form button {
  padding: 0 0.5rem;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.1);
  border: none;
  transition: all ease 0.3s;
}

.topbar__main form button:focus {
  box-shadow: unset;
  outline: unset;
}

.topbar__main form button:hover {
  background: transparent;
  color: black;
  transition: all ease 0.3s;
}

.topbar__main form button:hover svg {
  transition: all ease 0.3s;
  color: black;
}

.topbar__main form button svg {
  transition: all ease 0.3s;
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
}

.topbar__main form svg {
  color: black;
}

.navigation {
  background: rgba(0, 0, 0, 0.02);
}

.navigation .navbar {
  padding: 0;
}

.navigation ul li a {
  letter-spacing: 0.1rem;
  border: none;
  border-radius: 0;
  color: rgba(0, 0, 0, 0.6);
}

.navigation ul li a:hover {
  background: transparent;
  color: black;
}

.navigation ul li.active a {
  background: #ffffff;
  color: #ffffff;
}

.navigation ul li.active a:hover {
  text-decoration: underline;
}

.navigation ul .hoverable {
  transition: all ease 0.3s;
}

.navigation ul .hoverable:hover {
  transition: all ease 0.3s;
}

.navigation ul .hoverable:hover .hoverableOpen {
  box-shadow: 0 4px 4px rgba(34, 34, 34, 0.2);
  padding: 2rem 0;
  visibility: visible;
  opacity: 1;
}

.navigation ul .hoverable--links a {
  color: black;
  font-weight: 700;
  letter-spacing: 0.25rem;
  font-size: 75%;
}

.navigation ul .hoverable--linksGroup a {
  font-weight: 400;
  padding: 0.25rem 1rem;
}

@media (max-width: 992px) {
  .navigation {
    background: rgba(255, 255, 255, 0.95);
    margin: 1rem 0;
  }

  .navigation button {
    border: none;
  }

  .navigation button:hover {
    background: transparent;
  }

  .navigation ul li a {
    color: black;
  }

  .navigation ul li a:hover {
    color: #ffffff;
  }

  .navigation ul li.active a {
    background: black;
    color: #ffffff;
  }

  .navigation ul li.active a:hover {
    text-decoration: underline;
  }
}

.hoverableOpen {
  transition: all ease 0.3s;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background: #ffffff;
  color: #ffffff;
}

.topCta {
  background: rgba(0, 0, 0, 0.02);
}

.topCta__main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topCta__main p {
  color: black;
}

.topCta__main p span {
  display: block;
}

.topCta__main svg {
  color: #f18b3e;
  font-size: 2rem;
}

.hero {
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.02);
}

.hero__main--slide img {
  height: 20rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__main:hover .swiper-button-next,
.hero__main:hover .swiper-button-prev {
  visibility: visible;
  opacity: 1;
  transition: all ease 0.3s;
}

.hero .swiper-button-next:after,
.hero .swiper-button-prev::after {
  content: "";
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.4);
  background: #ffffff;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  height: 3rem;
  width: 3rem;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
}

.hero .swiper-button-prev {
  left: 0;
  border-bottom-right-radius: 100%;
  border-top-right-radius: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.hero .swiper-button-next {
  right: 0;
}

.popular,
.latestProducts,
.userViewedProducts,
.whishlist,
.subcategory,
.mightLike {
  padding: 2rem 0;
}

.popular__heading h2,
.latestProducts__heading h2,
.userViewedProducts__heading h2,
.whishlist__heading h2,
.subcategory__heading h2,
.mightLike__heading h2 {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.popular a,
.latestProducts a,
.userViewedProducts a,
.whishlist a,
.subcategory a,
.mightLike a {
  border: none;
  padding: 2rem;
}

.popular a:hover,
.latestProducts a:hover,
.userViewedProducts a:hover,
.whishlist a:hover,
.subcategory a:hover,
.mightLike a:hover {
  background: transparent;
  box-shadow: 0 4px 4px rgba(34, 34, 34, 0.2);
}

.popular__main--image img,
.latestProducts__main--image img,
.userViewedProducts__main--image img,
.whishlist__main--image img,
.subcategory__main--image img,
.mightLike__main--image img {
  width: 100%;
  height: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.popular__main--category p,
.latestProducts__main--category p,
.userViewedProducts__main--category p,
.whishlist__main--category p,
.subcategory__main--category p,
.mightLike__main--category p {
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  font-size: 75%;
}

.popular__main--name h3,
.latestProducts__main--name h3,
.userViewedProducts__main--name h3,
.whishlist__main--name h3,
.subcategory__main--name h3,
.mightLike__main--name h3 {
  font-size: 100%;
  text-transform: uppercase;
  line-height: normal;
}

.popular__main--price p,
.latestProducts__main--price p,
.userViewedProducts__main--price p,
.whishlist__main--price p,
.subcategory__main--price p,
.mightLike__main--price p {
  padding: 1rem 0;
  font-weight: 700;
  font-size: 125%;
  color: black;
}

.popular__main--form,
.latestProducts__main--form,
.userViewedProducts__main--form,
.whishlist__main--form,
.subcategory__main--form,
.mightLike__main--form {
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
}

.popular__main--form form,
.latestProducts__main--form form,
.userViewedProducts__main--form form,
.whishlist__main--form form,
.subcategory__main--form form,
.mightLike__main--form form {
  display: inline;
}

.popular__main--form form button,
.latestProducts__main--form form button,
.userViewedProducts__main--form form button,
.whishlist__main--form form button,
.subcategory__main--form form button,
.mightLike__main--form form button {
  border: none;
  font-weight: 700;
  background: #f18b3e;
  color: #ffffff;
}

.popular__main--form form button svg,
.latestProducts__main--form form button svg,
.userViewedProducts__main--form form button svg,
.whishlist__main--form form button svg,
.subcategory__main--form form button svg,
.mightLike__main--form form button svg {
  margin: 0;
  font-size: 1.5rem;
}

.popular__main:hover .popular__main--form,
.popular__main:hover .latestProducts__main--form,
.popular__main:hover .userViewedProducts__main--form,
.popular__main:hover .whishlist__main--form,
.popular__main:hover .subcategory__main--form,
.popular__main:hover .mightLike__main--form,
.latestProducts__main:hover .popular__main--form,
.latestProducts__main:hover .latestProducts__main--form,
.latestProducts__main:hover .userViewedProducts__main--form,
.latestProducts__main:hover .whishlist__main--form,
.latestProducts__main:hover .subcategory__main--form,
.latestProducts__main:hover .mightLike__main--form,
.userViewedProducts__main:hover .popular__main--form,
.userViewedProducts__main:hover .latestProducts__main--form,
.userViewedProducts__main:hover .userViewedProducts__main--form,
.userViewedProducts__main:hover .whishlist__main--form,
.userViewedProducts__main:hover .subcategory__main--form,
.userViewedProducts__main:hover .mightLike__main--form,
.whishlist__main:hover .popular__main--form,
.whishlist__main:hover .latestProducts__main--form,
.whishlist__main:hover .userViewedProducts__main--form,
.whishlist__main:hover .whishlist__main--form,
.whishlist__main:hover .subcategory__main--form,
.whishlist__main:hover .mightLike__main--form,
.subcategory__main:hover .popular__main--form,
.subcategory__main:hover .latestProducts__main--form,
.subcategory__main:hover .userViewedProducts__main--form,
.subcategory__main:hover .whishlist__main--form,
.subcategory__main:hover .subcategory__main--form,
.subcategory__main:hover .mightLike__main--form,
.mightLike__main:hover .popular__main--form,
.mightLike__main:hover .latestProducts__main--form,
.mightLike__main:hover .userViewedProducts__main--form,
.mightLike__main:hover .whishlist__main--form,
.mightLike__main:hover .subcategory__main--form,
.mightLike__main:hover .mightLike__main--form {
  visibility: visible;
  opacity: 1;
  transition: all ease 0.3s;
}

.cta {
  background: #f18b3e;
  padding: 2rem 0;
}

.cta__box {
  height: 100%;
}

.cta__box--image {
  position: relative;
}

.cta__box--image svg {
  position: absolute;
  top: -4rem;
  left: -10rem;
  font-weight: 700;
  font-size: 8rem;
  color: #ffffff;
}

.cta__box--text h3 {
  padding: 1rem 0;
  color: #ffffff;
}

.cta__box--text p {
  color: #ffffff;
  padding: 0;
}

.cta__box--form input {
  border: none;
  height: 3rem;
}

.cta__box--form input:focus {
  box-shadow: 0 4px 4px rgba(34, 34, 34, 0.2);
}

.cta__box--form button {
  border: none;
  font-size: 75%;
  background: black;
  color: #ffffff;
}

@media (max-width: 992px) {
  .cta {
    text-align: center;
  }

  .cta__box--link {
    margin: 1rem 0;
  }
}

.footer {
  background: #ffffff;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  border: none;
}

.footer__logo a:hover {
  text-decoration: underline;
  background: transparent;
  color: black;
}

.footer__logo a img {
  height: 4rem;
  width: 4rem;
  -o-object-fit: 100%;
     object-fit: 100%;
  margin-left: 0.5rem;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social p {
  color: black;
  font-weight: 700;
  text-transform: uppercase;
}

.footer__social a {
  font-size: 175%;
  color: black;
  border-bottom: 0.2rem solid transparent;
}

.footer__social a svg {
  margin: 0;
}

.footer__social a:hover {
  border-bottom: 0.2rem solid black;
  background: transparent;
  color: black;
}

.footer__info {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__info a {
  background: transparent;
  color: black;
  border: none;
}

.footer__info a:hover {
  text-decoration: underline;
  background: transparent;
  color: black;
}

.footer__cta p {
  font-weight: 700;
  text-transform: uppercase;
}

.footer__cta img {
  display: inline-block;
  margin: 0 auto;
  height: 6rem;
  width: 6rem;
  -o-object-fit: contain;
     object-fit: contain;
  padding-left: 1rem;
}

.footer__cta a {
  border: none;
  padding: 0.5rem;
  font-weight: 400;
  display: block;
  text-transform: unset;
  padding-left: 1rem;
}

.footer__cta a:hover {
  text-decoration: underline;
  background: transparent;
  color: black;
}

.about__info .card svg,
.about__info .card h3 {
  transition: all ease 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(241, 139, 62, 0.6);
  margin: auto;
}

.about__info .card svg {
  width: 5rem;
  height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.about__info .card:hover svg,
.about__info .card:hover h3 {
  transition: all ease 0.3s;
  color: #f18b3e;
}

.about__info .card img {
  width: 30rem;
  height: 20rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.auth {
  margin: 3rem 0;
}

.auth__form--intro {
  text-align: center;
}

.auth__form--intro p:first-child {
  text-transform: uppercase;
  font-size: 17px;
  color: rgba(34, 34, 34, 0.6);
  font-weight: 700;
  letter-spacing: 0.25rem;
  padding: 0;
}

.auth__form--intro p:first-child span {
  display: block;
  color: black;
  font-size: 2rem;
  line-height: 2.3rem;
}

.auth__form--intro p:last-child {
  padding: 0.5rem;
  color: rgba(34, 34, 34, 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(0, 0, 0, 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(0, 0, 0, 0.25);
}

.auth__form form .input-group svg {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  left: 1.25rem;
  color: black;
}

.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: black;
  border: none;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: 0 4px 4px rgba(34, 34, 34, 0.2);
}

.auth__form--helpers p {
  font-size: 14px;
  padding: 0;
  display: block;
}

.auth__form--helpers p a {
  padding: 0.5rem 1rem;
  border: none;
}

.innerHero__breadcrumbs {
  text-align: center;
  -webkit-clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
          clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  background: rgba(0, 0, 0, 0.02);
  padding: 0.5rem 0;
  margin-bottom: 2rem;
}

.innerHero__breadcrumbs a {
  padding: 0;
  color: rgba(0, 0, 0, 0.3);
  border: none;
  font-weight: 400;
}

.innerHero__breadcrumbs a:hover {
  background: transparent;
  text-decoration: underline;
}

.innerHero__breadcrumbs span {
  color: rgba(0, 0, 0, 0.2);
}

.innerHero__breadcrumbs svg {
  color: rgba(0, 0, 0, 0.2);
  margin: 0 1rem;
}

.innerHero__heading h1 {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.breadcrumbs__main {
  text-align: center;
  -webkit-clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
          clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  background: rgba(0, 0, 0, 0.02);
  padding: 0.5rem 0;
  margin-bottom: 2rem;
}

.breadcrumbs__main a {
  padding: 0;
  color: rgba(0, 0, 0, 0.3);
  border: none;
  font-weight: 400;
}

.breadcrumbs__main a:hover {
  background: transparent;
  text-decoration: underline;
}

.breadcrumbs__main span {
  color: rgba(0, 0, 0, 0.2);
}

.breadcrumbs__main svg {
  color: rgba(0, 0, 0, 0.2);
  margin: 0 1rem;
}

.cart {
  padding: 2rem 0;
}

.cart__heading h2 {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.cart__items {
  display: flex;
  align-items: center;
}

.cart__items--image img {
  width: 10rem;
  height: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.cart__items--info {
  padding: 1rem;
  width: 45%;
}

.cart__items--info--category p {
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  font-size: 75%;
}

.cart__items--info--name h3 {
  font-size: 100%;
  text-transform: uppercase;
  line-height: normal;
}

.cart__items--info--price p {
  padding: 1rem 0;
  font-weight: 700;
  font-size: 125%;
  color: black;
}

.cart__items--options {
  padding: 0 2rem;
}

.cart__items--options form input[type=number] {
  border: 0.25rem solid rgba(0, 0, 0, 0.02);
  height: 2.7rem;
  text-align: center;
  border-radius: 0;
  width: 6rem;
}

.cart__items--options form input[type=number][readonly] {
  background: #ffffff;
}

.cart__items--options form input[type=number]:focus {
  box-shadow: unset;
  border: 0.25rem solid rgba(0, 0, 0, 0.02);
}

.cart__items--options form button {
  border: none;
}

.cart__items--options form button svg {
  margin: 0;
}

.cart__items--options form button:hover {
  background: #f18b3e;
}

.cart__items--options form button.disabled:hover {
  background: rgba(241, 139, 62, 0.4);
  cursor: not-allowed;
}

.cart__info {
  text-align: center;
  background: rgba(0, 0, 0, 0.02);
}

.cart__info--total p {
  padding: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 125%;
  color: black;
}

.cart__info--price {
  background: rgba(0, 0, 0, 0.02);
}

.cart__info--price p span {
  padding: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 175%;
  color: black;
}

.cart__info--button a {
  width: 100%;
  border: none;
  background: #f18b3e;
  color: #ffffff;
}

.category {
  padding: 2rem 0;
}

.category a {
  border: none;
  padding: 2rem;
}

.category a:hover {
  background: transparent;
  box-shadow: 0 4px 4px rgba(34, 34, 34, 0.2);
}

.category__main {
  text-align: center;
}

.category__main--image img {
  height: 15rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.category__main--name h3 {
  font-size: 100%;
  text-transform: uppercase;
  line-height: normal;
}

.category__main--count p {
  font-size: 100%;
  text-transform: uppercase;
  line-height: normal;
  color: black;
}

.subcategory__filtrer {
  padding: 0.5rem;
}

.subcategory__filtrer--name h4 {
  font-size: 75%;
  text-transform: uppercase;
  line-height: normal;
  font-weight: 700;
  letter-spacing: 0.2rem;
}

.subcategory__filtrer--options {
  padding: 0.5rem 0;
}

.subcategory__filtrer--options a:hover {
  color: #f18b3e;
}

.subcategory__filtrer--options a.active {
  color: #f18b3e;
  box-shadow: 0 4px 4px rgba(34, 34, 34, 0.2);
}

.subcategory__main--pagination {
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subcategory__main--pagination a {
  padding: 0.5rem 0.75rem;
  color: #f18b3e;
}

.subcategory__main--pagination a:hover {
  color: #f18b3e;
}

.subcategory__main--pagination .page-item.active .page-link {
  background: #f18b3e;
  border: none;
}

.subcategory__main--pagination .page-item.disabled .page-link {
  border: none;
}

.product__main {
  margin: 2rem 0;
}

.product__main .swiper-slide img {
  height: 10rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product__main .swiper-button-next,
.product__main .swiper-button-prev {
  color: #f18b3e;
  font-size: 200%;
}

.product__main .swiper-button-next::after,
.product__main .swiper-button-prev::after {
  content: "";
}

.product__main .swiper-container2 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.product__main--links {
  margin: 1rem 0;
}

.product__main--links a {
  border: none;
  box-shadow: 0 4px 4px rgba(34, 34, 34, 0.2);
}

.product__main--links a svg {
  color: #f18b3e;
}

.product__main--name h1 {
  font-weight: 400;
  text-transform: uppercase;
}

.product__main--name p {
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  font-size: 75%;
}

.product__main--price {
  margin: 1rem 0;
}

.product__main--price span {
  font-size: 250%;
  font-weight: 700;
}

.product__main--button form {
  margin: 1rem 0;
}

.product__main--button form button {
  border: none;
  font-weight: 700;
  background: #f18b3e;
  color: #ffffff;
  padding: 1rem 1.75rem;
}

.product__main--info p {
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  font-size: 75%;
}

.order__main {
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 4px rgba(34, 34, 34, 0.2);
}

.order__main--heading,
.order__main--footer {
  margin: 2rem 0;
}

.order__main--heading p,
.order__main--footer p {
  padding: 0;
}

.order__main--heading h2,
.order__main--footer h2 {
  text-transform: uppercase;
  font-size: 150%;
  line-height: auto;
  letter-spacing: 0.2rem;
}

.order__main--heading .sum,
.order__main--footer .sum {
  font-size: 300%;
  padding: 1rem 0;
  color: #f18b3e;
  font-weight: 700;
}

.order__main--heading .sumB,
.order__main--heading .sumS,
.order__main--footer .sumB,
.order__main--footer .sumS {
  display: inline-block;
  background: #1DBC60;
  border: none;
  padding: 1rem 2.25rem;
  color: #ffffff;
  margin: 1rem 0.25rem;
}

.order__main--heading .sumB:hover,
.order__main--heading .sumS:hover,
.order__main--footer .sumB:hover,
.order__main--footer .sumS:hover {
  background: #009C41;
}

.order__main--heading .sumS,
.order__main--footer .sumS {
  background: rgba(255, 165, 0, 0.8);
}

.order__main--heading .sumS:hover,
.order__main--footer .sumS:hover {
  background: orange;
}

.order__main--choose .list-group {
  flex-flow: row;
  padding: 0.5rem 0;
}

.order__main--choose button {
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: #ffffff;
  margin: 0rem 0.25rem;
  margin-left: 0;
}

.order__main--choose button.active {
  background: #f18b3e;
  box-shadow: 0 4px 4px rgba(34, 34, 34, 0.2);
}

.order__main--choose button:focus {
  outline: unset;
}

.order__main--choose img {
  width: 5rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.order__main--choose .form-check {
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.order__main--choose .form-check label img {
  display: inline-block;
  margin-right: 0.5rem;
}

.order__main--choose .form-check-input {
  margin-top: 0;
}

.order__main .input-group {
  margin: 1rem 0;
}

.order__main .input-group input,
.order__main .input-group select {
  height: 3rem;
  padding-left: 1rem;
  border: none;
  border-bottom: 0.25rem solid transparent;
  transition: all ease 0.3s;
}

.order__main .input-group input:focus,
.order__main .input-group select:focus {
  outline: unset;
  border: none;
  box-shadow: none;
  border-bottom: 0.25rem solid #f18b3e;
  transition: all ease 0.3s;
}

.order__main .input-group span {
  padding: 0.75rem 1rem;
  background: #f18b3e;
  height: 3rem;
  width: 3rem;
  border: none;
  justify-content: center;
}

.order__main .input-group span svg {
  color: #ffffff;
}

.order__main .input-group-prepend {
  margin: 0;
}

.order__main .icon span {
  padding: 0.75rem 1rem;
  background: #f18b3e;
  height: 3rem;
  width: 3rem;
  border: none;
  justify-content: center;
}

.order__main .icon span svg {
  color: #ffffff;
}

.order__main #omniva_container2 label {
  display: none;
}

.order__main #omniva_container2 select {
  height: 3rem;
  padding-left: 1rem;
  border: none;
  border-bottom: 0.25rem solid transparent;
  transition: all ease 0.3s;
}

.order__main #omniva_container2 select:focus {
  outline: unset;
  border: none;
  box-shadow: none;
  border-bottom: 0.25rem solid #f18b3e;
  transition: all ease 0.3s;
}

.thankyou {
  padding: 2rem 0;
  text-align: center;
}

.thankyou__box img {
  margin: 0 auto;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.thankyou__box a {
  border: none;
  padding: 0;
  color: black;
  background: #ffffff;
}

.thankyou__box a:hover {
  text-decoration: underline;
  color: black;
}

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

.ccf__box {
  position: absolute;
  top: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.8), white, white);
  color: #f1f1f1;
  display: flex;
  min-width: 100%;
  min-height: 100%;
  height: 100vh;
  padding-right: 20rem;
  flex-flow: column;
  align-items: flex-end;
  justify-content: center;
  text-align: left;
}

.ccf__box h1 {
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.ccf__box p {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: black;
}

.ccf__box img {
  width: 20rem;
}

.ccf__box a {
  border: 0.1rem solid #ec2f23;
  background: rgba(236, 47, 35, 0.9);
  color: white;
}

.home .info {
  background: rgba(0, 0, 0, 0.7);
  border: 0.1rem solid black;
  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: black;
  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: black;
}

.home .info.opened {
  background: #ffffff;
}

.home .info.opened p {
  color: black;
}

.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: black;
  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 #f18b3e;
  border-color: #f18b3e;
}

.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: black;
  border-bottom: 1px solid rgba(241, 139, 62, 0.125);
  color: #ffffff;
}

.pagination {
  justify-content: center;
}

.pagination .page-item.active .page-link {
  background-color: black;
  border: unset;
  color: #ffffff;
}

.pagination .page-item .page-link {
  border: unset;
  color: black;
}

.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: black;
  font-weight: 700;
  background: black;
  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: #f18b3e;
  color: black;
  text-decoration: none;
  transition: all ease 0.3s;
}

.admin {
  padding: 2rem 0;
  background: black;
}

.admin .navbar-nav li a {
  background: black;
  color: #ffffff;
}

.admin .navbar-nav li a:hover {
  text-decoration: none;
  color: #ffffff;
}

.admin .navbar-nav li.active a {
  background: black;
  color: #ffffff;
}

.admin .navbar-nav li.active a:hover {
  text-decoration: none;
}

/*------------------------------------*\
  Trumbs > Hide
\*------------------------------------*/

/**
 * Hide visually and from screen readers.
 */

.u-hidden {
  display: none;
}

.remove-all-margin-padding {
  margin: 0 !important;
  padding: 0 !important;
}

/*------------------------------------*\
  Trumbs > Align
\*------------------------------------*/

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-text-center {
  text-align: center;
}

.u-text-justify {
  text-align: justify;
}

