html{
  overflow-x: hidden;
}

body{
  width: 100%;
	margin: 0;
	padding: 0;
 display: flex;
 flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: 'Montserrat', sans-serif;
	background: url(../images/webshop/products.jpg);
  background-position: center;
  background-size: cover;
  overflow-x: hidden;
}



/* styles.css */

nav {
  background-color: #1B1616;
  height: 70px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0%;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 2px 5px 0 #fccd67c9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  padding-left: 20px;
}

.hero{
  display: flex;
  justify-content: space-around;
}

.main{
  align-self: center;
}

label.Logo {
  color: #fcf7f3;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
}

.menu-icon, #close-menu-icon {
  display: none;
  font-size: 30px;
  color: #fcf7f3;
  cursor: pointer;
}

nav ul {
  list-style: none;
  margin: 0;
  margin-right: 40px;
  padding: 0;
  display: flex;
}

nav ul li {
  margin: 0 5px;
}

nav ul li a {
  color: #fcf7f3;
  font-size: 17px;
  padding: 20px;
  text-decoration: none;
}

nav a.active, nav a:hover {
  background: rgb(54, 52, 51);
  transition: 1s;
  border-radius: 7px;
  padding: 10px;
}

.mobile-menu {
  display: none;
}

footer{
  display: flex;
  flex-wrap: wrap;
  background-color: #1B1616;
  padding: 25px;
  width: 100%;
  height: max-content;
  justify-content: space-around;
}

.footer-col ul{
  list-style: none;
}

.footer-col-logo{
  max-width: 350px;
  min-width: 150px;
  padding-left: 3%;
  min-height: 150px;
  max-height: 350px;
}

.footerlogo{
  width: auto;
  height: 100%;
}

.footer-col h4{
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 30px;
  color: #f1bc0d;
  text-transform: capitalize;
}

.footer-col{
  width: 20%;
  padding-left: 5%;
}

.footer-col h4::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  background-color: #e69600;
  height: 2px;
  width: 40px;
}

.footer-col ul{
  padding: 0%;
}

.footer-col ul li{
  margin-bottom: 10px;
  padding: none;
}

.footer-col ul li a{
  display: block;
  font-size: 20px;
  text-transform: capitalize;
  color: #bdb6b6;
  text-decoration: none;
  transition: 0.4s;
}

.footer-col ul li a:hover{
  color: white;
  padding-left: 2px;
}

.links a{
  display: inline-block;
  height: 44px;
  width: 44px;
  color: white;
  background-color: #e69600;
  margin: 0 8px 8px 0;
  text-align: center;
  line-height: 44px;
  border-radius: 50%;
  transition: 0.4s;
}

.links a:hover{
  color: #4d4f55;
  background-color: white;
}

.main{
  display: none;
	width: 350px;
	height: 600px;
	background: #1B1616;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;
  margin: 150px;
  
}
#chk{
	display: none;
}
.signup{
	position: relative;
	width:100%;
	height: 100%;
  display: none;
}


label.chk{
	color: #fff;
	font-size: 2.3em;
	justify-content: center;
	display: flex;
	margin: 50px;
	font-weight: bold;
	cursor: pointer;
	transition: .5s ease-in-out;
}
input{
	width: 60%;
	height: 10px;
	background: #e0dede;
	justify-content: center;
	display: flex;
	margin: 20px auto;
	padding: 12px;
	border: none;
	outline: none;
	border-radius: 5px;
}
button{
	width: 60%;
	height: 40px;
	margin: 10px auto;
	justify-content: center;
	display: block;
	color: #000000;
	background: #ffd000;
	font-size: 1em;
	font-weight: bold;
	margin-top: 30px;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
}
button:hover{
	background: #ffd86e;
}
.login{
	height: 460px;
	background: #eee;
	border-radius: 60% / 10%;
	transform: translateY(-180px);
	transition: .8s ease-in-out;
  display: none;
}

