:root {
  --primary: #C3922E;
  --secondary: #eee;
  --tertiary: #ccc;
}

::selection {
  color: rgb(7, 7, 7);
  background: #E2D9C5;
}
/*
::-webkit-scrollbar {
  width: auto;
  height: 4px !important;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
*/
html {
  scroll-behavior: smooth !important;
}

body {
  font-family: 'Montserrat';
}

input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus {
  outline-offset: 0px;
}

btn:focus {
  outline: -webkit-focus-ring-color auto 0px !important;
}

:focus {
  outline: -webkit-focus-ring-color auto 0px !important;
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none !important;
}

@media (min-width:992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width:1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width:1380px) {
  .container {
    max-width: 1380px;
  }
}

@media (min-width:1380px) {
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-1-1s {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.animated.delay-1-2s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.animated.delay-1-3s {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

.animated.delay-1-4s {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.animated.delay-1-5s {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.animated.delay-1-6s {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.animated.delay-1-7s {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

.animated.delay-1-8s {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.animated.delay-1-9s {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}




.link__white {
  background-color: transparent;
  text-decoration: none;
  background-image: linear-gradient(#fff,#fff);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .3s;
}

.link__white:hover {
  background-size: 100% 2px;
}


.btn__primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 10px 30px;
  background-color: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.btn__primary:hover, .btn__primary:focus, .btn__primary:active {
  color: white;
}

.btn__primary::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.btn__primary:hover::before, .btn__primary:focus::before, .primary:active::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}


#carousel-one {
  width: 100%;
}



.first__post .carousel-control-next, .first__post .carousel-control-prev {
  z-index: 3;
}



.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 10%;
  color: #fff;
  text-align: center;
  opacity: 1;
  transition: opacity .15s ease;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: no-repeat 50%/100% 100%;
}

@media (min-width: 768px) {
  .carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: no-repeat 50%/100% 100%;
  }
}

.m-section-md {
  margin: 30px 0;
}

.m-section-sm {
  margin: 15px 0;
}

.m-section-lg {
  margin: 50px 0;
}

.brand__category img {
  width: 100%;
  height: auto;
  opacity: 1;
  transition: .3s;
}

.brand__category img:hover {
  width: 100%;
  height: auto;
  opacity: .5;
}

#title__categories h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.pleca__ {
  width: 100px;
  height: 2px;
  background-color: black;
  margin: 15px;
}

.scrolling__wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-color: light;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.post__editorial {
  position: relative;
}

.post__editorial__image img {
  width: 100%;
  height: 600px;
  position: relative;
  object-fit: cover;
  transition: .3s;
border: solid 1px #f6f6f6;
}

.post__editorial__content {
  position: absolute;
  z-index: 2;
  bottom: 0;
  padding: 15px;
}

.post__editorial__content a {
  color: white;
}

.post__editorial__content a:hover {
  color: white;
  text-decoration: none;
}

.category__ {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 1;
  transition: .3s;
  display: grid;
  /*height: 20px;
  overflow: hidden;*/
}

.category__:hover {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: .5;
}

#gradient__ {
  width: 100%;
  height: 600px;
  position: absolute;
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.20) 100%);
  top: 0;
}

.post__editorial__content h3 {
  font-size: 22px;
  font-weight: 600;
  text-shadow: 2px 2px 6px rgba(0,0,0,.3);
}

.advice__ .fa {
  font-size: 30px;
  color: #ccc;
  margin-bottom: 10px;
}

.advice__ span {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.advice__ p {
  font-size: 14px;
  line-height: 16px;
}

.advice__divider {
  border-right: solid 0px #ccc;
  border-bottom: solid 1px  #ccc;
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .advice__divider {
    border-right: solid 1px #ccc;
    border-bottom: solid 0px  #ccc;
    margin-bottom: 0;
  }
}

.sector__parallax {
  width: 100%;
  height: 450px;
  position: relative;
}

@media (min-width: 768px) {
  .sector__parallax {
    width: 100%;
    height: 300px;
    position: relative;
  }
}

.parallax__image {
  width: 100%;
  position: absolute;
}

#parallax .image__ {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*#parallax .image__ {
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
}*/

.parallax__content {
  position: absolute;
  width: 100%;
  margin-top: 250px;
}

@media (min-width: 768px) {
  .parallax__content {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {
  .parallax__content {
    margin-top: 50px;
  }
}


.percentent__off {
  font-size: 35px;
  font-family: 'Viaoda Libre';
}

.btn__secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 10px 30px;
  background-color: transparent;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: solid 1px white;
  color: white;
}

.btn__secondary:hover, .btn__secondary:focus, .btn__secondary:active {
  color: var(--primary);
}

.btn__secondary::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.btn__secondary:hover::before, .btn__secondary:focus::before, .btn__secondary:active::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.percentent__description {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 15px;
  font-weight: 400;
  padding: 0 20px;
}

.post__editorial__2__col {
  margin-bottom: 30px;
}

.post__editorial__2__col img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: .3s;
}

@media (min-width: 576px) {
  .post__editorial__2__col img {
    width: 510px;
    height: 382.5px;
  }
}

@media (min-width: 768px) {
  .post__editorial__2__col img {
    width: 330px;
    height: 247.5px;
  }
}

@media (min-width: 992px) {
  .post__editorial__2__col img {
    width: 450px;
    height: 337.5px;
  }
}

@media (min-width: 1200px) {
  .post__editorial__2__col img {
    width: 540px;
    height: 405px;
  }
}

@media (min-width: 1380px) {
  .post__editorial__2__col img {
    width: 660px;
    height: 495px;
  }
}

.post__editorial__2__col h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 10px 0;
}

.link__ {
  background-color: transparent;
  text-decoration: none;
  background-image: linear-gradient(#000,#000);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .3s;
  font-size: 18px !important;
}

.link__:hover {
  background-size: 100% 2px;
}

.link__:active {
  background-size: 100% 2px;
}

.abstract__ {
  font-size: 16px;
  margin: 0;
}

.category__black{
  font-size: 12px;
  font-weight: 600;
}

#carousel-two .carousel-control-prev-icon:hover {
  background-color: rgba(255,255,255,.4);
}

#carousel-two .carousel-control-prev-icon {
  background-image: url('../../assets/img/back-black.svg');
  background-color: rgba(255,255,255,1);
  border-radius: 50%;
  transition: .5s;
  box-shadow: 0px 3px 3px rgba(0,0,0,.1);
}

