@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'bodoni_sans_textregular';
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
}

.btn{
  transition: 0.3s;
}
.btn:hover{
  opacity: 0.8;
}

body.menu-active {
  position: relative;
  background-color: rgba(0, 0, 0, 0.1);
}

@-webkit-keyframes fixedNav {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fixedNav {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.navbar--fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-animation: fixedNav 0.5s;
  animation: fixedNav 0.5s;
}

header .main.large-screen.navbar--fixed .menu li .menu-item__content {
  bottom: 0;
}

header .main.large-screen.navbar--fixed .menu li .menu-item__content::before {
  content: unset;
}

header .top span {
  font-size: 12px;
  color: #C42000;
  font-weight: 800;
}

header .main {
  background-color: #181818;
}

header .main .menu,
header .main .tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

header .main .tools .tool .dropdown_account{
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(calc(100% + 5px));
  background: white;
  padding: 20px 25px;
  border-radius: 10px;
  z-index: 99;
  width: max-content;
  box-shadow: 0 3px 11px 0 rgb(0,0,0,0.1);
}

.mt-2
{
  margin-top: 10px;
}

.shop-spinner {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}


.table_desc .cart_page table thead tr th {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px;
  text-align: center;
}

.order-button {
  background: #D80034;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  height: 38px;
  line-height: 18px;
  padding: 10px 15px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 3px;
}

header .main .tools .tool .dropdown_account ul{
  list-style: none;
}
header .main .tools .tool .dropdown_account ul li{
  line-height: 22px;
}
header .main .tools .tool .dropdown_account ul li a{
  text-transform: uppercase;
    font-size: 14px;
}
header .main .tools .tool.current svg path{
  fill: #C42000;
}

header .main .menu a,
header .main .tools a {
  text-decoration: none;
}

header .main .menu .tool~.tool,
header .main .tools .tool~.tool {
  margin-left: 10px;
}

header .main .search {
  font-family: 'Futura Bk BT';
  position: relative;
}

header .main .search a {
  font-size: 12px;
}

header .main .search input {
  width: 400px;
  height: 29px;
  background: white;
  font-size: 12px;
  color: #767676;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 10px;
  border: none;
  outline: none;
  font-family: inherit;
  border-radius: 15px;
  padding-left: 17px;
}

header .main .search #autocomplete-wrapper,header .main .search #autocomplete-wrapper-des {
  position: absolute;
  background: #fff;
  z-index: 2;
  width: 100%;
  left: 0;
  bottom: -2px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  text-transform: lowercase !important;
}
header .main .search #autocomplete-wrapper a:hover ,header .main .search #autocomplete-wrapper-des a:hover{
  opacity: 0.7;
}

header .main.large-screen .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.top{
  display: none;
}
header .main.large-screen .menu .menu-item:hover>a {
  background-color: white;
  color: #3F3F3F;
}
header .main.large-screen .menu .menu-item.current >a {
  background-color: white;
  color: #3F3F3F;
}


header .main.large-screen .menu li {
  margin: 20px 0;
  line-height: 1;
}

header .main.large-screen .menu li a {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  padding: 20px 15px;
  line-height: 1;
  font-family: 'Futura Pro';
}
header .bottom .menu-item__content{
  bottom: 0 !important;
}
header .bottom .menu-item__content::before{
  content: unset !important;
}

@media(max-width:991px){
  header .bottom .menu-item__content{
    display: none !important;
  }
}
header .menu-item__content {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  /* height: 250px; */
  height: auto;
  background: white;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 2222;
  border: 1px solid #D9D9D9;
  background: white;
  opacity: 0;
  visibility: hidden;
  padding: 30px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: 'Futura Bk BT';
  font-weight: 400;
}
header .main.large-screen .menu-item__content{
  width: calc(100% - 30px);
  left: 50%;
  transform: translateY(100%) translateX(-50%);
}
header .menu-item__content::before {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  position: absolute;
  height: 45px;
  background-color: transparent;
}

header .menu-item__content .categories-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .menu-item__content .categories-group ul {
  list-style: none;
}

header .menu-item__content .categories-group ul h4 {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 16px;
  color: #3f3f3f;
  font-weight: 800;
 
  font-family: 'Futura Hv BT';
}


header .menu-item__content .categories-group ul li {
  margin: 0 !important;
  margin-bottom: 10px !important; 
}

header .menu-item__content .categories-group ul li a {
  text-transform: capitalize !important;
  font-weight: normal !important;
  color: #636363 !important;
  padding: 0 15px 0 0 !important;
  font-family: 'Futura Bk BT' !important;
  font-size: 16px !important;
    line-height: 1 !important;

}
header .menu-item__content .categories-group ul li a:hover {
 opacity: .8;
}

header .menu-item__content .categories-group ul~ul {
  margin-left: 60px;
}

