@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://use.typekit.net/iry0bxp.css");

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*font-family: "SF Pro Text","Myriad Set Pro","SF Pro Icons","Apple Legacy Chevron","Helvetica Neue","Helvetica","Arial",sans-serif;*/
  font-family: "Raleway", "Century Gothic", sans-serif;
}

a{
  text-decoration: none;
}

header{
  width: 100%;
  height: auto;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.4);
  z-index: 2000;
}

header.sticky nav{
  visibility: hidden;
  display: none;
}

header nav{
  width: 100%;
  height: 60px;
  background: #151515;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  position: relative;
}

header .container{
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav .container .logo{
  width: 150px;
  margin-top: 10px;
}

header .navbar{
  width: 100%;
  height: 50px;
  background: #151515;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6000;
  position: relative;
}

header .bagIcon{
  position: relative;
}

header .bagIcon g{
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  color: #151515;
  font-weight: 600;
  font-family: "Century Gothic", sans-serif;
}

header.sticky .navbar{
  position: fixed;
  top: 0;
  left: 0;
}

header .navbar .float-right{
  visibility: hidden;
  display: none;
}

header.sticky .navbar .float-right{
  visibility: visible;
  display: flex;
  position: absolute;
  right: 40px;
}

header .navbar .navbarImg{
  display: none;
}

header.sticky .navbar .navbarImg{
  position: absolute;
  left: 40px;
  display: flex;
}

header.sticky .navbar .navbarImg img{
  width: 90px;
}

header.sticky .navbar .float-right a{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

header.sticky .navbar .float-right a.bagIcon{
  position: relative;
}

header.sticky .navbar .float-right a.bagIcon g{
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  color: #151515;
  font-weight: 600;
  font-family: "Raleway", "Century Gothic", sans-serif;
}

header .navbar ul.navList{
  list-style: none;
}

header .navbar ul.navList li:nth-child(1){
  margin-left: 0;
}

header .navbar ul.navList li{
  list-style: none;
  display: inline-block;
  margin: 0 15px;
}

header .navbar ul.navList li a{
  color: #CECECE;
  font-family: "Good Times", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  transition: 0.3s;
  position: relative;
  letter-spacing: 1px;
}

header .navbar ul.navList li a span{
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -17px;
  left: 0;
}

header .navbar ul.navList li a:hover{
  color: #fff;
}

header .navbar ul.navList .searchBox{
  transition: 0.2s;
  width: 30px;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .navbar ul.navList .searchBox form{
  width: 100%;
  height: 30px;
}

header .navbar ul.navList .searchBox input{
  transition: 0.2s;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  color: #fff;
  padding: 3px 20px 3px 30px;
  font-size: 14px;
  display: none;
  visibility: hidden;
}

header .navbar ul.navList .searchBox button{
  transition: 0.2s;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  visibility: hidden;
}

header .navbar ul.navList .searchBox .toggleButton{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

header .navbar ul.navList .searchBox .closeButton{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.1s;
  opacity: 0;
}

header .navbar.searchActive ul.navList .searchBox{
  width: 200px;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .navbar.searchActive ul.navList .searchBox .toggleButton{
  visibility: hidden;
}

header .navbar.searchActive ul.navList .searchBox .closeButton{
  opacity: 1;
}

header .navbar.searchActive ul.navList .searchBox form{
  width: 100%;
  height: 30px;
}

header .navbar.searchActive ul.navList .searchBox input{
  display: flex;
  visibility: visible;
}

header .navbar.searchActive ul.navList .searchBox input::placeholder{
  color: #fff;
}

header .navbar.searchActive ul.navList .searchBox button{
  visibility: visible;
}

header nav .container a{
  color: #fff;
  font-size: 20px;
}

header .float-right{
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
}

header .userIcon{
  width: auto;
  height: auto;
  z-index: 6001;
}

header .loginDropdown{
  position: absolute;
  top: 22px;
  right: 0;
  background: #fff;
  width: 200px;
  height: auto;
  padding: 15px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  display: none;
  visibility: hidden;
}

header .userIcon:hover .loginDropdown{
  display: flex;
  visibility: visible;
}

header .userIcon .loginDropdown:hover{
  display: flex;
  visibility: visible;
}

header .loginDropdown ul{
  width: 100%;
  height: 100%;
}

header .loginDropdown ul li{
  width: 100%;
  text-align: left;
  list-style: none;
  font-size: 18px;
  color: #151515;
  margin: 5px 0;
}

header .loginDropdown ul li a{
  font-family: "Raleway", "Century Gothic", sans-serif;
  font-size: 15px;
  color: #151515;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: none;
  padding-bottom: 2px;
  transition: 0.1s;
  text-transform: inherit;
  letter-spacing: 0px;
}

header .loginDropdown ul li a:hover{
  text-decoration: underline;
}

.hinweis{
  color: #FF0000;
  margin-top: 20px;
  font-size: 13.5px;
}

#rabattBox{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  z-index: 9000;
}

#rabattBox.active{
  display: flex;
  visibility: visible;
}

#rabattBox .blackscreen{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

#rabattBox .blackscreen .login{
  width: 500px;
  height: auto;
  background: #fff;
  border-radius: 2px;
  padding: 20px 30px;
  background: #EEEEEE;
}

#rabattBox .blackscreen .login .loginHeader{
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

#rabattBox .blackscreen .login .loginHeader h3{
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  color: #151515;
}

#rabattBox .blackscreen .login .loginHeader i{
  font-size: 25px;
  color: #151515;
  cursor: pointer;
}

#rabattBox .blackscreen .login .loginMain{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#rabattBox .blackscreen .login .loginMain form{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

#rabattBox .blackscreen .login .loginMain form input{
  width: 100%;
  height: 45px;
  padding: 0 10px;
  color: #151515;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  background: #fff;
}

#rabattBox .blackscreen .login .loginMain form label{
  font-size: 15px;
  color: #151515;
  font-weight: 500;
  text-align: left;
  margin-top: 20px;
  padding-bottom: 5px;
}

#rabattBox .blackscreen .login .loginMain form label span{
  color: #FF0000;
  font-size: 20px;
}

#rabattBox .blackscreen .login .loginMain form button{
  width: 100%;
  height: 45px;
  padding: 0 10px;
  color: #fff;
  background: #151515;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.1s;
}

#rabattBox .blackscreen .login .loginMain form button:hover{
  background: #2C2C2C;
  border: 1px solid #2C2C2C;
}

#rabattBox .blackscreen .login .loginMain form a{
  width: 100%;
  color: #151515;
  background: #fff;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
}

.orderPopup{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  z-index: 9000;
}

.orderPopup.active{
  display: flex;
  visibility: visible;
}

.orderPopup .blackscreen{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

.orderPopup .blackscreen .innerBox{
  width: 500px;
  height: auto;
  background: #fff;
  border-radius: 2px;
  padding: 20px 30px;
  background: #EEEEEE;
  max-height: 600px;
  overflow: scroll;
}

.orderPopup .blackscreen .innerBox .loginHeader{
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

.orderPopup .blackscreen .innerBox .loginHeader h3{
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  color: #151515;
}

.orderPopup .blackscreen .innerBox .loginHeader i{
  font-size: 25px;
  color: #151515;
  cursor: pointer;
}

.orderPopup .blackscreen .innerBox .loginMain{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orderPopup .blackscreen .innerBox .loginMain form{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.orderPopup .blackscreen .innerBox .loginMain form input{
  width: 100%;
  height: 45px;
  padding: 0 10px;
  color: #151515;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  background: #fff;
  font-size: 15px;
}

.orderPopup .blackscreen .innerBox .loginMain form label{
  font-size: 15px;
  color: #151515;
  font-weight: 500;
  text-align: left;
  margin-top: 20px;
  padding-bottom: 5px;
}

.orderPopup .blackscreen .innerBox .loginMain form label span{
  color: #FF0000;
  font-size: 20px;
}

.orderPopup .blackscreen .innerBox .loginMain form button{
  width: 100%;
  height: 45px;
  padding: 0 10px;
  color: #fff;
  background: #151515;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.1s;
}

.orderPopup .blackscreen .innerBox .loginMain form button:hover{
  background: #2C2C2C;
  border: 1px solid #2C2C2C;
}

.orderPopup .blackscreen .innerBox .loginMain form a{
  width: 100%;
  color: #151515;
  background: #fff;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
}

.orderPopup .blackscreen .innerBox p{
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  color: #151515;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3px 0;
}

.orderPopup .blackscreen .innerBox p span{
  font-weight: 700;
}

.orderPopup .blackscreen .innerBox p.article{
  margin-top: 5px;
}

.orderPopup .blackscreen .innerBox p.address{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.orderPopup .blackscreen .innerBox .orderHeader{
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  margin-top: 30px;
}

.orderPopup .blackscreen .innerBox .orderAddressBox{
  width: 100%;
  height: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.orderPopup .blackscreen .innerBox .orderAddressBox .deliveryBox{
  width: 100%;
  height: 3px;
  border-radius: 5px;
  overflow: hidden;
}

.orderPopup .blackscreen .innerBox .orderAddressBox .deliveryBox .deliveryLine{
  height: 100%;
  background: #00CC00;
  border-radius: 5px;
}

.orderPopup .blackscreen .innerBox .orderAddressBox .deliveryBox .deliveryLine.line1{
  width: 5%;
}
.orderPopup .blackscreen .innerBox .orderAddressBox .deliveryBox .deliveryLine.line2{
  width: 43%;
}
.orderPopup .blackscreen .innerBox .orderAddressBox .deliveryBox .deliveryLine.line3{
  width: 70%;
}
.orderPopup .blackscreen .innerBox .orderAddressBox .deliveryBox .deliveryLine.line4{
  width: 100%;
}

.orderPopup .blackscreen .innerBox .orderAddressBox .labels{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
}

.orderPopup .blackscreen .innerBox .orderAddressBox .labels span{
  font-weight: 500;
  font-size: 12px;
  color: #151515;
}

.orderPopup .blackscreen .innerBox .orderMainBox{
  width: 100%;
  height: auto;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.orderPopup .blackscreen .innerBox p.bankdaten{
  width: 100%;
  font-weight: 500;
  font-size: 13px;
  color: #151515;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 15px;
}

.orderPopup .cartItems{
  margin-top: 20px;
  padding-bottom: 20px;
}

.orderPopup .cartItems .cartItem{
  width: 100%;
  height: 100px;
}

.orderPopup .cartItems .cartItem .textBox .textHeader{
  width: 100%;
  height: 50%;
}

.orderPopup .cartItems .cartItem .textBox .textHeader .titelBox{
  width: 100%;
}

.orderPopup .cartItems .cartItem .textBox .textMain{
  width: 100%;
  height: 50%;
}

#loginField{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  z-index: 9000;
}

#loginField.active{
  display: flex;
  visibility: visible;
}

#loginField .blackscreen{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

#loginField .blackscreen .login{
  width: 500px;
  height: auto;
  background: #fff;
  border-radius: 2px;
  padding: 20px 30px;
  background: #EEEEEE;
}

#loginField .blackscreen .login .loginHeader{
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

#loginField .blackscreen .login .loginHeader h3{
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  color: #151515;
}

#loginField .blackscreen .login .loginHeader i{
  font-size: 25px;
  color: #151515;
  cursor: pointer;
}

#loginField .blackscreen .login .loginMain{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loginField .blackscreen .login .loginMain form{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

#loginField .blackscreen .login .loginMain form input{
  width: 100%;
  height: 45px;
  padding: 0 10px;
  color: #151515;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  background: #fff;
  font-size: 15px;
}

#loginField .blackscreen .login .loginMain form label{
  font-size: 15px;
  color: #151515;
  font-weight: 500;
  text-align: left;
  margin-top: 20px;
  padding-bottom: 5px;
}

