/*Farben***************************************************************************/
path.wc_fillcolor,
.wc_fillcolor{
  fill: #FF2E2E;
  color: #FF2E2E;
}
path.wc_fillcolor--tertiary,
  .wc_fillcolor--tertiary {
    fill: white;
    color: white;
  }

#wc_checkoutform .wc_input--error {
  border: 1px solid #FF2E2E;
}

.wc_inputcheckbox--error {
  color: #FF2E2E;
}

path.wc_fillcolor--secondary,
.wc_fillcolor {
  fill: #4b4548;
}


/*Buttons***************************************************************************/
.wc_button {
  position: relative;
  padding: 8px 16px;
  border: 2px solid #FF2E2E;
  background: #FF2E2E;
  color: white;
  cursor: pointer;
  transition: .2s;
}

.wc_button--secondary {
  border: 2px solid #FF2E2E;
  background: transparent;
  color:#FF2E2E;
}

.wc_button:hover {
  border: 2px solid #4B4548;
  background: #4B4548;
  color: white;
  transition: .2s;
}

.wc_removebutton--checkout,
.wc_addbutton--checkout {
  padding: 1px 5px;
}

.button__text {
  font: bold 16px "Quicksand", san-serif;
  text-align: center;
}

.wc_button--loading .button__text {
  visibility: hidden;
  opacity: 0;
}

.wc_button--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

/*Used across pages***************************************************************************/
.wc_sum, .wc_tax {
  display: grid;
  grid-template-columns: auto 60px;
}

.wc_categoryimage {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.wc_checkoutdivider,
.wc_divider {
  width: 100%;
  height: 1px;
  background: black;
  margin: 15px 0;
}

.cart-element {
  display: grid;
  column-gap: 15px;
  grid-template-columns: 40px auto 60px 18px;
}

.cart-element--checkout {
  column-gap: 0px;
  grid-template-columns: 40px 90px auto 60px;
}

.cartitem_price,.wc_sumtext  {
  text-align: right;
}

.cartitem_quantity,
.wc_sum > .wc_sumtext:first-child,
.wc_tax > .wc_sumtext:first-child {
  text-align: left;
}

.wc_sumcontainer {
  margin-bottom: 50px;
}

.wc_sumcontainer p {
  padding: 0;
}

.wc_sum>p {
  font-weight: bold;
}

/*Menu*/
#wc_productlist {
  margin-bottom: 100px;
}

#wc_categorycontainer > .wc_categorylist {
  display: flex;
  justify-content: space-between;
  width: 100%;
  list-style-type: none;
  padding: 0;
}

.categorycontainer {
  margin-top: 100px;
}

.categorycontainer:first-child {
  margin-top: 50px;
}

.productcontainer {
  display: grid;
  grid-template-columns: repeat(2, 45%);
  justify-content: space-between;
}

.wc_productentry {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 50% 45%;
  justify-content: space-between;
}

.wc_menucontainer>p {
  padding: 0;
}

.wc_menubuttoncontainer {
  display: grid;
  grid-template-columns: repeat(3, 50px);
  height: 40px;
  align-items: center;
}

.wc_menubuttoncontainer--checkout {
  display: grid;
  grid-template-columns: repeat(2, 30px);
  height: 10px;
  column-gap: 10px;
  margin-bottom: 40px;
}

.centertext {
  text-align: center;
}

/*Cart***************************************************************************/
.edit {
  cursor: pointer;
}

.invisible {
  transform: translate(500px, -50%) !important;
}

div#wc_cart {
  overflow: scroll;
}

#wc_carttoggle {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 900000;
  width: 60px;
  cursor: pointer;
  background: #FF2E2E;
}

#wc_cartopen{
  width: 100%;
  padding: 12px;
}

#wc_cartclose {
  width: 25px;
  padding: 3px;
  cursor: pointer;
  margin-bottom: 25px;
}

.wc_cartcontent {
  margin: 20px 0px;
}

div#wc_togglesum {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  z-index: -1;
}

#wc_cart {
  transition: transform 500ms;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  height: 100vh;
  min-width: 400px;
  width: 20vw;
  padding: 50px;
  z-index: 1000000;
  -webkit-box-shadow: -4px 2px 14px -6px rgba(0,0,0,0.23); 
  box-shadow: -4px 2px 14px -6px rgba(0,0,0,0.23);
  background: white;
}

#wc_checkoutbutton {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

/*Checkout***************************************************************************/
#wc_checkoutcontainer {
  display: grid;
  grid-template-columns: 55% 35%;
  justify-content: space-between;
  margin-bottom: 100px;
}

.wc_checkoutformcontainer {
  padding: 10%;
  background: rgb(235, 235, 235);
}

#wc_checkoutform {
  display: grid;
  row-gap: 20px;
  margin: 20px 0px;
}

#wc_checkoutform input.wc_inputtext,
#wc_checkoutform textarea.wc_inputtext,
#wc_checkoutform select.wc_inputtext {
  padding: 8px;
  background-color: transparent;
}

#wc_checkoutform textarea.wc_inputtext {
  border: 1px solid black;
}

#wc_checkoutform input.wc_inputtext,
#wc_checkoutform select.wc_inputtext {
  border: 0;
  border-bottom: 1px solid black;
}
select#wc-inputtime {
  width: 100%;
}



/*Media Queries***************************************************************************/
/*Notebook*/
@media only screen and (min-width: 1281px) and (max-width: 1480px){
	
}

/*Tablet Quer*/
@media only screen and (min-width: 769px) and (max-width: 1280px){
  /*Checkout*/
  #wc_checkoutcontainer {
      display: grid;
      grid-template-columns: repeat(2, 45%);
  }

}

/*Tablet*/
@media only screen and (max-width: 768px){
  /*Farben*/

  /*Menu*/
  .wc_menubuttoncontainer {
    column-gap: 15px;
  }

  /*Cart*/
  #wc_carttoggle {
    top: auto;
    bottom:20px;
    right: 20px;
    transform: translate(0, 0);
  }

  /*Checkout*/
  #wc_checkoutcontainer {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 50px;
  }

}

/*Surface Duo*/
@media only screen and (max-width: 560px){

  /*Menu*/
  #wc_categorycontainer > .wc_categorylist {
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 20px;
  }

  .wc_productentry {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }

  .wc_menubuttoncontainer {
    margin-top: 15px;
  }

  .wc_menubuttoncontainer--checkout {
    margin-top: 0px;
  }

  /*Checkout*/
  #wc_checkoutcontainer {
    display: block;
  }

  .wc_checkoutformcontainer {
    margin-top: 50px;
    padding: 8%;
  }
}

/*Phone*/
@media only screen and (max-width: 480px){
	/*Menu*/
  .productcontainer {
    display: block;
  }

  /*Cart*/
  #wc_carttoggle {
    bottom:10px;
    right: 10px;
  }

  #wc_cart {
    min-width: 0px;
    width: 100vw;
    padding: 50px 10%;
  }

  .cart-element--checkout {
    margin-bottom: 10px;
  }
}

/*iPhone SE*/
@media only screen and (max-width: 320px){
  .cart-element--checkout {
    display: block;
    margin-bottom: 30px;
  }

  .cartitem_price, .wc_sumtext {
    text-align: left;
  }

  .wc_menubuttoncontainer--checkout {
    margin-bottom: 30px;
  }

  .cart-element.cart-element--checkout>p {
    padding: 0px;
  }

  .cart-element {
    column-gap: 5px;
  }
	
}


/*Galaxy Fold*/
@media only screen and (max-width: 280px){
	
}