@charset 'UTF-8';
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list
{
    background: #fff url(https://www.rame-pat.ro/wp-content/themes/ramepat-new/slick/ajax-loader.gif) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(https://www.rame-pat.ro/wp-content/themes/ramepat-new/slick/fonts/slick.eot);
    src: url(https://www.rame-pat.ro/wp-content/themes/ramepat-new/slick/fonts/slick.eot?#iefix) format('embedded-opentype'), url(https://www.rame-pat.ro/wp-content/themes/ramepat-new/slick/fonts/slick.woff) format('woff'), url(https://www.rame-pat.ro/wp-content/themes/ramepat-new/slick/fonts/slick.ttf) format('truetype'), url(https://www.rame-pat.ro/wp-content/themes/ramepat-new/slick/fonts/slick.svg#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

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

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}/* -------------------------------------------------------------------
  Microtip

  Modern, lightweight css-only tooltips
  Just 1kb minified and gzipped

  @author Ghosh
  @package Microtip

----------------------------------------------------------------------
  1. Base Styles
  2. Direction Modifiers
  3. Position Modifiers
--------------------------------------------------------------------*/


/* ------------------------------------------------
  [1] Base Styles
-------------------------------------------------*/

[aria-label][role~="tooltip"] {
  position: relative;
}

[aria-label][role~="tooltip"]::before,
[aria-label][role~="tooltip"]::after {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all var(--microtip-transition-duration, .18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  transform-origin: top;
}

[aria-label][role~="tooltip"]::before {
  background-size: 100% auto !important;
  content: "";
}

[aria-label][role~="tooltip"]::after {
  background: rgba(17, 17, 17, .9);
  border-radius: 4px;
  color: #ffffff;
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: var(--microtip-text-transform, none);
  padding: .5em 1em;
  white-space: nowrap;
  box-sizing: content-box;
}

[aria-label][role~="tooltip"]:hover::before,
[aria-label][role~="tooltip"]:hover::after,
[aria-label][role~="tooltip"]:focus::before,
[aria-label][role~="tooltip"]:focus::after {
  opacity: 1;
  pointer-events: auto;
}



/* ------------------------------------------------
  [2] Position Modifiers
-------------------------------------------------*/

[role~="tooltip"][data-microtip-position|="top"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}

[role~="tooltip"][data-microtip-position|="top"]::after {
  margin-bottom: 11px;
}

[role~="tooltip"][data-microtip-position|="top"]::before {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~="tooltip"][data-microtip-position|="top"]:hover::before {
  transform: translate3d(-50%, -5px, 0);
}

[role~="tooltip"][data-microtip-position|="top"]::after {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~="tooltip"][data-microtip-position="top"]:hover::after {
  transform: translate3d(-50%, -5px, 0);
}

/* ------------------------------------------------
  [2.1] Top Left
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="top-left"]::after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}

[role~="tooltip"][data-microtip-position="top-left"]:hover::after {
  transform: translate3d(calc(-100% + 16px), -5px, 0);
}


/* ------------------------------------------------
  [2.2] Top Right
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="top-right"]::after {
  transform: translate3d(calc(0% + -16px), 0, 0);
  bottom: 100%;
}

[role~="tooltip"][data-microtip-position="top-right"]:hover::after {
  transform: translate3d(calc(0% + -16px), -5px, 0);
}


/* ------------------------------------------------
  [2.3] Bottom
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position|="bottom"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}

[role~="tooltip"][data-microtip-position|="bottom"]::after {
  margin-top: 11px;
}

[role~="tooltip"][data-microtip-position|="bottom"]::before {
  transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}

[role~="tooltip"][data-microtip-position|="bottom"]:hover::before {
  transform: translate3d(-50%, 0, 0);
}

[role~="tooltip"][data-microtip-position|="bottom"]::after {
  transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}

[role~="tooltip"][data-microtip-position="bottom"]:hover::after {
  transform: translate3d(-50%, 0, 0);
}


/* ------------------------------------------------
  [2.4] Bottom Left
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="bottom-left"]::after {
  transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}

[role~="tooltip"][data-microtip-position="bottom-left"]:hover::after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
}


/* ------------------------------------------------
  [2.5] Bottom Right
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="bottom-right"]::after {
  transform: translate3d(calc(0% + -16px), -10px, 0);
  top: 100%;
}

[role~="tooltip"][data-microtip-position="bottom-right"]:hover::after {
  transform: translate3d(calc(0% + -16px), 0, 0);
}


/* ------------------------------------------------
  [2.6] Left
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="left"]::before,
[role~="tooltip"][data-microtip-position="left"]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0);
}

[role~="tooltip"][data-microtip-position="left"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}

[role~="tooltip"][data-microtip-position="left"]::after {
  margin-right: 11px;
}

[role~="tooltip"][data-microtip-position="left"]:hover::before,
[role~="tooltip"][data-microtip-position="left"]:hover::after {
  transform: translate3d(0, -50%, 0);
}


/* ------------------------------------------------
  [2.7] Right
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="right"]::before,
[role~="tooltip"][data-microtip-position="right"]::after {
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translate3d(-10px, -50%, 0);
}

[role~="tooltip"][data-microtip-position="right"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}

[role~="tooltip"][data-microtip-position="right"]::after {
  margin-left: 11px;
}

[role~="tooltip"][data-microtip-position="right"]:hover::before,
[role~="tooltip"][data-microtip-position="right"]:hover::after {
  transform: translate3d(0, -50%, 0);
}

/* ------------------------------------------------
  [3] Size
-------------------------------------------------*/
[role~="tooltip"][data-microtip-size="small"]::after {
  white-space: initial;
  width: 80px;
}

[role~="tooltip"][data-microtip-size="medium"]::after {
  white-space: initial;
  width: 150px;
}

[role~="tooltip"][data-microtip-size="large"]::after {
  white-space: initial;
  width: 260px;
}/* 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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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(//www.rame-pat.ro/wp-content/themes/ramepat-new/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 */#cookie-notice .cn-button {
    padding: 0 !important;
}

.woocommerce-checkout .woocommerce-info:before {
    display: none;
}

.woocommerce-checkout .woocommerce-info {
    padding-left: 1.5em;
}

.widgettitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding-bottom: 5px;
}

.widget {
    margin-bottom: 1em;
}

.header #menu-item-30394 {
    visibility: hidden;
}

.swiper-home .index-hero-category-background {
    -webkit-background-size: contain;
    background-size: contain;
    position: relative;
    z-index: 2;
}

.index-hero-category:hover .index-hero-category-border {
    border: 10px solid orange;
}

.index-hero-category-background .inner-slide-wrap {
    text-align: center;
    display: inline-block;
    position: absolute;
    bottom: 3.8em;
    left: 5.5em;
    z-index: 2;
    background: rgba(255, 255, 255, .9);
    padding: 0.5em 0.8em 0.9em 0.8em;
    border: 1px solid rgba(0, 0, 0, .05);
}

.index-hero-category-background .inner-slide-wrap .inner-slide-reduceri {
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: orange;
    font-size: 80%;
}

.index-hero-category-background .inner-slide-wrap strong {
    font-size: 3em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: orange;
}

.index-hero-category-background .inner-slide-wrap .inner-slide-text {
    max-width: 26em;
    font-size: 80%;
    display: inline-block;
    opacity: .7;
}

.index-hero-category-background .inner-slide-wrap i {
    background: #FF9800;
    padding: 0.5em 1em;
    display: inline-block;
    margin-top: 1em;
    border-radius: 5px;
    color: white;
}

.index-hero-category-border {
    z-index: 2;
}

.index-hero .primary .home-prev,
.index-hero .primary .home-next {
    color: orange;
    opacity: 0.5;
}

/*.index-hero .primary .home-prev {
    left: 30px;
}

.index-hero .primary .home-next {
    right: 30px;
}*/

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    width: 0.5em;
    height: 0.5em;
    top: -.2em;
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
    height: .2em;
}

.index-trust-elements .trust img {
    height: 60px;
    width: auto;
}

.index .testimonials-home {
    margin-bottom: 50px;
}

.detalii-comanda-somiera-online {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 85%;
    color: orange;
}

.detalii-comanda-somiera-online:hover {
    text-decoration: underline;
}

#detalii-comanda-somiera-online {
    width: 1024px !important;
    max-width: 100%;
}

.checkout-fields .woocommerce-account-fields {
    display: none;
}