#loginField .blackscreen .login .loginMain form label span{
  color: #FF0000;
  font-size: 20px;
}

#loginField .blackscreen .login .loginMain form button{
  width: 100%;
  height: 45px;
  padding: 0 10px;
  color: #fff;
  background: #151515;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.1s;
}

#loginField .blackscreen .login .loginMain form button:hover{
  background: #2C2C2C;
  border: 1px solid #2C2C2C;
}

#loginField .blackscreen .login .loginMain form a{
  width: 100%;
  color: #151515;
  background: #fff;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
}

#registerField{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  z-index: 9000;
}

#registerField.active{
  display: flex;
  visibility: visible;
}

#registerField .blackscreen{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

#registerField .blackscreen .login{
  width: 500px;
  height: auto;
  background: #fff;
  border-radius: 2px;
  padding: 20px 30px;
  background: #EEEEEE;
}

#registerField .blackscreen .login .loginHeader{
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

#registerField .blackscreen .login .loginHeader h3{
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  color: #151515;
}

#registerField .blackscreen .login .loginHeader i{
  font-size: 25px;
  color: #151515;
  cursor: pointer;
}

#registerField .blackscreen .login .loginMain{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#registerField .blackscreen .login .loginMain form{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

#registerField .blackscreen .login .loginMain form input{
  width: 100%;
  height: 45px;
  padding: 0 10px;
  color: #151515;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  background: #fff;
}

#registerField .blackscreen .login .loginMain form label{
  font-size: 15px;
  color: #151515;
  font-weight: 500;
  text-align: left;
  margin-top: 20px;
  padding-bottom: 5px;
}

#registerField .blackscreen .login .loginMain form label span{
  color: #FF0000;
  font-size: 20px;
}

#registerField .blackscreen .login .loginMain form button{
  width: 100%;
  height: 45px;
  padding: 0 10px;
  color: #fff;
  background: #151515;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.1s;
}

#registerField .blackscreen .login .loginMain form button:hover{
  background: #2C2C2C;
  border: 1px solid #2C2C2C;
}

#registerField .blackscreen .login .loginMain form a{
  width: 100%;
  color: #151515;
  background: #fff;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
}

#shopSizeGuide{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  z-index: 9000;
}

#shopSizeGuide.active{
  display: flex;
  visibility: visible;
}

#shopSizeGuide .blackscreen{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

#shopSizeGuide .innerBox{
  width: 600px;
  height: auto;
  background: #fff;
  border-radius: 2px;
  padding: 20px 30px;
  background: #EEEEEE;
}

#shopSizeGuide .innerBox .sizeGuideHeader{
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

#shopSizeGuide .innerBox .sizeGuideHeader h3{
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  color: #151515;
}

#shopSizeGuide .innerBox .sizeGuideHeader i{
  font-size: 25px;
  color: #151515;
  cursor: pointer;
}

#shopSizeGuide .innerBox .sizeGuideMain{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

#shopSizeGuide .innerBox .sizeGuideMain img{
  width: 100%;
  height: auto;
}

#newImportantPopup{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  z-index: 9000;
}

#newImportantPopup.active{
  display: flex;
  visibility: visible;
}

#newImportantPopup .blackscreen{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

#newImportantPopup .blackscreen .popupInnerBox{
  width: 400px;
  height: auto;
  border-radius: 2px;
  overflow: hidden;
  padding: 5px;
  background: #EEEEEE;
  position: relative;
}

#newImportantPopup .blackscreen .popupInnerBox img{
  width: 100%;
}

#newImportantPopup .blackscreen .popupInnerBox i{
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  color: #151515;
  cursor: pointer;
}

.container{
  width: 60%;
  padding: 0;
}

.container img{
  width: 450px;
}

.middle{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about{
  padding-bottom: 100px;
}

.about h3{
  margin-top: 30px;
  margin-bottom: 5px;
  color: #004724;
  font-size: 21px;
  letter-spacing: 3px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Raleway Bold", "Raleway", sans-serif;
}

.about h4{
  color: #151515;
  font-size: 19px;
  letter-spacing: 1px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Raleway Bold", "Raleway", sans-serif;
}

.about li{
  list-style: none;
  color: #151515;
  font-size: 16px;
  margin: 5px;
}

.about a{
  color: #151515;
  font-size: 18px;
}

.about p{
  color: #151515;
  font-size: 18px;
}

.about span.englisch{
  color: #151515;
  opacity: 0.7;
  font-size: 15px;
}

.about span.englisch a{
  color: #151515;
  font-size: 15px;
}

.shop-list{
  width: 100%;
  height: auto;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1999px;
}

.shop-list .shop-container{
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInShop 0.3s ease-in;
  position: relative;
  left: 0;
  top: 0;
}

@keyframes fadeInShop {
  0%{
    opacity: 0;
    left: 200px;
  }
  100%{
    opacity: 1;
    left: 0px;
  }
}

.shop-list .shop-container .shop-item{
  height: 70px;
  width: 70px;
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.shop-list .shop-container .shop-item .inner{
  width: 100%;
  height: 100%;
}

.shop-list .shop-container .shop-item img{
  width: 50px;
  padding-bottom: 1px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.shop-list .shop-container .shop-item .textBox{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.shop-list .shop-container .shop-item .textBox .titel{
  font-size: 11px;
  color: #151515;
  font-weight: 600;
}

.shop-list .shop-container .shop-item .textBox .neu{
  font-size: 9px;
  color: #004724;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: -2px;
}

section#wallpaper{
  width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  background: url("img/sternenhimmel1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 110px;
}

section#wallpaper .blackscreen{
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section#wallpaper .blackscreen img{
  width: 50px;
  margin-top: -80px;
}

section#wallpaper .blackscreen h1{
  font-size: 55px;
  color: #fff;
  font-family: "Raleway Black", "Raleway", sans-serif;
  padding-bottom: 0px;
  letter-spacing: 3px;
}

section#wallpaper .blackscreen h3{
  font-size: 22px;
  color: #EEEEEE;
  font-family: "Raleway Light", "Raleway", sans-serif;
}

section#wallpaper .blackscreen a{
  margin-top: 20px;
  color: #fff;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  text-decoration: underline;
}

section#clubsession{
  width: 100%;
  height: auto;
  background: #151515;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
}

section#clubsession img{
  width: 300px;
}

section#clubsession .eventList{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

section#clubsession .eventList p.eventInformationHeadline{
  font-size: 18px;
  color: #FFF;
  letter-spacing: 1px;
  font-weight: 400;
  font-family: "Raleway Light", "Raleway", sans-serif;
}

section#clubsession .eventList h3.comming{
  font-family: "Raleway Black", sans-serif;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  letter-spacing: 4px;
}

section#clubsession .eventList .eventItem{
  width: 300px;
  height: 150px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.2s;
}

section#clubsession .eventList .eventItem:hover{
  transform: scale(1.05);
}

section#clubsession .eventList .eventItem img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 900;
}

section#clubsession .eventList .eventItem .blackscreen{
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

section#clubsession .eventList .eventItem .blackscreen h3{
  font-family: "Good Times", "Raleway Black", sans-serif;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

section#clubsession .eventList .eventItem .blackscreen span.subtitel{
  font-family: "Good Times", "Raleway Thin", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
}