#carousel-two .carousel-control-next-icon:hover {
  background-color: rgba(255,255,255,.4);
}

#carousel-two .carousel-control-next-icon {
  background-image: url('../../assets/img/next-black.svg');
  background-color: rgba(255,255,255,1);
  border-radius: 50%;
  transition: .5s;
  box-shadow: 0px 3px 3px rgba(0,0,0,.1);
}

#carousel-two .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#carousel-two .carousel-indicators {
  position: relative;
}

#carousel-two .carousel-indicators li {
  background-color: var(--primary);
}

.sticky {
  top: 50px;
  z-index: 9;
}



.cover__image__category {
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (min-width: 992px) {
  .cover__image__category {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
  }
}

.category__brand img {
  width: 280px;
  height: auto;
}

.category__description p {
  font-size: 15px;
  padding: 30px;
  font-weight: 600;
}

.category__brand {
  margin-top: 15px;
}


.filter__title {
  border-bottom: solid 1px black;
  margin: 50px 0 5px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 3px;
}

.filter__group {
  list-style: none;
  padding: 0;
  margin-bottom: 30px !important;
}

.filter__group .filter__group__heading {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: #222;
  padding: 0 0 2px;
  margin: 0 0 10px;
  border-bottom: 1px solid #EFEFEF;
}

.filter__group li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid #979797;
}

.filter__group li a {
  color: #444;
}

.checkbox__ {
  position: relative;
  top: 5px;
}

.filter__group .filte__active a::after,.filter__group .subcat__active a::after {
  display: block;
  content: '';
  position: absolute;
  top: 6px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: #222;
}

.filter__group span {
  margin-left: 25px;
  font-size: 15px;
  color: black;
  font-weight: 500;
  transition: .3s;
}

.filter__group span:hover {
  margin-left: 25px;
  font-size: 15px;
  color: gray;
  font-weight: 500;
}

.post__category__product {
  margin-bottom: 30px;
}

.post__category__product img {
  width: 100%;
  height: auto;
  border: solid 1px #f1f1f1;
  transition: .3s;
  object-fit: cover;
}

@media (min-width: 300px) {
  .post__category__product img {
    width: 243px;
    height: 240px;
  }
}

@media (min-width: 576px) {
  .post__category__product img {
    width: 285px;
    height: 379.3px;
  }
}

@media (min-width: 768px) {
  .post__category__product img {
    width: 210px;
    height: 279.3px;
  }
}

@media (min-width: 992px) {
  .post__category__product img {
    width: 330px;
    height: 439.3px;
  }
}

@media (min-width: 1200px) {
  .post__category__product img {
    width: 255px;
    height: 339.3px;
  }
}

@media (min-width: 1380px) {
  .post__category__product img {
    width: 315px;
    height: 419.3px;
  }
}


.post__category__product h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 !important;
  overflow: hidden;
  height: 40px;
}

.post__category__product .button{
display: none;
}

.price__product {
  font-size: 11px;
}
@media (min-width: 576px) {
.price__product{
  font-size: 14px;
}
}

.select__filter {
  border-bottom: solid 1px black;
  margin: 10px 0 30px 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 8px;
}

