/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

[hidden] {
  display: none;
}

iframe {
  border-style: none;
  border: none;
  display: block;
  position: relative;
}

a:focus {
  outline: none;
}

a:active,
a:hover {
  outline: 0;
}

blockquote {
  margin: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

dl,
menu,
ol,
ul {
  margin: 0;
}

dd {
  margin: 0;
}

menu,
ol,
ul {
  padding: 0;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
}

form {
  margin: 0;
}

button,
input,
select,
textarea {
  font-size: 100%;
  vertical-align: baseline;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  border-style: none;
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

audio,
canvas,
img,
video {
  vertical-align: middle;
}

textarea {
  resize: vertical;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex .col {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  min-width: 0;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .flex-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.flex-with-col {
  margin-left: -15px;
  margin-right: -15px;
}

@media (min-width: 640px) {
  .flex.two .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 480px) {
  .flex.three .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .flex.three .col {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
    width: 33.33%;
  }
}

@media (min-width: 480px) {
  .flex.four .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 640px) {
  .flex.four .col {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
    width: 33.33%;
  }
}

@media (min-width: 768px) {
  .flex.four .col {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    width: 25%;
  }
}

.flex.five .col {
  width: 100%;
}

@media (min-width: 480px) {
  .flex.five .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 640px) {
  .flex.five .col {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
    width: 33.33%;
  }
}

@media (min-width: 768px) {
  .flex.five .col {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    width: 25%;
  }
}

@media (min-width: 960px) {
  .flex.five .col {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%;
    width: 20%;
  }
}

.flex.six .col {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
  width: 50%;
}

@media (min-width: 768px) {
  .flex.six .col {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
    width: 33.33%;
  }
}

@media (min-width: 960px) {
  .flex.six .col {
    -ms-flex-preferred-size: 16.66%;
        flex-basis: 16.66%;
    max-width: 16.66%;
    width: 16.66%;
  }
}

@media (max-width: 767px) {
  .flex.six .col {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
    max-width: 33%;
    width: 33%;
  }
}

.ovh {
  overflow: hidden;
}

.relative {
  position: relative;
}

.with-background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

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

.abs {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.show {
  display: block !important;
}

.hide {
  display: none;
}

.table {
  display: table;
  height: 100%;
  width: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

@media (min-width: 960px) {
  .hide-on-desktop {
    display: none !important;
  }
}

.hide-on-tablet {
  display: none;
}

@media (min-width: 960px) {
  .hide-on-tablet {
    display: block;
  }
}

.hide-on-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-on-mobile {
    display: block;
  }
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 2em;
  margin-top: 2em;
  margin-bottom: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 2em;
  margin-top: 2em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  margin-bottom: 2em;
}

@media (max-width: 768px) {
  .alignleft, .alignright, .aligncenter {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

body {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  line-height: 1.45;
  color: #333;
  background: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #585858;
  margin-bottom: 1em;
}

h1 {
  font-size: 1.424em;
}

@media (min-width: 768px) {
  h1 {
    font-size: 1.58em;
  }
}

@media (min-width: 1170px) {
  h1 {
    font-size: 2em;
  }
}

h2 {
  font-size: 1.266em;
}

@media (min-width: 768px) {
  h2 {
    font-size: 1.424em;
  }
}

@media (min-width: 1170px) {
  h2 {
    font-size: 1.58em;
  }
}

h3 {
  font-size: 1.125em;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.266em;
  }
}

@media (min-width: 1170px) {
  h3 {
    font-size: 1.424em;
  }
}

h4 {
  font-size: 1em;
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.125em;
  }
}

@media (min-width: 1170px) {
  h4 {
    font-size: 1.266em;
  }
}

h5 {
  font-size: 1em;
}

@media (min-width: 768px) {
  h5 {
    font-size: 1.1em;
  }
}

@media (min-width: 1170px) {
  h5 {
    font-size: 1.125em;
  }
}

h6 {
  font-size: 1em;
}

p {
  margin: 0 0 1em;
}

label {
  display: inline-block;
  margin-bottom: .75em;
  font-weight: 400;
  vertical-align: baseline;
}

b,
strong {
  font-weight: 500;
}

a {
  display: inline-block;
  color: inherit;
}

p p,
p a,
p span,
p label,
p strong,
p em,
a p,
a a,
a span,
a label,
a strong,
a em,
span p,
span a,
span span,
span label,
span strong,
span em,
label p,
label a,
label span,
label label,
label strong,
label em,
strong p,
strong a,
strong span,
strong label,
strong strong,
strong em,
em p,
em a,
em span,
em label,
em strong,
em em {
  font-size: 100%;
  margin: 0;
}

blockquote {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  border: 2px solid rgba(0, 0, 0, 0.5);
  position: relative;
  padding: .75em;
  font-weight: 500;
  font-size: 110%;
  color: #585858;
}

@media (min-width: 768px) {
  blockquote {
    padding: 1.5em;
  }
}

blockquote:before, blockquote:after {
  content: "";
  display: block;
  display: inline-block;
  width: 2em;
  height: 2em;
  background: url("img/svg/citat.svg") no-repeat center;
  background-size: 2em 2em;
  vertical-align: text-bottom;
  position: absolute;
  background-color: white;
  padding: .5em;
}

@media (min-width: 768px) {
  blockquote:before, blockquote:after {
    display: inline-block;
    width: 3em;
    height: 3em;
    background: url("img/svg/citat.svg") no-repeat center;
    background-size: 3em 3em;
  }
}

blockquote:before {
  top: 0;
  left: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

blockquote:after {
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(180deg) translateX(-50%) translateY(-50%);
          transform: rotate(180deg) translateX(-50%) translateY(-50%);
}

hr {
  display: block;
  border-style: none;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

small {
  display: inline-block;
  font-size: 85%;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="month"],
textarea,
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  min-width: 100%;
  min-height: 2.25em;
  margin-bottom: .5em;
  border-style: none;
  vertical-align: middle;
  outline: 0;
  font-size: 100%;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="month"],
textarea,
select {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #333;
  padding: .7em;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="datetime"]::-webkit-input-placeholder,
input[type="datetime-local"]::-webkit-input-placeholder,
input[type="week"]::-webkit-input-placeholder,
input[type="month"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="url"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="date"]::-ms-input-placeholder,
input[type="time"]::-ms-input-placeholder,
input[type="datetime"]::-ms-input-placeholder,
input[type="datetime-local"]::-ms-input-placeholder,
input[type="week"]::-ms-input-placeholder,
input[type="month"]::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
input[type="number"]::placeholder,
input[type="date"]::placeholder,
input[type="time"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="week"]::placeholder,
input[type="month"]::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="week"]:focus,
input[type="month"]:focus,
textarea:focus,
select:focus {
  border-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.05);
}

textarea {
  min-width: 100%;
  min-height: 7em;
  line-height: 1.4;
}

select {
  outline: none;
  background: transparent;
  min-width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="submit"],
button,
.btn {
  display: inline-block;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 85%;
  color: white;
  vertical-align: baseline;
  padding: .8em 1.5em;
  background: rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: .07em;
  border-radius: 5px;
  cursor: pointer;
  outline: 0;
  white-space: nowrap;
}

input[type="submit"].white,
button.white,
.btn.white {
  background: white;
  color: #585858;
}

input[type="submit"].white.with-icon:after,
button.white.with-icon:after,
.btn.white.with-icon:after {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background: url("img/svg/sageata-dreapta-neagra.svg") no-repeat center;
  background-size: 0.8em 0.8em;
}

input[type="submit"].gray,
button.gray,
.btn.gray {
  background: rgba(0, 0, 0, 0.05);
  color: #585858;
}

input[type="submit"].gray.with-icon:after,
button.gray.with-icon:after,
.btn.gray.with-icon:after {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background: url("img/svg/sageata-dreapta-neagra.svg") no-repeat center;
  background-size: 0.8em 0.8em;
}

input[type="submit"].orange,
button.orange,
.btn.orange {
  background: orange;
}

input[type="submit"].with-icon,
button.with-icon,
.btn.with-icon {
  position: relative;
  padding-right: calc(1.5em * 2 + 15px);
}

input[type="submit"].with-icon:after,
button.with-icon:after,
.btn.with-icon:after {
  content: "";
  display: block;
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background: url("img/svg/sageata-dreapta-alba.svg") no-repeat center;
  background-size: 0.8em 0.8em;
  position: absolute;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type="submit"].big,
button.big,
.btn.big {
  font-size: 95%;
  padding: 1em 2em;
  letter-spacing: .1em;
}

input[type="submit"].big.with-icon,
button.big.with-icon,
.btn.big.with-icon {
  padding-left: calc(2em + 15px);
}

input[type="submit"].big.with-icon:after,
button.big.with-icon:after,
.btn.big.with-icon:after {
  right: 2em;
}

.btn-tab {
  color: #585858;
  background: white;
  -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
}

.link {
  font-weight: 500;
  color: #585858;
  text-decoration: underline;
}

.background {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.background-gray {
  background: rgba(0, 0, 0, 0.03);
}

.flex.popup {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .flex.with-aside .col-aside {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 30%;
    width: 30%;
  }
}

@media (min-width: 960px) {
  .flex.with-aside .col-aside {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    width: 25%;
  }
}

@media (min-width: 768px) {
  .flex.with-aside .col-content {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    max-width: 70%;
    width: 70%;
  }
}

@media (min-width: 960px) {
  .flex.with-aside .col-content {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
    width: 75%;
  }
}

.icon {
  display: inline-block;
  width: 1.2em !important;
  height: 1.2em !important;
  background: url("img/") no-repeat center;
  background-size: 1.2em 1.2em;
  background-color: #333;
  vertical-align: text-bottom;
}

.icon-home {
  display: inline-block;
  width: 1em !important;
  height: 1em !important;
  background: url("img/svg/acasa.svg") no-repeat center;
  background-size: 1em 1em;
}

.icon-search {
  display: inline-block;
  width: 1.2em !important;
  height: 1.2em !important;
  background: url("img/svg/cautare.svg") no-repeat center;
  background-size: 1.2em 1.2em;
}

.icon-search-white {
  display: inline-block;
  width: 1.2em !important;
  height: 1.2em !important;
  background: url("img/svg/cautare-alba.svg") no-repeat center;
  background-size: 1.2em 1.2em;
}

.icon-phone {
  display: inline-block;
  width: 1.2em !important;
  height: 1.2em !important;
  background: url("img/svg/telefon.svg") no-repeat center;
  background-size: 1.2em 1.2em;
}

.icon-user {
  display: inline-block;
  width: 2.2em !important;
  height: 2.2em !important;
  background: url("img/svg/utilizator.svg") no-repeat center;
  background-size: 1.2em 1.2em;
}

.icon-caret {
  display: inline-block;
  width: 0.5em !important;
  height: 0.5em !important;
  background: url("img/svg/triunghi.svg") no-repeat center;
  background-size: 0.5em 0.5em;
  vertical-align: middle;
}

.icon-close {
  display: inline-block;
  width: 0.75em !important;
  height: 0.75em !important;
  background: url("img/svg/inchidere-neagra.svg") no-repeat center;
  background-size: 0.75em 0.75em;
}

.icon-password {
  display: inline-block;
  width: 1.5em !important;
  height: 1.5em !important;
  background: url("img/svg/lacat.svg") no-repeat center;
  background-size: 1.5em 1.5em;
}

.icon-basket {
  display: inline-block;
  width: 1.4em !important;
  height: 1.4em !important;
  background: url("img/svg/cos.svg") no-repeat center;
  background-size: 1.4em 1.4em;
}

.icon-remove {
  display: inline-block;
  width: 1.2em !important;
  height: 1.2em !important;
  background: url("img/svg/elimina.svg") no-repeat center;
  background-size: 1.2em 1.2em;
}

.icon-burger {
  display: inline-block;
  width: 1.2em !important;
  height: 1.2em !important;
  background: url("img/svg/categorii.svg") no-repeat center;
  background-size: 1.2em 1.2em;
}

.icon-category {
  display: inline-block;
  width: 1.5em !important;
  height: 1.5em !important;
  background: url("img/svg/categorie-fier-forjat.svg") no-repeat center;
  background-size: 1.5em 1.5em;
}

.icon-help {
  display: inline-block;
  width: 1.35em !important;
  height: 1.35em !important;
  background: url("img/svg/ajutor.svg") no-repeat center;
  background-size: 1.35em 1.35em;
}

.icon-arrow-left {
  display: inline-block;
  width: 0.8em !important;
  height: 0.8em !important;
  background: url("img/svg/sageata-dreapta-neagra.svg") no-repeat center;
  background-size: 0.8em 0.8em;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.icon-arrow-right {
  display: inline-block;
  width: 0.8em !important;
  height: 0.8em !important;
  background: url("img/svg/sageata-dreapta-neagra.svg") no-repeat center;
  background-size: 0.8em 0.8em;
}

.icon-arrow-right-white {
  display: inline-block;
  width: 0.65em !important;
  height: 0.65em !important;
  background: url("img/svg/sageata-dreapta-alba.svg") no-repeat center;
  background-size: 0.65em 0.65em;
  vertical-align: middle;
}

.icon-arrow-down {
  display: inline-block;
  width: 0.8em !important;
  height: 0.8em !important;
  background: url("img/svg/sageata-dreapta-neagra.svg") no-repeat center;
  background-size: 0.8em 0.8em;
  -webkit-transform: rotate(90deg) translateX(-0.35em);
          transform: rotate(90deg) translateX(-0.35em);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.icon-star {
  display: inline-block;
  width: 0.75em !important;
  height: 1.4em !important;
  background: url("img/svg/stea.svg") no-repeat center;
  background-size: 0.75em 0.75em;
}

.icon-facebook {
  display: inline-block;
  width: 1.75em !important;
  height: 1.75em !important;
  background: url("img/svg/facebook.svg") no-repeat center;
  background-size: 1.75em 1.75em;
}

.icon-instagram {
  display: inline-block;
  width: 1.75em !important;
  height: 1.75em !important;
  background: url("img/svg/instagram.svg") no-repeat center;
  background-size: 1.75em 1.75em;
}

.icon-twitter {
  display: inline-block;
  width: 1.75em !important;
  height: 1.75em !important;
  background: url("img/svg/twitter.svg") no-repeat center;
  background-size: 1.75em 1.75em;
}

.icon-youtube {
  display: inline-block;
  width: 1.75em !important;
  height: 1.75em !important;
  background: url("img/svg/youtube.svg") no-repeat center;
  background-size: 1.75em 1.75em;
}

.icon-envelope {
  display: inline-block;
  width: 1.4em !important;
  height: 1.4em !important;
  background: url("img/svg/plic.svg") no-repeat center;
  background-size: 1.4em 1.4em;
}

.icon-info {
  display: inline-block;
  width: 1.1em !important;
  height: 1.1em !important;
  background: url("img/svg/informatie.svg") no-repeat center;
  background-size: 1.1em 1.1em;
}

.icon-refresh {
  display: inline-block;
  width: 1em !important;
  height: 1em !important;
  background: url("img/svg/reimprospatare.svg") no-repeat center;
  background-size: 1em 1em;
}

.icon-payment {
  display: inline-block;
  width: 1.75em !important;
  height: 1.75em !important;
  background: url("img/svg/plata-ramburs.svg") no-repeat center;
  background-size: 1.75em 1.75em;
}

.icon-comments {
  display: inline-block;
  width: 1.3em !important;
  height: 1.3em !important;
  background: url("img/svg/help.svg") no-repeat center;
  background-size: 1.3em 1.3em;
}

.icon-eye {
  display: inline-block;
  width: 1.5em !important;
  height: 1.5em !important;
  background: url("img/svg/ochi.svg") no-repeat center;
  background-size: 1.5em 1.5em;
}

.spacing .spacing-inside {
  padding-top: 1em;
  padding-bottom: 1em;
}

.spacing .spacing-outside {
  margin-top: 1em;
  margin-bottom: 1em;
}

.container {
  position: relative;
  padding: 1px 15px;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 2;
}

.container-small {
  max-width: 960px;
}

.container-big {
  max-width: 1440px;
}

@media (min-width: 1600px) {
  .container {
    padding: 0;
  }
}

.index {
  margin-bottom: -2em;
  /*.doua-categorii-dreapta {
        @media (max-width: 767px) {
            display: flex;
            .index-hero-category {
                width: 50%;
                max-width: 50%;
                flex-basis: 50%;
                &:first-child {
                    padding-right: 5px;
                }
                &:last-child {
                    padding-left: 5px;
                }
            }
        }
    }
    .index-hero-category {
        @media (max-width: 767px) {
            h2 {
                font-size: 93%;
                left: 1em;
            }
            &:hover {
                .index-hero-category-border {
                    opacity: 0;
                }
            }
        }
    }*/
}

.index-hero {
  margin-bottom: 2em;
}

.index-hero .primary {
  margin-left: -5px;
  margin-right: -5px;
}

@media (min-width: 960px) {
  .index-hero .primary {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.index-hero .primary .col {
  min-width: 100%;
  padding-left: 5px;
  padding-right: 5px;
}

.index-hero .primary .col.doua-categorii-dreapta {
  flex-flow: column wrap;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}



@media (min-width: 960px) {
  .index-hero .primary .col {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 640px) {
  .index-hero .primary .col:first-of-type {
    min-width: 0;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 960px) {
  .index-hero .primary .col:first-of-type {
    -ms-flex-preferred-size: 66.66%;
        flex-basis: 66.66%;
    max-width: 66.66%;
    width: 66.66%;
  }
}

@media (min-width: 1440px) {
  .index-hero .primary .col:first-of-type {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
    width: 75%;
  }
}

@media (min-width: 960px) {
  .index-hero .primary .col:first-of-type h2 {
    font-size: 200%;
    font-weight: 500;
  }
}

@media (min-width: 1170px) {
  .index-hero .primary .col:first-of-type h2 {
    font-size: 300%;
    line-height: 1.2;
    font-weight: 600;
  }
}

.index-hero .primary .col:first-of-type .icon {
  display: none;
}

@media (min-width: 640px) {
  .index-hero .primary .col:last-of-type {
    min-width: 0;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 960px) {
  .index-hero .primary .col:last-of-type {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
    width: 33.33%;
  }
}

@media (min-width: 1440px) {
  .index-hero .primary .col:last-of-type {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    width: 25%;
  }
}

@media (min-width: 640px) {
  .index-hero .primary .swiper-home .index-hero-category-background {
    min-height: calc(15em * 2 + .6em);
  }
}

@media (min-width: 960px) {
  .index-hero .primary .swiper-home .index-hero-category-background {
    min-height: calc(15em * 2 + 1em);
  }
}

.index-hero .primary .home-prev,
.index-hero .primary .home-next {
  color: white;
}

.index-hero .primary .home-prev {
  left: 40px;
}

.index-hero .primary .home-next {
  right: 40px;
}

@media (min-width: 768px) {
  .index-hero {
    margin-bottom: 3em;
  }
}

.index-hero .four {
  margin-left: -5px;
  margin-right: -5px;
}

@media (min-width: 768px) {
  .index-hero .four {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 960px) {
  .index-hero .four {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.index-hero .four .col {
  min-width: 100%;
  padding-left: 5px;
  padding-right: 5px;
}

@media (min-width: 480px) {
  .index-hero .four .col {
    min-width: 0;
  }
}

@media (min-width: 768px) {
  .index-hero .four .col {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
    width: 33.33%;
  }
}

@media (min-width: 960px) {
  .index-hero .four .col {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
    width: 33.33%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1170px) {
  .index-hero .four .col {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    width: 25%;
  }
}

.index-hero-category {
  position: relative;
  margin-top: .6em;
}

.doua-categorii-dreapta .index-hero-category {
  width: 45%;
}

@media (min-width: 960px) {
  .index-hero-category {
    margin-top: 1em;
  }
  .doua-categorii-dreapta .index-hero-category {
    width: 100%;
  }
}

.index-hero-category-background {
  display: block;
  min-height: 18em;
}

@media (min-width: 280px) {
  .index-hero-category-background {
    min-height: 15em;
  }
}

.index-hero-category h3 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 100%;
  color: white;
  position: absolute;
  bottom: 2em;
/*  left: 2em;*/
  margin-bottom: 0;
  letter-spacing: .1em;
}

.index-hero-category h3 a {
  margin-left: 2em;
}

.categorii-sub-hero .index-hero-category h3,
.doua-categorii-dreapta .index-hero-category h3 {
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 10px 5px;
  width: 100%;
}

.latest-posts {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .index-hero-category h3 {
    font-size: 110%;
    max-width: 80%;
  }
}

@media (min-width: 960px) {
  .index-hero-category h3 {
    font-size: 115%;
    max-width: 100%;
  }
}

.index-hero-category .icon {
  margin-left: .35em;
}

.index-hero-category-border {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  position: absolute;
  top: 1em;
  left: 1em;
  width: calc(100% - 2em);
  height: calc(100% - 2em);
  background: transparent;
  border: 1px solid white;
  pointer-events: none;
}

.index-hero-category:hover .index-hero-category-border {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
}

.index-hero-category:hover .icon-arrow-right-white {
  margin-left: .5em;
}

.index .product-small {
  margin-top: 0;
}

.index .swiper-popular {
  padding: 0 0 1em;
}

@media (min-width: 960px) {
  .index .swiper-popular {
    padding: 2em 1em;
  }
}

.index .swiper-popular .swiper-button-next,
.index .swiper-popular .swiper-button-prev {
  top: 30%;
  outline: 0 !important;
  -webkit-tap-highlight-color: transparent !important;
}

@media (min-width: 1170px) {
  .index .swiper-popular .swiper-button-next,
  .index .swiper-popular .swiper-button-prev {
    top: 50%;
  }
}

.index .swiper-popular .swiper-button-next:focus,
.index .swiper-popular .swiper-button-prev:focus,
.index .swiper-popular .swiper-button-next:hover,
.index .swiper-popular .swiper-button-prev:hover {
  outline: 0 !important;
  -webkit-tap-highlight-color: transparent !important;
}

.index .swiper-popular .swiper-button-next:after,
.index .swiper-popular .swiper-button-prev:after {
  color: orange;
  -webkit-tap-highlight-color: transparent !important;
}

.index-trust-elements {
  margin: 1em 0 2em;
}

@media (min-width: 768px) {
  .index-trust-elements {
    margin: 1em 0 3em;
  }
}

@media (min-width: 960px) {
  .index-trust-elements {
    margin: 1em 0 4em;
  }
}

.index-trust-elements .trust {
  text-align: center;
  margin-top: 1em;
}

@media (min-width: 768px) {
  .index-trust-elements .trust {
    margin-top: 2em;
  }
}

@media (min-width: 960px) {
  .index-trust-elements .trust {
    margin-top: 3em;
  }
}

@media (min-width: 1440px) {
  .index-trust-elements .trust {
    margin-top: 2em;
  }
}

.index-trust-elements .trust p {
  font-size: 90%;
  text-transform: capitalize;
  margin-top: 1em;
}

.index-trust-elements .trust p strong {
  font-size: 130%;
  display: block;
  line-height: 1;
}

.index-about {
  background: #cccccc;
}

.index-about img {
  position: relative;
  right: -15px;
}

@media (min-width: 768px) {
  .index-about img {
    min-width: 150%;
    right: 50px;
  }
}

@media (min-width: 960px) {
  .index-about img {
    right: 120px;
  }
}

@media (min-width: 1170px) {
  .index-about img {
    right: 200px;
  }
}

.index-about div.title,
.index-about p {
  color: white;
}

.index-about div.title {
  display: inline-block;
  position: relative;
  background: #cccccc;
  padding: 10px 20px;
  top: -2.5em;
  font-size: 1.58em;
}

@media (min-width: 768px) {
  .index-about div.title {
    top: -3em;
  }
}

@media (min-width: 1170px) {
  .index-about div.title {
    top: -2.75em;
  }
}

.index-about p {
  font-size: 100%;
  font-weight: 400;
  margin-top: -3.5em;
  margin-bottom: 1.5em;
}

@media (min-width: 768px) {
  .index-about p {
    margin-top: -3em;
    font-size: 120%;
    margin-bottom: 2em;
  }
}

.index-about .border {
  border: 1px solid white;
  padding: 1.5em;
  margin: 3em 0 1.5em;
}

@media (min-width: 640px) {
  .index-about .border {
    padding: 2em;
  }
}

@media (min-width: 768px) {
  .index-about .border {
    padding: 2.5em 4em 2.5em 2.5em;
  }
}

@media (min-width: 960px) {
  .index-about .border {
    max-width: 90%;
  }
}

@media (min-width: 1170px) {
  .index-about .border {
    max-width: 80%;
    padding: 2.5em 4em;
  }
}

@media (min-width: 768px) {
  .index-about .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 768px) {
  .index-about .col:first-of-type {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
    width: 40%;
  }
}

@media (min-width: 768px) {
  .index-about .col:last-of-type {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    max-width: 60%;
    width: 60%;
  }
}

.index-newsletter {
  padding: 2em 0;
  text-align: center;
}

@media (min-width: 960px) {
  .index-newsletter {
    padding: 4em 0;
  }
}

.index-newsletter form {
  padding-bottom: 4.5em;
}

@media (min-width: 768px) {
  .index-newsletter form {
    padding-bottom: .5em;
  }
}

@media (min-width: 960px) {
  .index-newsletter form {
    max-width: 60%;
    margin: 2.5em auto 0;
  }
}

@media (min-width: 1170px) {
  .index-newsletter form {
    max-width: 50%;
  }
}

.index-newsletter div.title {
  text-transform: uppercase;
  letter-spacing: .06 em;
  font-size: 1.58em;
}

@media (min-width: 768px) {
  .index-newsletter div.title {
    margin-bottom: 0.5em;
  }
}

.index-newsletter h3 {
  color: rgba(0, 0, 0, 0.35);
  font-size: 100%;
}

@media (min-width: 768px) {
  .index-newsletter h3 {
    font-size: 110%;
  }
}

@media (min-width: 768px) {
  .index-newsletter .input.with-icon input {
    padding-right: 10em;
  }
}

.index-newsletter .input.with-icon i {
  opacity: 0.35;
}

.index-newsletter .input.with-icon button {
  top: calc(2.25em + 2em);
  left: 0;
  right: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  width: 100%;
  font-size: 85%;
  vertical-align: baseline;
  padding: .8em 1.5em;
  background: orange;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .index-newsletter .input.with-icon button {
    top: .2em;
    right: .2em;
    left: initial;
    width: auto;
  }
}

.index .home-cat-slider {
  display: none;
}

.index .mc4wp-response {
  margin-top: 1em;
}

.index .testimonials-home {
  width: 1453px;
  max-width: 100%;
  margin: 0 auto 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
  position: relative;
}

.index .testimonials-home .th-slides .th-slide-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .index .testimonials-home .th-slides .th-slide-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.index .testimonials-home .th-slides .th-slide-inner .th-left {
  width: 49%;
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
  max-width: 49%;
  text-align: center;
}

.index .testimonials-home .th-slides .th-slide-inner .th-left img {
  display: inline-block;
}

@media (max-width: 768px) {
  .index .testimonials-home .th-slides .th-slide-inner .th-left {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.index .testimonials-home .th-slides .th-slide-inner .th-right {
  width: 49%;
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
  max-width: 49%;
  text-align: center;
}

.index .testimonials-home .th-slides .th-slide-inner .th-right .stars {
  margin-bottom: 10px;
  text-align: center;
}

.index .testimonials-home .th-slides .th-slide-inner .th-right div.title {
  font-weight: 600;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 35px;
  color: #585858;
}

.index .testimonials-home .th-slides .th-slide-inner .th-right div.title a {
  font-weight: 600;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  color: #585858;
}

.index .testimonials-home .th-slides .th-slide-inner .th-right p {
  font-weight: 500;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 35px;
  color: #585858;
}

.index .testimonials-home .th-slides .th-slide-inner .th-right .date-lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 17px;
}

.index .testimonials-home .th-slides .th-slide-inner .th-right .date-lines .line {
  -ms-flex-preferred-size: 36%;
      flex-basis: 36%;
  border-bottom: 1px solid #707070;
  height: 1px;
}

.index .testimonials-home .th-slides .th-slide-inner .th-right .date-lines .date {
  -ms-flex-preferred-size: 195px;
      flex-basis: 195px;
  max-width: 195px;
  width: 195px;
  font-weight: 500;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: #585858;
}

.index .testimonials-home .th-slides .th-slide-inner .th-right .author {
  font-weight: 600;
  text-align: center;
  font-size: 20px;
  line-height: 1.25;
  color: #585858;
}

@media (max-width: 768px) {
  .index .testimonials-home .th-slides .th-slide-inner .th-right {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.index .testimonials-home .th-nav a {
  width: 66px;
  height: 66px;
  text-align: center;
  line-height: 60px;
  border: 3px solid #B5B5B5;
  border-radius: 50%;
  display: block;
}

.index .testimonials-home .th-nav a img {
  display: inline-block;
  width: 15px;
  height: auto;
}

.index .testimonials-home .th-nav .th-prev {
  position: absolute;
  top: 50%;
  margin-top: -33px;
  left: -90px;
}

.index .testimonials-home .th-nav .th-next {
  position: absolute;
  position: absolute;
  top: 50%;
  margin-top: -33px;
  right: -90px;
}

@media (max-width: 1670px) {
  .index .testimonials-home {
    width: 1280px;
  }
}

@media (max-width: 1500px) {
  .index .testimonials-home {
    width: 1100px;
  }
}

@media (max-width: 1320px) {
  .index .testimonials-home {
    width: 900px;
  }
}

@media (max-width: 1100px) {
  .index .testimonials-home {
    width: 600px;
  }
}

@media (max-width: 768px) {
  .index .testimonials-home {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

/*@media (max-width: 767px) {
  .touch .home-cat-slider {
    display: block;
  }
}*/

.touch .home-cat-slider .index-hero-category-border {
  opacity: 0 !important;
}

/*@media (max-width: 767px) {
  .touch .doua-categorii-dreapta {
    display: none;
  }
}*/

.categorii-sub-hero {
  margin: 1em 0 4em;
}

/*@media (max-width: 767px) {
  .touch .categorii-sub-hero {
    display: none;
  }
}*/

.touch .home-cats-prev {
  color: #fff;
}

.touch .home-cats-next {
  color: #fff;
}

/*@media (max-width: 767px) {
  .touch .hero-top {
    display: none;
  }
}*/

@media (max-width: 767px) {
  .touch .index-hero-category-background {
    min-height: 13em;
  }
}

.cookie-notice-container {
  background-color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.cookie-notice-container a {
  color: #000;
}

.cookie-notice-container #cn-notice-text {
  color: #000;
  float: left;
}

@media (max-width: 767px) {
  .cookie-notice-container #cn-notice-text {
    font-size: 12px;
    float: none;
  }
  .cookie-notice-container #cn-notice-text a {
    font-size: 12px;
  }
}

.cookie-notice-container .more-info {
  color: #31A8F0;
}

.cookie-notice-container #cn-accept-cookie {
  width: 144px;
  height: 28px;
  background: orange;
  border-radius: 5px;
  line-height: 28px;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 767px) {
  .cookie-notice-container #cn-accept-cookie {
    width: 100%;
    margin-left: 0;
  }
}

.cookie-notice-container #cn-notice-buttons {
  float: right;
}

@media (max-width: 767px) {
  .cookie-notice-container #cn-notice-buttons {
    float: none;
  }
}

@media (max-width: 600px) {
  html #wpadminbar {
    display: none !important;
  }
}

.category-banner {
  display: none;
  text-align: center;
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  .category-banner {
    display: block;
  }
}

@media (min-width: 960px) {
  .category-banner {
    margin-bottom: 2em;
  }
}

@media (min-width: 1170px) {
  .category-banner {
    margin-bottom: 3em;
  }
}

@media (min-width: 1600px) {
  .category-banner {
    margin-top: 0.5em;
    margin-bottom: 3.5em;
  }
}

.category-subcategories .five {
  margin-left: -10px;
  margin-right: -10px;
}

.category-subcategories .five .col {
  min-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 480px) {
  .category-subcategories .five .col {
    min-width: 0;
  }
}

@media (min-width: 640px) {
  .category-subcategories .five .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 960px) {
  .category-subcategories .five .col {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
    width: 33.33%;
  }
}

@media (min-width: 1170px) {
  .category-subcategories .five .col {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    width: 25%;
  }
}

@media (min-width: 1600px) {
  .category-subcategories .five .col {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%;
    width: 20%;
  }
}

.category-subcategories-item {
  position: relative;
  margin-top: 1em;
}

.category-subcategories-item a {
  display: block;
  min-height: 14em;
  width: 100%;
}

@media (min-width: 960px) {
  .category-subcategories-item a {
    min-height: 12em;
  }
}

@media (min-width: 1600px) {
  .category-subcategories-item a {
    min-height: 10em;
  }
}

.category-subcategories-item h2 {
  font-size: 90%;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  padding: 0.5em;
}

@media (min-width: 1170px) {
  .category-subcategories-item h2 {
    font-size: 85%;
  }
}

.category-subcategories-item h2 a {
  min-height: auto;
}

.category-products-filter {
  margin-top: 2em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.category-products-filter select,
.category-products-filter input {
  margin-bottom: 0;
}

.category-products-filter .input {
  position: relative;
}

@media (min-width: 768px) {
  .category-products-filter .input input {
    min-width: 100%;
    padding-right: 10em;
  }
  .category-products-filter .input button {
    position: absolute;
    top: 3px;
    right: 3px;
  }
}

.category-products-filter .col:last-of-type {
  display: none;
}

@media (min-width: 768px) {
  .category-products-filter .col:last-of-type {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    max-width: 60%;
    width: 60%;
  }
}

.category .three {
  clear: both;
  margin-left: -10px;
  margin-right: -10px;
}

.category .three .col {
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .category .three .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 1170px) {
  .category .three .col {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
    width: 33.33%;
  }
}

.category .product-small {
  margin-top: 1em;
}

.category .col-aside {
  min-width: 100%;
}

@media (min-width: 768px) {
  .category .col-aside {
    min-width: 0;
  }
}

@media (min-width: 960px) {
  .category .col-aside {
    -ms-flex-preferred-size: 21% !important;
        flex-basis: 21% !important;
    max-width: 21% !important;
    width: 21% !important;
  }
}

.category-filter {
  margin: 0 0 1em;
  padding: 15px 15px 15px 15px;
  border: 1px solid #efefef;
}

.category-filter h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding-bottom: 0;
  margin-bottom: 0;
}

.category-filter h3 + ul {
  margin-top: 1em;
  padding-top: 5px;
}

.category-filter .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6px;
  padding: 0 0 1px;
  list-style: none;
}

.category-filter .flex a {
  font-size: 12px;
  padding: 1px 0;
}

.category-filter small {
  line-height: 1.65;
  opacity: 0.3;
  display: none;
}

.category-filter-more {
  font-size: 80%;
  text-decoration: underline;
  margin: 1em 0 0;
}

.category-filter-stars .col {
  padding: 0;
  min-width: 100%;
}

.category-filter-stars .col a {
  line-height: 1;
}

.category-filters {
  display: none;
}

@media (min-width: 768px) {
  .category-filters {
    display: block !important;
  }
}

.category-filters-trigger {
  display: block;
  text-align: center;
  margin-bottom: 1em;
  background-color: orange;
}

@media (min-width: 768px) {
  .category-filters-trigger {
    display: none;
  }
}

@media (min-width: 960px) {
  .category .col-content {
    -ms-flex-preferred-size: 79% !important;
        flex-basis: 79% !important;
    max-width: 79% !important;
    width: 79% !important;
  }
}

@media (min-width: 768px) {
  .category .navigation {
    background: rgba(0, 0, 0, 0.03);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.category .navigation ul {
  vertical-align: top;
  margin-top: 5px;
}

.navigation .page-numbers:not(.next):not(.prev) {
  display: none;
}

.visibility-hidden {
  visibility: hidden;
}

.display-none {
  display: none;
}

.product-cat-empty .woocommerce-info {
  margin-left: 10px;
  margin-right: 10px;
}

.archive .breadcrumbs .breadcrumbs-wrap > [property="itemListElement"]:nth-child(2) {
  display: none;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
  margin-bottom: 6px;
}

.vezi-mai-multe-filtre {
  color: orange;
  font-size: 12px;
}

.vezi-mai-multe-filtre:hover {
  text-decoration: underline;
}

.widget_layered_nav {
  padding: 15px 15px 15px 15px;
  border: 1px solid #efefef;
}

.widget_layered_nav .woocommerce-widget-layered-nav-list {
  padding-left: 12px;
}

.widget_layered_nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
  position: relative;
  padding-right: 25px;
}

.widget_layered_nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a {
  font-size: 12px;
}

.widget_layered_nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:hover {
  text-decoration: underline;
}

.widget_layered_nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen {
  border: 1px solid orange;
  padding-left: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.widget_layered_nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen a {
  width: 100%;
}

.widget_layered_nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen a:before {
  color: #585858;
  float: right;
  margin-top: 2px;
}

.widget_layered_nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item .count {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  color: #ccc;
  font-weight: 600;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background-color: orange;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background-color: orange;
  border: none;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
  background-color: orange;
  color: #fff;
  font-weight: 400;
  font-size: 11px;
  margin-top: 3px;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #585858;
}

.product {
  /* Popup cos */
}

.product-hero .big-next,
.product-hero .big-prev {
  color: white;
}

.product .swiper-product-vertical .swiper-wrapper {
  flex-direction: column;
}
.product .swiper-product-horizontal .swiper-wrapper {
  flex-direction: row;
}
.product .swiper-product-horizontal a:hover {
  cursor: pointer;
}
.product .swiper-product-vertical a:hover {
  cursor: pointer;
}

.product-hero .vertical-prev,
.product-hero .vertical-next {
  color: white;
}

.product-hero .vertical-prev:after,
.product-hero .vertical-next:after {
  font-size: 150%;
}

.product-hero .vertical-prev {
  /*-webkit-transform: rotate(90deg);
          transform: rotate(90deg);*/
  top: 50%;
  left: 0px;
  margin-top: -22px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  border-radius: 50%;
}

.product-hero .vertical-next {
  /*-webkit-transform: rotate(90deg);
          transform: rotate(90deg);*/
  top: 50%;
  right: 0px;
  margin-top: -22px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

@media (min-width: 960px) {
  .product-hero .vertical-next {
    bottom: 0;
  }
}

.product-hero .flex-parent {
  margin-left: -10px;
  margin-right: -10px;
}

@media (min-width: 960px) {
  .product-hero .flex-parent {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.product-hero .col-parent {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 960px) {
  .product-hero .col-parent {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.product-hero .col-parent:nth-of-type(1) {
  display: none;
}

@media (min-width: 640px) {
  .product-hero .col-parent:nth-of-type(1) {
/*    display: block;*/
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
    max-width: 100px;
    width: 100px;
  }
}

@media (min-width: 960px) {
  .product-hero .col-parent:nth-of-type(1) {
    display: none;
  }
}

@media (min-width: 1170px) {
  .product-hero .col-parent:nth-of-type(1) {
/*    display: block;*/
  }
}

@media (min-width: 640px) {
  .product-hero .col-parent:nth-of-type(2) {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    width: 100%;
  }
}

@media (min-width: 960px) {
  .product-hero .col-parent:nth-of-type(2) {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 1170px) {
  .product-hero .col-parent:nth-of-type(2) {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
  .product-hero.new-design .col-parent:nth-of-type(2) {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    max-width: 45%;
    width: 45%;
  }
}

@media (min-width: 960px) {
  .product-hero .col-parent:nth-of-type(3) {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 1170px) {
  .product-hero .col-parent:nth-of-type(3) {
    -ms-flex-preferred-size: calc(100% - 50% - 160px);
        flex-basis: calc(100% - 50% - 160px);
    max-width: calc(100% - 50% - 160px);
    width: calc(100% - 50% - 160px);
  }

  .product-hero.new-design .col-parent:nth-of-type(3) {
    -ms-flex-preferred-size: calc(100% - 65% - 160px);
        flex-basis: calc(100% - 65% - 160px);
    max-width: calc(100% - 65% - 160px);
    width: calc(100% - 65% - 160px);
  }
}

@media (min-width: 1170px) {

  .product-hero.new-design .col-parent:nth-of-type(4) {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 30%;
    width: 30%;
  }
}

.product-hero-details h1 {
  margin-top: 1em;
}

@media (min-width: 960px) {
  .product-hero-details h1 {
    margin-top: 0;
  }
}

@media (min-width: 1170px) {
  .product-hero-details h1 {
    line-height: 1.2;
  }
}

@media (max-width: 959px) {
  .product-hero-details h1 {
    display: none;
  }
}

.product-hero-details h2 {
  font-size: 100%;
}

.product-hero-details h2 a {
  text-decoration: underline;
  font-weight: 400;
  color: orange;
}

.extra-products {
  margin-top: 20px;
}

.new-design .addons-extra {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
}

.new-design .addons-extra .addonbox {
  flex-basis: 30%;
  max-width: 30%;
  width: 30%;
}

@media (max-width: 640px) {
  .new-design .addons-extra .addonbox {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
  }
}

.product-hero-details-stock {
  margin-bottom: .25em;
}

.product-hero-details-stock .success {
  color: black;
}

.product-hero-details-stock .error {
  color: #989898;
}

.product-hero-details-reviews {
  margin-bottom: 1em;
}

.product-hero-details-reviews .stars {
  font-size: 140%;
  margin-right: 1em;
}

.product-hero-details-reviews span {
  color: rgba(0, 0, 0, 0.5);
}

.product-hero-details-price {
  margin: 1em 0;
}

.product-hero-details-price .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.product-hero-details-price .flex .col:nth-of-type(1) {
  text-align: right;
}

.product-hero-details-price del,
.product-hero-details-price strong {
  display: block;
}

.product-hero-details-price small {
  background: orange;
  line-height: 1;
  padding: .25em .5em;
  color: white;
  font-weight: 500;
  margin-bottom: .5em;
}

.product-hero-details-price strong {
  font-size: 170%;
}

.product-hero-details-quantity {
  margin: .5em 0 1em;
}

.product-hero-details-quantity .product-no,
.product-hero-details-quantity select {
  margin: .5em 0;
}

.product-hero-details-quantity .product-no {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.product-hero-details-quantity .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-hero-details-cta {
  margin-bottom: 1em;
}
@media (max-width: 640px) {
  .product-hero-details-cta {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
}

.product-hero-details-cta a {
  display: block;
  text-align: center;
}

.product-hero-details-benefits p {
  margin-top: 1em;
  display: none;
}

.product-hero-details-benefits-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}

.product-hero-details-benefits-trigger i {
  vertical-align: bottom;
}

.product-tabs {
  margin-top: 1.5em;
}

@media (min-width: 640px) {
  .product-tabs {
    margin-top: 2em;
  }
}

@media (min-width: 960px) {
  .product-tabs {
    margin-top: 3em;
  }
}

.product-tabs-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product-tabs-trigger:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #787878;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.product-tabs-trigger li {
  margin: 0 .5em;
}

.product-tabs-trigger li a {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border: 2px solid transparent;
}

@media (max-width: 767px) {
  .product-tabs-trigger li a {
    font-size: 70%;
    padding: 0.75em .5em;
  }
}

.product-tabs-trigger li:hover a, .product-tabs-trigger li.active a {
  position: relative;
  z-index: 2;
  border-color: #787878;
}

@media (max-width: 767px) {
  .product-tabs-trigger li {
    margin: 0 0.2em;
  }
}

.product-tabs-tab {
  padding: 1.5em 1.5em 1.5em 0;
  position: relative;
  overflow: hidden;
  display: none;
}

.product-tabs-tab.active {
  display: block;
}

@media (min-width: 768px) {
  .product-tabs-tab {
    padding: 2em 2em 2em 0;
  }
}

@media (min-width: 960px) {
  .product-tabs-tab {
    padding: 2.5em 2.5em 2.5em 0;
  }
}

.product-tabs-tab-content,
.product-tabs-tab .flex {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .product-tabs-tab-content {
    max-width: 70%;
  }
}

@media (min-width: 960px) {
  .product-tabs-tab-content {
    max-width: 60%;
  }
}

@media (min-width: 1170px) {
  .product-tabs-tab-content {
    max-width: 50%;
  }
}

.product-tabs-tab .background {
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.product-tabs-tab .background:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 120%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: white;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}

.product-tabs-tab.description h1,
.product-tabs-tab.description h2,
.product-tabs-tab.description h3,
.product-tabs-tab.description h4,
.product-tabs-tab.description h5,
.product-tabs-tab.description h6,
.product-tabs-tab.description ul,
.product-tabs-tab.description blockquote,
.product-tabs-tab.description img {
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  .product-tabs-tab.description .col-parent {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 1170px) {
  .product-tabs-tab.description .col-parent:nth-of-type(1) {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    max-width: 60%;
    width: 60%;
  }
  .product-tabs-tab.description .col-parent:nth-of-type(2) {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
    width: 40%;
  }
}

.product-tabs-tab.description .product-tabs-tab-content {
  max-width: 100%;
}

.product-tabs-tab.description .front-reviews li {
  margin-top: 1em;
}

.product-tabs-tab.description .see-all {
  text-align: right;
}

@media (min-width: 768px) {
  .product-tabs-tab.comments .flex-parent {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .product-tabs-tab.comments .col-parent {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 960px) {
  .product-tabs-tab.comments .flex-parent {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 1170px) {
  .product-tabs-tab.comments .col-parent:nth-of-type(1) {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    max-width: 60%;
    width: 60%;
  }
  .product-tabs-tab.comments .col-parent:nth-of-type(2) {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
    width: 40%;
  }
  .product-tabs-tab.comments .comment {
    max-width: 85%;
  }
}

.product-tabs-tab.comments .form-review-row .stars {
  margin-left: 1em;
  vertical-align: text-bottom;
  font-size: 120%;
}

.product-recommended {
  margin-top: 1.5em;
}

@media (min-width: 640px) {
  .product-recommended {
    margin-top: 2em;
  }
}

@media (min-width: 960px) {
  .product-recommended {
    margin-top: 2.5em;
  }
}

.product-recommended .four {
  margin-left: -10px;
  margin-right: -10px;
}

.product-recommended .four .col {
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 640px) {
  .product-recommended .four .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .product-recommended .four .col {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
    width: 33.33%;
  }
  .product-recommended .four .col:last-of-type {
    display: none;
  }
}

@media (min-width: 960px) {
  .product-recommended .four .col {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    width: 25%;
  }
  .product-recommended .four .col:last-of-type {
    display: block;
  }
}

.product-recommended .product-small {
  margin-top: 1em;
}

.product .product-hero-details-quantity .woocommerce-product-rating {
  display: none;
}

.product .product-hero-details-quantity .stock {
  display: none;
}

.product #product-addons-total {
  display: none;
}

.product .cart .quantity {
  display: none;
}

.product .cart button {
  display: none;
}

.product #reply-title {
  display: none;
}

.product .stars {
  margin-bottom: 0;
}

.product .rating-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product .rating_necesar {
  color: #ff0000;
  display: none;
}

.product .campuri_necesar {
  color: #ff0000;
  display: none;
}

.product .comment-success {
  color: #228B22;
  display: none;
}

.product .comment-notes {
  display: none;
}

.product .comment-form-cookies-consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product .comment-form-cookies-consent input {
  margin-right: 10px;
}

.product .comment-content p em {
  font-style: italic;
}

.product .wc-pao-addon-container + .wc-pao-addon-container {
  margin-top: 30px;
}

.product .optiuni_necesar {
  clear: both;
  color: red !important;
  padding-top: 18px !important;
  display: none;
  font-weight: 600;
}

.product .product-hero-details-price ins {
  text-decoration: none;
}

#popup-in-cos {
  position: fixed !important;
  top: 400px !important;
  z-index: 9999 !important;
  left: 50% !important;
  margin-left: -343px !important;
  display: none;
  max-width: 610px;
  width: 100%;
  padding: 10px;
}

.product .popup-in-cos .left {
  float: left;
}

.product .popup-in-cos .row-cos {
  overflow: hidden;
}

.product .popup-in-cos .row-cos .img {
  width: 15%;
}

.product .popup-in-cos .row-cos .img img {
  max-width: 100%;
  height: auto;
}

.product .popup-in-cos .row-cos .title {
  width: 65%;
  padding-left: 20px;
  font-size: 115%;
  line-height: 1.3;
  margin-top: 26px;
}

.product .popup-in-cos .price-holder {
  float: left;
  width: 20%;
}

.product .popup-in-cos .row-cos .price {
  color: #000;
  text-align: right;
  font-size: 115%;
  font-weight: 300;
}

.product .popup-in-cos .row-cos .pret-vechi {
  text-decoration: line-through;
  text-align: right;
  font-size: 115%;
  color: gray;
  font-weight: 300;
}

.product .popup-in-cos .finalizeaza-comanda {
  font-size: 1.4rem !important;
  height: 30px !important;
  line-height: 30px !important;
  text-align: center !important;
}

.product .popup-in-cos .continua-wrap {
  text-align: right;
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.product .popup-in-cos .continua-wrap a {
  margin-right: 10px;
}

.product .popup-in-cos .continua {
  font-size: 1.4rem !important;
  height: 30px !important;
  line-height: 30px !important;
  margin-top: 0 !important;
  display: inline-block !important;
  background: #2a97b7 !important;
}

.product [href="#popup-in-cos"] {
  display: none;
}

.product .add-item-custom .status {
  padding-top: 10px;
  color: #f1462f;
}

.product .popup-in-cos .products-carousel-wrapper .slide-item .product-item {
  padding-bottom: 15px;
}

.product .popup-in-cos .products-carousel-wrapper .slide-item .product-item .text-content .price-stock {
  float: none;
  width: 100% !important;
  margin-top: 0;
}

.product .popup-in-cos .products-carousel-wrapper .slide-item .product-item .button {
  height: 26px;
  line-height: 26px;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0;
  background: transparent;
  width: auto;
}

.product .popup-in-cos .products-carousel-wrapper .slide-item .product-item .button span {
  background: #f1462f;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 3px;
  padding: 0 10px;
}

.product .popup-in-cos .products-carousel-wrapper .slide-item .product-item .button i {
  border-bottom-left-radius: 4px;
}

.product .popup-in-cos .to-three-products .section-content {
  padding: 0;
}

.product .popup-in-cos .to-three-products {
  margin-bottom: 0;
  margin-top: 20px;
  overflow: visible;
}

.product .popup-in-cos .to-three-products .products-listing .product-item a.image {
  height: 115px;
}

.product #popup-in-cos .fancybox-close-small {
  width: 13px;
  height: 13px;
  padding: 0;
  right: 35px;
  top: 30px;
  background-image: url(images/x_close2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  background-color: transparent;
}

.product #popup-in-cos .fancybox-close-small:before {
  display: none;
}

.product .popup-cos-adauga {
  display: none !important;
}

.product .popup-in-cos .products-carousel-wrapper .slide-item .product-item .button {
  display: none !important;
}

.product .popup-in-cos .products-carousel-wrapper .slide-item .product-item {
  height: auto;
  margin-bottom: 0;
}

.product .popup-in-cos .products-carousel-wrapper .slide-item .product-item .popup-cos-adauga {
  display: inline-block !important;
  position: static;
  margin: 15px 0 0 0;
}

.product .popup-in-cos .buttons-wrap {
  text-align: center;
}

.product .redirect-to-cart .status {
  display: none;
}

.product #popup-in-cos .white-section {
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 40px;
  border: 2px solid #000;
}

.product #popup-in-cos .white-section .section-headline {
  padding: 20px 45px 15px 45px;
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 110%;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(0, 0, 0, 0.75);
}

.product #popup-in-cos .white-section .section-content {
  padding: 30px 34px;
}

.product #popup-in-cos a.button {
  border-radius: 4px;
  letter-spacing: normal;
  color: #fff !important;
  padding: 0 20px;
  letter-spacing: .03em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px !important;
  height: 36px !important;
  line-height: 37px !important;
  display: inline-block !important;
  background: #000 !important;
  font-weight: 600;
}

.product #popup-in-cos .popup-content .finalizeaza-comanda {
  border-radius: 4px;
  display: inline-block;
  color: #fff !important;
  padding: 0 20px;
  background-color: orange !important;
  font-size: 16px !important;
  letter-spacing: 0.01em;
  height: 36px !important;
  line-height: 37px !important;
  text-align: center !important;
  font-weight: 600;
  margin-right: 0;
}

.product .body_overlay-popup-cos {
  z-index: 100;
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  left: 0;
  top: 0;
  display: none;
}

.product .product-hero-details-reviews:hover {
  cursor: pointer;
}

.product .cart {
  margin-bottom: 0 !important;
}

.product .product-hero .h1 {
  display: none;
  margin: 1em 0 1em 0;
  font-size: 1.424em;
  font-family: "Montserrat",Helvetica,Arial,sans-serif;
  font-weight: 500;
  color: #585858;
}

.product .product-hero.new-design .h1 {display: block;}

@media (max-width: 959px) {
  .product .product-hero .h1 {
    display: block;
  }
}

@media (max-width: 767px) {
  .product #popup-in-cos {
    margin-left: 0 !important;
    left: 0 !important;
  }
  .product .price-holder {
    float: left;
    width: 25%;
    padding-left: 25px;
  }
  .product .popup-in-cos .row-cos .img {
    width: 15%;
  }
  .product .popup-in-cos .row-cos .title {
    width: 50%;
  }
  .product #popup-in-cos a.button {
    display: block !important;
    margin-bottom: 15px !important;
    font-size: 16px !important;
  }
  .product #popup-in-cos .popup-content .finalizeaza-comanda {
    display: block !important;
    margin-bottom: 0 !important;
    font-size: 16px !important;
  }
  .product .popup-in-cos .row-cos .price {
    width: 100%;
    float: none;
    text-align: center;
  }
  .product .popup-in-cos .row-cos .pret-vechi {
    width: 100%;
    float: none;
    text-align: center;
  }
  .product #popup-in-cos .fancybox-close-small {
    top: 30px;
  }
  .product #popup-in-cos .white-section .section-headline {
    font-size: 88%;
  }
  .product .popup-in-cos .row-cos .title {
    font-size: 100%;
    margin-top: 0 !important;
  }
  .product .popup-in-cos .row-cos .pret-vechi,
  .product .popup-in-cos .row-cos .price {
    font-size: 115%;
    margin-top: 0 !important;
  }
  .product #popup-in-cos {
    z-index: 100000 !important;
    top: 50% !important;
  }
  .product #popup-in-cos a.button {
    line-height: 40px !important;
    margin-right: 0;
  }
  .product #popup-in-cos .popup-content .finalizeaza-comanda {
    line-height: 40px !important;
  }
  .product .cos-actualizat-checkout {
    font-size: 1.4rem;
  }
  .product .popup-in-cos .price-holder {
    margin-top: 0 !important;
    width: 35%;
  }
  .product #popup-in-cos .white-section {
    margin-bottom: 0;
  }
  .product #popup-in-cos .white-section .section-headline {
    padding-top: 16px;
  }
}

@media (max-width: 420px) {
  .product .popup-in-cos .row-cos .pret-vechi,
  .product .popup-in-cos .row-cos .price {
    font-size: 70%;
    margin-top: 0 !important;
  }
  .product #popup-in-cos .white-section .section-headline {
    font-size: 85%;
  }
  .product .popup-in-cos .row-cos .title {
    font-size: 91%;
  }
  .product #popup-in-cos a.button {
    font-size: 13px !important;
    line-height: 34px !important;
    font-size: 13px;
  }
  .product #popup-in-cos .popup-content .finalizeaza-comanda {
    font-size: 13px !important;
    line-height: 34px !important;
  }
}

@media (max-width: 320px) {
  .product #popup-in-cos .white-section .section-headline {
    font-size: 100%;
  }
  .product #popup-in-cos .fancybox-close-small {
    top: 31px;
  }
}

.product .instructiune-rabatare {
  display: block;
  font-weight: 500;
}

.product .instructiune-rabatare-img {
  display: block;
  width: 200px;
  max-width: 100%;
}

.product .trigger-video {
  margin-top: 40px;
}

.product .trigger-video i {
  display: inline-block;
  vertical-align: bottom;
  width: 1.5em;
  height: 1.5em;
  background: url(img/svg/play_orange.svg) no-repeat center;
  background-size: 1.5em 1.5em;
  margin-right: .7em;
}

.alti-client {
  margin-top: 20px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}

.alti-client a {
  color: orange;
  text-decoration: underline;
}

.product-hero-details .alti-client {
  text-align: left;
  margin-bottom: 10px;
}

.basket h1 {
  margin: 1em 0;
}

.basket .flex-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.basket-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.basket-total .white-shadow {
  min-width: 100%;
  margin: 2em 0;
}

@media (min-width: 480px) {
  .basket-total .white-shadow {
    min-width: 260px;
  }
}

@media (min-width: 768px) {
  .basket-total .white-shadow {
    min-width: 280px;
  }
}

.basket-total .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: rgba(0, 0, 0, 0.5);
}

.basket-total .flex:last-of-type {
  color: rgba(0, 0, 0, 0.8);
  font-size: 150%;
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.basket-total .btn {
  display: block;
  margin: 1em 0 0;
  width: 100%;
  text-align: center;
}

.basket-empty {
  max-width: 100%;
  text-align: center;
  margin: 2em auto;
}

@media (min-width: 640px) {
  .basket-empty {
    max-width: 400px;
    margin: 3em auto;
  }
}

@media (min-width: 768px) {
  .basket-empty {
    margin: 4em auto;
  }
}

@media (min-width: 960px) {
  .basket-empty {
    margin: 6em auto;
  }
}

@media (min-width: 1170px) {
  .basket-empty {
    margin: 7em auto;
  }
}

.basket .info {
  max-width: 407px;
  margin: 1em 0;
}

.basket .after-click {
  display: none;
}

.basket .basket-big-product dt {
  display: none;
}

.basket .woocommerce-cart-form .actions {
  display: none;
}

.basket .woocommerce-shipping-destination {
  display: none;
}

.checkout {
  margin: .5em 0 1.5em;
}

@media (min-width: 960px) {
  .checkout {
    margin: 2.5em 0;
  }
}

@media (min-width: 1170px) {
  .checkout {
    margin: 3em 0;
  }
}

.checkout h2 {
  margin: 1em 0;
}

@media (min-width: 768px) {
  .checkout h2 {
    margin: 1.5em 0;
  }
}

@media (min-width: 960px) {
  .checkout h2 {
    margin-top: 0;
  }
}

.checkout input[type="text"],
.checkout select,
.checkout input[type="tel"],
.checkout input[type="email"] {
  min-width: 100%;
}

.checkout .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1em;
}

.checkout .btn span {
  display: none;
}

@media (min-width: 1170px) {
  .checkout .btn span {
    display: inline;
  }
}

.checkout .basket-small-buttons {
  display: none;
}

.checkout .flex.with-aside .col-content,
.checkout .flex.with-aside .col-aside {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .checkout .flex.with-aside .col-content,
  .checkout .flex.with-aside .col-aside {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    width: 100%;
  }
}

@media (min-width: 960px) {
  .checkout .flex.with-aside .col-content {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    max-width: 60%;
    width: 60%;
  }
}

@media (min-width: 1170px) {
  .checkout .flex.with-aside .col-content {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    max-width: 65%;
    width: 65%;
    padding-right: 4em;
  }
}

.checkout .flex.with-aside .col-aside {
  margin-top: 1em;
}

.checkout .flex.with-aside .col-aside h2 {
  margin-top: 0;
}

@media (min-width: 960px) {
  .checkout .flex.with-aside .col-aside {
    margin-top: 0;
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
    width: 40%;
  }
}

@media (min-width: 1170px) {
  .checkout .flex.with-aside .col-aside {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
    max-width: 35%;
    width: 35%;
  }
}

.checkout .flex.with-aside .col-aside .checkout-payment {
  margin: 1.5em 0;
}

.checkout .flex.with-aside .col-aside .payment-options {
  margin: 0 0 1em;
}

.checkout-fields .col {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

.checkout-fields-other {
  margin: 1em 0;
}

.checkout-fields-other input {
  vertical-align: top;
}

.checkout-fields-other label {
  margin: 0;
}

.checkout-payment input,
.checkout-payment i,
.checkout-payment label {
  vertical-align: middle;
}

.checkout-payment strong,
.checkout-payment small {
  display: block;
}

.checkout-payment input {
  margin-right: 1em;
}

@media (min-width: 640px) {
  .checkout-payment input {
    margin-right: .25em;
  }
}

.checkout-payment label {
  margin: 0;
}

.checkout-payment i {
  margin: 0 .5em;
  display: none;
}

@media (min-width: 640px) {
  .checkout-payment i {
    display: inline-block;
  }
}

.checkout-payment li {
  margin: 1em 0;
}

.checkout .basket-small-product-details {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

.checkout .basket-small-product-details-pricing {
  text-align: right;
}

.checkout .basket-small-product-details .variation dt {
  display: none;
}

.checkout .basket-small-product-details .variation dd p {
  font-weight: bold;
}

.checkout [name="tip_persoana"] {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPBAMAAADJ+Ih5AAAAGFBMVEUAAABYWFhYWFhYWFhYWFhYWFhYWFhYWFjf9wCAAAAAB3RSTlMAAQwQFOLxtgzbKwAAADZJREFUCFtjYMANlI3BQIHBrRwEyhwYWNJBjBSgnBtEgAEslAJW7gYRAAmlQE1wdYAyGBnwAwByCw5WepekMgAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 96%;
}

.checkout img[alt="Plata securizata cu cardul"] {
  display: none !important;
}

.basket-small-product-details .variation dt {
  display: none;
}

.ajax-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
}

.ajax-overlay img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -32px;
  margin-left: -32px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

#woocommerce_billing_fields_ro {
  display: none;
}

#billing_country_field {
  display: none;
}

#shipping_country_field {
  display: none;
}