.product .trigger-video .fancybox-yt-webp {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
    border: none;
    box-shadow: none;
    animation: none;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.product .trigger-video .fancybox-yt-webp img {
    width: 100%;
    height: auto;
    margin: 0;
}

.product .trigger-video-animat {
    margin-top: 0;
}

.product .trigger-video-animat span {
    display: block;
    border: none;
    padding: 10px 15px 10px 15px;
    width: 172px;
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    top: 50%;
    left: 50%;
    margin-top: -23px;
    margin-left: -86px;
}

.product .trigger-video-animat span i {
    display: inline-block;
    vertical-align: bottom;
    width: 1.5em;
    height: 1.5em;
    background: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/img/svg/play_orange.svg) no-repeat center;
    background-size: 1.5em 1.5em;
    margin-right: .7em;
}

.product .trigger-video-animat .webp {
    display: none;
}

.product .trigger-video .fancybox-yt-webp:hover img {
    display: none;
}

.product .trigger-video .fancybox-yt-webp:hover .webp {
    display: block;
}

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

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

.single-product .produs-cerculete {
    width: 1200px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.single-product .incepand-cu {
    font-weight: 700;
}

.product-small .ps-sku {
    text-align: center;
    margin-bottom: 10px;
}

.df-classic .df-branding {
    display: none !important;
}

.df-results .niciun-rezultat {
    text-align: center;
    grid-column-start: 1;
    grid-column-end: 100;
    padding-top: 10px;
}

.wc-pao-addon-cablu-conexiune label.wc-pao-addon-name {
    display: none;
}

.product .wc-pao-addon-cablu-conexiune {
    margin-top: 0 !important;
}

.flex.parent-list .mobil {
    display: none;
}

.footer-dsc img {
    min-width: 0;
    width: 130px;
}

.single-product .se-va-afisa {
    margin-top: 1em;
}

.single-product .conditii-livrare {
    display: block;
    padding: 12px .5em 12px .5em;
    border-radius: 5px;
    margin-bottom: 20px;
    background: #F0F5FD;
    border: 1px solid #D3DCEB;
    text-align: center;
    display: block;
    margin: 0;
    color: #515B69;
    font-size: 16px;
    margin-bottom: 20px;
}

.single-product .conditii-livrare a {
    text-decoration: underline;
    color: #ff9900;
}

.general .with-aside table,
.general .with-aside th,
.general .with-aside td {
    border: 1px solid #333;
}

.general .with-aside th,
.general .with-aside td {
    padding: 3px;
}

/*.product-hero-details-reviews {
    display: flex;
}*/

.single-product .diferente-somiere {
    font-weight: 700;
    display: block;
    text-align: center;
    color: #ff9900;
    text-decoration: underline;
    margin: 20px 0 20px 0;
}

.single-product .product-hero-details-stock .error {
    color: red;
    font-weight: 700;
}

.single-product .alte-dimensiuni p {
    font-size: 1.424em;
    margin: 0;
}

.single-product .alte-dimensiuni select {
    width: 400px;
    max-width: 100%;
}

.wc-pao-addon-modalitate-de-rabatare {
    display: flex;
    flex-direction: column;
}

.wc-pao-addon-modalitate-de-rabatare p:nth-child(2) {
    order: 2;
}

.wc-pao-addon-modalitate-de-rabatare p:nth-child(3) {
    order: 1;
}

.product-no input {
    -webkit-appearance: none;
}

.woocommerce div.product form.cart {
    width: 100%;
    display: block;
    margin-top: 15px;
}

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

.product .wc-pao-addon-container p {
    margin-bottom: 0;
    padding: 0;
}

.product .wc-pao-addon-container p.form-row-wide {
    padding-right: 20px;
}

.wc-pao-addon-picior-suplimentar-din-lemn-de-fag,
.wc-pao-addon-picior-suplimentar-reglabil-din-lemn-de-fag,
.wc-pao-addon-kit-telecomanda-bluetooth-adaptor,
.wc-pao-addon-limitator-saltea,
.wc-pao-addon-kit-vibromasaj,
.wc-pao-addon-usb-charger,
.wc-pao-addon-cleme-pentru-prindere-2-somiere-de-1-persoana {
    position: relative;
    padding-top: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e9e9e9;
}

/*.wc-pao-addon-limitator-saltea,
.wc-pao-addon-cleme-pentru-prindere-2-somiere-de-1-persoana {
    padding-left: 24px;
}*/

.wc-pao-addon-limitator-saltea label,
.wc-pao-addon-cleme-pentru-prindere-2-somiere-de-1-persoana label,
.wc-pao-addon-picior-suplimentar-din-lemn-de-fag label,
.wc-pao-addon-picior-suplimentar-reglabil-din-lemn-de-fag label,
.wc-pao-addon-picior-suplimentar-metalic label {
    margin-bottom: 10px;
}

.wc-pao-addon-limitator-saltea select,
.wc-pao-addon-cleme-pentru-prindere-2-somiere-de-1-persoana select,
.wc-pao-addon-picior-suplimentar-din-lemn-de-fag select,
.wc-pao-addon-picior-suplimentar-reglabil-din-lemn-de-fag select,
.wc-pao-addon-picior-suplimentar-metalic select {
    width: 300px !important;
}

.wc-pao-addon-picior-suplimentar-din-lemn-de-fag .wc-pao-addon-description,
.wc-pao-addon-picior-suplimentar-reglabil-din-lemn-de-fag .wc-pao-addon-description,
.wc-pao-addon-kit-telecomanda-bluetooth-adaptor .wc-pao-addon-description,
.wc-pao-addon-limitator-saltea .wc-pao-addon-description,
.wc-pao-addon-kit-vibromasaj .wc-pao-addon-description,
.wc-pao-addon-usb-charger .wc-pao-addon-description,
.wc-pao-addon-cleme-pentru-prindere-2-somiere-de-1-persoana .wc-pao-addon-description {
    width: 70px;
    position: absolute;
    right: 0;
    top: 6px;
}

.wc-pao-addon-limitator-saltea .wc-pao-addon-description .img,
.wc-pao-addon-cleme-pentru-prindere-2-somiere-de-1-persoana .wc-pao-addon-description .img,
.wc-pao-addon-picior-suplimentar-din-lemn-de-fag .wc-pao-addon-description .img,
.wc-pao-addon-picior-suplimentar-reglabil-din-lemn-de-fag .wc-pao-addon-description .img,
.wc-pao-addon-picior-suplimentar-metalic .wc-pao-addon-description .img {
    position: relative;
    top: 13px;
}


.wc-pao-addon-picior-suplimentar-din-lemn-de-fag .wc-pao-addon-description a,
.wc-pao-addon-picior-suplimentar-reglabil-din-lemn-de-fag .wc-pao-addon-description a,
.wc-pao-addon-kit-telecomanda-bluetooth-adaptor .wc-pao-addon-description a,
.wc-pao-addon-limitator-saltea .wc-pao-addon-description a,
.wc-pao-addon-kit-vibromasaj .wc-pao-addon-description a,
.wc-pao-addon-usb-charger .wc-pao-addon-description a,
.wc-pao-addon-cleme-pentru-prindere-2-somiere-de-1-persoana .wc-pao-addon-description a,
.wc-pao-addon-picior-suplimentar-metalic .wc-pao-addon-description a {
    -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 15%);
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%);
    height: 45px;
    background: #fff;
    line-height: 45px;
}

.wc-pao-addon-picior-suplimentar-din-lemn-de-fag .wc-pao-addon-description a img,
.wc-pao-addon-picior-suplimentar-reglabil-din-lemn-de-fag .wc-pao-addon-description a img,
.wc-pao-addon-kit-telecomanda-bluetooth-adaptor .wc-pao-addon-description a img,
.wc-pao-addon-limitator-saltea .wc-pao-addon-description a img,
.wc-pao-addon-kit-vibromasaj .wc-pao-addon-description a img,
.wc-pao-addon-usb-charger .wc-pao-addon-description a img,
.wc-pao-addon-cleme-pentru-prindere-2-somiere-de-1-persoana .wc-pao-addon-description a img,
.wc-pao-addon-picior-suplimentar-metalic .wc-pao-addon-description a img {
    height: 45px;
    width: auto;
}

.wc-pao-addon .wc-pao-addon-wrap label {
    font-size: 15px;
    line-height: 18px !important;
}