.select__ {
  border: 1px solid black;
  height: 30px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

@media (min-width: 992px) {
  .select__ {
    border: 1px solid black;
    height: 30px;
    overflow: hidden;
    width: 300px;
    position: relative;
  }
}

select {
  background: transparent;
  border: none;
  font-size: 14px;
  height: 30px;
  padding: 5px;
  width: 100%;
}

@media (min-width: 992px) {
  select {
    background: transparent;
    border: none;
    font-size: 14px;
    height: 30px;
    padding: 5px;
    width: 300px;
  }
}

select:focus {
  outline: none;
}

.select__::after {
  content: "\025be";
  display: table-cell;
  padding-top: 2px;
  text-align: center;
  width: 30px;
  height: 30px;
  background-color: black;
  position: absolute;
  top: 0;
  right: 0px;
  pointer-events: none;
  color: white;
  font-size: 16px;
}

.fiters__category {
  margin-bottom: 50px;
}

.sale__off__image {
  background-image: url("../../assets/img/backgound.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: inherit;
  height: 300px;
}

@media (min-width: 992px) {
  .sale__off__image {
    background-image: url("../../assets/img/backgound.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 300px;
  }
}

.post__category__editorial img {
  width: 100%;
  height: auto;
  transition: .3s;
  object-fit: cover;
}

@media (min-width: 576px) {
  .post__category__editorial img {
    width: 510px;
    height: 382.5px;
  }
}

@media (min-width: 768px) {
  .post__category__editorial img {
    width: 330px;
    height: 247.5px;
  }
}

@media (min-width: 992px) {
  .post__category__editorial img {
    width: 450px;
    height: 337.5px;
  }
}

@media (min-width: 1200px) {
  .post__category__editorial img {
    width: 540px;
    height: 405px;
  }
}

@media (min-width: 1380px) {
  .post__category__editorial img {
    width: 660px;
    height: 495px;
  }
}

.post__category__editorial h2 {
  font-size: 20px;
}

.data__ {
  font-size: 12px;
  text-transform: uppercase;
  color: gray;
  margin: 10px 0;
  letter-spacing: 1px;
}

.post__category__editorial {
  margin-bottom: 30px;
}

.space {
  width: 100%;
  height: 30px;
}

.paginator {
  margin: 30px 0px;
}

.paginator.pag-archive {
	display: block;
	margin: 30px auto;
	position: relative;
	width: max-content;
}


ul.page-numbers {
    list-style: none;
    margin: 0;
}

.page-numbers:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

ul.page-numbers li {
    display: block;
    float: left;
    margin: 0 4px 4px 0;
    text-align: center;
}




.page-numbers a,
.page-numbers span {
    display: block;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    color: #000;
    transition: .3s;
    padding: 5px 5px;
     border-bottom:solid 2px transparent;
}

@media (min-width: 768px) {
.page-numbers a,
.page-numbers span {
padding: 5px 15px;  
    font-size: 22px;
}
}

.page-numbers a span { padding: 0 }

.page-numbers a:hover,
.page-numbers.current,
.page-numbers.current:hover {
    color: #000;
    border-bottom:solid 2px var(--primary);
    text-decoration: none;
}

.page-numbers:hover { text-decoration: none }


.post__preview{
line-height: 12px !important; 
}


.post__preview .icon {
  font-size: 16px;
  margin: 10px;
}

.post__preview a {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;

}


.post__preview a {
  display: none;
}

@media (min-width: 768px) {
  .post__preview a {
    display: initial;
  }
}

.header__single__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: .3s;
}

@media (min-width: 300px) {
  .header__single__img img {
    width: 100%;
    height: 360px;
  }
}

@media (min-width: 576px) {
  .header__single__img img {
    width: 100%;
    height: 592px;
  }
}

@media (min-width: 768px) {
  .header__single__img img {
    width: 100%;
    height: 753px;
  }
}

@media (min-width: 992px) {
  .header__single__img img {
    width: 100%;
    height: 586px;
  }
}

@media (min-width: 1200px) {
  .header__single__img img {
    width: 100%;
    height: 681px;
  }
}

@media (min-width: 1380px) {
  .header__single__img img {
    width: 100%;
    height: 950px;
  }
}

.header__single__img {
  width: 100%;
}

@media (min-width: 992px) {
  .header__single__img {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .header__single__img {
    width: 65%;
  }
}

.header__single__content {
  width: 100%;
  height: auto;
  padding: 30px;
  color: white;
}

@media (min-width: 992px) {
  .header__single__content {
    width: 50%;
    padding: 80px;
  }
}

@media (min-width: 1200px) {
  .header__single__content {
    width: 35%;
    padding: 80px;
  }
}

.header__single {
  background-color: #222;
}

.pleca__white {
  width: 100px;
  height: 2px;
  background-color: white;
  margin: 15px;
}

.data__white {
  font-size: 12px;
  text-transform: uppercase;
  color: white;
  margin: 10px 0;
  letter-spacing: 1px;
}

.header__single__content h1 {
  font-size: 25px;
  color: white !important;
    margin-top: 30px !important;
}

@media (min-width: 992px) {
  .header__single__content h1 {
    font-size: 35px;
  }
}

.header__single__content p {
  font-size: 16px;
  text-align: center;
}

.header__single a {
  color: white;
transition: .3s;
}

.header__single a:hover {
  color: rgba(255,255,255,.5);
}

.content-single p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .content-single p {
    font-size: 18px;
  }
}

.content-single img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.content-single figure {
  margin-bottom: 30px;
}

.content-single figure img {
  margin-bottom: 10px !important;
}

.content-single figcaption {
  font-size: 12px;
}

.btn__basic {
  background: #ccc;
  padding: 10px 20px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin: 15px 0;
  transition: .3s;
}

.btn__basic:hover {
  background-color: gray;
}

.post__product__single {
  border-bottom: solid 1px #eee;
  margin-bottom: 30px;
}

.post__editorial__1_2__col img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: .3s;
}

@media (min-width: 576px) {
  .post__editorial__1_2__col img {
    width: 410px;
    height: 35px;
  }
}

@media (min-width: 768px) {
  .post__editorial__1_2__col img {
    width: 270px;
    height: 202.5px;
  }
}

@media (min-width: 992px) {
  .post__editorial__1_2__col img {
    width: 290px;
    height: 217.5px;
  }
}

@media (min-width: 1200px) {
  .post__editorial__1_2__col img {
    width: 350px;
    height: 262.5px;
  }
}

@media (min-width: 1380px) {
  .post__editorial__1_2__col img {
    width: 430px;
    height: 322.5px;
  }
}

.post__editorial__1_2__col h3 {
  font-size: 20px;
}

.sigle__product__img img {
  width: 100%;
  height: auto;
  border: solid 1px #f1f1f1;
  object-fit: cover;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .sigle__product__img img {
    width: 510px;
    height: 709.3px;
  }
}

@media (min-width: 768px) {
  .sigle__product__img img {
    width: 690px;
    height: 790px;
  }
}

@media (min-width: 992px) {
  .sigle__product__img img {
    width: 450px;
    height: 590.3px;
  }
}

@media (min-width: 1200px) {
  .sigle__product__img img {
    width: 540px;
    height: 749.3px;
  }
}

@media (min-width: 1380px) {
  .sigle__product__img img {
    width: 660px;
    height: 760px;
  }
}

.product__thumbnail__img img {
  width: 100%;
  height: 76px;
  object-fit: cover;
  transition: .3s;
}

@media (min-width: 576px) {
  .product__thumbnail__img img {
    height: 113px;
  }
}

@media (min-width: 768px) {
  .product__thumbnail__img img {
    height: 161px;
  }
}

@media (min-width: 992px) {
  .product__thumbnail__img img {
    height: 72px;
  }
}

@media (min-width: 1200px) {
  .product__thumbnail__img img {
    height: 94px;
  }
}

@media (min-width: 1380px) {
  .product__thumbnail__img img {
    height: 126.6px;
  }
}

.product__thumbnail {
  margin: 0 0 10px;
  width: 100%;
}

.product__thumbnail__img {
  margin: 0 20px 20px 0;
  width: calc(100% / 5 - 15px);
  border: solid 1px #f1f1f1;
}

.sigle__product__content h1 {
  font-size: 30px;
  font-weight: 600;
}

.single__price__product {
  font-size: 25px;
  color: #000;
  margin: 20px 0;
  font-weight: 600;
}

.single__description__product {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.sigle__product__content {
  padding: 0px 0px;
}

@media (min-width: 992px) {
  .sigle__product__content {
    padding: 0px 50px;
  }
}

.single__input input {
  width: 43px;
  height: 43px;
  border: 0px;
  text-align: center;
  background: transparent;
}

.single__input {
  border-bottom: solid 1px black;
  margin-right: 15px;
}

.btn__buy {
  background-color: black;
  color: white;
  padding: 10px 50px;
  border: solid 1px;
  margin: 0px 20px;
}

.single__btn__add {
  margin-bottom: 30px;
  width: 100%;
}

.caption__ {
  font-size: 12px;
  font-weight: 600;
  color: gray;
}

.subhead__single__product {
  border-bottom: solid 1px black;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin: 20px 0px;
}

.btn__add {
  background-color: var(--primary);
  color: white;
  padding: 3px 10px;
  border: solid 1px var(--primary);
  transition: .3s;
  margin-top: 15px;
  width: 100%;
}

@media (min-width: 992px) {
  .btn__add {
    background-color: var(--primary);
    color: white;
    padding: 3px 10px;
    border: solid 1px var(--primary);
    transition: .3s;
    margin-top: 5px;
    width: fit-content;
  }
}

.btn__add:hover {
  background-color: black;
  color: white;
  padding: 3px 10px;
  border: solid 1px black;
}

.subhead__btn {
  margin-right: 15px;
  white-space: nowrap;
}

.subhead__buttons {
  width: fit-content;
}

.subhead__add {
  width: 100%;
}

@media (min-width: 992px) {
  .subhead__add {
    width: auto;
  }
}

.subhead__icon .icon {
  font-size: 16px;
  padding-right: 10px;
}

.subhead__icon {
  display: flex !important;
}

@media (min-width: 768px) {
  .subhead__icon {
    display: none !important;
  }
}

.section__gray {
  background: #f9f9f9;
}

.p-section-lg {
  padding: 50px 0;
}

.col-12.col-lg-6 {
}

.line__ {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin-bottom: 15px;
}

.single__product__description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.title__description__product {
  font-size: 16px;
  font-weight: 600;
}

.collapsible__description {
  padding: 15px 0;
  border-bottom: solid 1px #ccc;
}

#btn__collapse .active:after {
  content: "\2212";
}

.single__product__description h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 0;
}