.woocommerce-checkout .checkout-fields label {
  display: none !important;
}

.woocommerce-checkout label {
  margin-bottom: 5px;
}

.woocommerce-checkout #ship-to-different-address label {
  display: inline-block !important;
}

.woocommerce-checkout #ship-to-different-address span {
  font-weight: 500;
}

.woocommerce-checkout .select2-container {
  display: none;
}

.woocommerce-checkout .woocommerce-account-fields label {
  display: inline-block !important;
}

.woocommerce-checkout .woocommerce form .form-row-first, .woocommerce-checkout .woocommerce form .form-row-last, .woocommerce-checkout .woocommerce-page form .form-row-first, .woocommerce-checkout .woocommerce-page form .form-row-last {
  width: 100%;
  float: none;
}

.woocommerce-checkout .wc_payment_methods label {
  padding-top: 10px;
}

.woocommerce-checkout .header-basket-dropdown-trigger .icon-caret {
  display: none;
}

.woocommerce-checkout #cui_field {
  display: none;
}

.woocommerce-checkout #j_field {
  display: none;
}

.woocommerce-checkout #billing_city, .woocommerce-checkout #shipping_city {
  text-transform: capitalize;
}

.woocommerce-checkout .din-cauza-ca {
  font-weight: 700;
  margin-bottom: 15px;
}