.wc-pao-addon-accesorii-optionale .wc-pao-addon-name {
    font-size: 20px;
    font-weight: 700;
}

.wc-pao-addon-accesorii-optionale .wc-pao-addon-description p {
    border: 1px solid red;
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
    font-size: 14px;
    text-align: left;
    background: #ffe6e6;
    position: relative;
    padding-left: 50px;
}

.wc-pao-addon-accesorii-optionale .wc-pao-addon-description p:before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/images/info-icon.png);
    background-repeat: no-repeat;
    background-size: 18px;
    position: absolute;
    left: 18px;
    top: 16px;
    display: inline-block;
    background-position: center;
}

.extra_text_info,
.note_addons {
    /*border: 1px solid red;background: #ffe6e6;*/
    background: #F0F5FD;
    border: 1px solid #D3DCEB;
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
    font-size: 14px;
    text-align: left;

    padding-left: 50px;
    position: relative;
    margin-bottom: 20px;
}

.extra_text_info:before,
.note_addons:before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/images/info-icon.png);
    background-repeat: no-repeat;
    background-size: 18px;
    position: absolute;
    left: 18px;
    top: 16px;
    display: inline-block;
    background-position: center;
}

.extra_text_info p {
    margin-bottom: 0;
}

.extra-addons-manual h4 {
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 6px;
}

.extra-addons-manual .addonbox label {
    width: calc(100% - 28px);
}

.extra-addons-manual .addonbox .img {
    width: 90px;
    height: 90px;
    display: inline-block;
    margin-right: 10px;
}

.extra-addons-manual .addonbox .text {
    width: calc(100% - 105px);
    display: inline-block;
    vertical-align: middle;
}

.extra-addons-manual .addonbox .text b {
    font-weight: 700;
    margin-bottom: 6px;
}

.extra-addons-manual .addonbox .text b a {
    font-weight: 700;
}

.extra-addons-manual .addonbox .text .oldpriceproduct {
    text-decoration: line-through;
    margin-right: 10px;
}

.product #popup-in-cos-double {
    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-double .white-section {
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 40px;
    border: 2px solid #000;
}

.product #popup-in-cos-double .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-double .white-section .section-content {
    padding: 30px 34px;
}

.product #popup-in-cos-double 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-double .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 #popup-in-cos-double .fancybox-close-small {
    width: 13px;
    height: 13px;
    padding: 0;
    right: 35px;
    top: 30px;
    background-image: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/images/x_close2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    background-color: transparent;
}

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


.extra-addons-manual.top .big-bottom {
    display: inline-block;
    width: 100%;
}

.extra-addons-manual.top .big-bottom .qnt {
    width: 112px;
    display: inline-block;
    vertical-align: top;
}

.extra-addons-manual.top .big-bottom .price-box {
    width: calc(100% - 118px);
    display: inline-block;
    vertical-align: top;
}

.extra-addons-manual.top .addonbox .img {
    height: 74px;
}

.extra-addons-manual.top .addonbox .text b {
    display: inline-block;
    width: 100%;
}

.extra-addons-manual.top .addonbox {
    border-bottom: 1px dashed #e5e5e5;
    margin-bottom: 16px;
}

.extra-addons-manual.top .addonbox:last-child {
    border-bottom: none;
}

.info-tooltip img {
    width: 20px;
    margin-left: 8px;
}

@media (min-width: 640px) {
    .flex.parent-list.flex-end {
        justify-content: flex-end;
    }
}

@media (max-width: 959px) {
    .index-hero-category-background .inner-slide-wrap {
        left: 0;
    }
}

@media (max-width: 767px) {
    .index-hero .swiper-button-prev {
        display: none;
    }

    .index-hero .swiper-button-next {
        display: none;
    }

    .swiper-home .index-hero-category-background .inner-slide-wrap {
        display: none;
        text-align: center !important;
        display: inline-block !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        z-index: 2 !important;
        margin-left: -140px !important;
        width: 280px !important;
        padding: 5px;
    }

    .swiper-home .index-hero-category-background strong {
        font-size: 1.2em !important;
        letter-spacing: 0;
    }

    .index-hero-category-background .inner-slide-wrap .inner-slide-reduceri {
        letter-spacing: 0;
        font-size: 12px;
    }

    .index-hero-category-background .inner-slide-wrap i {
        margin-top: 2px;
        width: 80px;
        margin-left: auto;
        margin-right: auto;
        font-size: 11px;
    }

    .index-hero-category-background .inner-slide-wrap br {
        display: none;
    }

    .index-hero-category-background .inner-slide-wrap span,
    .index-hero-category-background .inner-slide-wrap strong,
    .index-hero-category-background .inner-slide-wrap i {
        display: block;
    }

    .category-products .navigation {
        margin-top: 0;
    }

    .category-products .three+.navigation {
        margin-top: 2em;
    }

    .category-content .category-subcategories {
        display: none;
    }

    .index-trust-elements .trust h3 strong {
        font-size: 100%;
    }

    .index-trust-elements .trust img {
        height: 40px;
    }

    .index .testimonials-home {
        margin-bottom: 30px;
    }

    .df-fix-layout.menu-open {
        left: 0 !important;
    }

    .df-mobile .df-mobile__searchbox {
        max-width: 330px;
    }

    .product-hero-details p {
        text-align: left !important;
    }

    header {
        position: fixed !important;
        left: 0;
        top: 0;
        width: 100%;
        background: #fff;
    }

    #my-page {
        padding-top: 85px;
    }

    .archive.fixed-dimensiuni .breadcrumbs {
        padding: 0;
    }

    .archive.fixed-dimensiuni .category .col-aside {
        position: fixed;
        background: #fff;
        z-index: 9999;
        padding-top: 2em;
    }

    .archive.fixed-dimensiuni .category .with-aside-left>.col-content {
        margin-top: 90px;
    }

    [aria-label][role~="tooltip"]::after {
        font-size: 11px;
        padding: 12px;
    }
}

@media (max-width: 639px) {
    .flex.parent-list .mobil {
        display: block;
    }

    .flex.parent-list .desktop {
        display: none;
    }
}

@media (max-width: 479px) {
    .swiper-home .index-hero-category-background .inner-slide-wrap {
        bottom: 0 !important;
    }
}

@media (max-width: 767px) {
    .product #popup-in-cos-double {
        margin-left: 0 !important;
        left: 0 !important;
    }

    .product #popup-in-cos-double a.button {
        display: block !important;
        margin-bottom: 15px !important;
        font-size: 16px !important;
    }

    .product #popup-in-cos-double .popup-content .finalizeaza-comanda {
        display: block !important;
        margin-bottom: 0 !important;
        font-size: 16px !important;
    }

    .product #popup-in-cos-double .fancybox-close-small {
        top: 30px;
    }

    .product #popup-in-cos-double .white-section .section-headline {
        font-size: 88%;
    }

    .product .popup-in-cos-double .row-cos .title {
        font-size: 100%;
        margin-top: 0 !important;
    }

    .product #popup-in-cos-double {
        z-index: 100000 !important;
        top: 50% !important;
    }

    .product #popup-in-cos-double a.button {
        line-height: 40px !important;
        margin-right: 0;
    }

    .product #popup-in-cos-double .popup-content .finalizeaza-comanda {
        line-height: 40px !important;
    }

    .product .popup-in-cos-double .price-holder {
        margin-top: 0 !important;
        width: 35%;
    }

    .product #popup-in-cos-double .white-section {
        margin-bottom: 0;
    }

    .product #popup-in-cos-double .white-section .section-headline {
        padding-top: 16px;
    }
}

@media (max-width: 420px) {

    .product #popup-in-cos-double a.button {
        font-size: 13px !important;
        line-height: 34px !important;
        font-size: 13px;
    }

    .product #popup-in-cos-double .popup-content .finalizeaza-comanda {
        font-size: 13px !important;
        line-height: 34px !important;
    }
}

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

    .product #popup-in-cos-double .fancybox-close-small {
        top: 31px;
    }

}

.product-tabs-tab.description .product-tabs-tab-content .col-parent ul {

    list-style: disc outside none;
    display: list-item;
    margin-left: 20px;
}

.product-tabs-tab.description .product-tabs-tab-content .col-parent ul li {
    margin-bottom: 10px;
}


.header-user-dropdown-register .icon-user {
        background-size: contain;
}.page-rent .section {
    padding: 80px 0;
}

