* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

@font-face {
  font-family: 'FiraGO';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/firago@latest/latin-400-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/firago@latest/latin-400-normal.woff) format('woff');
}
/*
.btn {
	display: inline-block;
	background: #fff;
	border-radius: 50px;
	text-decoration: none;
	border: none;
	outline: none;
	font-weight: 500;
	padding: 0.8rem 1.1rem;
	color: #000;
	font-size: 1.1rem;
}
*/
/*.btn i {
  padding-left: 1rem;
}

.btn-red {
  background: #991b1e;
  color: #fff;
}*/


.slider-container {
  max-width: 1270px;
  margin: auto;
}

.blocker {
  z-index: 999999 !important;
}

.site-header {
  /*  position: fixed;*/
  z-index: 99;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  z-index: 99999;
}
.site-header .wrapper{
  position: relative;
  max-width: 1270px;
  padding: 0px 1rem;
  /*height: 70px;
  line-height: 70px;*/
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.wrapper .logo a{
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper .logo a{
  font-family: 'FiraGO', sans-serif;
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wrapper .logo a img {
	max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  display: flex;
  align-items: center;
  list-style: none;
}
.nav-links li a{
  color: #000;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #e7e7e7;
  color: #4d4d4d;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #dadada;
  width: 180px;
  z-index: 999999;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 55px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #991b1e;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #000;
  font-size: 20px;
  cursor: pointer;
  display: none;
  background: transparent;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {

  .switcher {
    justify-content: center;
    display: flex;
  }

  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    z-index: 999999;
    width: 100%;
    /*max-width: 350px;*/
    top: 0;
    left: -100%;
    background: #fff;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }

  .btn.menu-btn{
  	color: #000;
    padding: 0;
  }

  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
    position: relative;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: absolute;
    left: 0;
    right: 0;
    opacity: 1;
    top: 0;
    visibility: visible;
    padding: 0 1rem;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    /*max-height: 100%;*/
    max-height: fit-content;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    padding: 0 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #ccc;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
.site-header input:not(.sb-search-submit){
  display: none;
}


@media (min-width: 992px) {
  .slider, .slide {
    height: 80vh;
  }
}
.slide {
  position: relative;
}
.slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.slide .slide__img img {
/*  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  animation-duration: 3s;
  transition: all 1s ease;*/

	max-width: 550px;
	float: right;
	margin-right: 10rem;
	height: auto;
	opacity: 1 !important;
	animation-duration: 3s;
	transition: all 1s ease;
}
.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide .slide__content.slide__content__left {
  left: 15%;
  transform: translate(-15%, -50%);
}
.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}
.slide .slide__content--headings {
  color: #FFF;
}
.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
}
.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.slide .slide__content--headings .top-title {
  font-family: 'Playball', cursive;
  font-size: 1.5rem;
  color: #991b1e;
}
.slide .slide__content--headings .title {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 2rem;
  max-width: 405px;
}

.slide .slide__content--headings .button-custom {
	text-decoration: none;
	color: #fff;
	padding: 0.9rem 1.7rem;
	font-size: 1.1rem;
	background: #991b1e;
	outline: none;
	border: none;
	border-radius: 50px;
	margin-top: 2rem;
}

.slider [data-animation-in] {
  opacity: 0;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
}
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
  opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}
.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}
.stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
  opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}
/* /////////// IMAGE ZOOM /////////// */
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
.zoomInImage {
  animation-name: zoomInImage;
}
@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.zoomOutImage {
  animation-name: zoomOutImage;
}
.slick-nav {
  --active: #991b1e;
  --border: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}
