body {
  background: #fff;
  font-family: "Neue-Helvetica","Helvetica","Arial","sans-serif";
}

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  text-decoration: none;
}
a{
  text-decoration: none;
}

input{
  /* outline: 1px solid #555 !important; */
  border: 0 !important;
  box-shadow: none !important;
}


input:focus{
  outline: 0 !important;
  border-bottom: 1px solid #333!important;
  box-shadow: none !important;
}

button:focus{
  outline: none !important;
  box-shadow: none !important;
}


.header{
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100000;
}

.search-btn{
  width: 400px;
  height: 35px;
  background: transparent;
  border-radius: 0;
}


a.nav-link{
  color: #000;
  font-size: 14px;
  font-weight: 300;
}

.search-btn span{
  opacity: 0.8;
}

.toggle-menu-main {
  position: fixed;
  top: 50px;
  left: -70px;
  height: 500px;
  width: 450px;
  background: transparent;
  text-align: center;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  transition-timing-function: linear;
}

.product .itembox.hide{
  display: none;
}

.menu-btn{
  background: transparent;
  border: 0;
}


.menu-btn:focus, .menu-btn:active {
  outline: none !important;
  border: 0 !important;
}

.toggle-menu-main.open {
  opacity: 1;
  visibility: visible;
  left: 70px;
  z-index: 100000;
}

.toggle-menu {
  background: #fff;
  width: 430px;
  height: 100%;
}

.fa-bars.close{
  display: none;
}

.fa-circle-xmark.openClose{
  display: block;
}

.logo{
  position: fixed;
  left: 100px;
  top: 35px;
  height:150px;
  font-size: 45px;
  z-index: 100000;
}

.menu_main{
  position: relative;
  top: 150px;
}

.wrapper {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: transparent;
}

.tab_main {
  padding: ;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  background: #fff;
}

