* {
  margin: 0;
  box-sizing: border-box;
}

html,body {
  font-family: Arial;
  margin: 0;
  width: 100%;
  

  

}


.flex {
  display: flex;
}

.navbar {
  width: 100vw;
  height: 60px;
  background-color: #131A22;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.nav-logo {
  height: 50px;
  width: 100px;

}

.logo {
  background-size: cover;
  background-image: url(amazon_logo.png);
  height: 50px;
  width: 100px;
}

.border {
  border: 2px solid transparent;
}

.border:hover {
  border: 1.5px solid white;
  border-radius: 3px;
  padding: 2px;

}

/* box2 */
.add-first {
  color: #CCCCCC;
  font-size: 0.85rem;
  margin-left: 15px;
}

.add-sec {
  font-size: 1rem;
  margin-left: 3px;
}

.add-icon {
  display: flex;
  align-items: center;
}


/* box3 */
.nav-search {
  background-color: #febd68;
  display: flex;
  justify-content: space-evenly;
  margin-left: 13px;
  width: 620px;
  height: 40px;
  border-radius: 4px;
}

.nav-search:hover {
  border: 2px solid orange;
}

.search-select {
  background-color: #f3f3f3;
  width: 50px;
  text-align: center;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: none;
}

.search-input {
  width: 100%;
  font-size: 1rem;
  border: none;
}

.search-icon {
  width: 45px;
  display: flex;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  color: #0F1111;
}

/* box4
 */



.nav-second {
  font-size: 0.85rem;
  font-weight: 700;
}

.nav-cart i {
  font-size: 30px;
}

/* panel
  */

.panel {
  background-color: #232F3E;
  height: 39px;
  display: flex;
  color: white;
  align-items: center;
  font-weight: 500;
  justify-content: space-evenly;

}

.panel-all {
  margin: 0 15px;
}
.panel-all i{
  margin-right: 5px;
}

.panel-ops p {
  margin: 0 12px;
  display: inline;

}

.panel-ops {
  width: 90%;
}

/* box-flag */

.language img {
  width: 21.6px;
  height: 16.2px;
}

.language select {
  color: white;
  border: none;
  background-color: transparent;
}

.nav-second i {
  margin-left: 5px;


}

.language p {
  font-size: 0.9rem;
}

.language i {
  font-size: smaller;
  margin-top: 5px;
  margin-left: 3px;
  color: #CCCCCC;
}

/* language pop box */

.language-select-box {
  font-size: smaller;
  position: absolute;
  top: 50px;
  /* right: 203px; */
  width: 230px;
  height: auto;
  color: #000;
  padding: 10px;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  z-index: 1;

}

.language-select-box .circle {
  width: 15px;
  height: 15px;
  border: 1px solid gray;
  border-radius: 10px;
  margin-right: 5px;
  position: relative;
}

.language-select-box .m-l-b:hover .circle::after {

  content: "";
  width: 70%;
  height: 70%;
  background-color: orange;
  border-radius: 50%;
  position: absolute;
  top: 1.5px;
  left: 1.5px;


}

.language-select-box .m-l-b:hover {


  color: orange;

  text-decoration: underline;

}

.language-select-box .top-lang .circle::after {

  content: "";
  width: 70%;
  height: 70%;
  background-color: orange;
  border-radius: 50%;
  position: absolute;
  top: 1.5px;
  left: 1.5px;


}

.language-select-box a {
  color: rgb(0, 110, 225);

}


.language-select-box .m-l-b {
  margin: 10px 0;
}

.language-select-box .top-lang {
  border-bottom: 1px solid rgb(189, 189, 189);
  padding: 5px 0;
}

.middle-lang {
  border-bottom: 1px solid rgb(189, 189, 189);
  padding: 5px 0;
}

.bottom-lang {
  padding: 15px 0;
}