.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}
.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}
.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.slick-nav i:before, .slick-nav i:after {
  content: '';
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.slick-nav i:before {
  transform: rotate(-40deg);
}
.slick-nav i:after {
  transform: rotate(40deg);
}
.slick-nav:before, .slick-nav:after {
  content: '';
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.slick-nav.animate svg {
  animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
  animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
  animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
  animation: arrowDown 1.6s ease forwards;
}
@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

.site-wrapper {
	max-width: 1270px;
	width: 100%;
}

.m-auto {
	margin: auto;
}

.center {
	text-align: center;
}

.captioner p{
	color: #353535;
}

.bold {
	font-weight: bold;
}

.p-1 {
	padding: 1rem;
}

.p-2 {
	padding: 2rem;
}

.p-t-1 {
  padding-top: 1rem;
}

.p-t-2 {
  padding-top: 2rem;
}

.p-t-4 {
  padding-top: 4rem;
}

.p-t-6 {
  padding-top: 6rem;
}

.p-t-8 {
  padding-top: 8rem;
}

.p-t-10 {
  padding-top: 10rem;
}

.p-b-1 {
	padding-bottom: 1rem;
}

.p-b-2 {
	padding-bottom: 2rem;
}

.p-b-4 {
	padding-bottom: 4rem;
}

.p-b-6 {
	padding-bottom: 6rem;
}

.p-b-8 {
	padding-bottom: 8rem;
}

.p-b-10 {
	padding-bottom: 10rem;
}

.m-t-2 {
	margin-top: 2rem;
}

.m-t-4 {
	margin-top: 4rem;
}

.m-t-6 {
	margin-top: 6rem;
}

.m-t-8 {
	margin-top: 8rem;
}

.m-t-10 {
	margin-top: 10rem;
}

.m-b-2 {
	margin-bottom: 2rem;
}

.m-b-4 {
	margin-bottom: 4rem;
}

.m-b-6 {
	margin-bottom: 6rem;
}

.m-b-8 {
	margin-bottom: 8rem;
}

.m-b-10 {
	margin-bottom: 10rem;
}

.m-w-70 {
	max-width: 70%;
}

.m-w-80 {
  max-width: 80%;
}

.title-header {
	display: block;
	text-align: center;
	padding: 1rem;
  text-transform: uppercase;
}

.title-header h2 {
	font-size: 2.8rem;
}

.title-header h2 span{
/*	color: #991b1e;*/
	font-weight: bold;
/*	font-size: 3.2rem;*/
}

.hvr-shutter-out-horizontal,
.hvr-radial-out {
  background: #1B1B22 !important;
}

.hvr-shutter-out-horizontal:before,
.hvr-radial-out:before {
  background: #991b1e !important;
}
.hvr-shutter-out-horizontal.white:hover {
  color: #000 !important;
}
.hvr-shutter-out-horizontal.white:before{
  background: #fff !important;
}

.grid {
	display: grid;
}

.catalog-grid {
	gap: 2rem;  
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: space-between;
}

.catalog-grid .item {
  border-radius: 20px;
  /*  background: #f9f9f9;*/
  border: 1px solid #f2f2f2;
	overflow: hidden;
  position: relative;
}

.catalog-grid.in-items-catalog .item {
  border-radius: 10px;
}

.catalog-grid .item .grid-media {
	width: 100%;
	background: transparent;
	height: 300px;
  border-bottom: 1px solid #f2f2f2;
	justify-content: center;
/*	align-items: center;*/
	display: flex;
  position: relative;
}

.catalog-grid.in-items-catalog .item .grid-media {
  background: transparent;
  /*  height: 150px;*/
  height: 220px;
  overflow: hidden;
}

.catalog-grid .item .grid-media:hover img {
  /*  filter: drop-shadow(0 -4mm 4mm rgb(150 143 143));*/
}

.catalog-grid .item:hover .hvr-rectangle-out:before {
  background: #ebeded5c !important;
  z-index: 1 !important;
}

.hvr-rectangle-out:before {
  background: #ebeded5c !important;
}

.catalog-grid .item .grid-media .grid-media-details {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.60s;
  display: flex;
  background: transparent;
}


.catalog-grid .item .grid-media .grid-media-details .grid-details-button {
  width: 40px;
  height: 40px;
  background: #00000052;
  border-radius: 100%;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;
  color: #fff;
  transform: scale(1.5);
}

.catalog-grid .item:hover .grid-media .grid-media-details {
  transform: scale(1.7);
  opacity: 1;
}

.catalog-grid .item .grid-media .grid-media-details .grid-details-button i{
    font-size: 1.3rem;
}

/*.catalog-grid .item:hover .grid-media img{
 	object-fit: cover;
}*/

.catalog-grid .item .grid-media img{
 	width: 100%;
  object-fit: contain;
  transition: ease-in-out all 0.3s;
}

.catalog-grid.in-items-catalog .item .grid-media img{
  width: 170px;
}

.catalog-grid .item .grid-template {
	padding: 2rem;
	display: block;
}

.catalog-grid .item a {
	text-decoration: none;
}

.catalog-grid .item button {
  outline: none;
  border: none;
  width: 100%;
  background: transparent;
  cursor: pointer;
}

.catalog-grid .item .grid-info {
	display: block;
  text-align: left;
}

.catalog-grid .item .grid-header{
	font-size: 0.7rem;
	color: #272727;
	line-height: 1.7rem;
  position: relative;
}

.catalog-grid .item .grid-header h2:after {
  position: absolute;
  left: 0;
  bottom: -9px;
  content: '';
  background: #f2f2f2;
  width: 30%;
  height: 0.1rem;
  border-radius: 20px;
}

.catalog-grid .item .grid-description{
	padding-top: 1rem;
	padding-bottom: 2rem;
	color: #818181;
	line-height: 1.5rem;
}

.catalog-grid .item .grid-details ul{
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 2rem;
	row-gap: 2rem;
}

.catalog-grid.in-items-catalog .item .grid-details ul{
  column-gap: 1rem;
  row-gap: 1rem;
}

.catalog-grid .item .grid-details ul li{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	column-gap: 1rem;
	flex-direction: column;
	/*row-gap: 1rem;*/
  max-width: 30px;
}

.catalog-grid .item .grid-details ul li:before {
  content: '';
  width: 45px;
  height: 45px;
  position: absolute;
  z-index: 1;
  margin-top: -9px;
  background: #fff;
  border-radius: 9px;
  border: 1px solid #cecece;
}

.catalog-grid .item .grid-details ul li img {
	max-width: 30px;
  max-height: 30px;
  filter: brightness(0);
  position: relative;
  z-index: 2;
  padding: 4px;
}

.catalog-grid.in-items-catalog .item .grid-details ul li img {
  max-width: 30px;
  max-height: 30px;
  filter: brightness(0);
  opacity: 0.7;
}

.catalog-grid .item .grid-details-head{
	font-weight: bold;
	color: #272727;
	font-size: 0.6rem;
/*  border-right: 1px solid #c4c4c4;*/
  padding-right: 1rem;
  padding-left: 1rem;
  white-space: nowrap;
}

.catalog-grid .item .grid-details ul li:last-child .grid-details-head {
  border: none;
}

.catalog-grid .item .grid-details li img{
	margin-bottom: 1rem;
}

.catalog-grid .item .grid-details-footer {
	color: #818181;
	font-size: 0.5rem;
}

.catalog-grid .item .grid-link {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 1.5rem;
  top: 12.4rem;
  width: 40px;
  transition: all 0.3s;
  height: 40px;
  border-radius: 100%;
  background: #fff;
  border: 1px solid #f2f2f2;
}

.catalog-grid .item .grid-link:hover {
  transform: scale(1.4);
}

.catalog-grid .item .grid-link a {
  color: #000;
  text-decoration: underline;
}

.grid-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  padding: 6rem;
  display: flex;
  position: relative;
  flex-direction: row;

}

.hero.herohome {
  background-attachment: fixed; 
  background-image: url('/assets/images/hero/hero2.jpg'); 
  background-size: 100%; 
  background-position: center;
}

.hero-bg-dark {
	width: 100%;
	position: absolute;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
  /*	background: #0000009c;*/
	z-index: 1;
}

.hero .hero-header{
	color: #fff;
	font-size: 3rem;
	padding: 1rem;
}
.hero .hero-body {
	color: #aeaeae;
}

.j-center {
	justify-content: center;
}

.hero-box {
	position: relative;
	z-index: 2;
}

.columns-contaier {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	justify-content: space-between;
}

.columns-contaier .column-box {
	padding: 1.5rem 3rem;
	background: #ebeded5c;
	display: flex;
  border-radius: 20px;
	flex-flow: column;
}

.columns-contaier .column-box img {
	max-width: 30px;
}

.columns-contaier .column-body {
	margin-top: 1rem;
}

.columns-contaier .column-body .column-head{
	font-weight: bold;
	font-size: 1.2rem;
  position: relative;
	color: #272727;
}

.columns-contaier .column-body .column-head:after {
  position: absolute;
  left: 0;
  top: 35px;
  content: '';
  background: #d3d3d3;
  width: 30%;
  height: 0.1rem;
  border-radius: 20px;
}

.columns-contaier .column-body .column-caption{
	font-size: 0.9rem;
	color: #818181;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  border-top: 1px solid #f2f2f2;
  color: #fefefe;
}

.footer .heading {
  color: #000;
  text-transform: uppercase;
  margin: 0 auto;
  margin-bottom: 3rem;
  padding: 3rem 1.5rem 0 1.5rem;
}

.footer .heading .logo-s img {
	max-width: 200px;
}

.footer .content {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem;
  color: #000;
}

.footer .content p {
  margin-bottom: 1.3rem;
}

.footer .content a {
  text-decoration: none;
  color: #5f5f5f;
}

.footer .content a:hover {
  border-bottom: 1px solid #991b1e;
  color: #000;
}

.footer .content h4 {
  margin-bottom: 1.3rem;
  font-size: 19px;
}

.footer_out_bottom {
  text-align: center;
  padding: 2rem 0;
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  background: #991b1e;
}

@media (max-width: 767px) {
  .footer .content {
    display: flex;
    flex-direction: column;
    font-size: 14px;
  }

  .footer {
    position: unset;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer .content,
  .footer {
    font-size: 14px;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .footer {
    position: unset;
  }
}

/*LANGUAGE*/
  .lang-bar {
    justify-content: center;
  }

  .dropbtn {
      background-color: transparent;
      color: #000;
      font-size: 0.7rem;
      border: none;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.4rem;
      border-radius: 10px;
  }

  .dropbtn img{
    width: 20px;
    margin-right: 0.5rem;
    vertical-align: middle;
  }

  .dropbtn:hover, .dropbtn:focus {
      background-color: #e7e7e7;
  }

  .dropdown {
      position: relative;
      display: inline-block;
      margin: 0 1rem;
  }

  .dropdown-content {
      display: none;
      position: absolute;
      background-color: #e7e7e7;
      min-width: 60px;
      /*border-radius: 10px;*/
      overflow: auto;
      /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
      z-index: 999999;
  }

  .dropdown-content a {
      color: black;
      padding: 10px 16px;
      text-decoration: none;
      display: flex;
  }

  .dropdown-content a img {
    margin-right: 0.5rem;
  }

  .dropdown a:hover {background-color: #e7e7e7}

  .show {display:block;}
/*LANGUAGE*/


/* Style for scroll-top button */
.backToTopBtn {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1;
  height: 50px;
  width: 50px;
  font-size: 20px;
  border: none;
  color: #cccccc;
  border-radius: 100%;
  transition: 0.5s;
  cursor: pointer;
}
.backToTopBtn:not(:hover) {
  background: #1f1f1f;
}
.backToTopBtn:hover {
  background: #0f0f0f;
}
.backToTopBtn.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.backToTopBtn:not(.active) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
/* Style for scroll-top button */

.container {
  display: block;
}

.container .row {
  display: flex;
}

.container .row .col {
  flex: 1;
  display: block;
}

.container .row .mr-rg-col {
  margin-right: 1rem;
}

.container .row .col-2 {
  flex: 2;
  display: block;
}

.section-title {
  padding: 1rem 0;
}

.section-title h3 {
  font-size: 0.9rem;
  font-weight: 300;
}

.drop-section {
  display: none;
}

.jc-right {
  display: flex;
  justify-content: right;
  align-items: center;
}

.filter-content {
  width: 100%;
  display: block;
  padding: 1rem 2rem;
}

.filter-content .filter-header {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 1rem 0;
}

.filter-content .filter-list {
  display: flex;
  cursor: pointer;
  transition: all ease 0.3s;
  padding: 0.5rem;
}

.filter-content .filter-list:hover {
  background: #f4f4f4;
  border-radius: 10px;
}

.filter-content .filter-form {
  margin-right: 1rem;
}

.filter-content .filter-product-name {
  font-weight: 500;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}

.filter-content .filter-product-name.by-image {
  position: relative;
}

/*.filter-content .filter-product-name.by-image:after {
  content: '';
  width: 30px;
  height: 30px;
  background: #fff;
  z-index: 1;
  border-radius: 100%;
  border: 1px solid #9a1d20;
  position: absolute;
  left: 0;
}*/

.filter-product-name .filter-product-image-icon {
  width: 20px;
/*  height: 20px;*/
  position: relative;
  z-index: 2;
  filter: brightness(0);
  margin-left: 5px;
  margin-right: 1.3rem;
}

.bg-gray {
  background: #f9f9f9;
}

.br-20 {
  border-radius: 20px;
}

.max-w-300 {
  max-width: 300px;
}

/*RANGE*/
.filter-price {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0; 
}

.price-title {
  position: relative;
  color: #fff;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 400;
}

.price-field {
  position: relative;
  width: 100%;
  padding: 1rem 0 2rem 0;
  box-sizing: border-box;
  border-radius: 3px;
}

.price-field input[type=range] {
    position: absolute;
}

/* Reset style for input range */

.price-field input[type=range] {
  width: 100%;
  height: 2px; 
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border-radius: 5px;
  pointer-events: none;
  -webkit-appearance: none;
}

.price-field input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

.price-field input[type=range]:active,
.price-field input[type=range]:focus {
  outline: 0;
}

.price-field input[type=range]::-ms-track {
  width: 100%;
  height: 2px; 
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border-radius: 5px;
  pointer-events: none;
  background: transparent;
  border-color: transparent;
  color: transparent;
  border-radius: 5px;
}

/* Style toddler input range */

.price-field input[type=range]::-webkit-slider-thumb { 
  /* WebKit/Blink */
    position: relative;
    -webkit-appearance: none;
    margin: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    margin-top: -7px;
    background-color: #991b1e;
    cursor: pointer;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
}

.price-field input[type=range]::-moz-range-thumb { 
  /* Firefox */
  position: relative;
  appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  margin-top: -7px;
  background-color: #991b1e;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}

.price-field input[type=range]::-ms-thumb  { 
  /* IE */
  position: relative;
  appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  margin-top: -7px;
  background-color: #991b1e;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}

/* Style track input range */

.price-field input[type=range]::-webkit-slider-runnable-track { 
  /* WebKit/Blink */
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #991b1e;
  border-radius: 5px;
}

.price-field input[type=range]::-moz-range-track { 
  /* Firefox */
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #991b1e;
  border-radius: 5px;
}

.price-field input[type=range]::-ms-track { 
  /* IE */
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #991b1e;
  border-radius: 5px;
}

/* Style for input value block */

.price-wrap {
  display: flex;
  justify-content: space-between;
  color: #991b1e;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 7px;
}

.price-wrap-1, 
.price-wrap-2 {
  display: flex;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid #b9b9b9;
  width: 100%;
}

.price-wrap-1 {
  border-right: none;
  border-radius: 20px 0 0 20px;
}

.price-wrap-2 {
  border-radius: 0 20px 20px 0;
}

.price-title {
  margin-right: 5px;
  backgrund: #d58e32;
}

.price-wrap_line {
  margin: 0 10px;
}

.price-wrap #one, 
.price-wrap #two {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-right: 2px;
  background:  transparent;
  border: 0;
  outline: 0;
  color: #000;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 400;
}

.price-wrap label {
  text-align: right;
}

/* Style for active state input */
    
.price-field input[type=range]:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.5px #fff;
  transition-duration: 0.3s;
}

.price-field input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.5px #fff;
  transition-duration: 0.3s;
}
/*RANGE*/


/*DROPDOWN SELECT BOX*/
.dropdown-select {
  width: 10rem;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #f4f4f4;
  transition: all .5s ease;
  border-radius: 20px;
  position: relative;
  font-size: 1rem;
  color: #474747;
  height: 100%;
  text-align: left
}
.dropdown-select .select {
    cursor: pointer;
    display: block;
    padding: 10px
}
.dropdown-select .select > i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px
}

.dropdown-select:active {
    background-color: #f8f8f8
}
.dropdown-select.active:hover,
.dropdown-select.active {
    outline: none;
    border-radius: none;
}
.dropdown-select.active .select > i {
    transform: rotate(-90deg)
}
.dropdown-select .dropdown-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9
}
.dropdown-select .dropdown-menu li {
    padding: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer
} 
.dropdown-select .dropdown-menu {
    padding: 0;
    list-style: none
}
.dropdown-select .dropdown-menu li:hover {
    background-color: #f2f2f2
}
.dropdown-select .dropdown-menu li:active {
    background-color: #e2e2e2
}
/*DROPDOWN SELECT*/

/*PAGINATION*/

.pagination ul {
  margin: 2em auto;
  padding-left: 0;
  list-style-type: none;
}

.page-number {
  display: inline;
}

.page-number a {
  text-decoration: none;
  color: black;
}

/* Pagination 1 */
.pagination-1 .page-number {
  margin: 0.25em;
}

.pagination-1 .page-number a {
  padding: 0.125em;
}

.pagination-1 .active a {
  font-weight: bold;
  border-bottom: 3px solid black;
}

.pagination-1 .prev,
.pagination-1 .next {
  text-transform: uppercase;
}

/* Pagination 2 */
.pagination-2 .page-number {
  padding: 8px 16px;
  background-color: #f3f4f2;
}

.pagination-2 .page-number:hover {
  background-color: #d9dcd6;
}

.pagination-2 .active {
  border-radius: 4px;
  background-color: #991b1e;
}

.pagination-2 .active:hover {
  background-color: #991b1e;
}

.pagination-2 .active a {
  color: #f3f4f2;
}

/* Pagination 3 */
.pagination-3 .page-number {
  margin: 0.25em;
}

.pagination-3 .page-number a {
  padding: 0.125em;
}

.pagination-3 .active {
  padding: 4px 8px;
  border-radius: 50%;
  background-color: #16425b;
  color: white;
}

.pagination-3 .active a {
  color: white;
}
/*PAGINATION*/

.comp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row nowrap;
}