section#clubsession .eventList .eventItem .blackscreen span.date{
  font-family: "Raleway Extrabold", sans-serif;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

section#clubsession a.clubsessionBtn{
  padding: 0 50px;
  color: #fff;
  background: none;
  border: 2px solid #fff;
  border-radius: 1px;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  line-height: 40px;
  text-align: center;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
}

section#clubsession a.clubsessionBtn:hover{
  color: #151515;
  background: #fff;
  padding: 0 60px;
  letter-spacing: 6px;
}

.schriftzug{
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Good Times", "Raleway Black", sans-serif;
}

.developmentList{
  width: 100%;
  height: 50px;
  margin-top: 50px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.02);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 10px;
  transition: 0.2s;
}

.developmentList.active{
  height: auto;
}

.developmentList .developmentHeader{
  height: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 20px;
  cursor: pointer;
}

.developmentList .developmentHeader h2{
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #151515;
}

.developmentList .developmentHeader .close{
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  position: relative;
}

.developmentList .developmentHeader .close #line-top{
  position: absolute;
  width: 50%;
  height: 1px;
  background: #151515;
}

.developmentList .developmentHeader .close #line-bottom{
  position: absolute;
  width: 50%;
  height: 1px;
  background: #151515;
  transform: rotateZ(90deg);
  transition: 0.3s;
}

.developmentList.active .developmentHeader .close #line-bottom{
  transform: rotateZ(0);
  opacity: 0;
}

.developmentList .developmentItem{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.developmentList .developmentItem .row{
  height: 200px;
}

.developmentList .developmentItem .timeline{
  width: 80px;
  height: 100%;
  border-right: 2px solid #151515;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.developmentList .developmentItem .timeline .row{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  align-items: center;
  position: relative;
}

.developmentList .developmentItem .timeline .row::before{
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: #151515;
}

.developmentList .developmentItem .developmentText{
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.developmentList .developmentItem .developmentText .row{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.developmentList .developmentItem .developmentText img{
  width: 120px;
  padding-right: 30px;
  margin-left: -30px;
}

.developmentList .developmentItem .developmentText p{
  font-size: 16px;
  color: #151515;
  font-weight: 300;
}

section#main{
  width: 100%;
  height: auto;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#start{
  width: 100%;
  height: auto;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#start .icons{
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

section#start .icons .icon{
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

section#start .icons .icon .iconBox{
  width: 100%;
  height: 70px;
  position: relative;
  transition: 0.3s;
}

section#start .icons .icon:hover .iconBox{
  opacity: 0;
}

section#start .icons .icon .textBox{
  width: 100%;
  height: 70px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin-top: 5px;
}

section#start .icons .icon .iconBox i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: #151515;
  position: relative;
  top: 60px;
}

section#start .icons .icon .textBox .titel{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #151515;
  position: relative;
  top: 20px;
  transition: 0.3s;
}

section#start .icons .icon:hover .textBox .titel{
  position: relative;
  top: -50px;
}

section#start .icons .icon .textBox .text{
  font-size: 14px;
  font-weight: 500;
  color: #151515;
  width: 100%;
  text-align: center;
  position: relative;
  top: 100px;
  transition: 0.3s;
}

section#start .icons .icon:hover .textBox .text{
  position: relative;
  top: -45px;
}

section#collectionBody{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section#collectionBody .collectionHeadbanner{
  width: 100%;
  height: auto;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

section#collectionBody .collectionHeadbanner img{
  min-width: 100%;
}

section#collectionBody .collectionHeadbanner h1{
  font-family: "Raleway Black", sans-serif;
  font-size: 50px;
  color: #151515;
  font-weight: 800;
  letter-spacing: 15px;
}

section#collectionBody .collectionHeadbanner h3{
  font-family: "Raleway Light", sans-serif;
  font-size: 30px;
  color: #151515;
  font-weight: 300;
  letter-spacing: 5px;
  margin-top: 5px;
}

section#collectionBody .collectionMain{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}

section#collectionBody .collectionMain .container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 70px 0;
  width: 100%;
  height: auto;
}

section#collectionBody .collectionMain .container .row:nth-child(1){
  margin-top: 0;
}

section#collectionBody .collectionMain .container .row{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 40px;
}

section#collectionBody .collectionMain .container .row .textBox{
  width: 70%;
  height: auto;
}

section#collectionBody .collectionMain .container .row .textBox h3{
  text-align: left;
  color: #151515;
  font-size: 13.5px;
  font-family: "Raleway Light", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

section#collectionBody .collectionMain .container .row .textBox p{
  text-align: left;
  color: #151515;
  font-size: 13.5px;
  font-family: "Raleway Extralight", sans-serif;
  font-weight: 300;
  margin-top: 5px;
  letter-spacing: 1px;
}

section#collectionBody .collectionMain .collectionProductItem{
  width: 400px;
  height: auto;
  overflow: hidden;
  position: relative;
  margin: 10px;
}

section#collectionBody .collectionMain .collectionProductItem.full{
  width: 100%;
}

section#collectionBody .collectionMain .collectionProductItem.full .imgBox{
  width: 100%;
  height: 750px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#collectionBody .collectionMain .collectionProductItem.full .imgBox img{
  width: 100%;
}

section#collectionBody .collectionMain .collectionProductItem.full .overlay .text{
  padding-top: 5px;
}

section#collectionBody .collectionMain .collectionProductItem.big{
  width: 70%;
}

section#collectionBody .collectionMain .collectionProductItem.big .imgBox{
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#collectionBody .collectionMain .collectionProductItem.big .imgBox img{
  width: 100%;
}

section#collectionBody .collectionMain .collectionProductItem.big .overlay .text{
  padding-top: 5px;
}

section#collectionBody .collectionMain .collectionProductItem img{
  width: 100%;
  height: auto;
}

section#collectionBody .collectionMain .collectionProductItem .overlay{
  width: 100%;
  height: 50px;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -5px;
}

section#collectionBody .collectionMain .collectionProductItem .overlay .text{
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

section#collectionBody .collectionMain .collectionProductItem .overlay .text ul{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 5px;
}

section#collectionBody .collectionMain .collectionProductItem .overlay .text ul li{
  list-style: none;
  width: 15px;
  height: 15px;
  background: #eeeeee;
  border-radius: 50%;
  margin: 0px 5px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
}

section#collectionBody .collectionMain .collectionProductItem .overlay .text ul li.active{
  border: 1.5px solid #000;
}

section#collectionBody .collectionMain .collectionProductItem .overlay .text ul li:nth-child(1){
  margin-left: 0px;
}

section#collectionBody .collectionMain .collectionProductItem .overlay .text ul li a{
  width: 100%;
  height: 100%;
}

section#collectionBody .collectionMain .collectionProductItem .overlay .text h3{
  text-align: left;
  color: #151515;
  font-size: 15px;
  font-family: "Raleway Extrabold", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

section#collectionBody .collectionMain .collectionProductItem .overlay .text span{
  text-align: left;
  color: #151515;
  font-size: 13px;
  font-family: "Raleway Light", sans-serif;
  font-weight: 200;
  margin-top: -1px;
  letter-spacing: 1px;
}

section#collectionBody .collectionMain .collectionProductItem .overlay .price{
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

section#collectionBody .collectionMain .collectionProductItem .overlay .price h1{
  text-align: right;
  color: #151515;
  font-size: 14px;
  font-family: "Raleway Extrabold", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

section#productContainer{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 70px 0;
  width: 100%;
  height: auto;
}

section#productContainer .box1{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  width: 60%;
  height: auto;
}

section#productContainer .box1 .imgBox{
  width: 60%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

section#productContainer .box1 .imgBox .galerie{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0px 20px;
}

section#productContainer .box1 .imgBox .galerie .img1,
section#productContainer .box1 .imgBox .galerie .img2,
section#productContainer .box1 .imgBox .galerie .img3,
section#productContainer .box1 .imgBox .galerie .img4{
  width: 49%;
  background: #EEEEEE;
  padding: 0;
}

section#productContainer .box1 .information{
  width: 40%;
  height: auto;
  padding: 0px 10px;
}

section#productContainer .box1 .information .neu{
  font-size: 16px;
  color: #FF0000;
  font-weight: 800;
  letter-spacing: 1px;
}

section#productContainer .box1 .information .subtitel{
  font-size: 14px;
  color: #979797;
  font-weight: 600;
}

section#productContainer .box1 .information .stockTitle{
  font-size: 13px;
  color: #979797;
  font-weight: 600;
}

section#productContainer .box1 .information .titel{
  font-size: 21px;
  color: #151515;
  font-weight: 700;
  margin-top: 7px;
}

section#productContainer .box1 .information .colorLabelTitel{
  font-size: 15px;
  color: #979797;
  font-weight: 400;
  margin-top: 5px;
  padding-bottom: 7px;
}

section#productContainer .box1 .information .preisBox{
  width: 100%;
  height: auto;
  margin-top: 5px;
}

section#productContainer .box1 .information .preis{
  font-size: 17px;
  color: #151515;
  font-weight: 700;
  letter-spacing: 1px;
}

section#productContainer .box1 .information .sale{
  font-size: 17px;
  color: #FF0000;
  font-weight: 800;
  letter-spacing: 1px;
}

section#productContainer .box1 .information .mwstLabel{
  font-size: 13px;
  color: #979797;
  font-weight: 300;
  margin-top: 5px;
}

section#productContainer .box1 .information .sizeGuideLabel{
  font-size: 15px;
  color: #151515;
  font-weight: 400;
  margin-top: 10px;
  position: relative;
  cursor: pointer;
}