header  .menu-item__content .categories-img {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
header .menu-item__content .categories-img.model-2{
  grid-template-columns: 1fr;
}

header .menu-item__content .categories-img.model-2 .category-img{
  width: 75px !important;
  border-radius: 50%;
  overflow: hidden;
  background-color: transparent;
  padding: 0 !important;
}

header .menu-item__content .categories-img .category-img {
  height: fit-content;
  width: 180px;
  background: gray;
  padding: 0;
  position: relative;
  overflow: hidden;
}
header .menu-item__content .categories-img .category-img img{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .3s ease;
}

header .menu-item__content .categories-img .category-img .cat-title{
  position: absolute;
  bottom: 30px;
  font-size: 16px;
  color: #3f3f3f;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 900;
  z-index: 2;
  transition: .3s ease;
}
/* header .menu-item__content .categories-img .category-img:hover img{
  transform: scale(1.1);
}
header .menu-item__content .categories-img .category-img:hover .cat-title{
  letter-spacing: 5px;
  
} */

header .menu-item__content .categories-img .category-img::before{
  content: "";
  display: block;
  padding-bottom: 100%;
}
header .menu-item__content .categories-img .category-img::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(179.85deg, rgba(198, 198, 198, 0) 58.3%, rgba(255, 255, 255, 0.7) 97.59%);
}


header .menu-item__content .categories-img .category-img--half {
  -ms-grid-row: 1;
  grid-row-start: 1;
  grid-row-end: 2;
}

header .menu-item__content .categories-img .category-img--half~.category-img--half {
  -ms-grid-row: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}

header li:hover .menu-item__content {
  opacity: 1;
  visibility: visible;
}

header .main.large-screen .menu li~li {
  margin-left: 30px;
}