.page-rent .section-intro {
    background: #FCFCFC;
}

.page-rent .section-intro h1 {
    font-size: 32px;
    margin-bottom: 7px;
    font-weight: 400;
}

a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

b,
strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

.page-grid .row {
    font-size: 0;
    line-height: normal;
    clear: both;
    zoom: 1;
    margin-right: -15px;
    margin-left: -15px;
}

.page-grid .row:after {
    display: table;
    content: "";
    clear: both;
    display: table;
    content: "";
    visibility: hidden;
    height: 0;
}

.page-grid .row:before {
    display: table;
    content: "";
    display: table;
    content: "";
    visibility: hidden;
    height: 0;
}

.page-grid .row>[class*="col_"] {
    display: inline-block;
    vertical-align: top;
    /*float: left;*/
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
}

.page-grid .row>[class*="col_"].right {
    float: right;
}

.page-grid .row.extra-gutter {
    margin-left: -30px;
    margin-right: -30px;
}


.page-grid .row.extra-gutter>[class*="col_"] {
    padding-left: 30px;
    padding-right: 30px;
}


.page-grid .row.big-gutter {
    margin-left: -20px;
    margin-right: -20px;
}

.page-grid .row.big-gutter>[class*="col_"] {
    padding-left: 20px;
    padding-right: 20px;
}

.page-grid .row.small-gutter {
    margin-left: -5px;
    margin-right: -5px;
}

.page-grid .row.small-gutter>[class*="col_"] {
    padding-left: 5px;
    padding-right: 5px;
}

.page-grid .row.no-gutter {
    margin-left: 0;
    margin-right: 0;
}

.page-grid .row.no-gutter>[class*="col_"] {
    padding-left: 0;
    padding-right: 0;
}

.page-grid .row.flex:before,
.page-grid .row.flex:after {
    content: none;
}

@media (max-width: 1024px) {
    .page-grid .row {
        margin-right: -10px;
        margin-left: -10px;
    }

    .page-grid .row>[class*="col_"] {
        padding-left: 10px;
        padding-right: 10px;
    }

    .page-grid .row.big-gutter {
        margin-left: -15px;
        margin-right: -15px;
    }

    .page-grid .row.big-gutter>[class*="col_"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.page-grid .col_10 {
    width: 10%;
}

.page-grid .col_12 {
    width: 12.5%;
}

.page-grid .col_14 {
    width: 14.28%;
}

.page-grid .col_15 {
    width: 15%;
}

.page-grid .col_16 {
    width: 16.66%;
}

.page-grid .col_18 {
    width: 18%;
}

.page-grid .col_20 {
    width: 20%;
}

.page-grid .col_25 {
    width: 25%;
}

.page-grid .col_30 {
    width: 30%;
}

.page-grid .col_33 {
    width: 33.33%;
}

.page-grid .col_35 {
    width: 35%;
}

.page-grid .col_40 {
    width: 40%;
}

.page-grid .col_45 {
    width: 45%;
}

.page-grid .col_50 {
    width: 50%;
}

.page-grid .col_55 {
    width: 55%;
}

.page-grid .col_60 {
    width: 60%;
}

.page-grid .col_65 {
    width: 65%;
}

.page-grid .col_66 {
    width: 66.66%;
}

.page-grid .col_70 {
    width: 70%;
}

.page-grid .col_75 {
    width: 75%;
}

.page-grid .col_80 {
    width: 80%;
}

.page-grid .col_90 {
    width: 90%;
}

.page-grid .col_100 {
    width: 100%;
}

.page-grid .col_auto {
    width: auto;
}

.page-grid .col_centred {
    float: none;
    display: block !important;
    margin: 0 auto;
}

.page-grid .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.page-grid .flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

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

.page-grid .row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.page-grid .flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page-grid .justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.page-grid .justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.page-grid .align-self-center {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

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

.page-grid .justify-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.page-grid .flex-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page-grid .flex-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.page-grid .flex-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}



.page-rent .section-intro .general_content.intro p,
.page-rent .section-intro .general_content.intro li {
    font-size: 18px;
    line-height: 1.5em;
}



.page-rent .section-intro .intro {
    padding-bottom: 55px;
}

.page-rent .section-intro .intro-columns {
    max-width: 1170px;
    margin: 0 auto;
}

.page-rent .section-intro .wrap-text {
    padding-bottom: 20px;
}

.page-rent .section-intro .wrap-text h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3em;
}


.page-rent .section-intro .wrap-text p,
.page-rent .section-intro .wrap-text li {
    opacity: 0.7;
    line-height: 1.5em;
}

.btn.xxl {
    padding: 21px 18px;
}

.btn.orange:hover {
    background: #f59f00;
}

.page-rent .section-intro .wrap-buttons .btn {
    margin-right: 20px;
    vertical-align: middle;
    margin-bottom: 20px;
    margin-top: 18px;
}

.page-rent .section-intro .txt-info {
    border: 1px solid #ccc;
    position: relative;
    padding: 10px 5px 10px 25px;
    width: 200px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 4px;

}

.page-rent .section-intro .txt-info i {
    background: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/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;
}

.page-rent .section-intro .txt-info strong {
    font-size: 18px;
    color: #585858;
    font-weight: 600;
}

.page-rent .section-intro .txt-info span {
    font-size: 14px;
}

.page-rent .section-products h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 15px;
}

.page-rent .col_product {
    margin-top: 15px;
    margin-bottom: 15px;
}

.page-rent .col_product .wrap-products {
    -webkit-box-shadow: 5px 5px 30px rgb(0 0 0 / 10%);
    box-shadow: 5px 5px 30px rgb(0 0 0 / 10%);
    background: #fff;
    padding: 0 20px 30px 20px;
    height: 100%;
}

.page-rent .col_product .wrap-products .cover {
    height: 244px;
    width: 100%;
    background-size: contain;
    padding: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.page-rent .list-products {
    align-items: unset;
}

.page-rent .col_product .wrap-info {
    text-align: center;
    position: relative;
    padding-bottom: 70px;
}

.page-rent .col_product .prod-price {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.page-rent .col_product .prod-price del {
    margin-top: 1em;
    opacity: 0.5;
    text-decoration: line-through;
    display: block;
    width: 100%;
    margin-bottom: 11px;
}

.page-rent .col_product .prod-price strong {
    display: block;
    width: 100%;
    color: #585858;
    line-height: 1;
}

.page-rent .col_product .wrap-products {
    position: relative;
    overflow: hidden;
}

.page-rent .col_product .wrap-products .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);
}

.page-rent .col_product .wrap-products .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;

    -webkit-transform: rotate(-45deg) translateY(88px) translateX(20px);
    transform: rotate(-45deg) translateY(88px) translateX(20px);
}

.page-rent .col_product .wrap-products h2 a {
    font-size: 16px;
    margin-bottom: 7px;
    font-weight: 400;
    height: 50px;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 41px;
    line-height: 1.2em;
    white-space: initial;
    word-break: break-word;
    text-decoration: none;
    font-weight: 600;
}

.page-rent .section-products .general_content {
    padding-bottom: 40px;
}

.page-rent .section-video {
    background: #F7F7F7;
    position: relative;
    padding-top: 0 !important;
}

.page-rent .section-video:before {
    content: "";
    width: 100%;
    height: 400px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.page-rent .section-video .cover {
    max-width: 700px;
    height: 444px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    margin: 0 auto 60px auto;
    position: relative;
}

.page-rent .section-video .cover .play {
    background: rgb(255 255 255 / 30%);
    position: absolute;
    left: calc((100% - 200px)/2);
    top: calc((100% - 80px)/2);
    height: 80px;
    width: 200px;
    border-radius: 4px;
    padding-left: 77px;

}

.page-rent .section-video .cover .play .text {
    position: relative;
    top: 27px;
    font-weight: 500;
    color: #585858;
}

.page-rent .section-video .cover .play:before {
    content: "";
    width: 45px;
    height: 45px;
    display: inline-block;
    position: absolute;
    left: 21px;
    top: 18px;
    background-image: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/img/svg/play-button.svg);
    background-size: 45px;
    background-repeat: no-repeat;
}


.page-rent .section-video .feat-list {
    text-align: center;
}

.page-rent .section-video .feat-list .single_feat img {
    margin-bottom: 20px;
    height: 64px;
    width: auto;
}