section#productContainer .box1 .information .sizeGuideLabel i{
  padding-right: 3px;
}

section#productContainer .box1 .information .colorProductsBox{
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

section#productContainer .box1 .information .colorProductsBox .labelColor{
  font-size: 15px;
  padding-bottom: 3px;
}

section#productContainer .box1 .information .colorProductsBox ul{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

section#productContainer .box1 .information .colorProductsBox ul li.active{
  border: 1.5px solid #000;
}

section#productContainer .box1 .information .colorProductsBox ul li{
  list-style: none;
  width: 40px;
  height: 55px;
  overflow: hidden;
  margin: 5px;
  position: relative;
}

section#productContainer .box1 .information .colorProductsBox ul li img{
  width: 100%;
}

section#productContainer .box1 .information .warenkorb{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 20px;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox1{
  width: 100%;
  height: auto;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox1 form{
  width: 100%;
  height: 100%;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox1 form select{
  width: 100%;
  height: 35px;
  border: 1px solid #151515;
  background: none;
  outline: none;
  color: #151515;
  font-size: 18px;
  margin-top: 10px;
  padding: 0px 15px;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox1 form select option{
  font-size: 17px;
  font-weight: 500;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox1 form select option span{
  margin-left: 10px;
  font-size: 12px;
  font-weight: 700;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2{
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-top: 10px;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .add{
  width: 80%;
  height: 100%;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .add button{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: #151515;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .add button i{
  padding-right: 5px;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .add button.ausverkauft{
  background: #DEDEDE;
  color: #151515;
  pointer-events: none;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .add button.animatedCartButton .fa-shopping-bag{
  position: absolute;
  left: 37%;
  top: 50%;
  transform: translate(-100%, -50%);
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .add button.animatedCartButton .cartButtonAnimatedText{
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-40%, -50%);
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .add button.animatedCartButton .fa-check{
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 37%;
  top: 50%;
  transform: translate(-100%, -50%);
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .add button.animatedCartButton .cartButtonAnimatedSuccsessText{
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-40%, -50%);
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .add button.animatedCartButton:active .fa-shopping-bag{
  animation: cartBtnAnim-1 3s ease;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .add button.animatedCartButton:active .cartButtonAnimatedText{
  animation: cartBtnAnim-2 3s ease;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .add button.animatedCartButton:active .fa-check{
  animation: cartBtnAnim-3 3s ease;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .add button.animatedCartButton:active .cartButtonAnimatedSuccsessText{
  animation: cartBtnAnim-4 3s ease;
}

@keyframes cartBtnAnim-1 {
  5%{
    visibility: hidden;
    opacity: 0;
  }
  95%{
    visibility: hidden;
    opacity: 0;
  }
  100%{
    visibility: visible;
    opacity: 1;
  }
}

@keyframes cartBtnAnim-2 {
  5%{
    visibility: hidden;
    opacity: 0;
  }
  95%{
    visibility: hidden;
    opacity: 0;
  }
  100%{
    visibility: visible;
    opacity: 1;
  }
}

@keyframes cartBtnAnim-3 {
  5%{
    visibility: hidden;
    opacity: 0;
    left: 37%;
    top: 50%;
    transform: translate(-100%, -50%);
  }
  10%{
    visibility: visible;
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  18%{
    left: 37%;
    top: 50%;
    transform: translate(-100%, -50%);
  }
  94%{
    visibility: visible;
    opacity: 1;
    left: 37%;
    top: 50%;
    transform: translate(-100%, -50%);
  }
  96%{
    visibility: hidden;
    opacity: 0;
    left: -100%;
    top: 50%;
    transform: translate(0, -50%);
  }
}

@keyframes cartBtnAnim-4 {
  5%{
    visibility: hidden;
    opacity: 0;
    left: 52%;
    top: 50%;
    transform: translate(-40%, -50%);
  }
  10%{
    visibility: visible;
    opacity: 1;
  }
  94%{
    visibility: visible;
    opacity: 1;
    left: 52%;
    top: 50%;
    transform: translate(-40%, -50%);
  }
  96%{
    visibility: hidden;
    opacity: 0;
    left: 200%;
    top: 50%;
    transform: translate(0, -50%);
  }
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .buttons{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 20%;
  height: 100%;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .buttons .favButton{
  color: #151515;
  font-weight: 600;
  font-size: 25px;
}

section#productContainer .box1 .information .warenkorb .warenkorbBox2 .buttons button{
  color: #151515;
  font-weight: 600;
  font-size: 25px;
  background: none;
  outline: none;
  border: none;
  margin-right: 10px;
  cursor: pointer;
}

section#productContainer .box2{
  width: 60%;
  height: auto;
  margin-top: 30px;
}

section#productContainer .box2 h3{
  font-size: 17px;
  color: #151515;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

section#productContainer .box2 p{
  font-size: 16px;
  color: #151515;
  font-weight: 400;
  margin-top: 3px;
}

.helpList{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}

.helpList .helpItem{
  width: 280px;
  height: 250px;
  background: #F6F6F6;
  border-radius: 2px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  position: relative;
  margin: 10px;
}

.helpList .helpItem i{
  width: 30px;
  height: 30px;
  font-size: 20px;
  color: #151515;
  margin-top: 10px;
}

.helpList .helpItem h3{
  width: 100%;
  height: auto;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
}

.helpList .helpItem span{
  width: 100%;
  height: auto;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  padding: 15px 0;
}

.helpList .helpItem a{
  width: 90%;
  color: #fff;
  background: #151515;
  border: 1px solid #151515;
  border-radius: 1px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  line-height: 35px;
  text-align: center;
  position: absolute;
  bottom: 15px;
}

.helpList .helpItem form{
  width: 90%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: absolute;
  bottom: 15px;
}

.helpList .helpItem form input{
  width: 100%;
  height: 35px;
  padding: 0 10px;
  color: #151515;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  background: #fff;
}

.helpList .helpItem form label{
  font-size: 14px;
  color: #151515;
  font-weight: 500;
  text-align: left;
  padding-bottom: 5px;
}

.helpList .helpItem form label span{
  color: #FF0000;
  font-size: 20px;
}

.helpList .helpItem form button{
  width: 100%;
  height: auto;
  line-height: 35px;
  padding: 0 10px;
  color: #fff;
  background: #151515;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.1s;
}

.helpList .helpItem form button:hover{
  background: #2C2C2C;
  border: 1px solid #2C2C2C;
}

section#userContainer{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 50px 0;
}

section#userContainer .row{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  width: 60%;
  margin-top: 20px;
}

section#userContainer .row .row1{
  width: 25%;
  height: auto;
}

section#userContainer .row .row1 h3{
  font-size: 17px;
  color: #151515;
  font-weight: 800;
  letter-spacing: 0.5px;
}

section#userContainer .row .row1 ul{
  width: 100%;
  height: auto;
  margin-top: 5px;
}

section#userContainer .row .row1 ul li:nth-child(1){
  border-top: none;
}

section#userContainer .row .row1 ul li{
  width: 100%;
  height: auto;
  list-style: none;
  padding: 10px 0;
  border-top: 1px solid #EEEEEE;
  position: relative;
}

section#userContainer .row .row1 ul li a{
  font-size: 15px;
  color: #151515;
  text-decoration: none;
  width: 100%;
}

section#userContainer .row .row1 ul li a i{
  width: 25px;
}

section#userContainer .row .row2{
  width: 70%;
  height: auto;
}

section#userContainer .row .row2 h3.center{
  text-align: center;
}

section#userContainer .row .row2 .information{
  margin-top: 20px;
}

section#userContainer .row .row2 .information p{
  width: 400px;
  font-weight: 500;
  font-size: 15px;
  color: #151515;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0;
}

section#userContainer .row .row2 .information p span{
  font-weight: 700;
}

section#userContainer .row .row2 .information g{
  font-weight: 700;
  font-size: 14px;
  color: #151515;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
  cursor: pointer;
}

.angebotList{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

.angebotList .angebotItem{
  width: 100%;
  height: 100px;
  background: #F6F6F6;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.angebotList .angebotItem h3{
  font-size: 22px;
  color: #151515;
  font-family: "Raleway Black", "Raleway", sans-serif;
  padding-bottom: 0px;
  letter-spacing: 3px;
}

.angebotList .angebotItem p{
  font-size: 16px;
  color: #151515;
  font-family: "Raleway Light", "Raleway", sans-serif;
}

.angebotList .angebotItem a{
  margin-top: 14px;
  color: #151515;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  text-decoration: underline;
  margin-top: 0px;
}

.orderList{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}

.orderList .orderItem{
  width: 300px;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  background: #F6F6F6;
  border-radius: 10px;
  padding: 15px;
  margin: 7px;
}

.orderList .orderItem p{
  width: 100%;
  font-weight: 500;
  font-size: 13px;
  color: #151515;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3px 0;
}

.orderList .orderItem p span{
  font-weight: 700;
}

.orderList .orderItem p.article{
  margin-top: 5px;
}

.orderList .orderItem p.address{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.orderList .orderItem .orderHeader{
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}

.orderList .orderItem .orderAddressBox{
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.orderList .orderItem .orderAddressBox .deliveryBox{
  width: 100%;
  height: 3px;
  border-radius: 5px;
  overflow: hidden;
}

.orderList .orderItem .orderAddressBox .deliveryBox .deliveryLine{
  height: 100%;
  background: #00CC00;
  border-radius: 5px;
}

.orderList .orderItem .orderAddressBox .deliveryBox .deliveryLine.line1{
  width: 5%;
}
.orderList .orderItem .orderAddressBox .deliveryBox .deliveryLine.line2{
  width: 43%;
}
.orderList .orderItem .orderAddressBox .deliveryBox .deliveryLine.line3{
  width: 70%;
}
.orderList .orderItem .orderAddressBox .deliveryBox .deliveryLine.line4{
  width: 100%;
}

.orderList .orderItem .orderAddressBox .labels{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
}

.orderList .orderItem .orderAddressBox .labels span{
  font-weight: 500;
  font-size: 9.5px;
  color: #151515;
}

.orderList .orderItem .orderMainBox{
  width: 100%;
  height: auto;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.orderList .orderItem .orderMainBox p.bankdaten{
  width: 100%;
  font-weight: 500;
  font-size: 13px;
  color: #151515;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 15px;
}

.orderList .orderItem .btn{
  width: 100%;
  color: #fff;
  background: #151515;
  border: 1px solid #151515;
  border-radius: 1px;
  margin-top: 0px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  line-height: 30px;
  text-align: center;
}

section#shopContainer{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  padding: 50px 20px;
}

section#shopContainer .actionList{
  width: 250px;
  height: auto;
}

section#shopContainer .actionList img{
  width: 90%;
}

section#shopContainer .actionList ul{
  width: 100%;
  height: 100%;
  padding: 0px 10px;
}

