html {
  box-sizing: border-box;
  display: block;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: #9a9e97;
}



/* -------------------------------------------------------- */
/* Navbar Section*/
/* -------------------------------------------------------- */

/*-----------------------------------------------------------*/
.navbar {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  background-color: #414935;
  color: white;
}

.brand-title {
  font-size: 1.5rem;
  margin: 0.5rem;
}

.navbar-links {
  height: 100%;
}

.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  list-style: none;
}

.navbar-links li a {
  display: block;
  text-decoration: none;
  color: white;
  padding: 1rem;
}

.navbar-links li:hover {
  background-color: #555;
}

.toggle-button {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

@media only screen and (min-width: 360px) and (max-width: 767px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .toggle-button {
    display: flex;
  }

  .navbar-links {
    display: none;
    width: 100%;
  }

  .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }

  .navbar-links ul li {
    text-align: center;
  }

  .navbar-links ul li a {
    padding: 0.5rem 1rem;
  }

  .navbar-links.active {
    display: flex;
  }
}

/* -------------------------------------------------------- */
/* End Navbar Section */
/* -------------------------------------------------------- */



/* -------------------------------------------------------- */
/* Cart Symbol Button only for Mobile */
/* -------------------------------------------------------- */
.showbtn {
  display: none;
}

@media only screen and (min-width: 360px) and (max-width: 767px) {
  .showbtn {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: fixed;
  }
}

/* -------------------------------------------------------- */
/* End Cart Symbol Button only for Mobile */
/* -------------------------------------------------------- */


/* -------------------------------------------------------- */
/* Begin of Left side Container */
/* -------------------------------------------------------- */

.t-container {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.left-sidebar {
  width: 70%;
  height: 100%;
  /* background-color: #786a2c; */
}

.container img {
  /* background-image: linear-gradient(#cce3de); */
  border-radius: 10px;
}
.container {
  width: 100%;
  height: max-content;
  margin: 20px;
  padding: 2px;
  /* width: 100%; */
  display: flex;
  flex-wrap: wrap;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;

  /* position: relative; */
}

.card {
  /* width: 1000px; */
  /* position: absolute; */
  height: 500px;
  padding: 10px;
  margin-top: 30px;
  margin-right: 10px;
  border: 1px solid black;
  border-radius: 20px;
}

.card h3,
h5 {
  padding: 1px;
}
.quantity button img {
  width: 5px;
  height: 15px;
}
.card img {
  width: 200px;
  height: 200px;
}
.quantity #qtyno {
  display: block;
  width: 30px;
  height: 26px;
  text-align: center;
  border: 2px solid black;
}
.quantity input {
  width: 30px;
  height: 30px;
  text-align: center;
  /* display: none; */
}
.plus-btn,
.minus-btn {
  margin-top: 10px;
  width: 30px;
  height: 30px;
  align-content: center;
}
.addItemBtn {
  margin-left: 60px;
  margin-top: -40px;
}

@media only screen and (min-width: 360px) and (max-width: 767px) {
  .t-container {
    flex-direction: column;
  }
  .left-sidebar {
    width: 100%;
  }
  .container {
    flex-direction: column;
  }

  .card img {
    width: 50px;
    height: 50px;
    float: left;
  }
  .card {
    height: 300px;

    /* display: flex;
      flex-direction: column;
      flex-wrap:wrap; 
      flex-flow: row wrap;

      justify-content: space-around; */
    /* align-items: center;  */
  }
  /* .right-container{
      display: none;
    } */
}

/*--------------------------------------------------*/
/* right container */
/*-------------------------------------------------*/
.right-container {
  top: 150px;
  /*margin-top:-90%;*/
  margin-left: 70%;
  position: absolute;
  /* border: 2px solid black; */
  width: 30%;
  /*  height:500px;*/

  /* display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
   position: relative; */
}

.additem {
  padding: 10px;
  border: 2px solid black;
  border-collapse: collapse;
  position: fixed;
  background-color: #bebebe;
  /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; */
  /* position: absolute; */
}
td {
  border: 2px solid black;
  padding: 5px;
  text-align:center;
}
.home {
  margin-top: -13%;
  margin-left: 170%;
}

@media only screen and (min-width: 360px) and (max-width: 767px) {
  /* body {
    display: block;
    overflow: hidden;
  } */
  .right-container {
    margin-left: 0%;
    width: 100%;
  }
  /* th{
    font-size: 3px;
  } */
  td {
    width: 6px;
    border: 1px solid black;
    padding: 0px;
    /* font-size: 10px; */
  }
  .additem {
    display: none;
  }
  .additem th {
    font-size: 5px;
  }
  .additem.active {
    display: block;
    padding: 0px;
    border: 0px;
  }
}

/*--------------------------------------------------*/
/* End right container */
/*-------------------------------------------------*/