.page-rent .section-video .feat-list .single_feat .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-rent .section-video .feat-list .single_feat .intro {
    font-size: 15px;
    line-height: 1.5em;
}

.page-rent .section-video .feat-list .single_feat .wrap_feat {
    padding: 0 20px;
}

.page-grid .section-video .wrap-buttons {
    justify-content: center;
    padding-top: 90px;
}

.page-grid .section-video .wrap-buttons .btn,
.page-grid .section-banner .wrap-buttons .btn,
.page-rent-product .section-prod-info .prod_right .wrap-buttons .btn {
    margin-right: 20px;
    vertical-align: middle;
    margin-bottom: 20px;
    margin-top: 18px;
}

.page-grid .section-video .wrap-buttons .txt-info,
.page-grid .section-banner .wrap-buttons .txt-info,
.page-grid .section-faq .txt-info,
.page-rent-product .section-prod-info .prod_right .wrap-buttons .txt-info,
.page-rent-product .hero .right_side .txt-info {
    border: 1px solid #ccc;
    position: relative;
    padding: 6px 5px 6px 25px;
    width: 200px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 4px;
}

.page-grid .section-video .wrap-buttons .txt-info i,
.page-grid .section-banner .wrap-buttons .txt-info i,
.page-grid .section-faq .txt-info i,
.page-rent-product .section-prod-info .prod_right .txt-info i,
.page-rent-product .hero .right_side .txt-info i {
    background: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/images/phone_blue.svg);
    background-color: #f7f7f7;
    background-size: 20px 40px;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 40px;
    position: absolute;
    top: 47%;
    left: -9px;
    margin-top: -17px;
    padding: 5px 0;
}

.page-grid .section-banner .wrap-buttons .txt-info i {
    background-color: #48494A;
}

.page-rent-product .hero .right_side .txt-info i {
    background-color: #fff;
}

.page-grid .section-faq .txt-info {
    padding: 12px 5px 12px 25px;
}

.page-grid .section-video .wrap-buttons .txt-info span,
.page-grid .section-banner .wrap-buttons .txt-info span,
.page-grid .section-faq .txt-info span,
.page-rent-product .hero .right_side .txt-info span {
    font-size: 14px;
}

.page-grid .section-video .wrap-buttons .txt-info strong,
.page-grid .section-banner .wrap-buttons .txt-info strong,
.page-grid .section-faq .txt-info strong,
.page-rent-product .hero .right_side .txt-info strong {
    font-size: 18px;
    color: #585858;
    font-weight: 600;
}

.page-grid .section-video .wrap-buttons .txt-info a:hover,
.page-grid .section-banner .wrap-buttons .txt-info a:hover,
.page-grid .section-faq .txt-info a:hover,
.page-rent-product .hero .right_side .txt-info a:hover {
    color: #FFA500;
}

.product-tabs-tab.description .product-tabs-tab-content .col-parent ul.front-reviews {
    list-style: none;

}

.page-grid .white-text * {
    color: #fff;
}

.page-grid .section-banner {
    position: relative;
    padding: 200px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.page-grid .section-banner:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+1,000000+100&0.8+0,0+100 */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.79) 1%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.79) 1%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.79) 1%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cc000000', endColorstr='#00000000', GradientType=1);
    /* IE6-9 */

}

.page-grid .section-banner h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3em;
}

.page-grid .section-banner p {
    line-height: 1.6em;
}

.page-grid .accordion,
.page-grid .accordion * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.page-grid .accordion {
    overflow: hidden;
    padding: 20px;

}

.page-grid .accordion-section {
    -webkit-box-shadow: 3px 0px 10px rgb(0 0 0 / 8%);
    box-shadow: 3px 0px 10px rgb(0 0 0 / 8%);
    border-radius: 8px;
    margin-bottom: 20px;
}

/*----- Section Titles -----*/
.page-grid .accordion-section-title {
    width: 100%;
    padding: 25px 70px 25px 30px;
    display: inline-block;
    transition: all linear 0.15s;
    font-size: 19px;
    font-weight: 500;
    position: relative;
}

.page-grid .accordion-section-title.active,
.page-grid .accordion-section-title:hover {
    text-decoration: none;
}

.page-grid .accordion-section-title.active {
    color: #F8A51C;
}

.page-grid .accordion-section-title:after {
    content: "+";
    width: 49px;
    height: 40px;
    display: inline-block;
    font-size: 33px;
    position: absolute;
    right: 0;
    top: 17px;
    text-align: center;
}

.page-grid .accordion-section-title.active:after {
    content: "-";
    color: #F8A51C;
    font-size: 44px;
    top: 7px;
}

.page-grid .accordion-section:last-child .accordion-section-title {
    border-bottom: none;
}

.page-grid .accordion-section-content {
    padding: 0 30px 10px 30px;
    display: none;
}

.page-grid .accordion-section-content p {
    color: #585858;
    line-height: 1.6em;
}

.page-grid .section-faq .gray-text {
    background: #F7F7F7;
    border-radius: 8px;
    padding: 40px;
    width: 91%;
}

.page-grid .section-faq .gray-text p {
    color: #585858;
    line-height: 1.6em
}

.page-grid .section-faq .gray-text p a {

    text-decoration: underline;
}

.page-grid .section-faq .wrap-link {
    padding-top: 15px;
}

.page-grid .section-faq .wrap-text h3 {
    font-size: 32px;
    margin-bottom: 33px;
    line-height: 1.3em;
}

.page-grid .section-faq .wrap-text {
    padding-top: 40px;
}

.page-rent-product .section-prod-info {
    background: #F7F7F7;
}

.page-rent-product .section-prod-info .wrap-prod {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.page-rent-product .section-prod-info .wrap-prod>img {
    padding-top: 20px;
    padding-bottom: 20px;
}

.page-rent-product .section-prod-info .wrap-features .feature img {
    width: 50px;
    padding-right: 10px;

}

.page-rent-product .section-prod-info .line {
    width: 100%;
    height: 1px;
    background: #707070;
    opacity: 0.3;
    margin-bottom: 5px;
}

.page-rent-product .section-prod-info .wrap-features .feature {
    position: relative;
}

.page-rent-product .section-prod-info .wrap-features .feature:after {
    content: "";
    width: 1px;
    height: 60px;
    position: absolute;
    top: 14px;
    right: 10px;
    background: #707070;
    opacity: 0.3;
}

.page-rent-product .section-prod-info .wrap-features .feature:nth-of-type(3n):after {
    content: none;
}

.page-rent-product .section-prod-info .wrap-features .feature .text {
    width: calc(100% - 50px);
    font-size: 16px;
    text-align: left;
    font-weight: 500;
    padding-right: 20px;

}

.page-rent-product .section-prod-info .wrap-features .flex {
    padding-bottom: 20px;
    padding-top: 20px;
}

.page-rent-product .section-prod-info .prod_right .general_content {
    padding-left: 110px;
}

.page-rent-product .section-prod-info .prod_right .general_content ul li,
.page-rent-product .section-info .text .wrap-text ul li {
    margin-bottom: 28px;
    padding-left: 38px;
    position: relative;
    font-weight: 500;
}

.page-rent-product .section-prod-info .prod_right .general_content ul li:before,
.page-rent-product .section-info .text .wrap-text ul li:before {
    content: "";
    width: 25px;
    height: 25px;
    display: inline-block;
    background-image: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/img/svg/icon-check-blue.svg);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: top center;
    position: absolute;
    left: 0;
    top: -2px;
}

.page-rent-product .section-prod-info .prod_right .general_content h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 30px;
}

.page-rent-product .section-prod-info .prod_right .wrap-buttons .btn {
    margin-right: 45px;
}

.page-rent-product .section-info .text .wrap-text {
    padding-right: 150px;
}

.page-rent-product .section-info .text .wrap-text p {
    margin-bottom: 20px;
    line-height: 1.6em;
}

.page-rent-product .section-info .text .wrap-text ul li {
    font-weight: 400;
    line-height: 1.6em;
}

.page-rent-product .section-info .text .wrap-text .info {
    background: #F0F5FD;
    border: 1px solid #D3DCEB;
    padding: 22px 30px;
    margin-bottom: 30px;
}

.page-rent-product .section-info .text .wrap-text ul li:before {
    top: 1px;
}


.page-rent-product .section-info .text .wrap-text h4 {
    font-size: 24px;
    font-weight: 400;
}