.sticky__subhead {
  background-color: white;
z-index: 1;
}

.advice__ img {
  height: 40px;
  object-fit: contain;
  margin-bottom: 10px;
}

.collapse__active:after {
  width: 30px;
  content: "\2212";
  color: black;
  float: right;
  margin-left: 5px;
  font-size: 30px;
  font-weight: 400;
}

.collapsed .collapse__active:after {
  content: '\002B';
}

.achor__scroll {
  width: 100%;
  height: 30px;
}

.grid__product__2 {
  width: 50%;
  padding: 15px;
}

#gallery__product {
  width: 100%;
  margin: 50px 0;
}

.thumbnail__gallery img {
  width: 100%;
  height: 100px;
  border: solid 1px #f1f1f1;
  object-fit: cover;
}

@media (min-width: 576px) {
  .thumbnail__gallery img {
    width: 100%;
    height: 150px;
  }
}

@media (min-width: 1200px) {
  .thumbnail__gallery img {
    width: 100%;
    height: 100px;
  }
}

.thumbnail__gallery {
  padding: 0px 0px 10px;
}

.carousel__gallery {
  border: solid 1px #f1f1f1;
}

.carousel__gallery img {
  height: 400px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .carousel__gallery img {
    height: 500px;
    object-fit: cover;
  }
}

@media (min-width: 1200px) {
  .carousel__gallery img {
    height: 600px;
    object-fit: cover;
  }
}

.area__thumbnail {
  overflow-x: hidden;
  overflow-y: scroll;
  flex-wrap: nowrap;
  scrollbar-color: light;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.area__thumbnail {
  height: 400px;
}

@media (min-width: 768px) {
  .area__thumbnail {
    height: 500px;
  }
}

@media (min-width: 1200px) {
  .area__thumbnail {
    height: 600px;
  }
}

.post__product__end {
  margin-bottom: 30px;
}

.post__product__end img {
  width: 100%;
  height: auto;
  border: solid 1px #f1f1f1;
  object-fit: cover;
  transition: .3s;
}

@media (min-width: 576px) {
  .post__product__end img {
    width: 330px;
    height: 559px;
  }
}

@media (min-width: 768px) {
  .post__product__end img {
    width: 270px;
    height: 359.3px;
  }
}

@media (min-width: 992px) {
  .post__product__end img {
    width: 290px;
    height: 386px;
  }
}

@media (min-width: 1200px) {
  .post__product__end img {
    width: 350px;
    height: 466px;
  }
}

@media (min-width: 1380px) {
  .post__product__end img {
    width: 430px;
    height: 572.6px;
  }
}

.post__product__end h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
}

.single__btn__add a {
  width: 100%;
}

#error__page h1 {
  font-size: 35px;
  margin: 20px;
}

#error__page__404 {
  font-size: 100px;
  margin: 0;
  line-height: 75px;
}


.category__wp a{
color: white;
font-weight: 600;
text-transform: uppercase;
font-size: 14px;
letter-spacing: 1px;
margin-bottom: 30px;  
}

.category__wp a:hover{
color: white;
}

.category__wp a{
  background-color: transparent;
  text-decoration: none;
  background-image: linear-gradient(#fff,#fff);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .3s;
}

.category__wp a:hover {
  background-size: 100% 2px;
}

.author__ a{
  font-size: 12px;
  font-weight: 600;
}


.post__search {
  margin-bottom: 30px;
}

.post__search img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: .3s;
  background-color: #f9f9f9;
  border: solid 1px #f6f6f6;
}

@media (min-width: 300px) {
  .post__search img {
    width: 100%;
    height: 300px;
  }
}

@media (min-width: 576px) {
  .post__search img {
    width: 100%;
    height: 240px;
  }
}

@media (min-width: 768px) {
  .post__search img {
    width: 100%;
    height: 330px;
  }
}

@media (min-width: 992px) {
  .post__search img {
    width: 100%;
    height: 290px;
  }
}

@media (min-width: 1200px) {
  .post__search img {
    width: 100%;
    height: 390px;
  }
}

@media (min-width: 1380px) {
  .post__search img {
    width: 100%;
    height: 430px;
  }
}

.post__search h3 {
  font-size: 20px;
}


.arrow__{
margin: 10px;
}

.category__head{
position: relative;
z-index: 2;
padding: 20px;
white-space: break-spaces;

}

.category__head h1 {
  font-size: 50px;
  color: white;
  font-weight: 600;
  text-shadow: 3px 3px 9px rgba(0,0,0,.6);
}

.category__head p {
font-size: 16px;
color: black;
font-weight: 600;
background-color: white;
padding: 3px 15px;
text-align: center;
display: inline;
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
}

.image__cover__category img{
position: absolute;
top: 0;
height: 350px;
object-fit: cover;
background-position: center;
width: 100%
}

@media (min-width: 992px) {
    .image__cover__category img{
		height: 400px;    
    }   
}	
.filter_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffffffe6;
	z-index: 9999;
	display: none;
	padding: 21% 30%;
	text-align: center;
	font-size: 30px;
	color: #797878;
}
.filter{
	position:relative;
}
.related.products li {
	float: left !important;
	width: calc(100% / 3) !important;
}