#logoutButton{
  width: min-content;
  font-family: Montserrat;
  border-radius: 7px;
  padding: 10px;
}

#profileSection{
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 90px;
  margin-bottom: 90px;
  padding: 2vw;
  width: 90vw;
  align-self: center;
  background-color: #fcf7f3;
  border: transparent;
  border-radius: 2vw;
}

#profileSection h1{
  display: flex;
  width: 100%;
}

#changePassword{
  display: flex;
  flex-direction: column;
  width: 20vw;
  height: min-content;
  border: transparent;
  border-radius: 2vw;
  background-color: #ffe4c0;
  padding: 2vw;
  margin-left: 20px;
}

#userDetails{
  display: flex;
  flex-direction: column;
  width: 20vw;
  height: min-content;
  border: transparent;
  border-radius: 2vw;
  background-color: #ffe4c0;
  padding: 2vw;
}

#userDetails img{
  width: 50px;
  height: auto;
  align-self: center;
}

#chk{
  display: none;
}


.login label{
	color: #1B1616;
	transform: scale(.6);
}

#chk:checked ~ .login{
	transform: translateY(-500px);
}
#chk:checked ~ .login label{
	transform: scale(1);	
}
#chk:checked ~ .signup label{
	transform: scale(.6);
}


.fb{
  height: 30px;
  width: auto;
  align-self: center;
  justify-self: center;
  margin-top: 7px;
}

.ig{
  margin-top: 7px;
  height: 30px;
  width: auto;
  align-self: center;
  justify-self: center;
}

.footer-col .adresa{
  font-size: 20px;
  color: #e6a900;
}

footer{
  display: flex;
  flex-wrap: wrap;
  background-color: #1B1616;
  padding: 25px;
  width: 100%;
  height: max-content;
  justify-content: space-around;
}

.footer-col ul{
  list-style: none;
}

.footer-col-logo{
  max-width: 350px;
  min-width: 150px;
  padding-left: 3%;
  min-height: 150px;
  max-height: 350px;
}

.footerlogo{
  width: auto;
  height: 100%;
}

.footer-col h4{
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 30px;
  color: #f1bc0d;
  text-transform: capitalize;
}

.footer-col{
  width: 20%;
  padding-left: 5%;
}

.footer-col h4::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  background-color: #e69600;
  height: 2px;
  width: 40px;
}

.footer-col ul{
  padding: 0%;
}

.footer-col ul li{
  margin-bottom: 10px;
  padding: none;
}

.footer-col ul li a{
  display: block;
  font-size: 20px;
  text-transform: capitalize;
  color: #bdb6b6;
  text-decoration: none;
  transition: 0.4s;
  background-color: transparent;
}

.footer-col ul li a:hover{
  color: white;
  padding-left: 2px;
}

.links a{
  color: white;
  background-color: #e69600;
  margin: 8px;
  text-align: center;
  border-radius: 50%;
}

.links a:hover{
  color: white;
  background-color: #ffffff;
  text-align: center;
  border-radius: 50%;
}
  

#cookiePopup{
  align-self: center;
  justify-self: center;
  margin-left: 0%;
}


/* Responsive styles */

@media(max-width: 1440px){
  #logoutButton{
  width: min-content;
  font-family: Montserrat;
  border-radius: 7px;
  padding: 10px;
}

#profileSection{
  display: none;
  flex-direction: row;
  margin-top: 90px;
  margin-bottom: 90px;
  margin-left: 55px;
  padding: 2vw;
  width: 90vw;
  align-self: center;
  background-color: #fcf7f3;
  border: transparent;
  border-radius: 2vw;
}

#profileSection h1{
  display: flex;
  flex-direction: row;
  width: 100%;
}

#changePassword{
  display: flex;
  flex-direction: column;
  width: 35vw;
  height: min-content;
  border: transparent;
  border-radius: 2vw;
  background-color: #ffe4c0;
  padding: 2vw;
  margin-left: 20px;
}

