@import url('https://fonts.googleapis.com/css2?family=Bitter&family=Poppins&display=swap');

*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body{
  background-color: #141414;
}
nav{
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(1,1,1,1) 100%, rgba(84,84,84,1) 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 105px;
    padding: 5px 100px;
    border-bottom:2px solid white;
  }
  nav .logo{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
  }
  nav .nav-items{
    display: flex;
    flex: 1;
    padding: 0 0 0 40px;
  }
  nav .nav-items li{
    list-style: none;
    padding: 0 15px;
    margin:auto;
  }
  nav .nav-items li a{
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    color:#0DDFE1;
  }
  
  nav .nav-items li.highlighted{
      background-color:white;
      border-radius:100px;
      color:white;
    }
  
  nav .nav-items li.log{
      background-color:green;
      border-radius:100px;
      color:black;
    }
  
  nav .nav-items li a:hover{
    color: #ff3d00;
    transition:0.5s;
  }
  nav form{
    display: flex;
    height: 40px;
    padding: 2px;
    background: white;
    min-width: 18%!important;
    border-radius:10px;
    border: 1px solid rgba(155,155,155,0.2);
    margin-left:60px;   
  }
  nav form .search-data{
    width: 100%;
    height: 100%;
    padding: 0 10px;
    color:black;
    font-size: 17px;
    border: none;
    font-weight: 500;
    background: none;
  }
  nav form button{
    padding: 0 15px;
    color: black;
    font-size: 17px;
    background:none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
  }
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    width: 40px;
    text-align: center;
    margin: 0 50px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    display: none;
  }
  nav .menu-icon span,
  nav .cancel-icon,
  nav .search-icon{
    display: none;
  }
  @media (max-width: 1245px) {
    nav{
      padding: 0 50px;
    }
  }
  @media (max-width: 1140px){
    nav{
      padding: 0px;
    }
    nav .logo{
      flex: 2;
      text-align: center;
    }
    nav .nav-items{
      position: fixed;
      z-index: 99;
      top: 70px;
      width: 100%;
      left: -100%;
      height: 100%;
      padding: 10px 50px 0 50px;
      text-align: center;
      background: #14181f;
      display: inline-block;
      transition: left 0.3s ease;
    }
    nav .nav-items.active{
      left: 0px;
    }
    nav .nav-items li{
      line-height: 40px;
      margin: 30px 0;
    }
    nav .nav-items li a{
      font-size: 20px;
    }
    nav form{
      position: absolute;
      top: 80px;
      right: 50px;
      opacity: 0;
      pointer-events: none;
      transition: top 0.3s ease, opacity 0.1s ease;
    }
    nav form.active{
      top: 95px;
      opacity: 1;
      pointer-events: auto;
    }
    nav form:before{
      position: absolute;
      content: "";
      top: -13px;
      right: 0px;
      width: 0;
      height: 0;
      z-index: -1;
      border: 10px solid transparent;
      border-bottom-color: #1e232b;
      margin: -20px 0 0;
    }
    nav form:after{
      position: absolute;
      content: '';
      height: 60px;
      padding: 2px;
      background: #1e232b;
      border-radius: 2px;
      min-width: calc(100% + 20px);
      z-index: -2;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }
    nav .menu-icon{
      display: block;
    }
    nav .search-icon,
    nav .menu-icon span{
      display: block;
    }
    nav .menu-icon span.hide,
    nav .search-icon.hide{
      display: none;
    }
    nav .cancel-icon.show{
      display: block;
    }
  }

footer{
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #F5F5F5;
    color: #141414;
    text-align: center;
    padding:30px;
    font-family: 'Bitter', serif;
    font-size:1.5rem;
    border:2px solid grey;
}

  .cart{
    margin-left:10px;
    font-size:25px;
  }

  .titles{
    text-align:center;
    padding:50px;
    font-size:4.5rem;
    font-family: 'Bitter', serif;
    letter-spacing:2px;
    color:white;
    text-shadow:2px 4px 1px grey;
  }

  .titles2{
    text-align:center;
    font-size:4.5rem;
    font-family: 'Bitter', serif;
    letter-spacing:2px;
    color:#0ddfe1;
    text-shadow:2px 4px 1px grey;
  }

.shadowback{
    width:50%;
    border: 2px solid #ddd;
    padding:5px;
    border-radius: 4px; 
}
  
.shadowback:hover{
  transition:0.7s;
  -webkit-box-shadow: 0px 0px 5px 9px rgba(13, 223, 225, 0.75);
  -moz-box-shadow: 0px 0px 5px 9px rgba(13, 223, 225, 0.75);
  box-shadow: 0px 0px 5px 9px rgba(13, 223, 225, 0.75);
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 30%;
  margin-top:50px;
}

.textinfo{
  text-align:justify;
  padding:50px;
  font-size:1.2rem;
  font-family: 'Bitter', serif;
  letter-spacing:2px;
  color:black;
  background-color:white;
  border:3px solid #079596;
  margin-top:50px;
  margin-bottom:50px;
}


.containerpres{
  width:80%;
  padding:auto;
  margin:auto;
}


.Filtering{
  float:left;
  display:none;
  color: white;
  text-align: center;
  height: 10%;
  width: 25%;
  margin:auto;
  padding:15px;
}

.FilterContain{    /*buttons*/
  margin: auto;
  width: 35%;
  padding: 5px;
}
.show{
  display: block;
}