section#shopContainer .actionList ul li{
  list-style: none;
  margin: 3px 0;
}

section#shopContainer .actionList ul li.headlines:nth-child(1){
  margin-top: 0;
}

section#shopContainer .actionList ul li.headlines{
  font-size: 17px;
  padding-bottom: 3px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 15px;
}

section#shopContainer .actionList ul li a{
  color: #151515;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 500;
}

section#shopContainer .productList{
  width: 80%;
  height: auto;
}

section#shopContainer .productList h1{
  color: #151515;
  font-size: 33px;
  letter-spacing: 3px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Raleway Black", "Raleway", sans-serif;
}

section#shopContainer .productList h2{
  width: 100%;
  text-align: center;
  color: #151515;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Raleway Bold", "Raleway", sans-serif;
}

section#shopContainer .productList .filterRow{
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section#shopContainer .productList .filterRow .filter{
  width: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

section#shopContainer .productList .filterRow .filter ul{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

section#shopContainer .productList .filterRow .filter li:nth-child(1){
  margin-left: 0px;
}

section#shopContainer .productList .filterRow .filter li{
  list-style: none;
  font-size: 15px;
  color: #151515;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  margin-left: 20px;
}

section#shopContainer .productList .filterRow .filter li .deleteFilters{
  font-size: 12px;
  text-transform: uppercase;
  color: #151515;
  letter-spacing: 0px;
  font-weight: 300;
}

section#shopContainer .productList .filterRow .filter li i{
  color: #151515;
  font-size: 16px;
  margin-top: 2px;
}

section#shopContainer .productList .filterRow .filter li ul{
  width: 200px;
  height: auto;
  background: #fff;
  position: absolute;
  z-index: 5001;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.05);
  visibility: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

section#shopContainer .productList .filterRow .filter li.open ul{
  visibility: visible;
}

section#shopContainer .productList .filterRow .filter li.open i{
  transform: rotateZ(180deg);
}

section#shopContainer .productList .filterRow .filter li ul li{
  color: #151515;
  font-size: 16px;
  text-transform: none;
  margin: 3px;
  padding: 7px 25px;
  margin-left: 0px;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  transition: 0.2s;
}

section#shopContainer .productList .filterRow .filter li ul li a{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

section#shopContainer .productList .filterRow .filter li ul li .color{
  width: 15px;
  height: 15px;
  border-radius: 3px;
}

section#shopContainer .productList .filterRow .filter li ul li g{
  margin-left: 7px;
}

section#shopContainer .productList .filterRow .filter li ul li:hover{
  background: #C6C6C6;
}

section#shopContainer .productList .filterRow .filter li ul li a{
  color: #151515;
}

section#shopContainer .productList .filterRow .information{
  width: 20%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

section#shopContainer .productList .filterRow .information li{
  color: #151515;
  font-size: 16px;
  text-transform: none;
  list-style: none;
}

section#shopContainer .productList .productRow{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}

section#shopContainer .productList .productRow .product{
  width: 280px;
  height: 520px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  margin: 5px;
}

section#shopContainer .productList .productRow .product .productHover{
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 10px;
  padding-top: 0px;
  z-index: 2000;
}

section#shopContainer .productList .productRow .product .imgBox{
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #f3f3f3;
  position: relative;
}

section#shopContainer .productList .productRow .product .imgBox img.img1{
  width: 105%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section#shopContainer .productList .productRow .product .imgBox img.img2{
  display: none;
  visibility: hidden;
  width: 105%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section#shopContainer .productList .productRow .product .imgBox:hover img.img1{
  display: none;
  visibility: hidden;
}

section#shopContainer .productList .productRow .product .imgBox:hover img.img2{
  display: flex;
  visibility: visible;
}

section#shopContainer .productList .productRow .product .imgBox .ausverkauftBox{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4000;
  background: rgba(0, 0, 0, 0.5);
}

section#shopContainer .productList .productRow .product .imgBox .ausverkauftBox h3{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(-45deg);
  color: #fff;
  text-transform: uppercase;
  font-size: 25px;
}

section#shopContainer .productList .productRow .product .imgBox .favButton{
  position: absolute;
  top: 15px;
  right: 15px;
  color: #151515;
  font-weight: 600;
  font-size: 25px;
  z-index: 5000;
}

section#shopContainer .productList .productRow .product .imgBox .newLabel{
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 16px;
  color: #FF0000;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5000;
  pointer-events: none;
}

section#shopContainer .productList .productRow .product .textBox{
  padding: 10px 0;
  position: relative;
  width: 100%;
}

section#shopContainer .productList .productRow .product .textBox .subtitel{
  font-size: 12px;
  color: #979797;
  font-weight: 600;
  position: absolute;
  width: 100%;
}

section#shopContainer .productList .productRow .product .textBox .titel{
  font-size: 18px;
  color: #151515;
  font-weight: 700;
  margin-top: 15px;
  width: 100%;
}

section#shopContainer .productList .productRow .product .textBox .preisBox{
  width: 100%;
  height: auto;
  margin-top: 2px;
}

section#shopContainer .productList .productRow .product .textBox .preisBox .preis{
  font-size: 15px;
  color: #151515;
  font-weight: 700;
  letter-spacing: 1px;
}

section#shopContainer .productList .productRow .product .textBox .preisBox .sale{
  font-size: 15px;
  color: #FF0000;
  font-weight: 800;
  letter-spacing: 1px;
}

.pc-none{
  display: none;
  visibility: hidden;
}

section#shopContainer .productList .productRow .product .textBox .colorLabel{
  font-size: 13px;
  color: #979797;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  margin-left: 5px;
}

section#warenkorbContainer{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
  width: 100%;
  height: auto;
}

section#warenkorbContainer .box1{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 60%;
  height: auto;
}

section#warenkorbContainer .box1 h1{
  color: #151515;
  font-size: 33px;
  letter-spacing: 3px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Raleway Black", "Raleway", sans-serif;
}

section#warenkorbContainer .box1 ul{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 20px;
}

section#warenkorbContainer .box1 ul li{
  list-style: none;
  font-size: 14px;
  color: #151515;
  margin: 0px 30px;
}

section#warenkorbContainer .box1 .cartRow{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
}

section#warenkorbContainer .box1 .cartRow .float-left{
  width: 63%;
  height: auto;
  padding: 20px;
  background: #F6F6F6;
}

section#warenkorbContainer .box1 .cartRow .float-left.withItems{
  padding: 0px;
  background: none;
}