#userDetails{
  display: flex;
  flex-direction: column;
  width: 35vw;
  height: min-content;
  border: transparent;
  border-radius: 2vw;
  background-color: #ffe4c0;
  padding: 2vw;
  margin: 20px;
}

#userDetails img{
  width: 50px;
  height: auto;
  align-self: center;
}
  .footer-col{
      width: 50%;
      margin-bottom: 30px;
      text-align: center;
  }

  .footer-col h4::before{
      all: unset;
  }

}

@media(max-width: 1024px){

  html{
    overflow-x: hidden;
  }

  #logoutButton{
  width: min-content;
  font-family: Montserrat;
  border-radius: 7px;
  padding: 10px;
}

#profileSection{
  display: none;
  flex-direction: row;
  margin-top: 90px;
  margin-bottom: 90px;
  margin-left: 45px;
  padding: 2vw;
  width: 90vw;
  align-self: center;
  background-color: #fcf7f3;
  border: transparent;
  border-radius: 2vw;
}

#profileSection h1{
  display: flex;
  flex-direction: row;
  width: 100%;
}

#changePassword{
  display: flex;
  flex-direction: column;
  width: 35vw;
  height: min-content;
  border: transparent;
  border-radius: 2vw;
  background-color: #ffe4c0;
  padding: 2vw;
  margin-left: 20px;
}

#userDetails{
  display: flex;
  flex-direction: column;
  width: 35vw;
  height: min-content;
  border: transparent;
  border-radius: 2vw;
  background-color: #ffe4c0;
  padding: 2vw;
  margin: 20px;
}

#userDetails img{
  width: 50px;
  height: auto;
  align-self: center;
}
  .footer-col{
      width: 50%;
      margin-bottom: 30px;
      text-align: center;
  }

  .footer-col h4::before{
      all: unset;
  }

}

@media(max-width: 768px){

footer{
  overflow: hidden;
}

.hero{
  overflow-x: hidden;
}

.main{
  overflow-x: hidden;
}
  html{
    overflow-x: hidden;
  }

  .menu-icon {
    display: block;
    color: #f2f2f2;
    margin-right: 40px;
  }

  #close-menu-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
  }
  nav ul {
    display: none;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1B1616;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 20px;
    width: 100%;
  }

  .mobile-menu ul li {
    width: 100%;
  }

  .mobile-menu ul li a {
    display: block;
    padding: 20px;
    font-size: 20px;
    color: #fcf7f3;
    text-decoration: none;
  }

  .mobile-menu.active {
    display: flex;
  }

  #logoutButton{
  width: min-content;
  font-family: Montserrat;
  border-radius: 7px;
  padding: 10px;
}

#profileSection{
  display: none;
  flex-direction: column;
  margin-top: 90px;
  margin-bottom: 90px;
  margin-left: 23px;
  padding: 2vw;
  width: 90vw;
  align-self: center;
  background-color: #fcf7f3;
  border: transparent;
  border-radius: 2vw;
}

#profileSection h1{
  display: flex;
  flex-direction: row;
  width: 100%;
}

#changePassword{
  display: flex;
  flex-direction: column;
  width: 75vw;
  height: min-content;
  border: transparent;
  border-radius: 2vw;
  background-color: #ffe4c0;
  padding: 2vw;
  margin-left: 20px;
}

#userDetails{
  display: flex;
  flex-direction: column;
  width: 75vw;
  height: min-content;
  border: transparent;
  border-radius: 2vw;
  background-color: #ffe4c0;
  padding: 2vw;
  margin: 20px;
}