.container{
  margin-top: 20px;
  overflow: hidden;
  width: 50%;
  padding-left: 50px;
  margin-right: auto;
  margin-left:580px;
}

.FilterButton{
  border: 1px solid white;
  outline: none;
  padding: 12px 16px;
  background-color: #141414;
  cursor: pointer;
  color: white;
  font-family: 'Poppins', sans-serif;
  margin-right: 15px;
} 
.FilterButton:hover{
  background-color: rgb(20, 194, 224);
  transition: 0.5s;
}
.FilterButton.active{
  background-color: rgb(7, 149, 150);
  color: white;
  border: 1px solid white;
}
.ShopItem{
 transition: 0.5s;
 border:2px solid #0ddfe1;
}
.ShopItem:hover{
  transform: scale(1.05);
}
.ShopItem img{
  display: block;
  width: 100%;
  height: 100%;
}

.innertitle{
  font-family: 'Bitter', serif;
  padding:10px;
}

.price{
  font-family: 'Bitter', serif;
  font-size:20px;
  text-align: center;
}

.popularity{
  font-family: 'Bitter', serif;
  font-size:18px;
  font-weight:bold;
  color:#00fafd;
  text-align: center;
}

.button{
  display: inline-block;
  outline: 0;
  border: 0;
  cursor: pointer;
  border-radius: 4px;
  padding: 5px 11px;
  font-size: 16px;
  background-color:white;
  border-bottom: 4px solid grey;
  font-weight: 700;
  color: black;
  line-height: 26px;
  border-radius:10px;
  text-decoration:none;
  font-family: 'Bitter', serif;
  margin-bottom:15px;
  }
  
  .button:hover{
    transition:0.5s;
    border-bottom: 4px solid white;
    background-color:#0ddfe1;
    color:black;
  }

  
.button2{
  display: inline-block;
  outline: 0;
  border: 0;
  cursor: pointer;
  border-radius: 4px;
  padding:15px;
  font-size: 19px;
  border-bottom: 4px solid white;
  background-color:#079596;
  font-weight: 700;
  color: white;
  line-height: 26px;
  border-radius:10px;
  text-decoration:none;
  font-family: 'Bitter', serif;
  margin-bottom:15px;
  position:fixed;
  right:18%;
  }
  
  .button2:hover{
    transition:0.5s;
    background-color: white;
    border-bottom: 4px solid grey;
    color:black;
  }

 div.parent{
    display: flex;
    column-gap: 5%;
    width:90%;
    margin-left:auto;
    margin-right:auto;
    margin-top:30px;

 }

 div.child{
    width: 58%;
    text-align: center;
    box-sizing: border-box;
 }

 div.child2{
    width: 35%;
    height: 100px;
    text-align: center;
    box-sizing: border-box;
 }

 .rectangle {
  height: 50px;
  width: 150px;
  background-color: #141414;
  border:2px solid white;
  color:white;
}

.rectangle2{
  height: 50px;
  width: 275px;
  background-color: #141414;
  border:2px solid white;
  color:white;
  margin-top:20px;
}

.rectangle3{
  height: 50px;
  width: 275px;
  background-color: #141414;
  border:2px solid white;
  color:white;
  margin-top:20px;
}

.rectangle4{
  height: 50px;
  width: 350px;
  background-color: #141414;
  border:2px solid white;
  color:white;
  margin-top:20px;
}

.rect{
  text-align:center;
  vertical-align: middle;
  line-height:45px;
}

.innerects{
  height: 250px;
  width: 950px;
  background-color: white;
  border:3px solid #079596;
  color:black;
  margin-top:30px;
}

.innerects .item-holder{
  width: 100%;
  height: 32%;
  margin:2px;
  display: flex;
  background-color: #079596;
}

.item-holder-item{
  padding: 10px;
  width: 100%;
  justify-content: center; align-items: center;
  padding:auto;
  margin:auto;
  font-size: 24px;
  font-family: 'Bitter', serif;
  color:white;
}

.item-holder-item img{
  width: 60px; height: 60px; display: block;
}

.item-holder-item1{
  padding: 10px;
  width: 100%;
  justify-content: center; align-items: center;
  padding:auto;
  margin:auto;
  display: flex;
  font-family: 'Bitter', serif;
  color: white;
}

#total-count{
  font-size: 24px;
}

#total-count1{
  font-size: 24px;
}

#total-count2{
  font-size: 24px;
}

.item-holder-item1 button{
  width: 40px;
  height: 20px;
  margin: 5px;
}

.innerects2{
  height: 100px;
  width: 950px;
  background-color: white;
  border:3px solid #079596;
  color:black;
  margin-top:20px;
  display: flex;
}

.innerects2 div{
  flex: 1 0 calc(50% - 20px);
  padding: 20px;
}

input[type=radio] {
  border: 0px;
  width: 100%;
  height: 2em;
}

.innerects3{
  height: 200px;
  width: 650px;
  background-color: white;
  border:3px solid #079596;
  color: black;
  margin-top:20px;
}

.innerects3 table{
  padding: 10px;
  font-size: 19px;
  border-spacing: 10px;
  width: 100%;
  font-family: 'Bitter', serif;
}

.innerects4{
  height: 100px;
  width: 650px;
  background-color: white;
  border:3px solid #079596;
  color:black;
  margin-top:20px;
}