.tab_main .tabs-box {
  display: flex;
  gap: 12px;
  list-style: none;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.tabs-box.dragging {
  scroll-behavior: auto;
  cursor: grab;
}
.tabs-box .tab {
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  background: transparent;
  padding: 5px 10px;
}
.tabs-box .tab:hover{
  background: #efedfb;
}
.tabs-box.dragging .tab {
  user-select: none;
  pointer-events: none;
}

.product{
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin: 10px;
}


@media screen and (max-width: 500px) {
  .toggle-menu-main.open{
    top: 55px;
    left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .header{
    z-index: 2000;
  }

  a.nav-link.login , .help{
    color: red !important;
    display: none;
  }

  .cart{
    position: relative;
    top: -80px;
  }

  .search-btn{
    visibility: hidden;
  }
}

.slider{
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;


  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sections {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.one,
.two,
.three {
  width: 100%;
  height: 100vh;
  padding: 0 80px;
}

.section_container {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
}


/* product gallery */

.prod-gallery{
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  margin: 15px;
  top: 150px;
  z-index: 10000;
}

.prod-gallery .card{
  width: 100%;
  background: #fff;
}

.prod-gallery .card .imgbx{
  position: relative;
  width: 100%;
  height: 310px;
  overflow: hidden;
}

.prod-gallery .card .imgbx img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s ease-in-out;
  transform-origin: right;
}

.prod-gallery .card:hover .imgbx img{
  transform: scale(1.5);
}

.popup-btn{
  z-index: 2;
  color: #fff;
  background: #332D2D;
  position: absolute;
  bottom: 16px;
  left: 50%;
  padding: 10px 15px;
  border-radius: 10px;
  transform: translate(-50%);
  cursor: pointer;
  letter-spacing: 1px;
  text-decoration: none;
}

.view_btn:hover{
  color: #fff !important;
}

.action{
  position: absolute;
  top: 10px;
  right: 10px;
}

.action li{
  position:  relative;
  list-style: none;
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px;
  cursor: pointer;
  transform: translateX(60px);
  transition: transform 0.5s;
}

.action li a{
  color: #333;
}

.action li:nth-child(2){
  transition-delay: 0.15s;
}

.action li:nth-child(3){
  transition-delay: 0.3s;
}

.card:hover .action li{
  transform: translateX(0);
}

.action li span{
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) translateX(-20px);
  white-space: nowrap;
  padding: 4px 6px;
  background: #fff;
  color: #333;
  font-weight: 500;
  font-size: 12px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
}

.action li:hover{
  background: #ff2020;
  color: #fff;
}

.action li:hover a{
  color: #fff;
}

.action li:hover span{
  transform: translateY(-50%) translateX(0px);
  opacity: 1;
}

.prod-gallery .card .content .productName h3{
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 5px 0;
}

.prod-gallery .card .content .price_rating{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prod-gallery .card .content .price_rating h2{
  font-size: 16px;
  color: #ff2020;
  font-weight: 500;
}

.prod-gallery .card .content .price_rating .fa{
  color: #ffd513;
  cursor: pointer;
}

.prod-gallery .card .content .price_rating .fa.grey{
  color: #ccc;
}



.popup-view{
  z-index: 100000;
  background: rgba(75, 75, 75, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.popup-view.activeProdDetails{
  opacity: 1;
  visibility: visible;
}

.popup-card{
  position: relative;
  display: flex;
  width: 800px;
  height: 500px;
  margin: 20px;
  z-index: 100000;
}

.carousel{
  width: 500px;
  height: 400px;
  border-radius: 30px;
}

.carousel img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
}

.popup-card .info{
  z-index: 2;
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 55%;
  height: 100%;
  box-sizing: border-box;
  padding: 40px;
  border-radius: 10px;
}

.popup-card .close_btn{
  color: #555;
  z-index: 3;
  position: absolute;
  right: 0;
  font-size: 20px;
  margin: 20px;
  cursor: pointer;
}

.popup-card .info h2{
  font-size: 18px;
  line-height: 20px;
  margin: 10px;
}

.popup-card .info h2 span{
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: #089e14;
  padding: 2px 4px;
  margin-top: 5px;
}

.popup-card .info p{
  font-size: 15px;
  margin: 5px;
}

.popup-card .info .price{
  font-size: 25px;
  font-weight: 300;
  margin: 10px;
}

.popup-card .info .add-cart-btn{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
}

.popup-card .info .add-wish{
  font-size: 14px;
  font-weight: 450;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  margin: 10px;
}

@media screen and (max-width: 900px) {
  .popup-card{
    flex-direction: column;
    width: 550px;
    height: auto;
  }

  .popup-card .product_img{
    z-index: 3;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .popup-card .product_img img{
    left: initial;
    width: 40%;
    top: 5px;
  }

  .popup-card .info{
    width: 100%;
    height: auto;
    padding: 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .popup-card .info h2{
    margin: 20px 5px 5px 5px;
    font-size: 25px;
  }

  .popup-card .info h2 span{
    font-size: 10px;
  }

  .popup-card .info p{
    margin: 5px;
    font-size: 16px;
  }

  .popup-card .info .price{
    margin: 5px;
    font-size: 30px;
  }

  .popup-card .info .add-cart-btn{
    margin: 5px auto;
    padding: 5px 40px;
    font-size: 14px;
  }

  .popup-card .info .add-wish{
    font-size: 14px;
  }

  .popup-card .close_btn{
    z-index: 4;
  }
}





/* single product page */
.left_card .card-title{
  font-size: 12px;
  margin: 20px 0;
}
.left_card .card-body{
  font-size: 14px;
  font-weight: 300;
}

.right_card{
  position: relative;
  top: 60px;
}

.left_card a,
.right_card a{
  font-size: 10px;
  color: #000;
}

.right_card .card-title{
  font-size: 12px;
  margin: 10px 0;
}
.right_card .card-body{
  font-size: 14px;
  font-weight: 300;
}

.sizes .btn {
  font-size: 13px;
  font-weight: 300;
}

.checkin li a{
  font-size: 10px;
  font-weight: 300;
}

.main-wrapper{
  width: 100%;
  height: 100vh;
  background-color: transparent;
  display: flex;
  align-items: center;
}

.product-div{
  position: relative;
  top: 50px;
}


.img-container{
  float: left;
}

.img-container img{
  width: 350px;
  height: 100%;
  margin: 0 auto;
}
.hover-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hover-container img{
  height: 92px;
  transition: 0.4s;
}

.sub_img:hover{
  opacity: 0.5;
}

.largeImg.animate{
  transition: 0.4s;
}



/* simjlar products row */
.similar_products{
  position: relative;
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  margin: 15px;
}

.similar_products .card{
  width: 100%;
  background: #fff;
}

.similar_products .card .imgbx{
  position: relative;
  width: 100%;
  height: 310px;
  overflow: hidden;
}

.similar_products .card .imgbx img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease-in-out;
  transform-origin: right;
}

.similar_products .card:hover .imgbx img{
  transform: scale(1.5);
}

.action{
  position: absolute;
  top: 10px;
  right: 10px;
}

.action li{
  position:  relative;
  list-style: none;
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px;
  cursor: pointer;
  transform: translateX(60px);
  transition: transform 0.5s;
}

.action li:nth-child(2){
  transition-delay: 0.15s;
}

.action li:nth-child(3){
  transition-delay: 0.3s;
}

.card:hover .action li{
  transform: translateX(0);
}

.action li span{
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) translateX(-20px);
  white-space: nowrap;
  padding: 4px 6px;
  background: #fff;
  color: #333;
  font-weight: 500;
  font-size: 12px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
}

.action li:hover{
  background: #ff2020;
  color: #fff;
}

.action li:hover span{
  transform: translateY(-50%) translateX(0px);
  opacity: 1;
}

.similar_products .card .content .productName h3{
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 5px 0;
}

.similar_products .card .content .price_rating{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.similar_products .card .content .price_rating h2{
  font-size: 16px;
  color: #ff2020;
  font-weight: 500;
}

.similar_products .card .content .price_rating .fa{
  color: #ffd513;
  cursor: pointer;
}

.similar_products .card .content .price_rating .fa.grey{
  color: #ccc;
}

.footer_section{
  width: 100%;
  height: 100vh;
  margin: 30px 0;
}

.newsletter,
.social,
.terms {
  display: flex;
  align-items: end;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter{
  font-size: 18px;
  height: 40%;
}

.social{
  font-size: 14px;
  font-weight: 400;
  height: 20%;
}

.terms{
  font-size: 14px;
  font-weight: 400;
  height: 40%;
}

.social ul li a{
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 350;
}
.terms ul li a{
  color: #000;
  text-decoration: none;
  font-size: 11px;
  font-weight: 350;
}

.one {
  background: url(.././img/pexels-anastasiya-gepp-1462637.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: padding-box;
  background-position: top;
  height: 100vh;
}
.two {
  background: url(.././img/pexels-dmitriy-steinke-17658568.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: padding-box;
  background-position: center;
}
.three {
  background: url(.././img/pexels-spencer-selover-428338.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: padding-box;
  background-position: center;
}


.image > img {
  width: 100%;
}

.text {
  width: 350px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  text-align: left;
}


.text > .title {
  font-size: 82px;
  font-weight: 100;
}

.text > .hr-one{
  border: 4px solid #ca4242;
  width: 100px;
}

.text > .hr-two{
  border: 4px solid #333;
  width: 200px;
}
.text > .hr-three{
  border: 4px solid #333;
}



.one > .section_container > .text {
  color: #1d1b1b;
  position: relative;
  transform: translateX(210%);

}
.two > .section_container > .text {
  color: #1d1b1b;
}
.three > .section_container > .text {
  color: #1d1b1b;
}

.text > .description {
  font-size: 18px;
  font-weight: 100;
}


.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
  position: absolute;
  left: 95%;
  top: 25%;
  height: 50%;
}

.swiper-pagination-progressbar-fill{
  background: #ff0000 !important;
}




.toggle {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: #242121;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2;
}

.toggle.activeToggle {
  background: #383434;
}

.toggle::before {
  content: '\f0c9';
  font-family: fontAwesome;
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 60px;
  text-align: center;
  font-size: 24px;
  color: #fff;
}

.toggle.activeToggle::before {
  content: '\f00d';
}

/* -----------------cart items------------------ */

.cart-page{
  margin: 40px auto;
  position: relative;
  top: 150px;
}

.cart-page .title-box{
  background: #555;
  width: 100px;
  padding: 4px 10px;
  height: 33px;
  margin-bottom: 30px;
  position: relative;
  top: -5px;
  left: 50px;
}

.title-box-2{
  background: #555;
  padding: 4px 10px;
  width: 50%;
  height: 45px;
  margin-bottom: 30px;
  position: relative;
  top: 150px;
  margin: 0 auto;
  border-radius: 15px 15px 0 0;
}



.cart-page .title-box h2{
  font-size: 16px;
}

table{
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  position: relative;
}

.cart-info{
  display: flex;
  flex-wrap: wrap;
}

th{
  text-align: left;
  padding: 5px;
  color: #fff;
  background: #555;
  font-weight: normal;
}

td{
  padding: 10px 5px;
}

td input{
  width: 60px;
  height: 30px;
  padding: 5px;
}

td a{
  color: #dc3545;
  font-size: 12px;
  font-weight: bold;
}

.img{
  width: 120px;
  margin-right: 10px;
}

.total-ptice{
  display: flex;
  justify-content: flex-end;
}

.total-ptice table{
  border-top: 2px solid #343a40;
  border-bottom: 3px solid #343a40;
  width: 90%;
}

.title:last-child{
  text-align: right;
}
.price:last-child{
  text-align: right;
}

.total:first-child{
  text-align: right;
  margin-left: 80px;
}

.total:last-child{
  text-align: right;
}

button.check{
  width: 150px;
}

@media screen and (max-width:1024px) {

  .cart-page{
    top: 150px;
  }
}

@media screen and (max-width:600px) {
  .cart-info p{
    display: none;
  }

  .title-box{
    display: none;
    opacity: 0;
  }
}


/*  */
.mySwiper2-row {
  width: 100%;
  height: 100%;
  position: relative;
  top: 200px;
}



.mySwiper2-row .card{
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.mySwiper2-row .card .imgbx{
  position: relative;
  width: 100%;
  height: 310px;
  overflow: hidden;
  top: 5px;
}

.mySwiper2-row .card .imgbx img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s ease-in-out;
  transform-origin: right;
}

.mySwiper2-row .card:hover .imgbx img{
  transform: scale(1.5);
}

.action{
  position: absolute;
  top: 0px;
  right: 10px;
  z-index: 100000;
}

.action li{
  position:  relative;
  list-style: none;
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px;
  cursor: pointer;
  transform: translateX(60px);
  transition: transform 0.5s;
  z-index: 100000 !important;
}

.action li:nth-child(2){
  transition-delay: 0.15s;
}

.action li:nth-child(3){
  transition-delay: 0.3s;
}

.card:hover .action li{
  transform: translateX(0);
}

.action li span{
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) translateX(-20px);
  white-space: nowrap;
  padding: 4px 6px;
  background: #fff;
  color: #333;
  font-weight: 500;
  font-size: 12px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
}

.action li:hover{
  background: #ff2020;
  color: #fff;
}

.action li:hover span{
  transform: translateY(-50%) translateX(0px);
  opacity: 1;
}

.mySwiper2-row .card .content .productName h3{
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 5px 0;
}

.mySwiper2-row .card .content .price_rating{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mySwiper2-row .card .content .price_rating h2{
  font-size: 16px;
  color: #ff2020;
  font-weight: 500;
}

.mySwiper2-row .card .content .price_rating .fa{
  color: #ffd513;
  cursor: pointer;
}

.mySwiper2-row .card .content .price_rating .fa.grey{
  color: #ccc;
}

.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
    display: none;
}


.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
  position: absolute;
  left: 95%;
  top: 25%;
  height: 50%;
}

.mySwiper2 .swiper-pagination-progressbar-fill{
  background: #555 !important;
  height: 3px !important;
}


/* search */
.search-main{
  position: relative;
  top: 150px;
  height: 100vh;
}
.search-main .form{
  /* position: relative; */
  /* top: 150px; */
  width: 100%;
  height: 100vh;
}

.search-main .btn{
  background: #333;
  border: 0!important;
  outline: 1px solid #555;
  color: #fff;
  margin: 15px 0;
  width: 30%;
}
.search-main .btn:focus{
  background: #333 !important;
  border: 0!important;
  outline: 1px solid #555;
}







/* login page */
.login-main{
  position: relative;
  top: 150px;
  height: 100vh;
}

.login-card{
  background: transparent !important;
}

.login-card .card-header{
  font-size: 15px;
  font-weight: 100;
}

.password-row img{
  float: right;
  width: 40px;
  height: 15px;
  object-fit: contain;
  position: relative;
  top: -30px;
  cursor: pointer;
  opacity: 0.8;
}

.login-card .btn{
  width: 100%;
  margin: 15px 0 0;
  transition: 0.4s;
  font-size: 14px;
  opacity: 0.7;
}

.login-card .btn:hover{
  color: #ff0000
}

.fogot-ps{
  opacity: 0.6;
  font-size: 12px !important;
  padding: 0;
}
form label{
  opacity: 0.6;
  font-size: 12px !important;
}


/* register page */
.register-main{
  position: relative;
  top: 100px;
  height: 100vh;
}

.register-card{
  background: transparent !important;
}

.register-card .card-header{
  font-size: 15px;
  font-weight: 100;
}

.password-row img{
  float: right;
  width: 40px;
  height: 15px;
  object-fit: contain;
  position: relative;
  top: -30px;
  cursor: pointer;
  opacity: 0.8;
}

.register-card .btn{
  width: 100%;
  margin: 15px 0 0;
  transition: 0.4s;
  font-size: 14px;
  opacity: 0.7;
}

.register-card .btn:hover{
  color: #ff0000
}

.fogot-ps{
  opacity: 0.6;
  font-size: 12px !important;
  padding: 0;
}
form label{
  /* opacity: 0.6;
  font-size: 12px !important; */
}






/* --------------page up btn----------- */

.up{
  background: #ff0000;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  text-decoration: none;
  position: fixed;
  padding: 30px;
  bottom: 100%;
  left: 91%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: to_top;
  animation-duration: 4s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  z-index: 100000;
}


@keyframes to_top {
  0%{
    transform: translateY(-4px);
  }

  50%{
    transform: translateY(4px);
  }

  100%{
    transform: translateY(-4px);
  }
}

@media screen and (max-width: 500px){
  .up{
    left: 85%;
  }
}

.up i{
  color: #fff;
  font-size: 20px;
  text-shadow: 0 2px 5px #fff;
}

.up.goUp{
  opacity: 1;
  bottom: 32px;
  pointer-events: auto;
  z-index: 100000;
}