header .main.small-screen {
  padding: 10px 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

header .main.small-screen .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

header .main.small-screen .toggler {
  cursor: pointer;
}

header .main.small-screen .toggler svg path {
  fill: white;
}

header .main.small-screen .menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  background-color: #fff;
  height: 100vh;
  padding: 0 20px;
  z-index: 22;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .main.small-screen .menu-wrapper .close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

header .main.small-screen .menu-wrapper .close svg {
  width: 15px;
  height: 15px;
}

header .main.small-screen .menu-wrapper .menu__info {
  width: 100%;
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .main.small-screen .menu-wrapper .menu__info>a {
  margin-right: auto;
}

header .main.small-screen .menu-wrapper .menu__info>a svg path {
  fill: black;
}

header .main.small-screen .menu-wrapper .menu__info .info-wrapper {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

header .main.small-screen .menu-wrapper .menu__info .info-wrapper .info-wrapper__count {
  position: absolute;
  top: 0;
  right: -5px;
  width: 14px;
  height: 14px;
  font-size: 10px;
  background: #C42000;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .main.small-screen .menu-wrapper .menu__info .info-wrapper~.info-wrapper {
  margin-left: 10px;
}

header .main.small-screen .menu-wrapper .menu {
  display: block;
  margin-top: 20px;
}

header .main.small-screen .menu-wrapper .menu .menu-item {
  padding: 5px 0;
  max-height: 33px;
  overflow: hidden;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

header .main.small-screen .menu-wrapper .menu .menu-item>a {
  display: inline-block;
  width: 100%;
  position: relative;
  font-weight: 900;
}

header .main.small-screen .menu-wrapper .menu .menu-item a {
  color: #3F3F3F;
  text-transform: capitalize;
}

header .main.small-screen .menu-wrapper .menu .menu-item-has-childrens>a::after {
  content: '›';
  position: absolute;
  top: 0;
  right: 10px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

header .main.small-screen .menu-wrapper .menu .menu-item.open {
  max-height: 2500px;
}

header .main.small-screen .menu-wrapper .menu .menu-item~.menu-item {
  border-top: 1px solid rgba(196, 196, 196, 0.29);
}

header .main.small-screen .menu-wrapper .menu .submenu {
  padding-left: 20px;
  list-style: none;
  margin-top: 10px;
}

header .main.small-screen .menu-wrapper .menu .submenu .submenu-item>a {
  font-weight: 900;
  font-size: 14px;
}

header .main.small-screen .menu-wrapper .menu .submenu .submenu-childrens {
  padding-left: 25px;
  list-style: none;
}

header .main.small-screen .menu-wrapper .menu .submenu .submenu-childrens a {
  font-size: 14px;
}

header .main.small-screen .menu-wrapper .menu__footer {
  margin-top: 40px;
  background: #fff;
  padding-bottom: 20px;
}

header .main.small-screen .menu-wrapper .menu__footer .contact {
  display: block;
  font-weight: 900;
  font-size: 14px;
}

header .main.small-screen .menu-wrapper .menu__footer .socials {
  margin-top: 10px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .main.small-screen .menu-wrapper .menu__footer .socials .social~.social {
  margin-left: 10px;
}

header .main.small-screen .menu-wrapper .menu__footer .socials .social a {
  font-size: 12px;
  text-decoration: none;
  color: #808080;
  background: #181818;
}

header .main.small-screen .menu-wrapper.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

header .main.small-screen .search {
  margin-top: 10px;
  width: 100%;
  position: relative;
}

header .main.small-screen .search input {
  width: 100%;
}

header .bottom {
  background-color: #303030;
 
  position: relative;
  /* margin-bottom: 20px; */
  font-family: 'Futura Bk BT';
}

header .bottom .submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  width: 100%;
  position: relative;
}

/* header .bottom .submenu li~li {
  margin-left: 20px;
} */

header .bottom .submenu li.submenu__item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;

}
header .bottom .submenu li.submenu__item--red {
background-color: #C42000;
color: white;

}
header .bottom .submenu li.submenu__item:hover, header .bottom .submenu li.submenu__item.current{
  background-color: white;
}
header .bottom .submenu li.submenu__item:hover a, header .bottom .submenu li.submenu__item.current a{
  color: #C42000;

}

header .bottom .submenu li.submenu__item a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: normal;
  padding: 10px 15px;
  display: inline-block;
}

header .bottom .submenu li.submenu__item:last-child a{
  position: relative;
}

header .bottom .submenu li.submenu__item:last-child a::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #C42000;
}

header .bottom::after {
  /* content: ''; */
  background: #1C1B1B;
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 20px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.discount-banner {
  background-color: #C42000;
  padding: 10px 0 0 0;
  color: white;
}

.discount-banner h2 {
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  font-family: 'Futura BdCn BT';
}

.discount-banner span {
  font-size: 10px;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  display: inline-block;
  font-family: 'Roboto';
  font-weight: 300;
}

@media (max-width: 1200px) {
  header .menu-item__content {
    padding: 30px;
  }

  header .menu-item__content .categories-group ul~ul {
    margin-left: 20px;
  }

  header .menu-item__content .categories-img {
    gap: 15px;
  }

  header .menu-item__content .categories-img .category-img {
    width: 120px;
  }
}

@media (min-width: 991px) {
  header .main.small-screen {
    display: none;
  }
}

@media (max-width: 991px) {
  header .main.large-screen {
    display: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.section-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 40px;
  font-family: 'Futura Bk BT';
  color: #767677;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.four-column-products {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 50px;
}

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

.text-white {
  color: white;
}

.text-italic {
  font-style: italic;
}

@media (min-width: 991px) {
  .four-column-products {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .four-column-products {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .four-column-products {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .four-column-products {
    gap: 30px;
  }
}

main.home .home-intro {
  padding-top: 30px;
}

main.home .home-intro .categories {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  /* padding: 0 50px; */
  margin-top: 20px;
}

main.home .home-intro .categories .category {
  font-size: 30px;
  color: white;
  padding: 65px 0;
  background-color: #cecece;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  transition: .3s ease;
}

main.home .home-intro .categories .category::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
mix-blend-mode: normal;
opacity: 0.22;
}
main.home .home-intro .categories .category::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: .3s ease;
}

main.home .home-intro .categories .category:hover::after{
  background: rgba(59, 59, 59, 0.6);
  mix-blend-mode: multiply;
  opacity: 1;
  
}

main.home .home-intro .categories .category .category__title {
  font-size: 30px;
  text-transform: uppercase;
  font-family: 'bodoni_sans_textbold';
  position: relative;
  width: fit-content;
  margin: 0 auto;
  z-index: 1;
}
main.home .home-intro .categories .category .category__title::before{

  position: absolute;
  top: 0;
  right: -10px;
  width: 10px;
  height: 11px;
  background-color: #C42000;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.2s;
}

main.home .home-intro .categories .category:hover .category__title::before{
  transform: scale(1);
  opacity: 1;
}

main.home .home-intro .banner-slider,
main.home .home-intro .brands-slider {
  overflow-x: hidden;
  /* max-width: calc(100% - 100px); */
  max-width:100%;
  margin: 0 auto;
  z-index: 1;
}

main.home .home-intro .brands-slider {
  margin-top: 100px;
  margin-bottom: 100px;
}

main.home .home-intro .banner-slider {
  height: 350px;
  position: relative;
}
@media(max-width:576px){
  main.home .home-intro .banner-slider {
    height: 350px !important;
  }
}
main.home .home-intro .banner-slider .swiper-slide {
  position: relative;
}

main.home .home-intro .banner-slider .swiper-slide .banner__img {
  background-color: #cecece;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
main.home .home-intro .banner-slider .swiper-slide .banner__img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(178.95deg, rgba(5, 3, 3, 0.91) 6.01%, #050303 41.04%, rgba(5, 3, 3, 0.91) 70%, rgba(57, 53, 53, 0) 132.64%);
  mix-blend-mode: normal;
  opacity: 0.22;
}


main.home .home-intro .banner-slider .swiper-slide .banner__content {
  position: absolute;
  bottom: 50px;
  width: 100%;
  color: white;
}

main.home .home-intro .banner-slider .swiper-slide .banner__content h2 {
  font-family: 'bodoni_sans_textbold';
  font-size: 80px;
  text-transform: uppercase;
}

main.home .home-intro .banner-slider .swiper-slide .banner__content h3 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 20px;
  font-family: 'Futura Hv BT';
  letter-spacing: 2px;
}

main.home .home-intro .banner-slider .swiper-slide .banner__content button {
  font-size: 12px;
  background-color: #C42000;
  padding: 10px 25px;
  border: none;
  border-radius: 3px;
  color: white;
  font-weight: 500;
  font-family: 'Roboto';
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  transition: .3s ease;
}
main.home .home-intro .banner-slider .swiper-slide .banner__content button:hover{
  background-color: #3b3b3b;
}

main.home .home-intro .banner-slider .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: white;
  opacity: 1;
}

main.home .home-intro .banner-slider .swiper-pagination-bullet-active {
  background-color: #3F3F3F;
}

main.home .collection-banner {
  padding: 50px 0;
  background-color: #3b3b3b;
  position: relative;
}
main.home .collection-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/images/pattern-small.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
}
main.home .collection-banner h2, main.home .collection-banner h3{
  position: relative;
}


main.home .collection-banner h2 {
  color: white;
  font-size: 40px;
  font-family: 'bodoni_sans_textregular';
  font-weight: 100;
}

main.home .collection-banner h3 {
  font-family: 'Futura Hv BT';
  letter-spacing: 2px;
  font-size: 22px;
  color: #C19045;
  font-weight: 900;
  text-transform: uppercase;
}

main.home .top-selling {
  padding: 90px 0;
}

@media (max-width: 991px) {
  .home-intro .banner-slider {
    max-width: 100%;
  }

  .home-intro .categories {
    padding: 0;
  }
}

@media (max-width: 576px) {
  main.home .home-intro .banner-slider {
    max-width: 100%;
  }

  main.home .home-intro .categories {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0;
  }
}

@media (max-width: 767px) {
  main.home .home-intro .banner-slider .swiper-slide .banner__content h2 {
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  main.home .collection-banner h2 {
    font-size: 30px;
  }

  main.home .collection-banner h3 {
    font-size: 20px;
  }
}

.breadcrumbs_area {
  background: #f0f0f0;
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0;
  min-height: 40px;
  width: 100%;
  z-index: 999;
  overflow: auto;
}

.breadcrumbs_area .breadcrumb_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumbs_area .breadcrumb_content .search-tag {
  color: #656565;
  position: relative;
  background-color: #fff;
  padding: 5px;
  padding-left: 10px;
  text-align: left;
  font-size: 14px;
  /* min-width: 100px; */
  margin-left: 10px;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 4px;
}

.breadcrumbs_area .breadcrumb_content .search-tag a {
  margin-left: 6px;
  text-decoration: none;
}

main.shop-wrapper {
  padding: 60px 0;
}

main.shop-wrapper .shop {
  -ms-grid-columns: 25% calc(75% - 20px);
  grid-template-columns: 25% calc(75% - 20px);
  gap: 20px;
  margin-top: 20px;
}


.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}

 .panel .panel-title a
{
  display: flex;
  justify-content: space-between;
}


main.shop-wrapper .shop .sidebar_widget {
  display: block;
}

main.shop-wrapper .shop .sidebar_widget .widget_inner .widget_list {
  margin-bottom: 27px;
  padding: 0 30px 20px 0;
}

main.shop-wrapper .shop .sidebar_widget .widget_inner .widget_list h3 {
  font-size: 14px;
  margin-bottom: 17px;
  text-transform: uppercase;
  font-family: 'Futura';
  font-weight: 600;
  line-height: 20px;
  position: relative;
  color: #3F3F3F;
}

main.shop-wrapper .shop .products {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  height:fit-content;
}

.custom-control {
  padding-left: 0;
  position: relative;
  min-height: 1.5rem;
  display: block;
}

.custom-control .container-custom-check {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #636363;
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
}

.custom-control .container-custom-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-control .container-custom-check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #fff;
  border: 1px solid #3F3F3F;
  border-radius: 50%;
}

.custom-control .container-custom-check:hover input~.checkmark {
  background-color: #ccc;
}

.custom-control .container-custom-check input:checked~.checkmark {
  background-color: #D80034;
  border: 1px solid #D80034;
}

@media (max-width: 767px) {
  main.shop-wrapper .shop .products {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.product .product__image {
  height: 300px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}


.product .product__image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: .5s ease;
}
.product:hover .product__image img{
  transform: scale(1.02);
}

.product .product__image .discount {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #C42000;
  color: white;
  width: 32px;
  height: 34px;
  border-radius: 15px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'Roboto';
  font-weight: 500;
}

.product .product__image .price {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  background-color: #C42000;
  font-size: 12px;
  border-radius: 0 15px 0 0;
  color: white;
  font-family: 'Roboto';
  font-weight: 500;
}

.product .product__content {
  margin-top: 10px;
}

.product .product__content .product__title {
  font-size: 14px;
  text-transform: uppercase;
  color: #3F3F3F;
  font-family: 'Futura Bk BT';
  color: #3F3F3F;
}

.product .product__content .old-price {
  font-size: 13px;
  color: #cecece;
  text-decoration: line-through;
  margin-top: 10px;
  font-family: 'Roboto';
  font-weight: 500;
}

@media (max-width: 1200px) {
  .product .product__image {
    height: 250px;
  }
}

@media (max-width: 400px) {
  .product .product__image {
    height: 200px;
  }
}

main.product-wrapper {
  padding: 90px 0 0;
}

main.product-wrapper h1 {
  font-size: 33px;
  font-family: 'Futura Hv BT';
  font-weight: bolder;
}

main.product-wrapper .product-details-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% calc(60% - 100px);
  grid-template-columns: 40% calc(60% - 100px);
  gap: 100px;
  padding: 70px 0;
}

@media(max-width:991px){
  main.product-wrapper .product-details-wrapper {
    display: block;
  }
  main.product-wrapper .product-details-wrapper .gallery {
    margin-bottom: 10px;
  }
  
  main.product-wrapper .product-details-wrapper .product__content .product-action-buttons
  {
    margin-top: 0px !important;
  }

  main.product-wrapper .product-details-wrapper .product__content .variations
  {
    margin-top: 20px !important;
   
  }

  main.product-wrapper .product-details-wrapper .product__content .variations .variation
  {
    margin-bottom: 15px !important;
  }
  
  main.product-wrapper{
    padding: 0;
  }
  
}


main.product-wrapper .product-details-wrapper .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main.product-wrapper .product-details-wrapper .gallery-slider .slick-slide .slider-item {
  padding-left: 10px;
}

main.product-wrapper .product-details-wrapper .product__content .product__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: 'Futura';
  font-family: 'Futura Hv BT';
  color: #3F3F3F;
}

main.product-wrapper .product-details-wrapper .product__content .product__price .price {
  font-family: 'Futura Hv BT';
  font-size: 18px;
  color: #3F3F3F;
}
main.product-wrapper .product-details-wrapper .product__content .product__price .price h1{
  font-size: inherit;
}
main.product-wrapper .product-details-wrapper .product__content .product__description {
  font-size: 12px;
  color: #CACACA;
  margin: 50px 0;
  font-family: 'Futura Bk BT';
}

main.product-wrapper .product-details-wrapper .product__content .variations {
  font-family: 'Futura Bk BT';
  margin-top: 50px;
}

main.product-wrapper .product-details-wrapper .product__content .variations .variation {
  font-family: inherit;
  margin-bottom: 40px;
}

main.product-wrapper .product-details-wrapper .product__content .variations .variation .variation__title {
  font-size: 12px;
  margin-bottom: 15px;
  font-family: inherit;
  font-weight: 400;
  color: #3F3F3F;
}

main.product-wrapper .product-details-wrapper .product__content .variations .variation .variation__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-family: inherit;
}