.addressList{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.addressList .addressItem{
  width: 250px;
  height: auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid #151515;
  padding: 5px;
}

.addressList .addressItem p{
  width: 100%;
  text-align: left;
  color: #151515;
  font-size: 15px;
}

.addressList .addressItem .buttons{
  width: 100%;
  height: 15px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.addressList .addressItem .buttons a{
  color: #151515;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 800;
}

.addressForm{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.addressForm h2{
  font-size: 18px;
  font-weight: 700;
  color: #151515;
}

.addressForm input{
  width: 100%;
  height: 35px;
  padding: 0 10px;
  color: #151515;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  background: #fff;
}

.addressForm label{
  font-size: 15px;
  color: #151515;
  font-weight: 500;
  text-align: left;
  margin-top: 5px;
  padding-bottom: 5px;
}

.addressForm label span{
  color: #FF0000;
  font-size: 20px;
}

.addressForm button{
  width: 100%;
  height: 45px;
  padding: 0 10px;
  color: #fff;
  background: #151515;
  border: 1px solid #151515;
  outline: none;
  border-radius: 1px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.1s;
}

.addressForm button:hover{
  background: #2C2C2C;
  border: 1px solid #2C2C2C;
}

.cartItems{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.cartItems .cartItem:nth-child(1){
  margin-top: 0px;
}

.cartItems .cartItem{
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.cartItems .cartItem .imgBox{
  width: 15%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 2px;
}

.cartItems .cartItem .imgBox a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cartItems .cartItem .imgBox img{
  width: 100%;
  object-fit: cover;
}

.cartItems .cartItem .textBox{
  width: 85%;
  height: 100%;
  padding: 0px 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.cartItems .cartItem .textBox .textHeader{
  width: 100%;
  height: 33%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cartItems .cartItem .textBox .textHeader .titelBox{
  width: 90%;
}

.cartItems .cartItem .textBox .textHeader .titelBox h5{
  color: #151515;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 600;
  padding-bottom: 0px;
}

.cartItems .cartItem .textBox .textHeader .titelBox .preis{
  color: #151515;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
}

.cartItems .cartItem .textBox .textHeader .titelBox .preis .sale{
  color: #FF0000;
  font-weight: 700;
}

.cartItems .cartItem .textBox .textHeader .titelBox .preis .saleActive{
  font-size: 12px;
  text-decoration: line-through;
  margin-left: 5px;
}

.cartItems .cartItem .textBox .textHeader .deleteItem{
  color: #151515;
  font-size: 15px;
}

.cartItems .cartItem .textBox .textMain{
  width: 100%;
  height: 33%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.cartItems .cartItem .textBox .textMain .textMain1,
.cartItems .cartItem .textBox .textMain .textMain2{
  width: 180px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.cartItems .cartItem .textBox .textMain .textMain2{
  margin-left: 20px;
}

.cartItems .cartItem .textBox .textMain .row{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cartItems .cartItem .textBox .textMain .row p{
  font-size: 12px;
  color: #151515;
  font-weight: 400;
  letter-spacing: 1px;
}

.cartItems .cartItem .textBox .textAction{
  width: 100%;
  height: 33%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.cartItems .cartItem .textBox .textAction .favButton{
  font-size: 25px;
  padding: 7px 12px;
  border: 1px solid #151515;
  border-radius: 1px;
  background: none;
  color: #151515;
  transition: 0.1s;
}

.cartItems .cartItem .textBox .textAction .favButton:hover{
  color: #FF0000;
  font-weight: 600;
}

.cartItems .cartItem .textBox .textAction .quantityBox{
  margin-left: 10px;
  height: 45px;
  width: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cartItems .cartItem .textBox .textAction .quantityBox a{
  width: 30%;
  line-height: 45px;
  color: #151515;
  font-size: 20px;
  text-align: center;
}

.cartItems .cartItem .textBox .textAction .quantityBox span{
  width: 40%;
  line-height: 45px;
  color: #151515;
  font-size: 20px;
  text-align: center;
}

section#warenkorbContainer .box1 .cartRow .float-left h3.headTitel{
  color: #151515;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Raleway Bold", "Raleway", sans-serif;
  padding-bottom: 15px;
}

section#warenkorbContainer .box1 .cartRow .float-left p.headLoginTitel{
  font-size: 13px;
  color: #151515;
  font-weight: 400;
  letter-spacing: 1px;
}

section#warenkorbContainer .box1 .cartRow .float-left .login{
  font-size: 13px;
  color: #151515;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 15px;
  cursor: pointer;
}

section#warenkorbContainer .box1 .cartRow .float-left .addressInput{
  width: 100%;
  height: auto;
}

section#warenkorbContainer .box1 .cartRow .float-left .addressInput p:nth-child(1){
  margin-top: 0px;
}

section#warenkorbContainer .box1 .cartRow .float-left .addressInput p{
  margin-top: 20px;
}

section#warenkorbContainer .box1 .cartRow .float-left .addressInput a.changeBtn{
  font-size: 15px;
  color: #151515;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 25px;
  cursor: pointer;
}

section#warenkorbContainer .box1 .cartRow .float-right{
  width: 35%;
  height: auto;
  padding: 20px;
  background: #F6F6F6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

section#warenkorbContainer .box1 .cartRow .float-right .rabatt{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section#warenkorbContainer .box1 .cartRow .float-right .rabatt p{
  font-size: 14px;
  color: #151515;
  font-weight: 500;
  letter-spacing: 1px;
}

section#warenkorbContainer .box1 .cartRow .float-right .rabatt .einlösen{
  text-decoration: underline;
  cursor: pointer;
  color: #151515;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

section#warenkorbContainer .box1 .cartRow .float-right .rabattCode{
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
}

section#warenkorbContainer .box1 .cartRow .float-right .rabattCode .textBox{
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

section#warenkorbContainer .box1 .cartRow .float-right .rabattCode .textBox p{
  font-size: 16px;
  color: #151515;
  font-weight: 600;
  letter-spacing: 2px;
}

section#warenkorbContainer .box1 .cartRow .float-right .rabattCode .textBox span{
  font-size: 12.5px;
  color: #151515;
  font-weight: 500;
  margin-top: 4px;
}

section#warenkorbContainer .box1 .cartRow .float-right .rabattCode .closeBox{
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

section#warenkorbContainer .box1 .cartRow .float-right .rabattCode .closeBox a{
  font-size: 18px;
  color: #151515;
  font-weight: 500;
}

section#warenkorbContainer .box1 .cartRow .float-right .loginCart{
  width: 100%;
  height: auto;
  margin-top: 20px;
  position: relative;
}

section#warenkorbContainer .box1 .cartRow .float-right .loginCart p{
  font-size: 13px;
  color: #151515;
  font-weight: 400;
  letter-spacing: 1px;
  width: 100%;
}

