@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@500&display=swap');
@import url(./product.css); 
 
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}

body {
  background-color: #f5f5f5;
  overflow-x: hidden;
}

:root {
  --seaGreeen: #089E7F;
  --blue: #153D66;
  --black: #313341;

}

.owl1 .item > a {

  padding: 10px 15px;
  display: inline-block;
  border-radius: 20px;
  color: var(--blue);
  border: 1px solid;
  font-weight: bold;
  text-transform: capitalize;
  min-width: 220px;
  width: 100%;
  text-decoration: none;
  text-align: center;

}

.owl1 .item>a:hover {
  background: linear-gradient(95.9deg, #2DE1BC -6.15%, #06AF8D 113.86%);
  color: white;
  cursor: pointer;
}

.item>h5 {
  color: var(--seaGreeen);
}

/* today deals start */
.saleLabel {
  bottom: 0px;
  width: 80px;
  position: absolute;
  right: 0px;


}

.left-Button {
  position: absolute;
  top: 250px;
  z-index: 111111;
  background-color: white;
  color: black;
  padding: 15px;
  left: -5px;
}

.right-Button {
  position: absolute;
  top: 250px;
  z-index: 111111;
  background-color: white;
  color: black;
  padding: 15px;
  right: -5px;
}

.categoryPart .left-Button {
  position: absolute;
  top: 100px;
  z-index: 111111;
  background-color: white;
  color: black;
  padding: 15px;
  left: -10px;
}

.categoryPart .right-Button {
  position: absolute;
  top: 100px;
  z-index: 111111;
  background-color: white;
  color: black;
  padding: 15px;
  right: -10px;
}

#headings>a {
  text-decoration: none;
  padding: 5px;
  color: var(--seaGreeen);
}

#sideBar>#headings>p {
  color: var(--seaGreeen)
}

#sideBar>ul {
  background-color: #fff;
  box-shadow: 2px 2px 2px 2px gainsboro;
  padding: 10px;
  border-radius: 10px;
}

#sideBar>ul>li {
  list-style: none;
  border-bottom: 1px solid gainsboro;
  padding: 15px;
}

#sideBar>ul>li>a {
  text-decoration: none;
  color: var(--black);
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

#sideBar>ul>li:nth-last-child(1) {
  border: none;
}

#sideBar>ul>li:nth-last-child(1)>a {
  /* color: var(--seaGreeen); */

}


#sideBar>#wishlist>a {
  color: var(--seaGreeen);
  text-decoration: none;
  font-size: small;
  padding: 5px;
}

.wishlistItems {
  box-shadow: 2px 2px 2px 2px gainsboro;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;

}

.wishlistItems>div>img {
  width: 200px;
  height: 100px;
}

.wishlistItems>div>i {
  position: absolute;
  bottom: 90px;
  right: 40px;
  background-color: var(--blue);
  color: white;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
}

.wishlistItems>div>p:nth-last-child(1) {
  color: var(--seaGreeen);
  font-weight: bold;
  font-size: 2rem;
}



.wishlistItems>div>a {
  color: var(--seaGreeen);
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.viewAll {
  display: flex;
  justify-content: center;
  align-items: center;
}

#category_btn {
  text-decoration: none;
  font-size: 20px;
  color: black;
  padding-left: 25px;
  font-weight: bold;
}

#category_btn>i {
  color: var(--seaGreeen);
}

/* footer part */
#footer {
  background-color: var(--blue);
}

.searchBar>input {

  outline: none;
  padding: 12px;
  border: none;
  border: 1px solid white;
  border-radius: 5px;
  width: 55%;
  background: none;

}

.searchBar>button {

  padding: 13px;
  border: none;
  background: var(--seaGreeen);
  border-radius: 5px;
  outline: none;
}

.icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap:5px;
  flex-wrap: wrap;
}

.icons>span {
  /* background-color: red; */
  padding:5px 10px;
  border-radius: 50%;
}



.insta {
  background: #f09433;
  color: white;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  font-size:20px;


}

.facebook {

  color: #4973A4;
  font-size: 39px;
}

.linkedin {

  background-color: #0A66C2;
  font-size: 20px;

}

.twiter {

  background-color: #00acee;
  font-size: 20px;

}

.google>img {
  width: 28px;
  height: 28px;
}