main.product-wrapper .product-details-wrapper .product__content .variations .variation .variation__options .variation__option {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  cursor: pointer;
}

main.product-wrapper .product-details-wrapper .product__content .variations .variation .variation__options .variation__option.no__qty::after {
  content: " ";
  position: absolute;
  background-color: black;
  width: 27px;
  height: 1px;
  transform: rotate(45deg);
}

.no__qty
{
  opacity:0.5;
  cursor:not-allowed
}

main.product-wrapper .product-details-wrapper .product__content .variations .variation .variation__options--size .variation__option {
  border: 1px solid #3F3F3F;
  color: #3F3F3F;
}


main.product-wrapper .product-details-wrapper .product__content .variations .variation .variation__options--color .variation__option {
  border: 1px solid #EAEAEA;
}


main.product-wrapper .product-details-wrapper .product__content .variations .variation .variation__options--size .variation__option.selected,
main.product-wrapper .product-details-wrapper .product__content .variations .variation .selected {
  background-color: #C42000;
  color: white;
  border-color: #C42000;
}

main.product-wrapper .product-details-wrapper .product__content .variations .variation .variation__options .variation__option~.variation__option {
  margin-left: 20px;
}

main.product-wrapper .product-details-wrapper .product__content .product-action-buttons {
  margin-top: 30px;
  margin-bottom: 30px;
}