/*new styles */

ul, ol {
    margin: 0 !important;
    padding: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    margin: inherit !important; 
}


#form__ {
  width: 100%;
}

@media (min-width: 768px) {
  #form__ {
    width: 400px;
  }
}

#form__ input {
  border: solid 1px gray;
  height: 40px;
  border-radius: 0px;
  margin-bottom: 20px;
  padding: 0 5px;
}

#form__ label {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
}

#reset__past, #new__acount {
  margin: 20px;
  font-size: 14px;
}

#caption__login {
  font-size: 12px;
  color: gray;
}

#caption__login a {
  color: #999;
}

#caption__login a:hover {
  color: #333;
}

input[type='checkbox']#check {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

input[type='checkbox']#check + label {
  padding-left: 25px;
  height: 20px;
  display: inline-block;
  line-height: 20px;
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: 16px;
  vertical-align: middle;
  cursor: pointer;
  margin-bottom: 20px;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type='checkbox']#check:checked + label {
  background-position: 0 -20px;
}

.check__form label {
  background-image: url('http://shop2.rmb.mx//wp-content/themes/ww-shop/assets/img/checbox.svg');
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-size: 20px;
}



#carousel-video video {
  width: 100%;
  height: 188px;
  object-fit: cover;
  background-color: #f1f1f1;
}

@media (min-width: 300px) {
  #carousel-video video {
    width: 100%;
    height:200px;
  }
}

@media (min-width: 576px) {
  #carousel-video video {
    width: 100%;
    height: 287px;
  }
}

@media (min-width: 768px) {
  #carousel-video video {
    width: 100%;
    height: 388px;
  }
}

@media (min-width: 992px) {
  #carousel-video video {
    width: 100%;
    height: 478px;
  }
}

@media (min-width: 1200px) {
  #carousel-video video {
    width: 100%;
    height: 517.5px;
  }
}

@media (min-width: 1380px) {
  #carousel-video video {
    width: 100%;
    height: 630px;
  }
}

#carousel-two .carousel-control-prev-icon:hover {
  background-color: rgba(255,255,255,.4);
}

#carousel-video .carousel-control-prev-icon {
  background-image: url('http://shop2.rmb.mx/assets/img/back-black.svg');
  background-color: rgba(255,255,255,1);
  border-radius: 50%;
  transition: .5s;
  box-shadow: 0px 3px 3px rgba(0,0,0,.1);
}

#carousel-video .carousel-control-next-icon:hover {
  background-color: rgba(255,255,255,.4);
}

#carousel-video .carousel-control-next-icon {
  background-image: url('http://shop2.rmb.mx/assets/img/next-black.svg');
  background-color: rgba(255,255,255,1);
  border-radius: 50%;
  transition: .5s;
  box-shadow: 0px 3px 3px rgba(0,0,0,.1);
}

#carousel-video .carousel-indicators {
  position: relative;
}

#carousel-video .carousel-indicators li {
  background-color: var(--primary);
}

#carousel-video .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#carousel-video .carousel-control-next-icon, #carousel-video .carousel-control-prev-icon {
  width: 30px;
  height: 30px;
}

@media (min-width: 768px) {
  #carousel-video .carousel-control-next-icon, #carousel-video .carousel-control-prev-icon {
    width: 60px;
    height: 60px;
  }
}

#drop__filters{
overflow: hidden;
height: 0;
}

@media(min-width:576px){
#drop__filters{
overflow: inherit;
height: inherit;
}   
}

#drop__filters.open{
overflow: hidden;
height: auto;
}


#btn__filter{
display:block;
}

@media(min-width:576px){
#btn__filter{
display:none;
}
}


#btn__filter{
width: 100%;
height: 35px;
background-color: black;
color: white;
text-align: center;
padding: 5px;
cursor: pointer;
margin-top: 30px;
}