.comp-row .col:first-child {
  flex: 0 0 45%;
}

.comp-row .col:last-child {
  flex: 0 0 50%;
}

.comp-row .col .comp-resp-img {
  width: 100%;
  height: auto;
  font-size: 0;
  margin: 0 auto;
  position: relative;
  max-width: 500px;
}

.comp-row .comp-pre-title {
  position: relative;
  margin-bottom: 5px;
  z-index: 1;
  font-size: 1.4rem;
  line-height: 2.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  color: #5b627d;
}

.comp-row .comp-title {
    margin-top: 5px;
    font-size: 2rem;
    line-height: 2.6rem;
    font-weight: 500;
    color: #232938;
    margin-bottom: 15px;
}

.comp-row .comp-p {
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-top: 2.4rem;
    margin-right: auto;
    color: #5b627d;
    font-size: 0.7rem;
}

.comp-row .comp-ul {
  padding: 1rem 0;
}

.comp-row .comp-ul li {
  margin: 1rem;
  color: #5b627d;
  font-size: 0.7rem;
}

.green-doodle {
    background-image: url(../../assets/images/green-doodle.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 170px;
}

.comp-row .comp-cta-btn {
  margin-top: 2rem;
  display: block;
}

.comp-cards {
  border-top: 3px solid #e9e9e9;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 30px;
  flex-flow: row wrap;
  justify-content: space-between;
}

.comp-cards .card {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
  padding: 30px 1%;
  flex: 1;
  margin: 1rem;
}

.comp-cards .card .comp-title {
  margin-bottom: 10px;
  font-size: 2.8rem;
  line-height: 2.2rem;
  font-weight: 500;
  color: #232938;
}

.comp-cards .comp-p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
    color: #5b627d;
}