main.product-wrapper .product-details-wrapper .product__content .product-action-buttons button {
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}

main.product-wrapper .product-details-wrapper .product__content .product-action-buttons .add-to-cart {
  border: 1px solid #C42000;
  color: #3F3F3F;
  padding: 10px 25px;
  background-color: transparent;
  border-radius: 5px;
}

main.product-wrapper .related-products {
  border-top: 1px solid #CACACA;
  padding: 30px 0 50px 0;
}

main.product-wrapper {
  position: relative;
}

main.product-wrapper .fixed-cart-wrapper.active {
  opacity: 1;
  visibility: visible;
}

main.product-wrapper .fixed-cart-wrapper.active .fixed-cart-table {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

main.product-wrapper .fixed-cart-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .2s ease;
  z-index: 1;
  transition: .2s ease;
}


main.product-wrapper .fixed-cart-wrapper .fixed-cart-table {
  background: #fff;
  padding: 50px 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: .5s ease;
  max-height: 500px;
  overflow-y: auto;
  transition: .5s ease;
}
main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .table-footer{
  display: flex;
    justify-content: flex-end;
    gap: 20px;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .table-footer .btn{
    display: inline-block;
    min-width: 200px;
    padding: 10px 25px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
}
main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .table-footer .btn.btn--full{
  background-color: #C42000;
  border: 1px solid #C42000;
  color: white;
}
main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .table-footer .btn.btn--outline{
  background-color: white;
  border: 1px solid #333333;
  color: #333333;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table span {
  font-size: 12px;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .table-header,
main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .cart-product-row {
  -ms-grid-columns: 20% 40% 10% 10% 10% 10%;
  grid-template-columns: 20% 40% 10% 10% 10% 10%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .table-header h2 {
  font-size: 16px;
  text-transform: uppercase;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .table-body {
  margin: 20px 0;
  position: relative;
  padding: 20px 0;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .table-body::before,
main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .table-body::after {
  content: '';
  position: absolute;
  right: 0;
  width: calc(100% - 100px);
  background-color: #C4C4C4;
  height: 1px;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .table-body::before {
  top: 0;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .table-body::after {
  bottom: 0;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .cart-product-row~.cart-product-row {
  padding-top: 15px;
}

@media(max-width:991px){
  main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .product-img .img{
    margin-left: 0 !important;
  }
}
@media(max-width:767px){
  main.product-wrapper .fixed-cart-wrapper{
    display: none;
  }
}

.product-quantity .number-input {
  position: relative;
  border: 0.5px solid #B6B6B6;
  border-radius: 5px;
  width: 65px;
  margin: 0 auto;
  color: #636363;
}

.product-quantity .number-input .minus,
.product-quantity .number-input .plus {
  position: absolute;
  background: transparent;
  border: none;
  cursor: pointer;
}

.product-quantity .number-input .minus {
  left: 0;
  width: 20px;
  height: 20px;
}

.product-quantity .number-input .plus {
  right: -1px;
  background: #C42000;
  border-radius: 5px;
  color: white;
  width: 22px;
  height: 22px;
  top: -1px;
}

.product-quantity .number-input input {
  border: none;
  text-align: center;
  height: 20px;
  outline: none !important;
  width: 25px;
  color: inherit;
}

.product-quantity .number-input input::-webkit-outer-spin-button,
.product-quantity .number-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-quantity .number-input input[type=number] {
  -moz-appearance: textfield;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .cart-product-row h3 {
  font-size: 12px;
  margin-bottom: 5px;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .cart-product-row p {
  font-size: 10px !important;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .cart-product-row p span {
  font-size: 10px !important;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table input {
  width: 50px;
}

main.product-wrapper .fixed-cart-wrapper .fixed-cart-table .product-img .img {
  width: 50px;
  height: 50px;
  background-color: #CACACA;
  margin-left: 100px;
}

@media (max-width: 767px) {
  main.product-wrapper .product-details-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0px;
  }
}

footer .social-medias {
  border-top: 1px solid rgba(196, 196, 196, 0.29);
  text-align: center;
  padding: 15px 0;
  display: flex;
    justify-content: center;
    align-items: center;
}
footer .social-medias a{
  display: flex;
    justify-content: center;
    align-items: center;
}

footer .social-medias a~a {
  margin-left: 45px;
}

footer .footer__top {
  background: #F5F5F5;
  padding: 100px 0;
}

footer .footer__bottom {
  background-color: #C42000;
  padding: 10px 0;
}

footer .footer__bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .footer__bottom .copyright,
footer .footer__bottom .powered {
  font-size: 12px;
  font-family: 'Futura Bk BT';
  font-weight: 340;
}

footer .footer__bottom .powered a {
  font-weight: 500;
  text-decoration: none;
  font-size: 12px;
  color: inherit;
}

footer .widgets {
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px 0;
}

@media(min-width:767px){

  footer .widgets .widget-wrapper{
    display: flex;
  }

  footer .widgets .widget-wrapper:nth-child(2), footer .widgets .widget-wrapper:nth-child(3){
    justify-content: center;
  }
  footer .widgets .widget-wrapper:nth-child(4){
    justify-content: flex-end;
  }
}

footer .widgets .widget h4 {
  font-size: 15px;
  text-transform: uppercase;
  color: #808080;
  font-family: 'Futura';
  font-weight: 700;
  margin-bottom: 20px;
}
footer .widgets .widget img{
  width: 80px;
}

footer .widgets .widget ul {
  list-style: none;
  line-height: 1.5;
}

footer .widgets .widget ul li,
footer .widgets .widget ul a {
  font-size: 14px;
  color: #A6A1A1;
}

footer .widgets .widget ul li {
  font-family: 'Futura Bk BT';
}

footer .widgets .widget ul li a {
  text-decoration: none;
  font-family: inherit;
  font-weight: 400;
}

@media (max-width: 767px) {
  footer .widgets {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  footer .widgets {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.cart-page {
  padding: 50px 0;
}

.cart-page .cart-wrapper .cart-products .list.list--has-items img {
  height: 100px !important;
}

.cart-page .cart-wrapper .cart-products .list.list--has-items .product-quantity {
  margin: 10px 0 !important;
}

.cart-page .cart-wrapper .cart-products .list .item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
}

.cart-page .cart-wrapper .cart-products .list .item img {
  max-width: 200px;
  height: 250px;
  object-fit: contain;
}

.cart-page .cart-wrapper .cart-products .list .item .item__details .name h5 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.cart-page .cart-wrapper .nav-buttons {
  border-top: 1px solid #C4C4C4;
  padding: 15px 0;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cart-page .cart-wrapper .nav-buttons .continue {
  background: #C42000;
  padding: 5px 25px;
  color: white;
  border-radius: 5px;
}

.no-favs-wrap h4 {
  margin-bottom: 20px;
  font-family: 'Futura';
  color: #C42000;
}

.no-favs-wrap p {
  margin-bottom: 30px;
  color:#636363;
  font-family: 'Futura Bk BT';
  font-style: italic;
}

.no-favs-wrap a {
  background: #C42000;
  padding: 12px 45px;
  display: inline-block;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.mobile-forms-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media(max-width:767px){
  .mobile-forms-wrapper{
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .account_form{
    max-width: unset !important;
  }
}

.account_form {
  max-width: 300px;
}

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

.input-wrapper label {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.input-wrapper input {
  border: 0.5px solid #3F3F3F;
  border-radius: 3px;
  padding: 7px 10px;
  width: 100%;
}

.customer_login {
  padding: 100px 0;
}

.customer_login button {
  cursor: pointer;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid #0000;
  border-radius: 0.25rem;
}

.alert.alert-danger {
  color: #721c24;
  background-color: #f8d7da !important;
  border-color: #f5c6cb !important;
}

.account_form .login_submit button,
.login_submit .login {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #808080;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 12px;

}

.account_form .login_submit button.register {
  background-color: #C42000;
}

.social-text {
  margin-bottom: 10px;
  display: block;
}

.social_submit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mobile-forms-wrapper button {
  color: #fff;
  border-radius: 3px;
  padding: 6px;
  border: none;
  width: 100%;
}

.social_submit button.facebook {
  background: #4469B0;

}

.social_submit button.google {
  background-color: #C42000;
}

.input-wrapper {
  font-size: 14px;
  width: 100%;
}

.input-wrapper--half {
  width: calc(50% - 10px);
}

.account_form_register h2 {
  font-size: 25px;
  line-height: 20px;
  color: #3A3A3A;
  margin-bottom: 30px;
}

.account_form_register form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.account_form_register .input-wrapper input {
  border: none !important;
  border-bottom: 1px solid gray !important;
  border-radius: 0;
}

.account_form_register .input-wrapper .terms {
  font-size: 14px;
}

.custom-radio-group {
  display: flex;
}

.custom-radio~.custom-radio {
  margin-left: 20px;
}

.custom-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #636363;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #636363;
}

.custom-radio:hover input~.checkmark {
  background-color: #ccc;
}

.custom-radio input:checked~.checkmark::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #636363;
}

.custom-radio:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio input:checked~.checkmark:after {
  display: block;
}

.custom-radio .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.payment-methods .custom-radio-group {
  display: block;

}

.payment-methods .account_form {
  max-width: unset;
}

.payment-methods .custom-radio~.custom-radio {
  margin-left: 0;
  margin-top: 30px;
}

.payment-methods .custom-radio .checkmark {
  border-radius: unset;
}

.payment-methods .nav-buttons {
  display: flex;
  margin-top: 50px;
}

.cart-page.overview form {
  max-width: 200px;
  width: 100% !important;
}

.payment-methods .nav-buttons button,
.cart-page.overview a,
.cart-page.overview button {
  width: 100% !important;
  padding: 10px !important;
  border: none;
  border-radius: 3px !important;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 12px;
  max-width: 200px;

}

.payment-methods .nav-buttons .back,
.cart-page.overview .back {
  background: #0000;
  border: 1px solid #000;
  color: #636363;
}

.payment-methods .nav-buttons .continue {
  background-color: #C42000;
  color: white;
  border: 1px solid #C42000;
}


.cart-page.overview .cart-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.cart-page.cart-page.overview .payment-details {
  border: 1px solid rgba(63, 63, 63, 0.17);
  padding: 40px 30px;
}

.cart-page.overview .payment-details .details-list .item {
  display: flex;
  justify-content: space-between;
}

.cart-page.overview .payment-details .details-list .item~.item {
  margin-top: 30px;
}

.cart-page.overview .payment-details .total {
  border-top: 1px solid #C4C4C4;
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0 0;
  margin-top: 30px;
}

.cart-page.overview .cart-wrapper .nav-buttons {
  border-top: none;
}

.sidebar_widget .widget_inner .panel {
  margin-bottom: 30px;
  font-family: 'Futura';
}
.sidebar_widget .widget_inner .panel li{
  list-style-type: none;
}
.sidebar_widget .widget_inner .panel a.category-main {
  font-size: 14px;
  color: #636363;
  margin-bottom: 12px;
  display: inline-block;
}


.sidebar_widget .widget_inner .panel .panel-heading {
  margin-bottom: 15px;
  text-transform: uppercase;

}

.sidebar_widget .widget_inner .panel .panel-heading .panel-title {
  color: #3F3F3F;
  font-size: 14px;
}

.sidebar_widget .widget_inner .panel .panel-heading i {

}

.sidebar_widget .widget_inner .panel .panel-body .custom-control:not(:last-of-type) {
  margin-bottom: 10px;
}

.sidebar_widget .widget_inner .panel span.checkmark {
  height: 17px;
}

.filter-button-wrapper{
  position: fixed;
    left: 20px;
    bottom: 20px;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #721c24;
    font-size: 20px;
    color: #721c24;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

@media(max-width:991px){
  main.shop-wrapper .shop{
    grid-template-columns: 1fr;
  }
  main.shop-wrapper .shop .sidebar_widget.active{
  transform: translateX(0);
  }
  

  main.shop-wrapper .shop .sidebar_widget{
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    background-color: #fff;
    height: 100vh;
    padding: 50px 20px;
    z-index: 22;
    transform: translateX(-100%);
    transition: transform .5s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .filter-button-wrapper{
    opacity: 1;
    visibility: visible;
  }
}

.outlet-notice{
  background-color: #F5F5F5;
  padding: 15px 0;
}
.outlet-notice h2{
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: 'Futura';
  font-weight: bold;
}
@media(min-width:991px){
  .outlet-notice p{
    max-width: 600px;
    margin: 0 auto;
    
  }
}
.outlet-notice p{
  font-size: 12px;
  line-height: 12px;
  font-family: 'Roboto';
}

@media(max-width:767px){
  .account_form{
    width: 100% !important;
  }
}
.login-page{
  padding: 100px 0;
}
.login-wrap{
  max-width: 500px;
  margin: 0 auto;
}
.login-wrap h1{
  font-size: 25px;
    line-height: 20px;
    color: #3A3A3A;
    margin-bottom: 30px;
}
.login-wrap .register-button, .login-wrap .login-btn{
  display: block;
    width: 100%;
    padding: 9px;
    border: none;
    background: #C42000 !important;
    color: #fff;
    border-radius: 5px;
    margin: 10px 0;
    cursor: pointer;
}
.login-wrap .terms{
  font-size: 12px;
}
.terms-wrapper{
  padding: 100px 0;
}
.terms-wrapper .terms-block  ~ .terms-block{
  margin-bottom: 50px;

}
.terms-wrapper .terms-block ul{
 padding-left: 20px;
}
.terms-wrapper .terms-block h1{
  font-size: 20px;
}
.terms-wrapper .terms-block h3, .terms-wrapper .terms-block p{
  font-weight: lighter;
  font-size: 14px;
}

@media(min-width:767px){
  #cartModal{
    display: none !important;
  }
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal-content .modal__header{
  width: 100%;
    display: flex;
    justify-content: flex-end;
}
.modal-content .modal__header .close{
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: auto;
  display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content .modal__body{
  padding: 0 0 20px 0;
}
.modal-content .modal__body p{
  font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #767677;
}
.modal-content .modal__footer{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.modal-content .modal__footer .btn{
  font-size: 12px;
    text-transform: uppercase;
    padding: 10px 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: .3s ease;
}
.modal-content .modal__footer .btn:hover{
  opacity: 0.8;
}
.modal-content .modal__footer .btn-cart{
  background-color: #C42000;
  color: white;
}
.modal-content .modal__footer .btn-continue{
  font-weight: normal;
    font-size: 12px;
    border: 1px solid #C42000;
    color: #C42000;
    background: #0000;
}
/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media(max-width:400px){
  .modal-content .modal__footer {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.price-range-slider{
  width: 100%;
}
.price-range-slider .range-value{
  margin: 0;
    display: flex;
    justify-content: space-between;
}
.price-range-slider .range-value input{
  width: 100%!important;
    background: 0 0;
    font-size: 12px;
    color: #7D7D7D;
    font-family: 'Futura Pro';
    box-shadow: none;
    border: none;
    margin: 0 0 10px;
}
#toAmount{
  text-align: right;
}
.price-range-slider .range-bar{
  border: none;
    background: #f1f1f1;
    height: 1px;
    width: 96%;
    margin-left: 8px;
}
.price-range-slider .range-bar .ui-slider-range, .price-range-slider .range-bar .ui-slider-handle, .ui-slider-handle{
  
    border: #C42000 !important;
    top: 50%;
transform: translateY(-50%);
z-index: 1 !important;
}
.price-range-slider .range-bar .ui-slider-range{
  height: 1px;
  background-color: #AFAFAF !important;
}
.price-range-slider .range-bar .ui-slider-handle{
  border-radius: 50%;
  cursor: pointer;
  width: 16px;
  height: 16px;
  background: #C42000 !important;
}


/*# sourceMappingURL=style.css.map */