#userDetails img{
  width: 50px;
  height: auto;
  align-self: center;
}
  .footer-col{
      width: 50%;
      margin-bottom: 30px;
      text-align: center;
  }

  .footer-col h4::before{
      all: unset;
  }

}

  @media(max-width: 740px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
    }
  
    .footer-col h4::before{
        all: unset;
    }
  }
  
  

  @media(max-width: 555px){
    .footer-col{
        width: 100%;
    }
  }

@media(max-width: 425px){

    html{
      overflow-x: hidden;
    }

    body{
      overflow-x: hidden;
    }

    .footer-col{
        width: 100%;
    }

    .hero{
      display: flex;
    }

    footer{
      width: 100%;
      overflow-x: hidden;
    }

    #mainSection{
      margin: 2px;
      margin-top: 80px;
      margin-left: 40px;
      margin-bottom: 30px;
      overflow: hidden;
    }

    #profileSection{
      margin-left: 13px;
    }

    .menu-icon	{
      margin-right: 30px;
    }

    nav{
      right: 0%;
      width: 100%;
      overflow-x: hidden;  
    }

    nav ul{
      display: none;
    }

    footer{
      width: 100%;
    }
  }
  
  @media(max-width: 375px){
    body{
      width: 100%;
      overflow-x: hidden;
    }

    #mainSection{
      margin-left: 10px;
    }

    footer{
      width: 100%;
      padding: none;
    }
    .footer-col{
        width: 100%;
    }

    .footer-col-logo{
      padding: 0%;
    }

    #logoutButton{
      width: min-content;
      font-family: Montserrat;
      border-radius: 7px;
      padding: 10px;
    }
    
    #profileSection{
      display: none;
      flex-direction: column;
      margin-top: 90px;
      padding: 1.2vw;
      width: 95vw;
      align-self: center;
      background-color: #fcf7f3;
      border: transparent;
      border-radius: 2vw;
      margin-left: 10px;
      margin-right: 10px;
    }
    
    #profileSection h1{
      display: flex;
      flex-direction: row;
      width: 90%;
    }
    
    #changePassword{
      display: flex;
      flex-direction: column;
      width: 70vw;
      height: min-content;
      border: transparent;
      border-radius: 2vw;
      background-color: #ffe4c0;
      padding: 2vw;
    }
    
    #userDetails{
      display: flex;
      flex-direction: column;
      width: 70vw;
      height: min-content;
      border: transparent;
      border-radius: 2vw;
      background-color: #ffe4c0;
      padding: 2vw;
      margin: 20px;
    }
    
    #userDetails img{
      width: 50px;
      height: auto;
      align-self: center;
    }
  }

  @media(max-width: 320px){
    body{
      width: 100%;
      overflow-x: hidden;
    }

    #mainSection{
      margin-left: 10px;
    }

    footer{
      width: 100%;
      padding: none;
    }
    .footer-col{
        width: 100%;
    }

    .footer-col-logo{
      padding: 0%;
    }

    #logoutButton{
      width: min-content;
      font-family: Montserrat;
      border-radius: 7px;
      padding: 10px;
    }
    
    #profileSection{
      display: none;
      flex-direction: column;
      margin-top: 90px;
      padding: 1.2vw;
      width: 95vw;
      align-self: center;
      background-color: #fcf7f3;
      border: transparent;
      border-radius: 2vw;
      margin-left: 10px;
      margin-right: 10px;
    }
    
    #profileSection h1{
      display: flex;
      flex-direction: row;
      width: 90%;
    }
    
    #changePassword{
      display: flex;
      flex-direction: column;
      width: 70vw;
      height: min-content;
      border: transparent;
      border-radius: 2vw;
      background-color: #ffe4c0;
      padding: 2vw;
    }
    
    #userDetails{
      display: flex;
      flex-direction: column;
      width: 70vw;
      height: min-content;
      border: transparent;
      border-radius: 2vw;
      background-color: #ffe4c0;
      padding: 2vw;
      margin: 20px;
    }
    
    #userDetails img{
      width: 50px;
      height: auto;
      align-self: center;
    }
  }