section#warenkorbContainer .box1 .cartRow .float-right .loginCart a{
  width: 100%;
  color: #151515;
  background: #fff;
  border: 1px solid #151515;
  border-radius: 1px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  line-height: 45px;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox{
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 15px;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .summe.gesamt{
  border-top: 1px solid #151515;
  padding-top: 20px;
  margin-top: 15px;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .summe{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .summe p{
  font-size: 15px;
  color: #151515;
  font-weight: 700;
  letter-spacing: 1px;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .summe.versand p{
  font-size: 13px;
  font-weight: 500;
  padding-bottom: 10px;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .btn{
  width: 100%;
  color: #fff;
  background: #151515;
  border: 1px solid #151515;
  border-radius: 1px;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  line-height: 45px;
  text-align: center;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .btn.notActive{
  color: #151515;
  background: #D8D8D8;
  border: 1px solid #D8D8D8;
  pointer-events: none;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .paymentsCheckout{
  margin-top: 20px;
  width: 100%;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .paymentsCheckout p{
  font-size: 11px;
  color: #151515;
  font-weight: 500;
  letter-spacing: 1px;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .paymentsCheckout ul{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 15px;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .paymentsCheckout ul li{
  list-style: none;
  font-size: 13px;
  color: #151515;
  font-weight: 600;
  margin: 0px 10px;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .paymentsCheckout ul li i{
  font-size: 24px;
  margin-top: -5px;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox form{
  width: 100%;
  height: auto;
  margin-top: 20px;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox form .formPaymentItem{
  width: 100%;
  height: 35px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox form .formPaymentItem input{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: none;
  border: 1px solid #151515;
  color: #151515;
  appearance: none;
  -webkit-apperance: none;
  outline: none;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox form .formPaymentItem input:checked{
  color: #fff;
  background: #004724;
}

section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox form .formPaymentItem label{
  font-size: 13px;
  color: #151515;
  font-weight: 500;
  letter-spacing: 1px;
  margin-left: 15px;
}

.heading{
  color: #151515;
  font-size: 33px;
  letter-spacing: 3px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  font-family: "Raleway Black", "Raleway", sans-serif;
}

.userId{
  color: #151515;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  font-family: "Raleway Light", sans-serif;
}

footer{
  width: 100%;
  height: auto;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

footer .container{
  padding: 30px 0;
}

footer .row{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer .row .left{
  width: 58%;
  text-align: justify;
}
footer .row .right{
  width: 38%;
}

footer .row .right .line{
  width: 100%;
  height: 30px;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

footer .row .right .line:nth-child(1){
  border-top: none;
}

footer .row .right .line.active{
  width: 100%;
  height: 100px;
}

footer .row .right .line .lineHeader{
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}

footer .row .right .line .lineHeader .close{
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  position: relative;
}

footer .row .right .line .lineHeader .close #line-top{
  position: absolute;
  width: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}

footer .row .right .line .lineHeader .close #line-bottom{
  position: absolute;
  width: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
  transform: rotateZ(90deg);
  transition: 0.3s;
}

footer .row .right .line.active .lineHeader .close #line-bottom{
  transform: rotateZ(0);
  opacity: 0;
}

footer .row .right .line .lineText{
  width: 100%;
  height: auto;
}

footer p{
  font-size: 14px;
  color: #727272;
}

footer .secList{
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer .secList .secItem{
  width: 20%;
}

footer .secList .secItem h3{
  font-size: 12px;
  color: #151515;
  font-weight: 600;
  letter-spacing: 1px;
  padding-bottom: 5px;
}

footer .secList .secItem ul{
  list-style: none;
}

footer .secList .secItem ul li{
  list-style: none;
  margin: 5px 0;
}

footer .secList .secItem ul li a{
  font-size: 12px;
  color: #727272;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  transition: 0.2s;
}

footer .secList .secItem ul li a span{
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 100%;
}

footer .secList .secItem ul li a:hover{
  color: #004724;
}

footer .secList .secItem ul li a:hover span{
  width: 100%;
  background: #004724;
  animation: span 0.2s ease-in;
}

@keyframes span {
  0%{
    width: 0%;
  }
  100%{
    width: 100%;
  }
}

footer .copyright{
  font-size: 12px;
}

.alert{
  background: #f9f9f9;
  position: fixed;
  right: 0;
  top: 125px;
  z-index: 3000;
  padding: 20px 40px;
  min-width: 300px;
  border-radius: 4px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  overflow: hidden;
}

.alert.falsch{
  border-bottom: 2px solid #FF5F5F;
}

.alert.richtig{
  border-bottom: 2px solid #00CC00;
}

.alert.show{
  animation: show_slide 1s ease forwards;
}

@keyframes show_slide {
  0%{
    transform: translateX(100%);
  }
  40%{
    transform: translateX(-10%);
  }
  100%{
    transform: translateX(0%);
  }
}

.alert.hide{
  animation: hide_slide 1s ease forwards;
}

@keyframes hide_slide {
  0%{
    transform: translateX(0%);
  }
  40%{
    transform: translateX(-10%);
  }
  100%{
    transform: translateX(100%);
  }
}

.alert .icon{
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #4A4A4A;
  font-size: 25px;
}

.alert .msg{
  padding: 0 25px;
  font-size: 17px;
  color: #151515;
  font-family: "Raleway", "Century Gothic", sans-serif;
}

.alert .close-btn{
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  padding: 20px 18px;
  cursor: pointer;
  transition: 0.3s;
}

.alert .close-btn:hover{
  background: rgba(0, 0, 0, 0.15);
}

.alert .close-btn span{
  color: #4A4A4A;
  font-size: 20px;
  line-height: 40px;
}

#cookiePopUp{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#cookiePopUp .blackscreen{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

#cookiePopUp .blackscreen .cookieBox{
  width: 100%;
  height: 250px;
  padding: 40px;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 0px;
}

#cookiePopUp .blackscreen .cookieBox a.cookieBtn{
  width: 200px;
  color: #fff;
  background: #151515;
  border: 1px solid #151515;
  border-radius: 1px;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  line-height: 45px;
  text-align: center;
  text-decoration: none;
}

#cookiePopUp .blackscreen .cookieBox h3{
  font-family: "Raleway Black", sans-serif;
  font-size: 30px;
  color: #151515;
  padding-bottom: 20px;
}

#cookiePopUp .blackscreen .cookieBox p{
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  color: #151515;
  text-align: center;
  width: 60%;
}

#cookiePopUp .blackscreen .cookieBox p a{
  font-weight: 600;
  color: #151515;
}

@media (max-width: 991px) {
  .pc-none{
    display: flex;
    visibility: visible;
  }
  header .container{
    width: 90%;
    height: 100%;
  }
  header nav .container .logo{
    width: 130px;
    margin-top: 10px;
  }
  header .navbar ul.navList li{
    visibility: visible;
  }
  header .navbar.searchActive ul.navList li{
    visibility: hidden;
  }
  header .navbar ul.navList .searchBox{
    transition: 0s;
    background: #151515;
  }
  header .navbar.searchActive ul.navList .searchBox{
    width: 90%;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
  header .navbar.searchActive ul.navList li a span{
    visibility: hidden;
  }
  header .navbar ul.navList .searchBox input{
    border-radius: 0px;
  }
  header.sticky .navbar{
    position: fixed;
    top: 59px;
    left: 0;
  }
  header .navbar .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    height: 100%;
  }
  header.sticky nav{
    visibility: visible;
    display: flex;
    position: fixed;
    top: 0;
    z-index: 9900;
  }
  header.sticky .navbar .float-right{
    visibility: hidden;
    display: none;
  }
  header.sticky .navbar .navbarImg{
    display: none;
    visibility: hidden;
  }
  header.sticky .navbar .float-right a.bagIcon g{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    color: #151515;
    font-weight: 600;
    font-family: "Century Gothic", sans-serif;
  }
  .container{
    width: 90%;
    padding: 20px 0;
  }
  section#main{
    padding: 30px 0;
  }
  section#wallpaper{
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    position: relative;
  }
  section#wallpaper .imgWallpaper{
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  section#wallpaper .imgWallpaperMobile{
    display: flex;
    visibility: visible;
    opacity: 1;
    position: relative;
    top: 50px;
    left: 20px;
    height: 100%;
    z-index: 1000;
  }
  section#wallpaper .textBox{
    margin-top: 50px;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1001;
  }
  section#start{
    width: 100%;
    height: auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section#start .icons{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  section#start .icons .icon{
    width: 50%;
    height: 210px;
  }
  section#start .icons .icon.active .iconBox{
    opacity: 0;
  }
  section#start .icons .icon.active .textBox .titel{
    position: relative;
    top: -40px;
  }
  section#start .icons .icon.active .textBox .text{
    position: relative;
    top: -30px;
  }
  #loginField .blackscreen .login{
    width: 95%;
  }
  #loginField{
    position: fixed;
  }
  #registerField .blackscreen .login{
    width: 95%;
  }
  #registerField{
    position: fixed;
  }
  #rabattBox .blackscreen .login{
    width: 95%;
  }
  #rabattBox{
    position: fixed;
  }
  section#shopContainer{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 50px 10px;
  }
  section#shopContainer .actionList{
    width: 100%;
    display: none;
    visibility: hidden;
  }
  section#shopContainer .actionList ul{
    width: 100%;
    height: 100%;
    padding: 0px 10px;
  }
  section#shopContainer .productList{
    width: 100%;
  }
  section#shopContainer .productList h2{
    width: 100%;
    text-align: center;
    color: #151515;
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Raleway Bold", "Raleway", sans-serif;
  }
  section#shopContainer .productList .productRow{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  section#shopContainer .productList .productRow .product{
    width: 46%;
    height: 380px;
    margin-top: 20px;
  }
  section#shopContainer .productList .productRow .product:nth-child(1){
    margin-top: 0px;
  }
  section#shopContainer .productList .productRow .product:nth-child(2){
    margin-top: 0px;
  }
  section#shopContainer .productList .productRow .product .productHover{
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 10px;
    padding-top: 0px;
    z-index: 2000;
  }
  section#shopContainer .productList .productRow .product .imgBox{
    width: 100%;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #f3f3f3;
    position: relative;
  }
  section#shopContainer .productList .productRow .product .imgBox img.img1{
    width: 105%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  section#shopContainer .productList .productRow .product .imgBox img.img2{
    display: none;
    visibility: hidden;
    width: 105%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  section#shopContainer .productList .productRow .product .imgBox:hover img.img1{
    display: none;
    visibility: hidden;
  }
  section#shopContainer .productList .productRow .product .imgBox:hover img.img2{
    display: flex;
    visibility: visible;
  }
  section#shopContainer .productList .productRow .product .imgBox .favButton{
    position: absolute;
    top: 15px;
    right: 15px;
    color: #151515;
    font-weight: 600;
    font-size: 25px;
    z-index: 5000;
  }
  section#shopContainer .productList .productRow .product .imgBox .newLabel{
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 16px;
    color: #FF0000;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5000;
    pointer-events: none;
  }
  section#shopContainer .productList .productRow .product .textBox{
    padding: 10px 0;
    position: relative;
  }
  section#shopContainer .productList .productRow .product .textBox .subtitel{
    font-size: 12px;
    color: #979797;
    font-weight: 600;
    position: absolute;
  }
  section#shopContainer .productList .productRow .product .textBox .titel{
    font-size: 18px;
    color: #151515;
    font-weight: 700;
    margin-top: 15px;
  }
  section#shopContainer .productList .productRow .product .textBox .preisBox{
    width: 100%;
    height: auto;
    margin-top: 2px;
  }
  section#shopContainer .productList .productRow .product .textBox .preisBox .preis{
    font-size: 15px;
    color: #151515;
    font-weight: 700;
    letter-spacing: 1px;
  }
  section#shopContainer .productList .productRow .product .textBox .preisBox .sale{
    font-size: 15px;
    color: #FF0000;
    font-weight: 800;
    letter-spacing: 1px;
  }
  section#shopContainer .productList .productRow .product .textBox .colorLabel{
    margin-left: 0px;
  }
  section#warenkorbContainer .box1{
    width: 95%;
  }
  section#warenkorbContainer .box1 h1{
    font-size: 35px;
  }
  section#warenkorbContainer .box1 ul{
    flex-direction: column;
    margin-top: 0px;
  }
  section#warenkorbContainer .box1 ul li{
    margin: 10px 0px;
  }
  section#warenkorbContainer .box1 .cartRow{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
  }
  section#warenkorbContainer .box1 .cartRow .float-left{
    width: 95%;
  }
  section#warenkorbContainer .box1 .cartRow .float-left.withItems{
    padding: 0px;
    background: none;
  }
  .cartItems{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .cartItems .cartItem:nth-child(1){
    margin-top: 0px;
  }
  .cartItems .cartItem{
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
  }
  .cartItems .cartItem .imgBox{
    width: 15%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 2px;
  }
  .cartItems .cartItem .imgBox img{
    width: 100%;
    object-fit: cover;
  }
  .cartItems .cartItem .textBox{
    width: 85%;
    height: 100%;
    padding: 0px 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
  .cartItems .cartItem .textBox .textHeader{
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .cartItems .cartItem .textBox .textHeader .titelBox{
    width: 95%;
  }
  .cartItems .cartItem .textBox .textHeader .deleteItem{
    color: #151515;
    font-size: 15px;
  }
  .cartItems .cartItem .textBox .textMain{
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .cartItems .cartItem .textBox .textMain .textMain1,
  .cartItems .cartItem .textBox .textMain .textMain2{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .cartItems .cartItem .textBox .textMain .textMain2{
    margin-left: 0px;
  }
  .cartItems .cartItem .textBox .textMain .row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .cartItems .cartItem .textBox .textMain .row p{
    font-size: 12px;
    color: #151515;
    font-weight: 400;
    letter-spacing: 1px;
  }
  .cartItems .cartItem .textBox .textAction{
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .cartItems .cartItem .textBox .textAction .favButton{
    font-size: 25px;
    padding: 0px;
    border: none;
    border-radius: 1px;
    background: none;
    color: #151515;
    transition: 0.1s;
  }
  section#warenkorbContainer .box1 .cartRow .float-right{
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }
  section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .paymentsCheckout{
    margin-top: 20px;
    width: 100%;
  }
  section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .paymentsCheckout p{
    font-size: 12px;
  }
  section#warenkorbContainer .box1 .cartRow .float-right .checkoutBox .paymentsCheckout ul{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
  }
  section#productContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 70px 0px;
    width: 100%;
    height: auto;
  }
  section#productContainer .box1{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 95%;
  }
  section#productContainer .box1 .imgBox{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section#productContainer .box1 .imgBox .galerie{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0px;
  }
  section#productContainer .box1 .imgBox .galerie .img1,
  section#productContainer .box1 .imgBox .galerie .img2,
  section#productContainer .box1 .imgBox .galerie .img3,
  section#productContainer .box1 .imgBox .galerie .img4{
    width: 49%;
  }
  section#productContainer .box1 .information{
    width: 100%;
    padding: 0px;
    margin-top: 20px;
  }
  section#productContainer .box1 .information .neu{
    font-size: 16px;
    color: #FF0000;
    font-weight: 800;
    letter-spacing: 1px;
  }
  section#productContainer .box1 .information .titel{
    margin-top: 5px;
  }
  section#productContainer .box1 .information .warenkorb{
    margin-top: 20px;
  }
  section#productContainer .box2{
    width: 95%;
    height: auto;
    margin-top: 30px;
  }
  section#productContainer .box2 h3{
    font-size: 17px;
    color: #151515;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  section#productContainer .box2 p{
    font-size: 16px;
    color: #151515;
    font-weight: 400;
    margin-top: 3px;
  }
  footer{
    width: 100%;
    height: auto;
    background: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  footer .row{
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  footer .row .left{
    width: 100%;
  }
  footer .row .right{
    width: 100%;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  footer .secList{
    margin: 20px 0;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  footer .secList .secItem{
    width: 50%;
    margin-top: 30px;
  }
  footer .secList .secItem:nth-child(1){
    margin-top: 0;
  }
  footer .secList .secItem:nth-child(2){
    margin-top: 0;
  }
  footer .secList .secItem h3{
    padding-bottom: 2px;
  }
  footer .secList .secItem ul li{
    list-style: none;
    margin: 5px 0;
  }
  footer .secList .secItem ul li:nth-child(1){
    margin-top: 0px;
  }
  footer .copyright{
    font-size: 11px;
    text-align: center;
  }
  section#wallpaper .blackscreen img{
    width: 50px;
    margin-top: -80px;
  }
  section#wallpaper .blackscreen h1{
    font-size: 30px;
    text-align: center;
    font-weight: 900;
  }
  section#wallpaper .blackscreen h3{
    font-size: 18px;
  }
  section#wallpaper .blackscreen a{
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: 1px;
  }
  .schriftzug{
    font-weight: 800;
  }
  .alert{
    background: #f9f9f9;
    position: fixed;
    right: 0;
    top: 125px;
    z-index: 3000;
    padding: 20px;
    min-width: 150px;
    border-radius: 4px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow: hidden;
  }
  .alert.falsch{
    border-bottom: 2px solid #FF5F5F;
  }
  .alert.richtig{
    border-bottom: 2px solid #00CC00;
  }
  .alert.show{
    animation: show_slide 1s ease forwards;
  }
  @keyframes show_slide {
    0%{
      transform: translateX(100%);
    }
    40%{
      transform: translateX(-10%);
    }
    100%{
      transform: translateX(0%);
    }
  }
  @keyframes hide_slide {
    0%{
      transform: translateX(0%);
    }
    40%{
      transform: translateX(-10%);
    }
    100%{
      transform: translateX(100%);
    }
  }
  .alert .icon{
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #4A4A4A;
    font-size: 25px;
  }
  .alert .msg{
    padding: 0 40px;
    font-size: 15px;
    color: #151515;
    font-family: "Century Gothic", sans-serif;
  }
  .alert .close-btn{
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    padding: 20px 18px;
    cursor: pointer;
    transition: 0.3s;
  }
  .alert .close-btn span{
    color: #4A4A4A;
    font-size: 20px;
    line-height: 40px;
  }
  section#userContainer{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 50px 0px;
  }
  section#userContainer .row{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    flex-direction: column;
    width: 90%;
    margin-top: 30px;
  }
  section#userContainer .row .row1{
    width: 100%;
  }
  section#userContainer .row .row1 h3{
    font-size: 20px;
  }
  section#userContainer .row .row1 ul li a{
    font-size: 18px;
  }
  section#userContainer .row .row2{
    width: 100%;
    height: auto;
    margin-top: 30px;
  }
  section#userContainer .row .row2 .information p{
    width: 100%;
  }
  .orderList{
    width: 100%;
  }
  .orderList .orderItem{
    width: 100%;
  }
  .orderList .orderItem .orderMainBox p.bankdaten{
    width: 100%;
    flex-direction: column;
  }
  .helpList{
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10px;
  }
  .helpList .helpItem{
    width: 100%;
    padding: 15px;
    margin: 10px 0;
  }
  .helpList .helpItem h3{
    font-size: 13px;
  }
  .helpList .helpItem span{
    font-size: 12.5px;
  }
  .helpList .helpItem a{
    width: 90%;
    color: #fff;
    background: #151515;
    border: 1px solid #151515;
    border-radius: 1px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    line-height: 35px;
    text-align: center;
    position: absolute;
    bottom: 15px;
  }
  .helpList .helpItem form{
    width: 90%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    bottom: 15px;
  }
  .helpList .helpItem form input{
    width: 100%;
    height: 35px;
    padding: 0 10px;
    color: #151515;
    border: 1px solid #151515;
    outline: none;
    border-radius: 1px;
    background: #fff;
  }
  .helpList .helpItem form label{
    font-size: 14px;
    color: #151515;
    font-weight: 500;
    text-align: left;
    padding-bottom: 5px;
  }
  .helpList .helpItem form label span{
    color: #FF0000;
    font-size: 20px;
  }
  .helpList .helpItem form button{
    width: 100%;
    height: auto;
    line-height: 35px;
    padding: 0 10px;
    color: #fff;
    background: #151515;
    border: 1px solid #151515;
    outline: none;
    border-radius: 1px;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.1s;
  }
  .orderPopup{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    z-index: 900;
  }
  .orderPopup.active{
    display: flex;
    visibility: visible;
  }
  .orderPopup .blackscreen{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
  }
  .orderPopup .blackscreen .innerBox{
    width: 95%;
    height: auto;
    padding: 20px;
    max-height: 500px;
  }
  .orderPopup .blackscreen .innerBox .loginHeader{
    width: 100%;
    height: auto;
    padding: 0px;
  }
  .orderPopup .blackscreen .innerBox .loginHeader h3{
    font-size: 20px;
  }
  .orderPopup .blackscreen .innerBox p{
    font-size: 15px;
  }
  .orderPopup .blackscreen .innerBox p.bankdaten{
    flex-direction: column;
  }
  .orderPopup .cartItems .cartItem{
    width: 100%;
    height: 130px;
  }
  .orderPopup .cartItems .cartItem .textBox .textHeader{
    width: 100%;
    height: 50%;
  }
  .orderPopup .cartItems .cartItem .textBox .textHeader .titelBox{
    width: 100%;
  }
  .orderPopup .cartItems .cartItem .textBox .textMain{
    width: 100%;
    height: 50%;
    margin-top: -15px;
  }
  .cartItems .cartItem .textBox .textMain .textMain1,
  .cartItems .cartItem .textBox .textMain .textMain2{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .cartItems .cartItem .textBox .textMain .textMain2{
    margin-left: 0px;
  }
  .cartItems .cartItem .textBox .textMain .row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .cartItems .cartItem .textBox .textMain .row p{
    font-size: 12px;
    color: #151515;
    font-weight: 400;
    letter-spacing: 1px;
  }
  .developmentList .developmentHeader{
    height: 40px;
  }
  .developmentList .developmentHeader h2{
    font-size: 16px;
  }
  .developmentList .developmentItem{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .developmentList .developmentItem .row{
    height: auto;
  }
  .developmentList .developmentItem .timeline{
    width: 50px;
    height: 100%;
    border-right: 2px solid #151515;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .developmentList .developmentItem .timeline .row{
    width: 100%;
    height: 280px;
    padding-right: 7px;
  }
  .developmentList .developmentItem .timeline .row::before{
    width: 5px;
  }
  .developmentList .developmentItem .developmentText{
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
  .developmentList .developmentItem .developmentText .row{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 0;
  }
  .developmentList .developmentItem .developmentText img{
    width: 100px;
    padding-right: 0;
    margin-left: 0px;
    padding-bottom: 10px;
  }
  #cookiePopUp .blackscreen .cookieBox{
    width: 100%;
    height: auto;
    padding: 20px 10px;
  }
  #cookiePopUp .blackscreen .cookieBox h3{
    text-transform: uppercase;
    font-weight: 900;
  }
  #cookiePopUp .blackscreen .cookieBox p{
    width: 90%;
  }
  #shopSizeGuide .innerBox{
    width: 95%;
  }
  #shopSizeGuide .innerBox .sizeGuideHeader{
    padding: 0px;
  }
  #shopSizeGuide .innerBox .sizeGuideHeader h3{
    font-size: 22px;
  }
}