.woocommerce-breadcrumb{
 width: 100%;
height: 35px;
background: #f6f6f6;
padding:0 5%;
margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(min-width:992px){
 .woocommerce-breadcrumb{
 padding:0 15%;   
}  
}

@media(min-width:1200px){
 .woocommerce-breadcrumb{
 padding:0 4%;   
}  
}

@media(min-width:1380px){
 .woocommerce-breadcrumb{
padding:0 15%;
}  
}



.btn__primary_slide {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 4px 10px;
  background-color: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.btn__primary_slide :hover, .btn__primary_slide :focus, .btn__primary_slide :active {
  color: white;
}

.btn__primary_slide::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.btn__primary_slide :hover::before, .btn__primary_slide :focus::before, .primary_slide :active::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}



.wc-block-grid__products {
  display: flex !important;
  justify-content: center !important;
}

/* galleri */

.content-single .wp-block-gallery img{
 clip-path: inherit !important;
-webkit-clip-path: inherit !important;;   
}

.wp-block-gallery li{

background: inherit;
background-position: inherit;
background-repeat: inherit;
background-size: inherit;
color: inherit;
text-decoration: inherit;
transition: inherit;
padding: inherit; 
transition: .3s;
}

.wp-block-gallery li:hover{

background: transparent !important;
background-position: inherit;
background-repeat: inherit;
background-size: inherit;
color: inherit;
text-decoration: inherit;
transition: inherit;
transition: .3s;
}

.wp-block-gallery a{

background: inherit;
background-position: inherit;
background-repeat: inherit;
background-size: inherit;
color: inherit;
text-decoration: inherit;
transition: inherit;
padding: inherit; 
transition: .3s;
}

.wp-block-gallery figure {
    margin: 0px !important;
    position: relative !important;
}

.wp-block-gallery  figcaption{
color:#fff;
text-align: center;
font-size: 13px;
/*background: linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);*/
background: transparent !important;
 text-shadow: 1px 1px #000 !important;
margin-top:-30px !important;
}


.wp-block-gallery a:hover{
-webkit-filter: brightness(0.9) !important;
border-bottom: solid 0px var(--primary) !important;

}

.wp-block-gallery img{
 border: solid 1px #f9f9f9;
transition: .3s;
width: 100%;
height: auto;
}

.wp-block-gallery ul{
margin: 0em !important;
list-style: none !important;
padding: 0 !important;
margin-bottom: 20px !important;
text-shadow: 0px !important;
}

.wp-block-gallery ul li{
position: inherit !important;
display: inherit !important;
background: inherit !important;
color: inherit !important;
text-decoration: inherit !important;
transition: inherit !important;
background: white !important;
margin: 1px !important;
padding:1px !important; 

}

.wp-block-gallery ul li:hover {
    background: transparent !important;
    color: inherit !important;
}

.wp-block-gallery ul li:before {
    content: "" !important;
    position: absolute !important;
    left: inherit !important;
    top: inherit !important;
    margin-top: inherit !important;
    background: inherit !important;
    color: inherit !important;
    height: inherit !important;
    width: inherit !important;
    line-height: inherit !important;
    text-align: inherit !important;
    font-weight: inherit !important;
}

.wp-block-gallery ul li:after {
    position: inherit !important;
    content: inherit !important;
    border: inherit !important;
    left: inherit !important;
    top: inherit !important;
    margin-top: inherit !important;
    transition: inherit !important;
}


.wp-block-gallery img{
 height: auto !important
}

.wp-block-gallery.columns-3 .blocks-gallery-item {
    width: calc((100% - 32px)/1) !important;
  margin-right: 0px !important;
}

.wp-block-gallery.columns-2 .blocks-gallery-item {
    width: calc((100% - 32px)/1) !important;
  margin-right: 0px !important;
}

@media (min-width: 300px) {
.wp-block-gallery.columns-3 .blocks-gallery-item {
    width: calc((100% - 32px)/1) !important;
  margin-right: 0px !important;
}
    
.wp-block-gallery.columns-2 .blocks-gallery-item {
    width: calc((100% - 32px)/1) !important;
  margin-right: 0px !important;
}
}

@media (min-width: 768px) {
 .wp-block-gallery.columns-3 .blocks-gallery-item {
    width: calc((100% - 32px)/2) !important;
  margin-right: 0px !important;
} 
 .wp-block-gallery.columns-2 .blocks-gallery-item {
    width: calc((100% - 32px)/2) !important;
  margin-right: 0px !important;
} 
}

@media (min-width: 1200px) {
.wp-block-gallery.columns-3 .blocks-gallery-item {
    width: calc((100% - 32px)/3) !important;
  margin-right: 0px !important;
    }

.wp-block-gallery.columns-2 .blocks-gallery-item {
    width: calc((100% - 32px)/2) !important;
  margin-right: 0px !important;
    }
}

.blocks-gallery-grid, .wp-block-gallery {
    display: flex !important;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* galleri */


.seguircomprando {
margin-top: 50px !important;
}


/*  */

.autor-comments{
margin-bottom: 30px;
}

.autor-comments img{
width:250px;
height: 250px;
border-radius: 50%;
object-fit: cover;
background-position: center;
}

@media (min-width: 768px){
.autor-comments img{
width:200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
background-position: center;
}    
}

@media (min-width: 1200px){
.autor-comments img{
width:250px;
height: 250px;
border-radius: 50%;
object-fit: cover;
background-position: center;
}
}

.autor-comments span{
font-size: 14px;
font-weight: 600;
margin: 10px 0 0 0; 
}

.autor-comments p{
font-size: 16px;
padding: 15px;
margin-bottom: 0;
font-weight: 400;
}

#carousel-comments .carousel-control-prev-icon:hover {
  background-color: rgba(255,255,255,.4);
}

#carousel-comments .carousel-control-prev-icon {
  background-image: url('../../assets/img/back-black.svg');
  background-color: rgba(255,255,255,1);
  border-radius: 50%;
  transition: .5s;
  box-shadow: 0px 3px 3px rgba(0,0,0,.1);
}

#carousel-comments .carousel-control-next-icon:hover {
  background-color: rgba(255,255,255,.4);
}

#carousel-comments .carousel-control-next-icon {
  background-image: url('../../assets/img/next-black.svg');
  background-color: rgba(255,255,255,1);
  border-radius: 50%;
  transition: .5s;
  box-shadow: 0px 3px 3px rgba(0,0,0,.1);
}

#carousel-comments .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#carousel-comments .carousel-indicators {
  position: relative;
}

#carousel-comments .carousel-indicators li {
  background-color: var(--primary);
}

.bg-gray{
background-color: #f9f9f9;
padding: 50px 0 20px 0;
}



.thanks-text-two {
  font-size: 20px;
}

.thanks-text-two i {
  color: var(--primary);
}

.thanks-text-three {
  font-size: 14px;
  color: gray;
}

.thanks-text-four {
  font-size: 16px;
}

.thanks-text-five {
  background-color: #f9f9f9;
}

#area__filter{
overflow: hidden;
height: 70px;
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1;
background-color: white;
}


@media (min-width: 768px){
#area__filter{
overflow: hidden;
height: auto;
position: relative;
top: inherit;
z-index: 1;
}
}
    
    
#area__filter.open{
overflow: hidden;
height: auto;
}


@media (min-width: 768px){
#area__filter.open{
overflow: hidden;
height: auto;
}
}

.ribbon-top-left{
position: absolute;
top: 0px;
background-color: #dd3333;
color: white;
font-weight: 600;
padding: 5px 10px;
font-size: 10px;
text-transform: uppercase;
}

/*-- menu --*/


/* */