.woocommerce-checkout .field-info {
  display: block;
  margin: 10px 0 0px 0;
  color: #000;
  font-size: 80%;
  font-weight: 600;
}

.woocommerce-cart .header-basket-dropdown-trigger .icon-caret {
  display: none;
}

.ui-menu .ui-menu-item {
  padding: 5px 10px;
  font-size: 13px;
  text-transform: capitalize;
}

.woocommerce-info {
  border-top-color: orange;
}

.single-whitespace-box {
  display: inline-block;
  margin: 2em auto;
}

@media (min-width: 640px) {
  .single-whitespace-box {
    margin-top: 3em;
  }
}

@media (min-width: 768px) {
  .single-whitespace-box {
    margin-top: 4em;
    padding: 2em;
  }
}

@media (min-width: 960px) {
  .single-whitespace-box {
    margin-top: 5em;
    padding: 2.5em;
  }
}

@media (min-width: 1170px) {
  .single-whitespace-box {
    margin-top: 6em;
  }
}

.login,
.register,
.forgot_password,
.congratulations {
  text-align: center;
}

.login p,
.register p,
.forgot_password p,
.congratulations p {
  margin-bottom: 1.5em;
}

.login .single-whitespace-box,
.register .single-whitespace-box,
.forgot_password .single-whitespace-box,
.congratulations .single-whitespace-box {
  width: 100%;
}