/*CONTACT*/
.contact-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #991b1e;
  position: relative;
}

.circle {
  border-radius: 50%; 
  background: linear-gradient(135deg, transparent 20%, #c14c4f);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #991b1e;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

.contact-form .btn {
  width: 100%;
}

form.contactform {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container label.error {
  right: 1rem;
  background: #991b1e;
  text-align: right;
  color: yellow;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #991b1e;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #000;
  font-weight: bold;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #991b1e;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #991b1e, #e45457);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #991b1e;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #991b1e1f, #ff5e6200);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form.contactform,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

/*  .btn {
    padding: 0.45rem 1.2rem;
  }*/
}

/*CONTACT*/

.error_page {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.error_page h1 {
  font-size: 5rem;
}


.error_page h3 {
  padding: 1rem;
}

/*MODAL*/
.product-modal {
  max-width: 800px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  position: relative;
}

.product-modal-loader-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.product-modal.in-page {
  max-width: inherit !important;
}

.in-page .product-modal-section {
  max-width: 700px !important;
}

.in-page .product-modal-image, .in-page .product-modal-image img {
  max-width: 600px !important;
}

.product-modal-content {
  display: flex;
  justify-content: space-between;
  /*  align-items: center;*/
}

.inner-details .product-modal-section{
  overflow: inherit;
  max-height: none;
}

.product-modal.in-page .product-modal-content {
  align-items: initial;
}

.product-modal-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-right: 1px solid #f2f2f2;
}

.product-modal-image,
.product-modal-image img{
  max-width: 400px;
}

.product-modal-image img{
/*  filter: drop-shadow(0 -2mm 2mm rgb(201 201 201));*/
}

.product-modal-section {
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  max-height: 500px;
  overflow: auto;
}

.product-modal-section {
  scrollbar-color: #991b1e #e9e9e9;
  scrollbar-width: thin;
}

.product-modal-header {
  display: block;
  margin-bottom: 2rem;
}

.product-modal-header h2{
  padding-bottom: 1rem;
  position: relative;
}

.product-modal-header h2:after {
  position: absolute;
  left: 0;
  bottom: 6px;
  content: '';
  background: #f2f2f2;
  width: 30%;
  height: 0.1rem;
  border-radius: 20px;
}

.product-modal-header p{
  color: #767676;
}

.product-modal-section .grid-details {
  padding: 1rem 0;
  border-bottom: 2px solid #f2f2f2;
}

.product-modal-section .grid-details ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 1rem;
}

.product-modal-section .grid-details ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1rem;
    flex-direction: column;
    /* row-gap: 1rem; */
    position: relative;
}

.product-modal-section .grid-details ul li:before {
  content: '';
  width: 45px;
  height: 45px;
  position: absolute;
  z-index: 1;
  margin-top: -9px;
  background: #fff;
  border-radius: 9px;
  border: 1px solid #cecece;
}

.product-modal-section .grid-details ul li img {
/*    max-width: 30px;*/
    max-height: 30px;
    filter: brightness(0);
    z-index: 2;
/*    opacity: 0.5;*/
}

.product-modal-section .grid-details li img {
    margin-bottom: 1rem;
}

.product-modal-section .grid-details-head {
    font-weight: bold;
    color: #272727;
    font-size: 0.7rem;
}

.product-modal-section .grid-details-footer {
    color: #818181;
    font-size: 0.7rem;
}

.product-modal-price {
  display: flex;
  margin-bottom: 1rem;
  justify-content: left;
  align-items: center;
}

.product-modal-price span:not(:last-child) {
  margin-right: 1rem;
}

.product-modal-price .product-modal-sale-price {
  font-size: 2rem;
  font-weight: bold;
}

.product-modal-price .product-modal-regular-price {
  font-size: 1.5rem;
  color: #898989;
}

.product-modal-price .product-modal-sale-badge {
/*  letter-spacing: .1rem;*/
  line-height: 1;
  text-align: center;
  background: #2dff28;
  border-radius: 0.3rem;
  padding: .4rem 0.9rem;
  /*  max-width: 50px;*/
  font-size: 0.6rem;
}

.product-modal-types-list {
  display: block;
}

.product-modal-types-list ul {
  list-style: disc;
  padding: 1rem 2rem;
}

.product-modal-types-list ul.default-ul {
  list-style: none !important;
  padding: 0 !important;
}

.product-modal-types-list ul.default-ul li {
  padding: 1rem 0 !important;
  color: #898989 !important;
  display: block !important;
  font-size: inherit !important;
}

.product-modal-types-list ul > li {
  display: list-item;
  text-align: left;
  color: #424242;
  font-size: 0.9rem;
}

.product-modal-types-list ul > li span{
  display: block;
  color: #000;
  font-size: 0.9rem;
}

.product-modal-types-list th,
.product-modal-types-list tr,
.product-modal-types-list td{
  padding: 0.6rem;
  font-size: 0.7rem;
}

.product-modal-types-list table {
  border-color: #c4c4c4;
}

.product-modal-types-list table a {
  color: #981b1e;
}

.table.mods {
  border: 1px solid #dcdcdc !important;
  width: 100%;
}

.table.mods tbody tr {
  border-bottom: 1px solid #dcdcdc;
}

.table.mods tbody tr td{
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

.table.mods tbody tr td:last-child{
  border-right: none;
}

.table.mods tbody tr:last-child td{
  border-bottom: none;
}

.product-modal-footer {
  display: flex;
  margin-top: 1rem;
  justify-content: space-between;
  align-items: center;
}

.product-modal-section .link-more {
  font-size: 0.9rem;
  color: #991b1e;
}

.product-modal-slider {
  max-width: 600px;
}



/*ACCORDION*/

.product-accordion-container {
  margin-top: 3rem;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #991b1e;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 2.7rem 1em 0;
  color: #474747;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #991b1e;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #991b1e;
  border: 1px solid #991b1e;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #991b1e;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 40rem;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}
/*ACCORDION*/


/*LOADER*/
/* HTML: <div class="loader"></div> */
body.overflow {
  overflow: hidden;
}
.loader-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #991b1e;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}
/*LOADER*/


/*SEARCH*/

.search-li.li-resize {
  width: 200px;
}

.search-li.li-resize input[type="search"].sb-search-input{
  display: block;
}

.sb-search {
    margin: 0 1rem;
    position: relative;
    width: 0%;
    min-width: 30px;
    height: 30px;
    overflow: hidden;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
    -webkit-backface-visibility: hidden;
}

.sb-search-input {
    position: absolute;
    top: 0;
    right: 0px;
    border: none;
    outline: none;
    background: #efefef;
    width: 100%;
    height: 30px;
    margin: 0;
    z-index: 10;
    padding: 1rem;
    font-size: 0.9rem;
    color: #000;
}
 
input[type="search"].sb-search-input {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}
.sb-search-input::-webkit-input-placeholder {
    color: #626262;
}
 
.sb-search-input:-moz-placeholder {
    color: #626262;
}
 
.sb-search-input::-moz-placeholder {
    color: #626262;
}
 
.sb-search-input:-ms-input-placeholder {
    color: #626262;
}

.sb-icon-search,
.sb-search-submit  {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

.sb-search-submit {
    background: #fff; /* IE needs this */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
    filter: alpha(opacity=0); /* IE 5-7 */
    opacity: 0;
    color: transparent;
    color:red;
    border: none;
    outline: none;
    z-index: -1;
}

.sb-icon-search {
    color: #000;
    z-index: 90;
    font-size: 0.9rem;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    border-radius: 100%;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
}
 
.sb-icon-search:before {
    content: "";
}

.sb-search.sb-search-open,
.no-js .sb-search {
    width: 100%;
    border-radius: 20px;
}

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
    background: #000;
    color: #fff;
    z-index: 11;
}

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
    z-index: 90;
}
/*SEARCH*/


/* SELECT BOX */

.drop-menu-social-bar {
  display: none;
}

.select-box {
  position: relative;
  display: block;
  width: 100%;
  max-width: 140px;
  z-index: 9999;
  font-size: 0.7rem;
  color: #000;
}
/*@media (min-width: 768px) {
  .select-box {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .select-box {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .select-box {
    width: 30%;
  }
}*/
.select-box__current {
  position: relative;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
}
.select-box__current:focus + .select-box__list {
  opacity: 1;
  -webkit-animation-name: none;
          animation-name: none;
}
.select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}
.select-box__current:focus .select-box__icon {
  transform: translateY(-50%) rotate(180deg);
}
.select-box__icon {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width:  10px;
  opacity: 0.3;
  transition: 0.2s ease;
}
.select-box__value {
  display: flex;
}
.select-box__input {
  display: none;
}
.select-box__input:checked + .select-box__input-text {
  display: block;
}
.select-box__input-text {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0.2rem 1rem;
  border-radius: 10px;
  background-color: transparent;
}
.select-box__list {
  position: absolute;
  width: 100%;
  padding: 0;
  list-style: none;
  opacity: 0;
  -webkit-animation-name: HideList;
          animation-name: HideList;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: step-start;
          animation-timing-function: step-start;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: 1px solid #991b1e;
  overflow: hidden;
}
.select-box__option {
  display: block;
  padding: 0.2rem 1rem;
  background-color: #fff;
}
.select-box__option:hover, .select-box__option:focus {
  color: #546c84;
  background-color: #fbfbfb;
}
@-webkit-keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
@keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
/*SELECT BOX*/