.www__menu ul {
		display: flex;
		padding: 0;
		margin: 0;
		list-style: none;
        z-index: 9;
	}
	.www__menu a {
		display: block;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    background-image: linear-gradient(#C3922E,#C3922E);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .5s;
    padding-bottom: 1px;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 400;
	}

@media (min-width:768px){
    .www__menu a {
                font-size: 14px;
    }
}

@media (min-width:1380px){
    .www__menu a {
                font-size: 14px;
    }
}
	.www__menu a:hover {
        background-size: 100% 1px;
	}
	.www__menu ul li ul {
		display: none;
	}
	.www__menu ul li a:hover + ul, .www__menu ul li ul:hover {
		display: flex;
        position: absolute;
    padding: 10px !important;
    background: #f9f9f9;
	}

.www__menu .menu-item {
 position:relative;
padding: 5px 10px;
background-color: transparent;
}

.menu-item-has-children{
margin-right: 8px;
}

.www__menu .menu-item-has-children::before{
content: url('https://api.iconify.design/ion:add-sharp.svg?color=%23C3922E&height=15');
position: absolute;
top: 7px;
color: #C3922E;
right: -4px;
font-weight: bold;
}


.www__menu .sub-menu .menu-item-has-children::before{
content: url('https://api.iconify.design/ion:add-sharp.svg?color=%23C3922E&height=15');
position: absolute;
top: 6px;
color: #C3922E;
right: -2px;
}


.www__menu__movil{
width:100%;
}
.www__menu__movil ul {
		display: flex;
		padding: 0;
		margin: 0;
		list-style: none;
        width: 100%;
        flex-direction: column;
        align-items: start;
	}
	.www__menu__movil a {
		display: block;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    background-image: linear-gradient(#C3922E,#C3922E);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .5s;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 400;
	}

.www__menu__movil .sub-menu a {
     width: auto;  
}

	.www__menu__movil a:hover {
        background-size: 100% 1px;
        color: #C3922E;
	}
	.www__menu__movil ul li ul {
		display: none;
        border-bottom: solid 1px var(--secondary);
         padding: 10px;
	}
	.www__menu__movil ul li a:hover + ul, .www__menu__movil ul li ul:hover {
		display: none;
        position: relative;
	}



.www__menu__movil .menu-item {
 position:relative;
 padding: 15px 10px;
display: flex;
    flex-direction: column;
    align-items: start;
        width: 100%;
}

.www__menu__movil .menu-item-has-children::after{
content: url('https://api.iconify.design/ion:add-sharp.svg?color=%23C3922E&height=15');
position: absolute;
top: 13px;
color: #FFA95D;
right: 20px;
font-weight: bold;
}

.sub-menu li{
padding: 7px 10px !important;
}


.sub-menu{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;    
}

.www__menu .sub-menu .sub-menu {
    background: var(--primary);
    z-index: 2;
    border-radius: 10px 10px;
    position: relative;
    display: block;
    padding: 0 !important;
}

.www__menu .sub-menu .sub-menu  .menu-item{
    background: var(--primary);
}

.www__menu .sub-menu .menu-item-has-children a:hover{
		display: block !important;
        position: relative !important;
    padding: 0 0 1px !important;
    background: var(--primary);
    border-radius: 0 0 !important;
	}

.buttons__menu {
width: 300px;
}

.etiquetas-ww{
 height: 35px !important;
width: auto !important;
}

.ribbon-cen{
margin-bottom:15px;
}

.ribbon-cen img{
    height: 26px !important;
    width: auto !important;
    border: solid 0px transparent !important;
    margin: auto;
}

.ribbon-active{

}

.ribbon-active{

}



/* ---- */


.content__slider p{
font-size: 11px;
font-weight: 600;
color:black;
margin-top: 15px;
text-shadow: 2px 2px 3px rgb(0 0 0 / 0%);
}

@media(min-width:768px){
.content__slider p{
font-size: 16px;
color: white;
text-shadow: 2px 2px 3px rgb(0 0 0 / 50%);
}
}


#category__ {
  color: black;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 30px;
text-shadow: 2px 2px 3px rgb(0 0 0 / 0%);
}



@media (min-width:768px){
#category__ {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 30px;
text-shadow: 2px 2px 3px rgb(0 0 0 / 50%);
}
}


.col.first__post__content h1 {
  font-size: 25px;
  font-weight: 600;
  color: black;
  text-shadow: 3px 3px 3px rgba(0,0,0,0);
  margin-bottom: 20px;
  line-height: 35px;
}

@media (min-width: 768px) {
  .col.first__post__content h1 {
    font-size: 50px;
    font-weight: 600;
    color: white;
    text-shadow: 3px 3px 3px rgba(0,0,0,.5);
    margin-bottom: 20px;
    line-height: 55px;
  }
}

.col.first__post__content h1 a {
  color: black;
}

.col.first__post__content h1 a:hover {
  color: black;
}


@media (min-width: 768px) {
.col.first__post__content h1 a {
  color: white;
}

.col.first__post__content h1 a:hover {
  color: white;
}
}

.col.first__post__content{
padding: 20px;
}


@media (min-width: 768px) {
.col.first__post__content{
padding: 50px;
}    
}

.first__post {
  width: 100%;

}

@media (min-width: 768px) {
.first__post {
  width: 100%;
  height: auto;
}    
}


.content__slider {
  position: relative;
}

.back__slide {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}

@media (min-width:768px){
.back__slide {
  position: relative;
  width: 100%;
  height: auto;

}
}

.front__slide {
  position: relative;
  width: 100%;
  z-index: 2;
  top: 0;
}

@media(min-width:768px){
.front__slide {
height: 100%;
position: absolute;
}
}

.back__slide img {
  width: 100%;
 /* object-fit: cover; */
}

@media(min-width:768px){
    .back__slide img {
      /*height: 100vh;*/
 }    
}


#carousel-one .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media (min-width:768px){
    #carousel-one .carousel-inner {
       height: auto;   
    }  
}


#carousel-one .carousel-indicators{
position: relative !important;
}

@media (min-width:768px){
#carousel-one .carousel-indicators{
position: absolute !important;
}
}

#carousel-one .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
    background-color: #000;
}


@media (min-width:768px){
    #carousel-one .carousel-indicators li {
            background-color: #fff;
    }    
}

#carousel-one .carousel-control-next-icon {
  background-image: url('../../assets/img/next.svg');
  background-color: rgba(0,0,0,.3);
  border-radius: 50%;
  transition: .5s;
}

#carousel-one .carousel-control-next-icon:hover {
  background-color: rgba(0,0,0,.5);
}

#carousel-one .carousel-control-prev-icon {
  background-image: url('../../assets/img/back.svg');
  background-color: rgba(0,0,0,.3);
  border-radius: 50%;
  transition: .5s;
}

#carousel-one .carousel-control-prev-icon:hover {
  background-color: rgba(0,0,0,.5);
}



@media (min-width:768px){
#carousel-one .carousel-control-next-icon {
  background-image: url('../../assets/img/next.svg');
  background-color: rgba(255,255,255,.0);
  border-radius: 50%;
  transition: .5s;
}

#carousel-one .carousel-control-next-icon:hover {
  background-color: rgba(255,255,255,.2);
}
    
#carousel-one .carousel-control-prev-icon {
  background-image: url('../../assets/img/back.svg');
  background-color: rgba(255,255,255,.0);
  border-radius: 50%;
  transition: .5s;
}

#carousel-one .carousel-control-prev-icon:hover {
  background-color: rgba(255,255,255,.2);
}  
}