.nav-button button{
  width: 17vw;
  height: 28px;
  margin-right: 12px;
  font-family: Arial;
  
  background-color: rgb(255, 221, 109);
  color: #000;
  border: 1px solid rgb(209, 136, 0);
  display: none;
  font-weight: 600;
  border-radius: 3px;
}

/* important to display */

.active {

  display: none;
}


.fix-down{
  height: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: sticky;
  bottom:0;
  z-index: 11111111;
  background-color: white;
  display: none;
}



/*--image slider --*/
.image-container {
  position: relative;

}

.image-list {
  display: flex;
  overflow: hidden;
}

.image-item {
  min-width: 100%;
  height: 600px;
  /* transform: translateX(-300%); */
  transition: transform 0.3s;

}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-btn-container {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.slider-btn {
  border: 1px solid transparent;
  padding: 100px 20px;
  font-size: 50px;
  font-weight: 300;
  background-color: transparent;
  color: #000;
}

.slider-btn i {
  font-weight: 900;
}

.slider-btn:focus {
  border-color: seagreen;
  box-shadow: -2px -2px 2px rgb(230, 227, 227),
    2px 2px 2px white;
  margin: 2px;
}


/*sidebar navigation****/
#open-nav-sidebar {
  cursor: pointer;
}

.sidebar-container-navigation {
  font-family: Arial;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background-color: transparent;
  transform: translateX(-100%);
  display: flex;
  transition: transform 0.3s;


}

.slidebar-show {
  transform: translateX(0%);
  background-color: rgba(0, 0, 0, 0.7);
}

.sidebar-left-part {
  background-color: white;
  width: 365px;
  height: 100%;
  box-sizing: 5px 5px 10px rgba(0, 0, 0, 0.8);
}

.sidebar-top {
  display: flex;
  align-items: center;
  padding: 12px;
  padding-left: 30px;
  background-color: rgb(19, 25, 33);
  color: white;
}

.sidebar-top h2 {
  font-size: 22px;
  margin: 0;
}

.sidebar-top i {
  padding-right: 10px;
  font-size: 25px;
}

.sidebar-item {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 30px;
  border-top: 1.5px solid #ccc;
}

.sidebar-item h2 {
  font-size: 20px;
}

.sidebar-item p {
  color: rgb(65, 62, 62);
}

#sidebar-navigation-close {
  background-color: transparent;
  align-self: flex-start;
  font-size: 30px;
  border: none;
  color: white;
  padding: 20px;
  cursor: pointer;
}

.sidebar-wrap {
  height: 100%;
  overflow: auto;
  padding-bottom: 100px;
}

/*product card container*/
.main {
  
  position: relative;
  font-family: Arial;
  top: -350px;
  /* background-color: rgb(196, 240, 240); */
  /* filter: blur(8px); */

}

.productBackgraound {
  background-color: rgba(213, 247, 247, 0.4);
}

.card-product-container {
  padding: 20px;
  display: flex;
  justify-content: space-between;

}

.card-product {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 310px;
  box-shadow: -10px -0px 20px rgba(196, 240, 240, 0.5),
    50px 50px 20px rgba(196, 240, 240, 0.5);
  padding: 10px;
}

.card-product h2 {
  margin: 0;
  padding: 10px;

}

.card-product-nested-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;


}

.card-nested {}

.card-nested p {
  margin: 5px;
}

.card-nested img {
  width: 128px;
  height: 102px;
  object-fit: cover;

}

.card-product-btn {
  font-size: 14px;
  align-self: flex-start;
  margin: 7px 10px;
  padding-left: 0;
  background-color: transparent;
  border: none;
  color: rgb(25, 105, 105)
}

.card-product-btn:hover {
  text-decoration: underline;
  cursor: pointer;
}


/***
      Today's deals section
***/
.today_deals_container {
  margin: 30px;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.1),
    2px 2px 5px rgba(0, 0, 0, 0.1);
  padding: 30px 0;

}

