.bg-white {
  background-color: orange;
}

.modal {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal_content {
  background-color: white;
  border: solid orange;
  border-radius: 25px;
  width: 400px;
  height: 200px;
  -webkit-box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.close_modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: orange;
  height: 30px;
  width: 100%;
  padding: 10px;
}

.close_modal:hover {
  cursor: pointer;
}

.modal_mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 20px;
  font-size: larger;
  padding: 10px;
}

.modal_text {
  padding: 10px;
}

.about_more {
  font-size: small;
  margin-top: 10px;
  padding: 10px;
}

.about {
  padding: 10px;
}

#addToCartBtn {
  margin-top: 100px;
}

#customerDetails {
  padding: 15px;
  display: table-column;
  max-width: 1000px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 15%;
  margin-right: 15%;
}

.carteLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.nameFixedSize {
  width: 150px;
}

#cartBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
}

#checkoutBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.iconRemove {
  color: lightgrey;
  width: 50px;
  height: 25px;
  -webkit-transform: translateX(120px);
          transform: translateX(120px);
}

.iconRemove:hover {
  color: grey;
  cursor: pointer;
}

#iconCamera {
  background-color: blue;
  width: 50px;
  height: 25px;
  color: white;
}

#purchaseConfirmation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  z-index: 10;
  -webkit-transform: translateZ(10px);
          transform: translateZ(10px);
  -webkit-box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.5);
}

#confirmationImage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -50px;
  background-image: url("./img/camera-lens-blurred.jpg");
  width: 750px;
  height: 400px;
  z-index: 1;
}

#blueCircle {
  visibility: hidden;
}

#buttonOrder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#orderInformation {
  visibility: hidden;
}

#hiddenProduct {
  visibility: hidden;
}
/*# sourceMappingURL=style.css.map */