.page-rent-product .section-info .text .wrap-text h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 30px;
}


.page-rent-product .hero {
    position: relative;
    padding-bottom: 70px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

.page-rent-product .hero:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&1+1,0+100 */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 1%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 1%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 1%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);
    /* IE6-9 */
    display: inline-block;

}

.page-rent-product .hero .left_side .text * {
    color: #fff;
}

.page-rent-product .hero .left_side .text h1 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 30px;
}

.page-rent-product .hero .left_side .text li {
    line-height: 1.6em;
}

.page-rent-product .hero .left_side .text ol li {
    list-style: decimal;
    display: list-item;
    list-style-position: inside;
    opacity: 0.8;
}

.page-rent-product .hero .left_side .text ul li {
    list-style: disc inside none;
    display: list-item;
    /*margin-left: 1em;*/
    opacity: 0.8;
}

/*
.page-rent-product .hero .left_side .wrap-left-side {
    padding-right: 150px;
}
*/
.page-rent-product .hero .left_side .text p {
    line-height: 1.6em;
    opacity: 0.8;
}

.page-rent-product .hero .left_side .text,
.page-rent-product .hero .left_side .wrap_gall {
    margin-bottom: 40px;
}

.page-rent-product .hero .left_side h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
}

.page-rent-product .hero .right_side .wrap_form {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    -webkit-box-shadow: 5px 5px 30px rgb(0 0 0 / 10%);
    box-shadow: 5px 5px 30px rgb(0 0 0 / 10%);
    width: 95%;
    margin: 0 auto -150px auto;
}

.page-rent-product .hero .right_side .wrap_form h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 30px;
}

.page-rent-product .input_block select {
    background: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/img/svg/triunghi.svg) no-repeat center;
    background-size: 10px;
    background-position: 99%;
}

.page-rent-product .input_block .single-item {
    display: inline-block;
    width: 100%;
}

.page-rent-product .hero .right_side .form input[type="text"],
.page-rent-product .hero .right_side .form input[type="email"],
.page-rent-product .hero .right_side .form input[type="tel"],
.page-rent-product .hero .right_side .form textarea,
.page-rent-product .hero .right_side .form select {
    width: 100%;
}

.page-rent-product .hero .right_side .form textarea {
    height: 100px;
}

.page-rent-product .hero .right_side .form .input_block {
    margin-bottom: 24px;
}

.page-rent-product .hero .right_side .form label {
    margin-bottom: 8px;
}

.page-rent-product .hero .right_side .form label .details-fancybox {
    color: #FFA500;
    font-weight: 500;
    font-size: 14px;
    margin-left: 2px;
}

.page-rent-product .hero .right_side .form .input_block.checkbox-list {
    margin-top: 5px;
}

.page-rent-product .hero .right_side .wrap-buttons {
    justify-content: center;
}

.page-rent-product span.wpcf7-not-valid-tip {
    display: none;
}

.page-rent-product .wpcf7-not-valid {
    border: 1px solid red;
}

.page-rent-product div.wpcf7-mail-sent-ok {
    border: 2px solid #9bd19b;
    background: #9bd19b;
}

.page-rent-product .wpcf7-checkbox.wpcf7-not-valid {
    border: none;
}

.page-rent-product .wpcf7-checkbox.wpcf7-not-valid .wpcf7-list-item-label {
    color: red;
}

.page-rent-product .wpcf7-checkbox span.wpcf7-list-item {
    margin-left: 0;
    width: 100%;
}

.page-rent-product div.wpcf7-response-output {
    margin: 10px 0;
    text-align: center;
    padding: 16px;

}

.page-rent-product div.wpcf7-validation-errors,
.page-rent-product div.wpcf7-acceptance-missing {
    background: #f7e700;
}

.page-rent-product input[type="submit"] {
    background: #FFA500;
    width: 100%;
    padding: 20px;
    font-size: 16px;
}

.page-rent-product .hero .right_side .txt-info {
    padding: 10px 5px 10px 25px;
}


.page-rent-product .hero .left_side .play {
    background: #fff;
    width: 190px;
    border-radius: 4px;
    display: block;
    position: relative;
    padding: 20px 20px 20px 70px;
}

.page-rent-product .hero .left_side .play:before {
    content: "";
    width: 32px;
    height: 32px;
    display: inline-block;
    position: absolute;
    left: 21px;
    top: 14px;
    background-image: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/img/svg/play-button.svg);
    background-size: 32px;
    background-repeat: no-repeat;
}

.page-rent-product .hero .left_side .play .text {
    position: relative;
    font-weight: 500;
    color: #585858;
}

.page-rent-product .hero .left_side .slider-gall {
    margin-bottom: 8px;
}

.page-rent-product .hero .left_side .slider-gall:not(.slick-slider) {
    height: 480px;
    overflow: hidden;
}

.page-rent-product .hero .left_side .slider-gall .single_slide {
    height: 480px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    background-color: #fff;
}

.page-rent-product .hero .left_side .slider-gall-small .cover {
    height: 134px;
    background-repeat: no-repeat;
    background-position: center;
    /*background-size: cover;*/
    width: 93%;
    margin: 0 auto;
        background-size: contain;
    background-color: #fff;
}

.page-rent-product .hero .left_side .slider-gall-small:not(.slick-slider) {
    height: 104px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.page-rent-product .hero .left_side .slider-gall-small:not(.slick-slider) .single_slide {
    width: 25%;
}

.page-rent-product .hero .left_side .slick-prev,
.page-rent-product .hero .left_side .slick-next {
    width: 40px;
    height: 40px;
    background-color: rgb(0 0 0 / 30%);
    border-radius: 500px;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px;
}

.page-rent-product .hero .left_side .slick-prev {
    left: 20px;
    background-image: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/img/svg/icon-left.svg);

}

.page-rent-product .hero .left_side .slick-next {
    right: 20px;
    background-image: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/img/svg/icon-right.svg);
}

.page-rent-product .hero .left_side .slick-prev:before,
.page-rent-product .hero .left_side .slick-next:before {
    content: none;
}

.page-rent-product .hero .right_side .total {
    margin-bottom: 30px;
    /*  display: none;*/
}

.page-rent-product .hero .right_side .total span {
    width: 100%;
    display: block;
    line-height: 1em;
}

.page-rent-product .hero .right_side .total .value {
    font-size: 32px;
    color: #585858;
    font-weight: 600;
}

.fancy-prod-asc .min-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 1000px;
}

.fancy-prod-asc .images {
    width: 40%;
}

.fancy-prod-asc .text {
    width: 60%;
    padding-left: 20px;
}


.fancy-prod-asc .images .img {
    margin-bottom: 19px;
}

.fancy-prod-asc .images .img .cover {
    width: 100%;
    height: 400px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: #fff;
}

.fancy-prod-asc .images img {
    max-width: 100%;
}