.today_deals_heading {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

.today_deals_heading p a {
  color: rgb(39, 114, 107);
  text-decoration: none;
  padding-left: 20px;
}

.today_deals_heading p a:hover {
  text-decoration: underline;
}

.today_deals_product_container {
  /* background-color: red; */
  height: 300px;
  position: relative;

}

.today_deals_product_list {
  display: flex;
  overflow: hidden;

}

.today_deals_product_item {
  min-width: 250px;
  height: 250px;
  padding: 0px 10px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  transform: translateX(0%);
  transition: transform 1s;
  margin-top: 20px;
}

.todayDeals_product_image {
  height: 200px;
  width: 210px;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-bottom: 15px;
}

.today_deals_product_item img {
  width: 100%;
  height: 100%;
  /* padding: 20px 20px; */
  background-color: red;
}

.today_deals_product_item p {
  margin: 12px 0;
  justify-self: flex-end;
}

.discount_Contaienr {
  /* border: 2px solid red; */
}

.discount_Contaienr a {
  padding: 5px 10px;
  font-size: 14px;
  color: rgb(211, 30, 84);
  text-decoration: none;
}

.discount_Contaienr a:first-child {
  background-color: rgb(211, 30, 84);
  padding: 5px 10px;
  color: white;
  font-weight: 550;
  text-decoration: none;
  border-radius: 3px;
  font-size: 12px;
}

.today_deals_btn_container {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 20px;
  z-index: 10;
}

.today_deal_btn {
  padding: 40px 10px;
  font-size: 40px;
  border: none;
  outline: none;
  background-color: rgb(255, 255, 255, 0.4);
}

.signinbutton {
  width: 100%;
  border: 1px solid rgb(209, 209, 209);
  height: 126px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: -300px;
}

.signinbutton button {
  background-color: rgb(255, 196, 0);
  color: #000;
  border: 1px solid rgb(209, 136, 0);
  width: 238px;
  height: 28px;
  font-weight: 600;
  border-radius: 3px;


}

.signinbutton a {
  text-decoration: none;
  color: darkcyan;
}

/* footer  */
.footer {
  margin-top: 0px;
}

.foot-panel1 {
  background-color: #37475a;
  color: white;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  font-family: Arial;

}

.foot-panel2 {
  background-color: #222f3d;
  color: white;
  height: 300px;
  display: flex;
  justify-content: space-evenly;
  font-size: 0.9rem;
  padding: 40px 0;
  overflow:hidden;
  font-size: 0.9rem;
}

.foot-panel2 a {
  display: block;
  text-decoration: none;
  color: white;
  font-family: Arial;
  margin-top: 10px;

}

ul p {
  font-family: Arial;
  font-weight: 700;
}

.foot-panel3 {
  background-color: #222f3d;
  color: white;
  border-top: 0.3px solid gray;
  height: 67px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.logo-footer {
  background: url('https://pngimg.com/uploads/amazon/amazon_PNG11.png');
  background-size: cover;
  height: 30px;
  width: 100px;


}

.foot-panel4 {
  height: 250px;
  background-color: rgb(19, 25, 33);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: Arial;
  font-size: 0.9rem;

}

.foot-panel4 a {
  color: white;
  text-decoration: none;
  margin-right: 15px;

}

.copyright {
  margin-top: 7px;
}



.footer-last {

  height: 150px;
  width: 70vw;
  justify-content: space-around;
  margin: 8px 0;
}

.footer-info {

  margin: 20px;
}

.footer-info span {
  font-weight: 600;
  color: #CCCCCC;
}

.footer-last p {
  font-size: 0.8rem;
  color: gray;
}

@media (max-width:500px) {
.nav-address{
  display: none;
}
.nav-search{
  display: none;
}
.language{
  display: none;
}
.nav-signin{
  display: none;
}
.nav-cart{
  display: none;
}

.hidden{
  display: none;
}

.nav-button button{
  display:block;
}
.fix-down{
  display: flex;
}
  
}