._overflow{
overflow: auto !important;
}



.content__parrallax{
 position: relative;  
width: 100%;
height: auto;
top: -30px;
}

@media (min-width:992px){
.content__parrallax{
 position: absolute;
width: 100%;
height: 100%;
top: 0;
}    
}


.parallax__content__gold {
  width: 100%;
  height:auto;
  background-color:#000;
  padding: 20px;
  color: white;
}


.mailpoet_text{
    width: 100% !important;
}

.pop-up-desc.mailpoet_text{
    width: 90% !important;
}

.advads-close-button{
    width: inherit !important;
    height: 40px !important;
    background: white !important;
    top: -15px !important;
    padding-top: 12px;
    border-radius: 50%;
    box-shadow: 0px 1px 6px rgb(0 0 0 / 30%);
}

.watch-layer aside {
    width: 320px;
    height: 400px !important;
    background-color: #f9f9f9;
    padding: 20px 20px 20px 20px !important;
    box-shadow: 0px 5px 30px rgb(0 0 0 / 50%);
}

.related.products li {
    float: left !important;
    width: calc(90% / 3) !important;
}

@media(min-width:1200px){
 .related.products li {
    float: left !important;
    width: calc(50% / 3) !important;
}   
}

.related.products ul{
        display: flex !important;
    justify-content: space-between !important;

}


.ads{
padding:15px;
}

.superbanner{
min-width: 300px;
    width: auto;
    height: auto;
    background-color: #f6f6f6; 
}

.ads-desktop{
    display: none;
}

.ads-movil{
    display: flex;
}

@media(min-width:768px){
.ads-desktop{
    display: flex;
}

.ads-movil{
    display: none;
} 
}


.link-slider{
z-index: 2 !important;
}

@media(min-width:768px){
.link-slider{
z-index: 3 !important; 
}
}


#mailpoet_form_4 .mailpoet_text{
    width: 97% !important;
}

#mailpoet_form_4 .mailpoet_submit{
    background: black !important;
    color: white !important;
}
/* */

/* newsletter */

#newsletter_sticky {
  position: fixed;
  right: -333px;
  bottom: 0;
  margin: 15px;
  padding: 15px;
  background-color: #f9f9f9;
  border: solid 1px #f6f6f6;
  box-shadow: 2px 2px 6px rgba(0 0 0 / 10%);
  width: 300px;
  border-radius: 15px;
  transition: .3s;
  opacity: 0;
  z-index: 99999;
}

#newsletter_sticky img {
  width: 135px;
  height: auto;
}

.copy {
  font-size: 1em;
  line-height: normal;
}

.btn_close_newsletter {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  background: black;
  color: white;
  border-radius: 50%;
  box-shadow: 1px 1px 4px rgba(0 0 0 / 10%);
  cursor: pointer;
}

#newsletter_sticky_post img {
  width: 135px;
  margin: 0 0 30px 0;
}

@media (min-width: 768px) {
  #newsletter_sticky_post img {
    width: 180px;
    margin: 30px;
  }
}

.newsletter_sticky_post_area {
  padding: 30px;
  background: #f9f9f9;
  border-radius: 15px;
  margin: 30px;
  box-shadow: 2px 2px 10px rgba(0 0 0 / 10%);
  position: relative;
}

#newsletter_sticky_post {
  overflow: hidden;
  height: 0;
  transition: .5s;
  opacity: 0;
}

.mailpoet_validate_success, .mailpoet_validate_error{
  width: 100% !important;
  font-size: 12px !important;
 margin: 0 !important;
}

/* new slider */

.header__slide__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: .3s;
}

@media (min-width: 300px) {
  .header__slide__img img {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .header__slide__img img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .header__slide__img img {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .header__slide__img img {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .header__slide__img img {
    width: 100%;
  }
}

@media (min-width: 1380px) {
  .header__slide__img img {
    width: 100%;
  }
}

.header__slide__img {
  width: 100%;
}

@media (min-width: 992px) {
  .header__slide__img {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .header__slide__img {
    width: 65%;
  }
}

.header__slide__content {
  width: 100%;
  height: auto;
  padding: 30px;
  color: white;
}

@media (min-width: 992px) {
  .header__slide__content {
    width: 50%;
    padding: 80px;
  }
}

@media (min-width: 1200px) {
  .header__slide__content {
    width: 35%;
    padding: 80px;
  }
}

.responsive-title{
 font-size: 2em !important;
}

@media (min-width: 768px) {
.responsive-title{
  font-size: 2.6em !important;
}
}

.upper{
  text-transform: uppercase !important;
}

.joinchat__button{
  width: 100px !important;
  height: 100px !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.joinchat__button__open {
  width: 90px !important;
  height: 90px !important;
  background: url('https://watchesworldshop.com/wp-content/themes/ww-shop/assets/img/help.svg') no-repeat !important;
  background-size: 100% !important;
}

/* promo */

.promo_header {
  width: 100%;
  height: auto;
}

.promo_header img {
  width: 100%;
  height: auto;
}

.bg_contador {
  background: #333;
  padding: 15px 0;
}

.countdown {
  margin: 10px;
  padding: 10px;
  background: white;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .countdown {
    margin: 30px;
    padding: 30px;
    background: white;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
  }
}

.number {
  font-size: 30px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .number {
    font-size: 40px;
    font-weight: 600;
  }
}

.countdown span {
  font-size: 12px;
  text-align: center;
}

.title_countdown {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 2px;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .title_countdown {
    font-size: 14px;
  }
}

.product_promotion {
  margin: 50px 0;
}


.mini-countdown{
background-color: #ab0001 #900000;
background-image: linear-gradient(270deg , #ab0001 0%, #900000 100%);
}

.mini-countdown .copy-countdown{
  color:white;
  font-size: 15px;
  line-height: normal;
}

@media (min-width: 768px) {
  .mini-countdown .copy-countdown{
    font-size: 18px;
  }
}

.mini-number{
  margin: 0 5px;
  width: 30px;
  height: 25px;
  background: white;
  color: black;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 800;
}

.copy-countdown span {
  font-size: 10px;
  text-align: center;
}


.price_sale {
  font-size: 12px;
}

@media (min-width: 576px) {
.price_sale {
  font-size: 14px;
}
}

.section-up{
  position: relative;
  z-index: 99;
  background: white;
}

.sale-price{
  color:red !important;
}