.fancy-prod-asc .images .imgs {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.fancy-prod-asc .images .imgs .small-cover {
    height: 55px;
    width: 56px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: #f6f6f6;
    margin-bottom: 10px;
}

.fancy-prod-asc .images .imgs a {
    display: block;
    margin-right: 7px;
}

.fancy-prod-asc .images .imgs a:last-child {
    margin-right: 0;
}

.fancy-prod-asc .text {
    padding-left: 40px;
}


.fancy-prod-asc .text .general_content h1,
.fancy-prod-asc .text .general_content h2,
.fancy-prod-asc .text .general_content h3,
.fancy-prod-asc .text .general_content h4,
.fancy-prod-asc .text .general_content h5,
.fancy-prod-asc .text .general_content h6,
.fancy-prod-asc .text .general_content p {
    margin-bottom: 5px;
}


.fancy-prod-asc .text .general_content ol li {
    list-style: decimal;
    display: list-item;
    list-style-position: inside;
    margin-left: 1em;
}

.fancy-prod-asc .text .general_content ul li {
    list-style: disc inside none;
    display: list-item;
    margin-left: 1em;
}

.fancy-prod-asc .text .prices {
    display: flex;
    flex-direction: row;
    align-items: end;
    margin-bottom: 13px;
    margin-top: 13px;
}

.fancy-prod-asc .text .cut {
    font-size: 16px;
    color: #585858;
    font-weight: 400;
    text-decoration: line-through;
    padding-right: 10px;
}

.fancy-prod-asc .text .uncut {
    font-size: 26px;
    color: #585858;
    font-weight: 600;
    line-height: 1;
}

.general_content table {
        border: 1px solid silver;
   width:auto!important;
    margin-bottom: 20px;
}

.general_content table tr,
.general_content table td,
.general_content table th {
          border: 1px solid silver;
    /*width: 100%;*/
        padding: 10px;
}

.fancy-prod-asc .text .general_content .info {
    background: #F0F5FD;
    border: 1px solid #D3DCEB;
    padding: 22px 30px;
    margin-bottom: 30px;
    margin-top:20px;
}

.fancy-prod-asc .text .general_content   ul {
        margin-top: 15px;list-style: none;
}

.fancy-prod-asc .text .general_content   ul li {
    margin-bottom: 16px;
    padding-left: 38px;
    position: relative;
    font-weight: 400;
    line-height: 1.6em;
    margin-left: 0;
    list-style: none;
}

.fancy-prod-asc .text .general_content  ul li:before {
    content: "";
    width: 25px;
    height: 25px;
    display: inline-block;
    background-image: url(//www.rame-pat.ro/wp-content/themes/ramepat-new/img/svg/icon-check-blue.svg);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: top center;
    position: absolute;
    left: -1px;
}

.fancy-prod-asc .text .price-details {
    margin-bottom: 0;
    margin-top: 40px;
}

.page-rent-product .section-info .text .wrap-text .image-left {
    float: right;
        margin: 50px 0 50px 50px;
    max-width: 500px;
}

.page-rent-product .section-info .text .wrap-text .info {
    display: inline-block;
    width: 100%;
}
.wrap-btn {
    text-align: center;
    margin-top: 20px;
    width: 500px;
    max-width: 100%;
}

.wrap-btn .btn {
        min-width: 260px;
}

.extra_text_info a {
        text-decoration: underline;
    color: #ff9900;
    margin-top: 10px;
    font-weight: 700;
}

.product-tabs-tab.description .product-tabs-tab-content .col-parent ul.stars {
        list-style: none;
    margin-left: 0;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0;
}

.product-tabs-tab.description .product-tabs-tab-content .col-parent ul.stars li {
    margin-bottom: 0;
    list-style: none;
    margin-top: 0;
}

@media (max-width: 1450px) {
    .page-grid .section-banner {
        padding: 130px 0;
    }

    .page-grid .section-banner .wrap-buttons .txt-info i {
        background-color: #2b2c2c;
    }

    .page-rent-product .section-info .text .wrap-text {
        padding-right: 50px;
    }

    .page-rent-product .section-prod-info .prod_right .general_content {
        padding-left: 30px;
    }

    .page-rent-product .section-prod-info .wrap-features .feature .text {
        width: calc(100% - 40px);
        font-size: 14px;
    }

    .page-rent-product .section-prod-info .wrap-features .feature img {
        width: 40px;
        padding-right: 9px;
    }

    .page-rent-product .section-prod-info .wrap-features .feature:after {
        height: 50px;
    }

    /*    .page-rent-product .hero .left_side .wrap-left-side {
        padding-right: 50px;
    }*/

    .page-rent-product .hero .left_side .text h1 {
        font-size: 34px;
    }

    .page-rent-product .hero .left_side h4,
    .page-rent-product .hero .right_side .wrap_form h2 {
        font-size: 21px;
    }
}

@media (max-width: 1200px) {
    .page-rent-product .section-prod-info .wrap-prod {
        padding: 27px;
    }

    .page-rent-product .section-prod-info .wrap-features .feature .text {
        font-size: 13px;
    }

    .page-rent-product .section-prod-info .wrap-features .feature {
        padding-left: 5px;
        padding-right: 5px;
    }

    .page-grid .section-prod-info .wrap-features {
        margin-right: -5px;
        margin-left: -5px;
    }

    .page-rent-product .section-prod-info .wrap-features .feature img {
        width: 26px;
    }

    .page-rent-product .hero .right_side .wrap_form {
        padding: 37px;
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .page-rent .section-intro .wrap-text h2 {
        font-size: 23px;

        margin-bottom: 15px;

    }

    .page-rent .section-intro .wrap-text {
        padding-bottom: 0;
    }

    .page-rent .section-intro .intro {
        padding-bottom: 40px;
    }

    .page-rent .section-products h2 {
        font-size: 28px;
    }

    .page-rent .section-products .general_content {
        padding-bottom: 40px;
    }

    .page-grid .section-banner {
        padding: 100px 0;
    }

    .page-grid .section-banner h2,
    .page-grid .section-faq .wrap-text h3,
    .page-rent-product .section-info .text .wrap-text h2,
    .page-rent-product .section-prod-info .prod_right .general_content h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .btn.xxl {
        padding: 17px 18px;
    }

    .page-grid .section-banner .general_content {
        width: 47%;
    }

    .page-rent .section-video .cover {
        height: 400px;
    }

    .page-rent .section-video:before {
        height: 300px;
    }

    .page-grid .section-faq .gray-text {
        width: 100%;
    }

    .page-grid .accordion-section-title {
        font-size: 17px;
    }

    .page-rent-product .section-info .text .wrap-text {
        padding-right: 0;
    }

    .page-rent-product .hero .right_side .wrap_form h2 {
        font-size: 17px;
    }

    .page-rent-product .hero .left_side .text h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
}

@media (max-width: 1024px) {
    .page-rent .section {
        padding: 60px 0;
    }

    .page-grid .row.extra-gutter>[class*="col_"] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-grid .row.extra-gutter {
        margin-left: -15px;
        margin-right: -15px;
    }

    .page-rent .section-intro h1 {
        font-size: 29px;

    }

    .page-rent .section-intro .general_content.intro p,
    .page-rent .section-intro .general_content.intro li {
        font-size: 16px;
    }

    .page-rent .section-intro .intro-columns .image,
    .page-rent .section-intro .intro-columns .text {
        width: 100%;
        text-align: center;
    }

    .page-rent .section-intro .intro-columns .image {
        margin-bottom: 30px;
    }

    .page-rent .section-intro .intro-columns .image img {
        max-width: 300px;
        width: 100%;
    }

    .page-rent .section-intro .wrap-text h2,
    .page-grid .section-faq .wrap-text h3,
    .page-rent-product .section-info .text .wrap-text h2,
    .page-rent-product .section-prod-info .prod_right .general_content h2 {
        font-size: 22px;
    }

    .page-rent .section-intro .wrap-buttons {
        justify-content: center;
    }

    .page-rent .col_product {
        width: 33.33%;
    }

    .page-rent .section-products .general_content {
        padding-bottom: 20px;
    }

    .page-rent .section-video .feat-list .single_feat {
        width: 50%;
        padding: 10px 0;
    }

    .page-grid .section-video .wrap-buttons {
        padding-top: 50px;
    }

    .page-rent .section-video .cover {
        height: 350px;
        margin: 0 auto 30px auto;
    }

    .page-rent .section-faq .left-faq,
    .page-rent .section-faq .right-faq {
        width: 100%;
    }

    .page-rent .section-faq .left-faq {
        margin-bottom: 20px;
    }

    .page-grid .section-faq .wrap-text {
        padding-top: 0;
        text-align: center;
    }

    .page-grid .section-info .text,
    .page-grid .section-info .image {
        width: 100%;
    }

    .page-grid .section-info .image {
        text-align: center;
    }

    .page-grid .section-info .image img {
        max-width: 450px;
        width: 100%;
    }

    .page-rent-product .section-info .text .wrap-text h4 {
        font-size: 20px;
        margin-bottom: 13px;
    }

    .page-rent-product .section-prod-info .prod_right .general_content ul li:before,
    .page-rent-product .section-info .text .wrap-text ul li:before {
        width: 20px;
        height: 20px;
        background-size: 20px;
        top: 0;
    }

    .page-rent-product .section-prod-info .prod_right .general_content ul li:before,
    .page-rent-product .section-info .text .wrap-text ul li:before {
        top: 3px;
    }

    .page-rent-product .section-prod-info .prod_right .general_content ul li,
    .page-rent-product .section-info .text .wrap-text ul li {
        margin-bottom: 16px;
    }

    .page-rent-product .section-prod-info .prod_left,
    .page-rent-product .section-prod-info .prod_right {
        width: 100%;
    }

    .page-rent-product .section-prod-info .prod_right {
        margin-bottom: 20px;
    }

    .page-rent-product .section-prod-info .prod_right .general_content {
        padding-left: 0;
    }

    .page-rent-product .section-prod-info .prod_right .wrap-buttons .btn {
        margin-right: 27px;
    }

    .page-rent-product .section-prod-info .wrap-features .feature img {
        width: 40px;
    }

    .page-rent-product .section-prod-info .wrap-features .flex {
        padding-bottom: 15px;
        padding-top: 15px;
    }

    .page-rent-product .hero .left_side,
    .page-rent-product .hero .right_side {
        width: 100%;
    }

    .page-rent-product .hero:before {
        background: #000;
        opacity: 0.7;
    }

    .page-rent-product .hero .left_side .text,
    .page-rent-product .hero .left_side .wrap_gall {

        text-align: center;
    }

    .page-rent-product .hero .left_side .video-wrap,
    .page-rent-product .hero .left_side .wrap_gall {
        width: 70%;
        text-align: center;
        margin: 0 auto;
    }

    .page-rent-product .hero .left_side .video-wrap {
        margin: 40px auto;
    }

    .page-rent-product .hero .left_side .play {
        margin-left: auto;
        margin-right: auto;
    }

    .page-rent-product .hero .right_side .wrap_form {
        margin: 0 auto;
    }
    
    .page-rent-product .section-info .text .wrap-text .image-left {
    float: none;
    display: block;
    margin: 0 auto;
    }

    /*    .page-rent-product .hero .left_side .wrap-left-side {
        padding-right: 0;
    }*/
}


@media (max-width: 768px) {
    .page-rent .section {
        padding: 50px 0;
    }

    .page-rent .section-intro h1 {
        font-size: 23px;
    }

    .page-rent .section-products h2,
    .page-rent .section-intro .wrap-text h2,
    .page-grid .section-faq .wrap-text h3,
    .page-rent-product .section-info .text .wrap-text h2,
    .page-rent-product .section-prod-info .prod_right .general_content h2 {
        font-size: 20px;
    }

    .page-rent .section-intro .intro {
        padding-bottom: 20px;
    }

    .page-rent .col_product {
        width: 50%;
    }

    .page-rent .section-intro .wrap-buttons .btn {
        white-space: initial;
        margin-right: 0;
    }

    .page-rent .section-video .feat-list .single_feat .wrap_feat {
        padding: 0 10px;
    }

    .page-rent .section-video .feat-list .single_feat .title {
        font-size: 16px;
    }

    .page-grid .section-video .wrap-buttons {
        padding-top: 30px;
    }

    .page-grid .section-video .wrap-buttons .btn {
        margin-left: 20px;
    }

    .page-grid .section-video .wrap-buttons {
        padding-top: 10px;
    }

    .page-grid .section-banner h2 {
        font-size: 24px;
    }

    .page-grid .section-banner .general_content {
        width: 100%;
        text-align: center;
    }

    .page-grid .section-banner:before {
        background: #000;
        opacity: 0.6;
    }

    .page-grid .section-banner .wrap-buttons {
        justify-content: center;
    }

    .page-rent .section-video .cover .play {
        top: calc((100% - 64px)/2);
        height: 64px;
        width: 181px;
        left: calc((100% - 181px)/2);
    }

    .page-rent .section-video .cover .play:before {
        top: 13px;
        background-size: 37px;
        width: 37px;
        height: 37px;
    }

    .page-rent .section-video .cover .play .text {
        top: 21px;
        font-size: 15px;
    }

    .page-rent-product .section-prod-info .prod_right .wrap-buttons {
        justify-content: center;
    }

    .page-rent-product .section-info .text .wrap-text .info {
        padding: 15px 20px;
    }

    .page-rent-product .section-info .text .wrap-text h4 {
        font-size: 17px;
    }

    .page-rent-product .hero .left_side .video-wrap,
    .page-rent-product .hero .left_side .wrap_gall {
        width: 100%;
    }

    .page-rent-product .hero .left_side .text h1 {
        font-size: 24px;
    }

    .page-rent-product .hero .right_side .total .value {
        font-size: 27px;
    }

    .fancy-prod-asc .images {
        width: 100%;
        margin-bottom: 20px;
    }

    .fancy-prod-asc .text {
        padding-left: 0;
        width: 100%;
    }
}

@media (max-width: 560px) {
    .page-rent .section {
        padding: 40px 0;
    }

    .page-rent .col_product {
        width: 101%;
    }

    .page-rent .section-video .feat-list .single_feat {
        width: 100%;
    }

    .page-rent .section-video .cover {
        height: 250px;
    }

    .page-rent .section-video:before {
        height: 200px;
    }

    .page-grid .accordion {
        padding: 10px;
    }

    .page-grid .accordion-section-title {
        font-size: 16px;
    }

    .page-grid .accordion-section-title {

        padding: 20px 70px 20px 23px;
    }

    .page-grid .accordion-section-title:after {
        top: 10px;
    }

    .page-grid .accordion-section-content {
        padding: 0 25px 10px 25px;
    }

    .page-grid .accordion-section-content p {
        font-size: 15px;
        line-height: 1.5em;
    }

    .page-rent-product .section-prod-info .prod_right .wrap-buttons .btn {
        margin-right: 0;
    }

    .page-rent-product .section-prod-info .line {
        display: none;
    }

    .page-rent-product .section-prod-info .wrap-features .feature {
        width: 50%;
    }


    .page-rent-product .section-prod-info .wrap-features .feature:nth-of-type(3n):after {
        content: "";
    }


    .page-rent-product .section-prod-info .wrap-features .feature:nth-of-type(2n):after {
        content: none;
    }

    .page-rent-product .section-prod-info .wrap-features .feature img {
        width: 32px;
    }

    .page-rent-product .section-prod-info .wrap-prod {
        padding: 15px;
    }

    .page-rent-product .section-prod-info .wrap-features .feature:after {
        height: 37px;
    }

    .page-rent-product .hero .right_side .wrap_form {
        padding: 30px;
    }

    .page-rent-product .hero .form .col_50 {
        width: 100%;
    }

    .page-rent-product .hero {
        background-size: 200%;
        background-position: top right;
    }

    .page-rent-product .hero .left_side .slider-gall-small .cover {
        height: 81px;
    }

    .page-rent-product .hero .left_side .slider-gall .single_slide {
        height: 240px;
    }
}

@media (max-width: 400px) {
    .page-rent-product .section-prod-info .wrap-features .feature {
        width: 100%;
    }

    .page-rent-product .section-prod-info .wrap-features .feature:nth-of-type(2n+1):after {
        content: none;
    }

    .page-rent-product .section-prod-info .wrap-features .flex {
        padding-bottom: 7px;
        padding-top: 7px;
    }
}.header-bottom .col-left .header-menu-subcategory li {
	-ms-flex-preferred-size: 33%;
    flex-basis: 33%;
    width: 33%;
}

.header-bottom .col-left .header-menu-subcategory li a.parent {
	width: auto;
	font-weight: bold;
	margin: 10px 0px;
}

.header-bottom .col-left .header-menu-subcategory {
	padding-right: 10%;
}

.header-bottom .col-left .header-menu-subcategory ul.sub-subcategory {
	position: relative;
	left: auto;
	display: block !important;
}

.header-bottom .col-left .header-menu-subcategory ul.sub-subcategory li {
	width: 100%;
}
.short-desc p {
	margin-bottom: 0px;
}

/* default to mobile */
.full-width-video {
  width: 100%;
  background-color: black;
  aspect-ratio: 1280 / 720; /* width and height of the mobile video */
  max-height: 720px;
}
/* override for desktop */
@media only screen and (min-width: 480px) {
  .full-width-video {
    aspect-ratio: 1280 / 720;
  }
}

.category .product-small {
	text-align: center;
}
.cat-cos-popup {
	margin: 10px auto;
}

/*.popup-in-cos {
	display: none;
}*/
.header-announcement {
	background: orange;
	color: #fff;
	text-align: center;
	padding: 5px 0px;
}
.header-announcement p {margin: 0px;}
.header-announcement.red {background: red;}

.header-announcement-break { 
	text-align: center;
	padding: 5px 0px;
}
.header-announcement-break .container{max-width: 1024px;}
.header-announcement-break span {color: orange;}

.badge {
	display: block;
	position: absolute;
	left: 10px;
	top: 10px;
	border-radius: 6px;
	padding: 5px 10px;
	background: #F0F5FD;
	border: 1px solid #D3DCEB;
}