@media (min-width: 480px) {
  .login .single-whitespace-box,
  .register .single-whitespace-box,
  .forgot_password .single-whitespace-box,
  .congratulations .single-whitespace-box {
    width: 80%;
  }
}

@media (min-width: 640px) {
  .login .single-whitespace-box,
  .register .single-whitespace-box,
  .forgot_password .single-whitespace-box,
  .congratulations .single-whitespace-box {
    max-width: 500px;
  }
}

.login .single-whitespace-box .flex-with-col,
.register .single-whitespace-box .flex-with-col,
.forgot_password .single-whitespace-box .flex-with-col,
.congratulations .single-whitespace-box .flex-with-col {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  margin-top: 1em;
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  .login .single-whitespace-box .flex-with-col,
  .register .single-whitespace-box .flex-with-col,
  .forgot_password .single-whitespace-box .flex-with-col,
  .congratulations .single-whitespace-box .flex-with-col {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
}

.login .single-whitespace-box .flex-with-col .col:last-child,
.register .single-whitespace-box .flex-with-col .col:last-child,
.forgot_password .single-whitespace-box .flex-with-col .col:last-child,
.congratulations .single-whitespace-box .flex-with-col .col:last-child {
  text-align: right;
}

.login .single-whitespace-box .flex-with-col label,
.login .single-whitespace-box .flex-with-col a,
.register .single-whitespace-box .flex-with-col label,
.register .single-whitespace-box .flex-with-col a,
.forgot_password .single-whitespace-box .flex-with-col label,
.forgot_password .single-whitespace-box .flex-with-col a,
.congratulations .single-whitespace-box .flex-with-col label,
.congratulations .single-whitespace-box .flex-with-col a {
  font-size: 85%;
}

.login .single-whitespace-box .flex-with-col label,
.register .single-whitespace-box .flex-with-col label,
.forgot_password .single-whitespace-box .flex-with-col label,
.congratulations .single-whitespace-box .flex-with-col label {
  display: inline;
  vertical-align: middle;
  line-height: 1;
}

.login small,
.register small,
.forgot_password small,
.congratulations small {
  display: block;
  margin: 1em 0;
  color: #585858;
}

@media (min-width: 768px) {
  .login small,
  .register small,
  .forgot_password small,
  .congratulations small {
    margin: 1.5em 0;
  }
}

.login small a,
.register small a,
.forgot_password small a,
.congratulations small a {
  text-decoration: underline;
  color: orange;
}

.login .below_modal,
.register .below_modal,
.forgot_password .below_modal,
.congratulations .below_modal {
  text-align: center;
  margin-top: 1em;
}

.login .below_modal strong,
.register .below_modal strong,
.forgot_password .below_modal strong,
.congratulations .below_modal strong {
  margin-right: 1em;
}

@media (min-width: 768px) {
  .login .single-whitespace-box {
    min-width: 450px;
  }
}

.congratulations .single-whitespace-box {
  max-width: 500px;
}

.congratulations .single-whitespace-box h1 {
  margin-bottom: 0.5em;
}

.congratulations .single-whitespace-box h2 {
  font-size: 120%;
  font-weight: 400;
  margin-bottom: 1.5em;
}

.congratulations .single-whitespace-box ul {
  text-align: center;
}

.congratulations .single-whitespace-box ul li {
  display: inline-block;
  margin-left: .5em;
}

.congratulations .single-whitespace-box ul li:first-child {
  margin-left: 0;
}

.congratulations .single-whitespace-box ul li:last-child {
  display: none;
}

@media (min-width: 768px) {
  .congratulations .single-whitespace-box ul li:last-child {
    display: inline-block;
  }
}

.congratulations .single-whitespace-box .orange {
  font-size: 65%;
}

@media (min-width: 480px) {
  .congratulations .single-whitespace-box .orange {
    font-size: 80%;
  }
}

@media (min-width: 640px) {
  .congratulations .single-whitespace-box .orange {
    font-size: 85%;
  }
}

.contact iframe {
  width: 100%;
  min-height: 320px;
}

@media (min-width: 768px) {
  .contact iframe {
    min-height: 30em;
  }
}

@media (min-width: 1170px) {
  .contact iframe {
    min-height: 100%;
  }
}

.contact .flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (min-width: 960px) {
  .contact .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 1170px) {
  .contact .flex {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.contact .flex .col {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .contact .flex .col-aside, .contact .flex .col-content {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

.contact .flex .col-aside {
  margin: 2em 0 0;
}

@media (min-width: 768px) {
  .contact .flex .col-aside {
    margin-top: 0;
  }
}

@media (min-width: 1170px) {
  .contact .flex .col-aside {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
    width: 40%;
  }
}

@media (min-width: 1170px) {
  .contact .flex .col-content {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    max-width: 60%;
    width: 60%;
    padding-left: 3em;
  }
}

.contact .flex .col-content textarea {
  min-height: 15em;
}

@media (min-width: 640px) {
  .contact .flex .col-content textarea {
    min-height: 20em;
  }
}

.contact .flex .col-content small {
  display: block;
  text-align: center;
  margin: 1em 0;
}

@media (min-width: 768px) {
  .contact .flex .col-content small {
    margin-top: 2em;
  }
}

@media (min-width: 1170px) {
  .contact .flex .col-content small {
    margin-top: 3em;
  }
}

.contact .flex .col-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  .contact .flex .col-content ul {
    margin-bottom: 2em;
  }
}

@media (min-width: 1170px) {
  .contact .flex .col-content ul {
    margin-bottom: 3em;
  }
}

.contact .flex .col-content ul li {
  margin-left: 1em;
}

.contact .flex .col-content ul li:first-child {
  margin-left: 0;
}

.contact .flex .col-content .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .contact .flex .col-content .btn {
    margin-top: 1.2em;
  }
}

@media (min-width: 1170px) {
  .contact .flex .col-content .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.contact .flex .col-content .flex .col h3:before {
  content: '';
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background: url("img/svg/telefon.svg") no-repeat center;
  background-size: 1.25em 1.25em;
  vertical-align: text-bottom;
  margin-right: .5em;
}

@media (min-width: 1170px) {
  .contact .flex .col-content .flex .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
  .contact .flex .col-content .flex .col h4 {
    color: #cccccc;
  }
}

.contact .flex .col-content .flex .col:nth-of-type(1) h3:before {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background: url("img/svg/harta.svg") no-repeat center;
  background-size: 1.25em 1.25em;
}

.contact .flex .col-content .flex .col:nth-of-type(3) h3:before {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background: url("img/svg/utilizator.svg") no-repeat center;
  background-size: 1.25em 1.25em;
}

.contact .flex .col-content .flex .col:nth-of-type(4) h3:before {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background: url("img/svg/help.svg") no-repeat center;
  background-size: 1.25em 1.25em;
}

.contact div.wpcf7-response-output {
  margin-top: 25px;
  margin-left: 0;
  margin-right: 0;
}

.blog select {
  margin: 0 0 2em;
}

.blog .three {
  margin-left: -10px;
  margin-right: -10px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.blog .three .col {
  margin-top: 1em;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 480px) {
  .blog .three .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    width: 100%;
  }
}

@media (min-width: 640px) {
  .blog .three .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .blog .three .col {
    margin-top: 1.5em;
  }
}

@media (min-width: 960px) {
  .blog .three .col {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
    width: 33.33%;
  }
}

.blog .three .col:first-of-type {
  margin-top: 0;
}

@media (min-width: 640px) {
  .blog .three .col:first-of-type {
    margin-top: 1em;
  }
}

@media (min-width: 768px) {
  .blog .three .col:first-of-type {
    margin-top: 1.5em;
  }
}

.blog .white-shadow {
  padding: 0;
  height: 100%;
}

.blog .white-shadow a:first-of-type {
  display: block;
  text-align: center;
  margin-bottom: 1.2em;
}

.blog .white-shadow a:last-of-type {
  margin-bottom: 2em;
  text-decoration: underline;
}

.blog .white-shadow h2 {
  font-size: 110%;
}

.blog .white-shadow h2,
.blog .white-shadow p,
.blog .white-shadow a:last-of-type {
  padding: 0 20px;
}

@media (min-width: 768px) {
  .blog .white-shadow h2,
  .blog .white-shadow p,
  .blog .white-shadow a:last-of-type {
    padding: 0 30px;
  }
}

.blog .white-shadow h2 a:first-of-type,
.blog .white-shadow p a:first-of-type {
  display: inline-block;
  text-align: left;
  margin-bottom: 0;
}

.blog .white-shadow h2 a:last-of-type,
.blog .white-shadow p a:last-of-type {
  padding: 0;
  text-decoration: none;
}

.blog .white-shadow p {
  color: #585858;
}

.blog .navigation .page-numbers:not(.prev):not(.next) {
  display: none;
}

.article .col-content,
.article .col-aside {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

.article-content {
  margin-bottom: 1em;
}

@media (min-width: 960px) {
  .article-content {
    padding-right: 2em;
  }
}

@media (min-width: 1170px) {
  .article-content {
    padding-right: 3em;
  }
}

@media (min-width: 1440px) {
  .article-content {
    padding-right: 4em;
  }
}

@media (min-width: 1600px) {
  .article-content {
    padding-right: 5em;
  }
}

.article-content article .article-content-img {
  display: block;
  width: 100%;
  margin-bottom: 1.5em;
}

.article-content article ul,
.article-content article ol,
.article-content article blockquote {
  margin-bottom: 1em;
}

.article-form {
  margin-top: 1em;
}

.article-comments {
  margin-top: 1em;
}

.article-no-views {
  margin: 2em 0;
  padding-bottom: 2em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-no-views li {
  display: inline-block;
  margin-left: 0.5em;
}

.article-no-views li:first-child {
  margin-left: 0;
}

.article-no-views li i {
  margin-right: .5em;
}

.article aside nav {
  margin: .5em 0 1em;
}

.article aside nav li {
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.article aside nav li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: 0;
}

.article aside nav li a {
  padding-left: 0 !important;
}

.article aside nav li a:before {
  display: none !important;
}

.article aside form {
  margin: 1em 0;
}

.article aside ul {
  margin-bottom: 1em;
}

.article aside ul strong,
.article aside ul small {
  display: block;
}

.article aside ul span span {
  color: orange;
  font-size: 90%;
}

.article aside ul:last-of-type li {
  margin-top: 1em;
}

.article aside ul:last-of-type li:first-child {
  margin-top: 0;
}

.article aside ul:last-of-type a {
  position: relative;
  padding-left: calc(1.5em + 1em);
}

.article aside ul:last-of-type a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url("img/svg/utilizator-cerc.svg") no-repeat center;
  background-size: 1.5em 1.5em;
}

.article aside .flex {
  margin-top: 1em;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1em;
}

@media (min-width: 768px) {
  .article aside .flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.article aside .flex:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border: 0;
}

.article aside .flex a:first-of-type {
  max-width: 80px;
  margin-right: 1em;
}

.article aside .flex a:last-of-type {
  margin-top: -0.15em;
  font-size: 90%;
}

.article-form button {
  margin-top: 1em;
}

.blog-empty-message {
  margin-left: 10px;
  margin-right: 10px;
}

.general-main-img {
  display: block;
  width: 100%;
  margin: 0 0 1.5em;
}

.general .col-content,
.general .col-aside {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

.general .col-content blockquote,
.general .col-content ul,
.general .col-content ol {
  margin: 1.5em 0;
}

.general aside ul {
  margin: 1em 0;
}

.general aside ul li {
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.general aside ul li:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.general aside ul li.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.general aside .flex-with-col {
  margin-top: 1em;
  margin-bottom: 1em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.general aside .flex-with-col a {
  color: #585858;
}

.general aside .flex-with-col a strong {
  font-size: 100%;
  line-height: 1.1;
  color: orange;
}

.general aside .flex-with-col a.icon {
  margin: 1em 0;
}

.general aside .flex-with-col .discuta-cu-un-consultant {
  border: 1px solid #ccc;
  padding: 5px 15px;
  margin-top: 15px;
}

.general img {
  max-width: 100%;
  height: auto;
}

.formular-returnare .status {
  color: #ff0000;
  display: none;
}

.formular-returnare label {
  margin-bottom: 5px;
}

.formular-returnare .motive {
  margin-bottom: 20px;
}

.formular_comanda select {
  margin-bottom: 20px;
}

.formular_comanda input {
  margin-bottom: 20px;
}

.formular_comanda .logo_gri {
  margin-bottom: 20px;
}

.formular_comanda input[name="website"] {
  display: none !important;
}

.formular_comanda input[type="submit"] {
  margin-bottom: 40px;
}

.formular_comanda input[type="submit"]:hover {
  background-color: #999;
  cursor: pointer !important;
}

.fancybox-close-small {
  z-index: 9999;
}

body, html {
  overflow-x: hidden;
}

.error-404 {
  text-align: center;
  width: 100vw;
  height: 100vh;
}

.error-404 h1,
.error-404 a:first-of-type {
  margin-bottom: 1em;
}

.error-404 h1 {
  text-transform: uppercase;
  margin-top: 0.5em;
}

.error-404 .btn {
  width: 100%;
  text-align: center;
  margin-top: 1em;
}

.error-404-container {
  background: white;
  padding: 2em;
  margin: 1em auto;
  max-width: 30em;
}

@media (min-width: 768px) {
  .error-404-container {
    margin: 0 auto;
  }
}

.error-404 .flex-parent {
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .error-404 .flex-parent {
    max-width: 30em;
    background: white;
  }
}

@media (min-width: 960px) {
  .error-404 .flex-parent {
    max-width: 20em;
  }
}

.error-404 .col {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

.account .col-aside,
.account .col-content {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 960px) {
  .account .col-content {
    padding-left: 3em;
  }
}

.account .flex-with-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .account .flex-with-col {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}

.account .flex-with-col .flex-with-col {
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
      -ms-flex-direction: initial;
          flex-direction: initial;
}

.account aside {
  margin-bottom: 2em;
}

.account aside li {
  margin-top: .25em;
}

.account aside li:first-child {
  margin-top: 0;
}

.account aside li.is-active a {
  background-color: rgba(0, 0, 0, 0.2);
}

.account aside li.is-active a:after {
  opacity: 1;
}

@media (min-width: 960px) {
  .account aside li:hover a {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .account aside li:hover a:after {
    opacity: 1;
  }
}

.account aside a {
  display: block;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  position: relative;
}

.account aside a:after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("img/svg/sageata-dreapta-neagra.svg") no-repeat center;
  background-size: 1em 1em;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.35;
}

.account-content {
  margin-bottom: 2em;
}

@media (min-width: 768px) {
  .account-content.smaller {
    max-width: 90%;
  }
}

@media (min-width: 960px) {
  .account-content.smaller {
    max-width: 80%;
  }
}

@media (min-width: 1440px) {
  .account-content.smaller {
    max-width: 70%;
  }
}

.account-home .account-content a {
  text-decoration: underline;
}

@media (min-width: 1440px) {
  .account-orders .account-content {
    max-width: 90%;
  }
}

.account-orders .account-content a {
  display: block;
  -webkit-transition: -webkit-box-shadow .2s;
  transition: -webkit-box-shadow .2s;
  transition: box-shadow .2s;
  transition: box-shadow .2s, -webkit-box-shadow .2s;
}

@media (min-width: 960px) {
  .account-orders .account-content a:hover {
    -webkit-box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
  }
  .account-orders .account-content a:hover .btn {
    background: orange;
    color: white;
  }
  .account-orders .account-content a:hover .btn:after {
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    background: url("img/svg/sageata-dreapta-alba.svg") no-repeat center;
    background-size: 0.8em 0.8em;
  }
}

.account-orders .account-content small,
.account-orders .account-content strong {
  display: block;
  margin-bottom: .5em;
}

.account-orders .account-content .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.account-orders .account-content .col:nth-of-type(1) {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .account-orders .account-content .col:nth-of-type(1) {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
    max-width: initial;
    width: initial;
  }
}

.account-orders .account-content .col:nth-of-type(2),
.account-orders .account-content .col:nth-of-type(3),
.account-orders .account-content .col:nth-of-type(4),
.account-orders .account-content .col:nth-of-type(5) {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
  width: 50%;
}

@media (min-width: 768px) {
  .account-orders .account-content .col:nth-of-type(2),
  .account-orders .account-content .col:nth-of-type(3),
  .account-orders .account-content .col:nth-of-type(4),
  .account-orders .account-content .col:nth-of-type(5) {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
    max-width: initial;
    width: initial;
  }
}

@media (min-width: 768px) {
  .account-orders .account-content .col:nth-of-type(4) {
    display: none;
  }
}

@media (min-width: 1170px) {
  .account-orders .account-content .col:nth-of-type(4) {
    display: block;
  }
}

.account-orders .account-content .col:last-of-type {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  margin-top: 1em;
}

@media (min-width: 768px) {
  .account-orders .account-content .col:last-of-type {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    width: 100%;
  }
}

@media (min-width: 1440px) {
  .account-orders .account-content .col:last-of-type {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
    max-width: initial;
    width: initial;
  }
}

@media (min-width: 480px) {
  .account-orders .account-content .col:last-of-type .btn {
    text-align: center;
  }
}

.account-orders .account-content li {
  margin-top: 1em;
}

.account-orders .account-content li:first-child {
  margin-top: 0;
}

@media (min-width: 768px) {
  .account-order .account-content {
    max-width: 100%;
  }
}

@media (min-width: 1170px) {
  .account-order .account-content {
    max-width: 80%;
  }
}

.account-order .account-content img {
  max-width: 60px;
}

@media (min-width: 768px) {
  .account-order .account-content img {
    max-width: 100px;
  }
}

@media (min-width: 960px) {
  .account-order .account-content img {
    max-width: 60px;
  }
}

.account-order .account-content strong {
  display: block;
  margin-bottom: 1.5em;
}

@media (min-width: 768px) {
  .account-order .account-content strong {
    margin-bottom: 2em;
  }
}

@media (min-width: 960px) {
  .account-order .account-content strong {
    margin-bottom: 3em;
  }
}

.account-order .account-content ul li {
  position: relative;
  padding: 1em 1em 1em calc(60px + 1em + 1em);
}

@media (min-width: 768px) {
  .account-order .account-content ul li {
    padding: 1em 1em 1em calc(100px + 1em + 1em);
    min-height: calc(70px /*(imagine)*/ + 1em + 1em);
  }
}

@media (min-width: 960px) {
  .account-order .account-content ul li {
    min-height: auto;
    padding: 1em;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.account-order .account-content ul li strong {
  display: block;
  margin-bottom: 0;
}

.account-order .account-content ul li:nth-child(2n) {
  background: white;
}

.account-order .account-content ul li a:first-of-type {
  position: absolute;
  top: 1em;
  left: 1em;
}

@media (min-width: 960px) {
  .account-order .account-content ul li a:first-of-type {
    position: initial;
    top: initial;
    left: initial;
  }
}

.account-order .account-content ul li a:last-of-type {
  margin-bottom: .5em;
  margin-top: -0.25em;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 960px) {
  .account-order .account-content ul li a:last-of-type {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
    margin-left: 1em;
  }
}

@media (min-width: 1170px) {
  .account-order .account-content ul li a:last-of-type strong {
    display: inline-block;
  }
}

.account-order .account-content ul li del {
  margin: 0 1em;
}

@media (min-width: 960px) {
  .account-order .account-content .account-order-total {
    margin-top: 1em;
    max-width: 50%;
  }
}

@media (min-width: 1170px) {
  .account-order .account-content .account-order-total {
    margin-top: 2em;
  }
}

.account-order .account-content .account-order-total li {
  padding: 1em;
  min-height: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.account-details .account-content small {
  display: block;
  margin: 1em 0;
}

.account-details .account-content h2:last-of-type {
  margin-top: 1em;
}

.account-details form div:last-of-type {
  margin-top: 2em;
}

.account-addresses .account-content strong {
  display: block;
  margin-bottom: 1em;
}

@media (min-width: 1170px) {
  .account-addresses .account-content strong {
    margin-bottom: 1.5em;
  }
}

.account-addresses .account-content .btn {
  margin: 2em 0 0;
}

.account-addresses .account-content .col {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .account-addresses .account-content .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

.account-addresses .account-content .col:first-of-type {
  margin-bottom: 1.5em;
}

@media (min-width: 1170px) {
  .account-addresses .account-content .col:first-of-type {
    margin-bottom: 0;
  }
}

.account-change-address .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.account-change-address h2 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 960px) {
  .account-change-address input,
  .account-change-address select {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    min-width: 100%;
  }
}

.account-change-address label {
  margin-bottom: 5px;
}

.account-change-address select {
  min-width: 100%;
}

.account-change-address .btn {
  margin-top: 1em;
}

.account .wc-item-meta li {
  padding: 0 !important;
}

.account .wc-item-meta li .wc-item-meta-label {
  display: none !important;
}

.login .status {
  color: #ff0000;
  display: none;
}

.register .status {
  color: #ff0000;
  display: none;
}

.register small.small {
  color: #ff0000;
  display: none;
}

.woocommerce-notices-wrapper {
  margin-bottom: 25px;
}

.woocommerce-notices-wrapper .woocommerce-error li {
  color: #ff0000;
}

.woocommerce-notices-wrapper:empty {
  display: none;
}

#my-menu:not(.mm-menu) {
  display: none;
}

.swiper-product-vertical {
  height: calc(70px * 5 + 10px * 4);
}

.swiper-product-vertical a {
  width: 100px;
  display: block;
}

.swiper-product-big {
  max-width: 690px;
}

.header {
  position: relative;
  z-index: 3;
}

.header-burger {
  display: block;
  width: 2em;
  margin-right: .9em;
}

@media (min-width: 480px) {
  .header-burger {
    margin-right: 2em;
  }
}

@media (min-width: 960px) {
  .header-burger {
    display: none;
  }
}

.header-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #727272;
  margin-top: 5px;
}

.header-burger span:first-child {
  margin-top: 0;
}

.header-logo {
  max-width: 5.5em;
}

@media (min-width: 640px) {
  .header-logo {
    max-width: 7em;
  }
}

@media (min-width: 768px) {
  .header-logo {
    max-width: 8em;
  }
}

.header-logo img {
  display: block;
  width: 100%;
}

.header-search.with-icon.with-button {
  margin-left: 1.5em;
}

@media (min-width: 960px) {
  .header-search.with-icon.with-button {
    margin-left: 3em;
  }
}

@media (min-width: 768px) {
  .header-search.with-icon.with-button input {
    max-width: 12em;
  }
}

@media (min-width: 1440px) {
  .header-search.with-icon.with-button input {
    min-width: 20em;
    max-width: 20em;
  }
}

.header-search.with-icon.with-button button {
  right: 2em;
}

.header-search-responsive {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
  height: 100%;
}

@media (min-width: 960px) {
  .header-search-responsive {
    display: none !important;
  }
}

.header-search-responsive .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.header-search-responsive .input {
  width: 100%;
  padding: .5em;
}

.header-search-responsive input {
  background: white;
  border: 0;
}

.header-search-responsive .icon-close {
  position: absolute;
  top: 50%;
  right: 2.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

@media (min-width: 1170px) {
  .header-phone i {
    margin-right: .75em;
  }
}

.header-phone-divider {
  display: none;
  margin: 0 1em;
  opacity: 0.3;
}

@media (min-width: 1440px) {
  .header-phone-divider {
    display: inline-block;
  }
}

.header-phone-alternative {
  display: none;
}

@media (min-width: 1440px) {
  .header-phone-alternative {
    display: inline-block;
  }
}

.header-top {
  position: relative;
  z-index: 2;
}

.header-top-flex {
  min-height: 3.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 640px) {
  .header-top-flex {
    min-height: 4em;
  }
}

.header-top-left .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-top-right {
  min-width: 8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 640px) {
  .header-top-right {
    min-width: 10em;
  }
}

@media (min-width: 768px) {
  .header-top-right {
    min-width: 20em;
  }
}

@media (min-width: 960px) {
  .header-top-right {
    min-width: 33em;
  }
}

@media (min-width: 1170px) {
  .header-top-right {
    min-width: 45em;
  }
}

.header-top nav {
  display: none;
  text-transform: capitalize;
}

.header-top nav:before, .header-top nav:after {
  content: "";
  visibility: hidden;
  height: 0;
  display: table;
}

.header-top nav:after {
  clear: both;
}

.header-top nav li {
  float: left;
  margin-left: 1em;
}

.header-top nav li:first-child {
  margin: 0;
}

@media (min-width: 960px) {
  .header-top nav {
    display: block;
    margin-right: 3em;
  }
}

@media (min-width: 1170px) {
  .header-top nav:before, .header-top nav:after {
    content: "";
    visibility: hidden;
    height: 0;
    display: table;
  }
  .header-top nav:after {
    clear: both;
  }
  .header-top nav li {
    float: left;
    margin-left: 3em;
  }
  .header-top nav li:first-child {
    margin: 0;
  }
}

.header-top nav li:last-of-type {
  display: none;
}

@media (min-width: 1170px) {
  .header-top nav li:last-of-type {
    display: block;
  }
}

.header-top nav li:last-of-type a {
  position: relative;
}

.header-top nav li:last-of-type a span {
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  background: orange;
  font-size: 70%;
  font-weight: 600;
  padding: .4em;
  border-radius: 5px;
  line-height: 1;
  -webkit-transform: translateX(100%) translateY(-50%);
          transform: translateX(100%) translateY(-50%);
}

.header-top .white-shadow h6 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  text-align: center;
}

.header-top .white-shadow button,
.header-top .white-shadow .btn {
  width: 100%;
  margin-top: 1em;
  text-align: center;
}

.header-user-dropdown, .header-basket-dropdown {
  position: relative;
}

.header-user-dropdown-login, .header-user-dropdown-register, .header-user-dropdown-links {
  display: none;
  position: absolute;
  top: 2em;
  right: -4em;
  z-index: 2;
  min-width: 18em;
}

@media (min-width: 640px) {
  .header-user-dropdown-login, .header-user-dropdown-register, .header-user-dropdown-links {
    min-width: 25em;
    right: -2em;
  }
}

@media (min-width: 768px) {
  .header-user-dropdown-login, .header-user-dropdown-register, .header-user-dropdown-links {
    min-width: 30em;
    right: 0;
  }
}

.header-user-dropdown-login form {
  text-align: center;
}

.header-user-dropdown-login label {
  display: block;
  text-align: left;
}

.header-user-dropdown-login label:last-of-type {
  margin-top: 0.5em;
}

.header-user-dropdown-login .link {
  margin-top: 1em;
}

.header-user-dropdown-register {
  text-align: center;
}

.header-user-dropdown-register.white-shadow h6 {
  border: 0;
  padding-bottom: 0;
}

.header-user-dropdown-register .icon-user {
  display: inline-block;
  width: 4em;
  height: 4em;
  background: url("img/svg/utilizator-cerc.svg") no-repeat center;
  background-size: 4em 4em;
  margin-bottom: 1em;
}

.header-user-dropdown-register p {
  font-size: 85%;
  color: #585858;
}

@media (min-width: 640px) {
  .header-user-dropdown-register p {
    width: 85%;
    margin: 0 auto 1.5em;
  }
}

.header-user-dropdown-links img {
  display: block;
  width: 150px;
  margin-right: 20px;
  opacity: .3;
}

.header-user-dropdown-links .flex {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 1em;
}

@media (min-width: 640px) {
  .header-user-dropdown-links .flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header-user-dropdown-links li {
  padding: .5em 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.header-user-dropdown-links li:first-of-type {
  border: 0;
  padding-top: 0;
}

.header-user-dropdown-links-user {
  min-width: 150px;
  max-width: 100%;
}

.header-user-dropdown-links-user a {
  font-size: 90%;
  word-break: break-all;
  margin-top: 0.5em;
}

@media (min-width: 960px) {
  .header-user-dropdown {
    margin: 0 1em;
  }
}

.header-basket-dropdown-empty, .header-basket-dropdown-full {
  display: none;
  position: absolute;
  top: 2em;
  right: -.5em;
  z-index: 2;
  min-width: 18em;
}

@media (min-width: 640px) {
  .header-basket-dropdown-empty, .header-basket-dropdown-full {
    min-width: 25em;
    right: 0;
  }
}

@media (min-width: 768px) {
  .header-basket-dropdown-empty, .header-basket-dropdown-full {
    min-width: 30em;
  }
}

.header-basket-dropdown-trigger {
  position: relative;
}

.header-basket-dropdown-trigger span {
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  background: orange;
  font-size: 70%;
  font-weight: 600;
  padding: .4em 0;
  vertical-align: middle;
  text-align: center;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  line-height: 0.8;
  -webkit-transform: translateX(50%) translateY(-50%);
          transform: translateX(50%) translateY(-50%);
}

.header-basket-dropdown-empty {
  display: none;
}

.header-basket-dropdown-empty p {
  text-align: center;
}

.header-basket-dropdown-full {
  display: none;
}

.header-basket-dropdown-full .basket-small-total {
  margin-top: 1em;
}

.header-bottom {
  position: relative;
  z-index: 1;
}

.header-bottom .flex-parent {
  height: 2.2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 640px) {
  .header-bottom .flex-parent {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header-bottom .col-left {
  display: none;
}

@media (min-width: 640px) {
  .header-bottom .col-left {
    display: block;
  }
}

@media (min-width: 640px) {
  .header-bottom .col-left .parent-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 15em;
  }
}

@media (min-width: 960px) {
  .header-bottom .col-left .parent-list {
    min-width: 25em;
    margin-left: 20px;
  }
}

@media (min-width: 960px) {
  .header-bottom .col-left .parent-list {
    min-width: 30em;
  }
}

.header-bottom .col-left .parent-list li:first-of-type {
  display: none;
}

@media (min-width: 960px) {
  .header-bottom .col-left .parent-list li:first-of-type {
    display: block;
  }
}

@media (min-width: 1071px) {
  .header-bottom .col-left .parent-list {
    min-width: 58em;
  }
}

.header-bottom .col-left .header-menu {
  display: none;
  position: absolute;
  top: 2.2em;
  left: 15px;
  width: calc(100% - 30px);
  padding: 0;
  overflow: hidden;
}

@media (min-width: 1600px) {
  .header-bottom .col-left .header-menu {
    left: 0;
    width: 100%;
  }
}

.header-bottom .col-left .header-menu-trigger {
  position: relative;
}

.header-bottom .col-left .header-menu-trigger:after {
  content: "";
  display: block;
  position: absolute;
  top: -.4em;
  left: -20px;
  width: calc(100% + 40px);
  height: 2.2em;
  background: rgba(0, 0, 0, 0.1);
}

.header-bottom .col-left .header-menu-trigger i {
  margin-right: 1em;
}

.header-bottom .col-left .header-menu-category {
  padding: 1.5em 0 1.5em 1.5em;
  height: 100%;
}

.header-bottom .col-left .header-menu-category ul {
  height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.header-bottom .col-left .header-menu-category li {
  margin-top: .75em;
}

.header-bottom .col-left .header-menu-category li:first-of-type {
  margin-top: 0;
}

.header-bottom .col-left .header-menu-category a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 90%;
  letter-spacing: .02em;
  padding-left: 40px;
  text-indent: -40px;
  display: inline-block;
  width: 100%;
  position: relative;
}

.header-bottom .col-left .header-menu-category i {
  vertical-align: middle;
  margin-right: 1em;
}

.header-bottom .col-left .header-menu-subcategory {
  display: none;
  margin-right: -15px;
  padding: 1.5em 40% 1.5em 1em;
  height: 100%;
  position: relative;
}

@media (min-width: 1440px) {
  .header-bottom .col-left .header-menu-subcategory {
    padding-left: 2em;
    padding-right: 40%;
  }
}

.header-bottom .col-left .header-menu-subcategory.active {
  display: block;
}

.header-bottom .col-left .header-menu-subcategory ul {
  margin-left: -1em;
  position: relative;
  z-index: 1;
}

.header-bottom .col-left .header-menu-subcategory ul.sub-subcategory {
  display: none;
  position: absolute;
  top: 0px;
  left: 50%;
}
.header-bottom .col-left .header-menu-subcategory ul.sub-subcategory.active {
  display: block;
}

.menu-arrow {
  border: solid #333;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: absolute;
  right: 15px;
  float: right;
  top: 50%;
  margin-top: -6px;
}

.header-bottom .col-left .header-menu-subcategory li {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  padding: .2em .2em .2em 1em;
}

.header-bottom .col-left .header-menu-subcategory li a.parent {
  display: inline-block;
  width: 45%;
  position: relative;
}

.header-bottom .col-left .header-menu-subcategory-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 35%;
  height: 100%;
  z-index: 0;
}

@media (min-width: 1440px) {
  .header-bottom .col-left .header-menu-subcategory-background {
    width: 45%;
  }
}

.header-bottom .col-left .header-menu-subcategory-background:before {
  content: "";
  display: block;
  width: 200px;
  height: 200%;
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-50%) translateY(-20%);
          transform: translateX(-50%) translateY(-20%);
  filter: blur(30px);
  -webkit-filter: blur(30px);
}

.header-bottom .col-left .header-menu .flex-with-col {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.header-bottom .col-left .header-menu .col:first-of-type {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
  width: 25%;
}

/*@media (min-width: 1170px) {
  .header-bottom .col-left .header-menu .col:first-of-type {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%;
    width: 20%;
  }
}*/

.header-bottom .col-left .header-menu .col:last-of-type {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
  width: 75%;
}

@media (min-width: 1170px) {
  .header-bottom .col-left .header-menu .col:last-of-type {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
    max-width: 80%;
    width: 80%;
  }
}

.header-bottom .col-right {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 640px) {
  .header-bottom .col-right {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
    max-width: initial;
    width: initial;
  }
}

.header-bottom .col-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-bottom .col-right .icon {
  margin-right: .5em;
}

@media (min-width: 640px) {
  .header-bottom .col-right .parent-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 13em;
  }
}

.header #menu-item-28132 {
  display: none;
}

@media (max-width: 1070px) {
  .header #menu-item-253 {
    display: none;
  }
}

.header-user-dropdown-login .header-user-dropdown-register {
  display: block;
  position: static;
  margin-top: 20px;
}

.header-user-dropdown-login .status {
  margin: 20px 0 10px 0;
  color: #ff0000;
  display: none;
}

footer {
  padding: 2em 0;
  margin-top: 2em;
}

@media (min-width: 768px) {
  footer {
    margin-top: 3em;
  }
}

@media (min-width: 960px) {
  footer {
    margin-top: 4em;
  }
}

@media (min-width: 960px) {
  footer {
    padding: 3em 0;
  }
}

footer .footer-logo {
  margin-bottom: 2em;
}

footer .footer-logo img {
  min-width: 9em;
}

footer h4 {
  margin-bottom: 1.5em;
}

footer .four .col:nth-of-type(1) {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  text-align: center;
}

@media (min-width: 480px) {
  footer .four .col:nth-of-type(1) {
    text-align: left;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

footer .four .col:nth-of-type(1) ul {
  margin-bottom: 2em;
}

@media (min-width: 480px) {
  footer .four .col:nth-of-type(1) ul {
    margin-bottom: 0;
  }
}

footer .four .col:nth-of-type(1) li {
  display: inline-block;
  margin-left: .5em;
}

@media (min-width: 960px) {
  footer .four .col:nth-of-type(1) li {
    margin-left: 0.75em;
  }
}

footer .four .col:nth-of-type(1) li:first-child {
  margin: 0;
}

footer .four .col:nth-of-type(2) {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 480px) {
  footer .four .col:nth-of-type(2) {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

footer .four .col:nth-of-type(2) h4 {
  display: none;
}

@media (min-width: 480px) {
  footer .four .col:nth-of-type(2) h4 {
    display: block;
  }
}

footer .four .col:nth-of-type(2) ul {
  text-align: center;
}

@media (min-width: 480px) {
  footer .four .col:nth-of-type(2) ul {
    text-align: left;
  }
}

footer .four .col:nth-of-type(2) ul li,
footer .four .col:nth-of-type(3) ul li,
footer .four .col:nth-of-type(4) ul li {
  float: none;
  margin-left: 0;
  margin-top: 0.35em;
}

footer .four .col:nth-of-type(2) ul li:first-child,
footer .four .col:nth-of-type(3) ul li:first-child,
footer .four .col:nth-of-type(4) ul li:first-child {
  margin: 0;
}

footer .four .col:nth-of-type(3),
footer .four .col:nth-of-type(4) {
  display: none;
}

@media (min-width: 480px) {
  footer .four .col:nth-of-type(3),
  footer .four .col:nth-of-type(4) {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
    display: block;
    margin-top: 1.5em;
  }
}

@media (min-width: 768px) {
  footer .four .col:nth-of-type(3),
  footer .four .col:nth-of-type(4) {
    margin-top: 0;
  }
}

footer .four .col:nth-of-type(4) img {
  min-width: 9em;
}

footer .four .col:nth-of-type(4) li:first-of-type {
  margin-bottom: 1em !important;
}

@media (min-width: 768px) {
  footer .four .col:nth-of-type(1),
  footer .four .col:nth-of-type(2),
  footer .four .col:nth-of-type(3),
  footer .four .col:nth-of-type(4) {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    width: 25%;
  }
}

footer .two {
  margin-top: 1.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  footer .two {
    margin-top: 3em;
  }
}

footer .two ul {
  font-size: 90%;
  text-align: center;
  margin-bottom: 1em;
}

@media (min-width: 640px) {
  footer .two ul {
    margin-bottom: 0;
    text-align: left;
    margin-left: -0.2em;
  }
}

@media (min-width: 1170px) {
  footer .two ul {
    font-size: 100%;
  }
}

footer .two li {
  display: inline-block;
  margin: .2em;
}

@media (min-width: 960px) {
  footer .two li {
    margin: 0 0.8em 0 0;
  }
  footer .two li:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1170px) {
  footer .two img {
    max-width: 30em;
  }
}

footer .two .col:nth-child(2) {
  text-align: center;
}

@media (min-width: 640px) {
  footer .two .col:nth-child(2) {
    text-align: right;
  }
}

.ui-tooltip {
  font-size: 11px !important;
  padding: 2px 5px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #333 !important;
}

.breadcrumbs {
  padding: 1em 0;
}

@media (min-width: 768px) {
  .breadcrumbs {
    padding: 1.5em 0;
  }
}

@media (min-width: 1170px) {
  .breadcrumbs {
    padding: 1.5em 0 2em;
  }
}

.breadcrumbs .breadcrumbs-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -1em;
}

.breadcrumbs .breadcrumbs-wrap span {
  margin: .25em .4em;
}

.breadcrumbs .breadcrumbs-wrap span a {
  color: #333;
}

.breadcrumbs .breadcrumbs-wrap span:after {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  right: -.4em;
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  background: url("img/svg/sageata-dreapta-neagra.svg") no-repeat center;
  background-size: 0.6em 0.6em;
}

.breadcrumbs .breadcrumbs-wrap span:last-of-type {
  pointer-events: none;
  opacity: 0.5;
}

.breadcrumbs .breadcrumbs-wrap span:last-of-type:after {
  display: none;
}

.breadcrumbs .breadcrumbs-wrap .current-item {
  display: none;
}

.single-product .breadcrumbs-wrap [property="itemListElement"]:nth-child(2) {
  display: none;
}

.single-product .breadcrumbs-wrap [property="itemListElement"]:nth-last-child(2):after {
  display: none;
}

.navigation {
  text-align: center;
  margin: 2em 0 1em;
}

@media (min-width: 768px) {
  .navigation {
    text-align: right;
  }
}

.navigation span {
  vertical-align: middle;
  margin-right: 1em;
  display: none;
}

.navigation ul {
  display: inline-block;
  overflow: hidden;
  vertical-align: text-bottom;
}

.navigation ul li {
  float: left;
  margin-right: .75em;
}

.navigation ul li:last-of-type {
  margin-right: 0;
}

.navigation span.current {
  display: inline-block !important;
  border: 1px solid #A0A0A0;
  padding: 5px 8px;
  margin-right: 0;
}

.navigation .page-numbers {
  display: inline-block !important;
  margin-left: 1em;
  margin-right: 0;
}

.navigation .next {
  position: relative;
  top: -2px;
}

.navigation .prev {
  position: relative;
  top: -2px;
}

.navigation .woocommerce-ordering,
.navigation .woocommerce-ordering22 {
  display: inline-block;
  float: none;
  vertical-align: top;
  margin: 0;
}

.navigation .woocommerce-ordering select,
.navigation .woocommerce-ordering22 select {
  margin: 0;
}

.navigation .de-rezultate {
  display: block;
  float: left;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .navigation .de-rezultate {
    display: none;
  }
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3;
  color: white;
  text-align: center;
}

.white-shadow {
  background: white;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5em;
}

@media (min-width: 960px) {
  .white-shadow {
    -webkit-box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
  }
}

.white-shadow .icon-close {
  position: absolute;
  top: .6em;
  right: .6em;
}

.popup-ce-somiera .popup-wrapper {
  position: absolute;
  top: 30%;
  width: 664px;
  max-width: 100%;
  left: 50%;
  margin-left: -332px;
  border: 1px solid #fff;
  padding: 39px 39px 45px 39px;
  background-color: #000;
  border-radius: 10px;
}

.popup-ce-somiera .popup-wrapper h5 {
  font-size: 29px;
  line-height: 1.21;
  color: #fccf7c;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 21px;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .popup-ce-somiera .popup-wrapper h5 {
    font-size: 22px;
  }
}

.popup-ce-somiera .popup-wrapper p {
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.67;
  margin: 0 0 21px 0;
}

@media (max-width: 767px) {
  .popup-ce-somiera .popup-wrapper p {
    font-size: 16px;
  }
  .popup-ce-somiera .popup-wrapper p br {
    display: none;
  }
}

.popup-ce-somiera .popup-wrapper .btn {
  width: 241px;
  display: block;
  height: 41px;
  background-color: #fccf7c;
  border-radius: 10px;
  text-transform: uppercase;
  color: #000;
  font-size: 15px;
  line-height: 41px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  padding: 0;
  margin: 0 auto;
}

.popup-ce-somiera .popup-wrapper .icon-close-svg {
  position: absolute;
  width: 13px;
  height: 13px;
  display: block;
  top: 15px;
  right: 15px;
}

.popup-ce-somiera .popup-wrapper .icon-close-svg img {
  width: 13px;
  height: 13px;
  display: block;
}

@media (max-width: 767px) {
  .popup-ce-somiera .popup-wrapper {
    width: 90%;
    left: 5%;
    margin-left: 0;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .popup-ce-somiera {
    width: 100%;
  }
}

.input {
  position: relative;
}

.input.with-icon input {
  margin-bottom: 0;
  padding-left: calc(1.5em + .7em * 2 + .5em);
}

.input.with-icon i,
.input.with-icon button {
  position: absolute;
  display: block;
  border-style: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.input.with-icon i {
  left: 1em;
}

.input.with-icon button {
  font-size: 100%;
  border-radius: 0;
  background: none;
  padding: 0;
  margin: 0;
  right: 1em;
}

.input.with-icon button i {
  left: 0;
}

.input.with-button input {
  padding-left: 0.7em;
  padding-right: calc(.7em + 1.5em + .7em);
}

.product-no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-no input {
  min-width: 1em;
  max-width: 4em;
  margin: 0;
  border-radius: 0;
  border-right: 0;
  border-left: 0;
  text-align: center;
}

.product-no-icon {
  padding: .8em;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  font-size: 90%;
  font-weight: 600;
  color: #333;
}

.product-no-icon.minus {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.product-no-icon.plus {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.label-with-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 1em 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.label-with-checkbox label {
  margin-left: 1em;
}

.stars {
  display: inline-block;
  vertical-align: text-bottom;
}

.stars li {
  display: inline-block;
  margin-left: .1em;
  line-height: 1;
}

.stars li:first-child {
  margin-left: 0;
}

.basket-small-product {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1em;
  margin-bottom: 1em;
  position: relative;
}

.basket-small-product:last-of-type {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.basket-small-product:last-of-type .icon-remove {
  top: 0;
}

.basket-small-product del {
  color: #585858;
  font-size: 90%;
}

@media (min-width: 640px) {
  .basket-small-product del {
    font-size: 95%;
  }
}

@media (min-width: 768px) {
  .basket-small-product del {
    font-size: 100%;
  }
}

.basket-small-product strong {
  display: block;
  font-size: 90%;
}

@media (min-width: 640px) {
  .basket-small-product strong {
    font-size: 95%;
  }
}

@media (min-width: 768px) {
  .basket-small-product strong {
    font-size: 100%;
  }
}

.basket-small-product img {
  display: block;
  max-width: 50px;
  margin-right: 1em;
}

@media (min-width: 768px) {
  .basket-small-product img {
    margin-right: 1.5em;
  }
}

.basket-small-product .icon-remove {
  position: absolute;
  top: 1em;
  right: 0;
  opacity: .5;
}

.basket-small-product .flex {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.basket-small-product-details {
  padding-right: 2.5em;
}

.basket-small-product-details small {
  display: block;
  margin: .5em 0 1em;
}

.basket-small-product-details button {
  width: inherit !important;
  margin-top: 0 !important;
}

.basket-small-product-details .flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 640px) {
  .basket-small-product-details .flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .basket-small-product-details .flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.basket-small-product-details-pricing {
  margin-top: 1em;
  width: 100%;
}

.basket-small-product-details-pricing strong {
  display: inline-block;
  margin-left: 1em;
}

@media (min-width: 768px) {
  .basket-small-product-details-pricing {
    margin-top: 0;
    width: auto;
  }
}

.basket-small-total .white-shadow {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}

.basket-small-total .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.basket-small-total li {
  opacity: .6;
}

.basket-small-total li:last-of-type {
  opacity: 1;
  font-size: 150%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: .5em;
  padding-top: 0.5em;
}

.basket-big-product {
  margin-top: 1em;
  position: relative;
}

.basket-big-product .icon-remove {
  position: absolute;
  top: .7em;
  right: .7em;
  opacity: 0.5;
}

@media (min-width: 960px) {
  .basket-big-product .icon-remove {
    top: 2.2em;
    right: 1.5em;
  }
}

.basket-big-product img {
  max-width: 20vw;
  height: auto;
}

@media (min-width: 640px) {
  .basket-big-product img {
    max-width: 65px;
  }
}

@media (min-width: 768px) {
  .basket-big-product img {
    position: absolute;
    top: 1.5em;
    left: 1.5em;
  }
}

@media (min-width: 960px) {
  .basket-big-product img {
    max-width: 80px;
  }
}

.basket-big-product .col {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .basket-big-product .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .basket-big-product .col:first-of-type {
    padding-left: calc(15px + 65px + 1.5em);
  }
}

@media (min-width: 960px) {
  .basket-big-product .col:first-of-type {
    min-height: 55px;
    padding-left: calc(15px + 80px + 1.5em);
  }
}

.basket-big-product .col:first-of-type .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 640px) {
  .basket-big-product .col:first-of-type .flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 768px) {
  .basket-big-product .col:first-of-type .flex {
    display: block;
  }
}

.basket-big-product .col:first-of-type .flex a {
  display: inline;
}

.basket-big-product .col:first-of-type strong {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  max-width: 65%;
  width: 65%;
}

@media (min-width: 640px) {
  .basket-big-product .col:first-of-type strong {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    max-width: 70%;
    width: 70%;
    padding-left: 1.5em;
  }
}

@media (min-width: 768px) {
  .basket-big-product .col:first-of-type strong {
    margin: -.2em 0 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
    display: block;
  }
}

.basket-big-product .col:first-of-type small {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  margin: 1em 0;
}

@media (min-width: 640px) {
  .basket-big-product .col:first-of-type small {
    -ms-flex-preferred-size: calc(100% - 70% - 65px);
        flex-basis: calc(100% - 70% - 65px);
    max-width: calc(100% - 70% - 65px);
    width: calc(100% - 70% - 65px);
    text-align: right;
  }
}

@media (min-width: 768px) {
  .basket-big-product .col:first-of-type small {
    display: block;
    margin-left: 0;
    text-align: left;
    margin-top: 0.5em;
    max-width: 100%;
    width: auto;
    margin-bottom: 0;
  }
}

@media (min-width: 640px) {
  .basket-big-product .col:last-of-type {
    margin-top: 1em;
  }
}

@media (min-width: 768px) {
  .basket-big-product .col:last-of-type {
    margin-top: 0;
  }
}

@media (min-width: 960px) {
  .basket-big-product .col:last-of-type {
    padding-right: calc(1.5em + 1.5em + 15px);
  }
}

.basket-big-product .col:last-of-type .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 480px) {
  .basket-big-product .col:last-of-type .flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .basket-big-product .col:last-of-type .flex .update {
    margin-left: 1em;
  }
}

@media (min-width: 480px) and (min-width: 480px) {
  .basket-big-product .col:last-of-type .flex .update {
    margin-left: 2em;
  }
}

@media (min-width: 480px) and (min-width: 768px) {
  .basket-big-product .col:last-of-type .flex .update {
    margin-left: .5em;
  }
}

@media (min-width: 768px) {
  .basket-big-product .col:last-of-type .flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.basket-big-product .col:last-of-type del,
.basket-big-product .col:last-of-type strong {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  text-align: right;
}

@media (min-width: 768px) {
  .basket-big-product .col:last-of-type del,
  .basket-big-product .col:last-of-type strong {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
    max-width: initial;
    width: initial;
  }
}

.basket-big-product .col:last-of-type del {
  color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .basket-big-product .col:last-of-type del {
    display: none;
  }
}

@media (min-width: 960px) {
  .basket-big-product .col:last-of-type del {
    display: block;
  }
}

.product-small {
  position: relative;
  padding: 0 0 2em;
  overflow: hidden;
  margin-top: 2.2em;
}

.product-small h2, .product-small h4 {
  font-size: 1em;
  padding: 0 .5em;
  text-align: center;
  margin: 1em 0 .35em;
}

@media (min-width: 768px) {
  .product-small h2, .product-small h4 {
    padding: 0 1em;
    height: 3em;
    overflow: hidden;
  }
}

.product-small-img {
  display: block;
}

.product-small-img img {
  width: 100%;
}

.product-small strong, .product-small del {
  display: block;
  margin-top: 0.5em;
  text-align: center;
}

.product-small del {
  margin-top: 1em;
  opacity: 0.5;
}

.product-small strong {
  font-size: 120%;
  color: #585858;
  line-height: 1;
}

.product-small-rating {
  text-align: center;
}

.product-small-rating-no {
  display: inline-block;
  font-size: 80%;
  vertical-align: middle;
  margin-left: .75em;
  margin-top: 0.1em;
}

.product-small-rating-no strong {
  display: inline-block;
  line-height: initial;
  margin-top: 0;
}

.product-small .discount {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 80px;
  background: orange;
  -webkit-transform: rotate(45deg) translate(35px, -70px);
          transform: rotate(45deg) translate(35px, -70px);
}

.product-small .discount strong {
  color: white;
  display: block;
  width: 3.5em;
  line-height: 1;
  -webkit-transform: rotate(-45deg) translateY(90px) translateX(25px);
          transform: rotate(-45deg) translateY(90px) translateX(25px);
  text-transform: uppercase;
  text-indent: 0;
  text-align: center;
  margin: 0;
}

@media (min-width: 960px) {
  .product-small .discount strong {
    -webkit-transform: rotate(-45deg) translateY(85px) translateX(20px);
            transform: rotate(-45deg) translateY(85px) translateX(20px);
  }
}

@media (max-width: 767px) {
  .product .product-hero-slider-main {
    margin-bottom: 20px;
  }
}

.product .help-chat {
  overflow: hidden;
  margin: 1em auto 0 auto;
  padding: .5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 370px;
  max-width: 100%;
}

.product .help-chat .left {
  border: 1px solid #ccc;
  position: relative;
  padding: 5px 5px 5px 25px;
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
  max-width: 55%;
  width: 55%;
}

.product .help-chat .left i {
  background: url("images/phone_blue.svg");
  background-color: #fff;
  background-size: 20px 40px;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: -9px;
  margin-top: -17px;
  padding: 5px 0;
}

.product .help-chat .left .txt-info span {
  font-size: .75em;
}

.product .help-chat .left .txt-info strong a {
  font-size: 1.125em;
}

.product .help-chat .right {
  padding: 1em;
  font-size: .875em;
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
  max-width: 45%;
  width: 45%;
}

.product .help-chat .right a {
  display: inline-block;
}

.product .help-chat .right a span {
  line-height: 1.2em;
}

.product .help-chat .right a span strong {
  font-size: 1.25em;
}

.product .trigger-360 {
  text-align: center;
  max-width: 100%;
}

.product .trigger-360 a {
  display: inline-block;
  border: 1px solid #585858;
  padding: 10px 15px 10px 15px;
}

.product .trigger-360 a img {
  margin-right: 10px;
  width: 30px;
}

@media (max-width: 767px) {
  .product .trigger-360 {
    margin-top: 25px;
  }
}

.product .trigger-video {
  text-align: center;
  max-width: 100%;
}

.product .trigger-video a {
  display: inline-block;
  border: 1px solid #585858;
  padding: 10px 15px 10px 15px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  transform: scale(1);
  animation: pulse-black 2s infinite;
}

@keyframes pulse-black {
  0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  }
  
  70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  
  100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.product .trigger-video a img {
  margin-right: 10px;
  width: 30px;
}

@media (max-width: 767px) {
  .product .trigger-video {
    margin-top: 25px;
  }
}

.product .cod-produs {
  margin-bottom: 1em;
}

.product .trigger-360-many {
  text-align: center;
}

.product .trigger-360-many .trigger-360-select {
  height: 52px;
  display: inline-block;
  border: 1px solid #585858;
  padding: 10px 15px 10px 0;
  text-indent: 60px;
  -webkit-appearance: none;
  border-radius: 0;
  display: inline-block;
  background-image: url("img/png/fa-arrows2.png");
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 30px 30px;
}

.product .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.product .montaj-video-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .product .montaj-video-boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product .video-box {
  margin-bottom: 40px;
  width: 49%;
  max-width: 49%;
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
}

.product .video-box:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .product .video-box {
    width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.product .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#modal-360 {
  display: none;
}

#modal-360 .modal-inner {
  width: 666px;
  max-width: 100%;
}

.modal-360-loop {
  display: none;
}

.modal-360-loop .modal-inner {
  width: 666px;
  max-width: 100%;
}

/*.product-hero-details-benefits p:last-child {
  text-align: center;
}*/

.product-hero-details-benefits p:last-child img {
  height: 32px;
  width: auto;
}

.comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1em;
}

.comment:first-of-type {
  margin-top: 0;
}

.comment .icon-user {
  display: inline-block;
  width: 2em;
  height: 2em;
  background: url("img/svg/utilizator-cerc.svg") no-repeat center;
  background-size: 2em 2em;
  -ms-flex-preferred-size: 2em;
      flex-basis: 2em;
  max-width: 2em;
  width: 2em;
}

@media (min-width: 960px) {
  .comment .icon-user {
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    background: url("img/svg/utilizator-cerc.svg") no-repeat center;
    background-size: 2.2em 2.2em;
    -ms-flex-preferred-size: 2.5em;
        flex-basis: 2.5em;
    max-width: 2.5em;
    width: 2.5em;
  }
}

.comment-content {
  -ms-flex-preferred-size: calc(100% - 2em - 1em);
      flex-basis: calc(100% - 2em - 1em);
  max-width: calc(100% - 2em - 1em);
  width: calc(100% - 2em - 1em);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 1em;
  padding: 1em;
}

@media (min-width: 960px) {
  .comment-content {
    -ms-flex-preferred-size: calc(100% - 2.5em - 1.75em);
        flex-basis: calc(100% - 2.5em - 1.75em);
    max-width: calc(100% - 2.5em - 1.75em);
    width: calc(100% - 2.5em - 1.75em);
    margin-left: 1.5em;
  }
}

.comment-content-title strong,
.comment-content-title small {
  font-size: 90%;
  vertical-align: middle;
}

.comment-content-title small {
  color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .comment-content-title .flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.comment-content-title .comment-reply {
  font-size: 90%;
}

@media (min-width: 960px) {
  .comment-content-title .comment-reply:hover {
    text-decoration: underline;
  }
}

.comment-content p {
  font-size: 80%;
  margin: 1.25em 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .comment-content p {
    font-size: 90%;
  }
}

@media (min-width: 960px) {
  .comment-content p {
    font-size: 100%;
    color: #585858;
  }
}

@media (min-width: 480px) {
  .comment-blog .flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.comments h5 {
  margin-top: 1em;
}

@media (min-width: 768px) {
  .comments h5 {
    margin-top: 0;
  }
}

@media (min-width: 960px) {
  .comments .navigation {
    max-width: 85%;
  }
}

.info {
  position: relative;
  background: rgba(0, 0, 0, 0.05);
  padding: 1em 1em 1em 2.8em;
  display: block;
  border-radius: 5px;
  font-size: 90%;
}

@media (min-width: 768px) {
  .info {
    font-size: 95%;
  }
}

@media (min-width: 1170px) {
  .info {
    font-size: 100%;
  }
}

.info .icon {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 1em;
}

.wc-backward {
  color: orange;
}
/*# sourceMappingURL=style.css.map */