@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  width: 100%;
  letter-spacing: 2px;
  padding: 1rem;
}
.container {
  width: 100%;
  padding: 2rem;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.inputForm {
  width: 100%;
  display: flex;
  justify-content: center;
}
.inputFormLR {
  display: flex;
  padding: 1rem 4rem;
  width: 100%;
  gap: 10rem;
}
.inputForm-left {
  width: 50%;
  padding: 1rem 5rem;
  text-align: start;
}
.inputForm-right {
  width: 50%;
}
.inputForm-left-contactInfo {
  display: flex;
  flex-direction: column;
}
.inputForm-left-shippingAdress {
  display: flex;
  flex-direction: column;
}
.img-mini {
  margin-top: 5px;
  margin-left: 5px;
  width: 20px;
  opacity: 0.5;
}
.inputField {
  border: 2px rgba(0, 0, 0, 0.3) solid;
  border-radius: 5px;
  width: 117%;
  margin-bottom: 10px;
}
input {
  width: 80%;
  border: none;
  outline: none;
  height: 20px;
  vertical-align: middle;
  margin-bottom: 10px;
  margin-left: 2px;
}
.leftDownside-last {
  display: flex;
  flex-direction: row;
  margin-bottom: 2px;
  flex-wrap: wrap;
}
.dropDownList {
  display: flex;
  flex-direction: column;
  width: 40%;
}
.postCodeDiv {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
  vertical-align: super;
}
select {
  height: 25px;
  outline: none;
  border: 2px rgba(0, 0, 0, 0.3) solid;
  border-radius: 5px;
}
#information {
  width: 5%;
  vertical-align: baseline;
}
.information {
  vertical-align: super;
  text-align: center;
}
.inputForm-right {
  background-color: #eeeeee;
  width: 350px;
  height: 450px;
  border-radius: 10px;
  padding: 5px;
}

.btn {
  width: 150%;
  text-align: end;
}

.btnSubmit {
  padding: 10px;
  margin-right: 100px;
  border: none;
  background-color: rgb(255, 181, 154);
  border-radius: 10px;
  height: 40px;
}
.btnSubmit:active {
  transform: scale(0.99);
  cursor: pointer;
}
.btnSubmit:hover {
  cursor: pointer;
  background-color: rgb(248, 138, 98);
}
.imgProducts {
  width: 100px;
  height: 110px;
  margin-top: 15px;
  border-radius: 10px;
  justify-content: flex-start;
}
label {
  margin-bottom: 10px;
}
.postCode {
  width: 135%;
}
.rightCardProduct {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  margin-left: 10px;
}
.overline {
  text-decoration: line-through;
}
h4 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.orangeColor {
  color: rgb(216, 99, 56);
  padding-right: 10px;
}
.productBtnCount {
  display: flex;
  flex-direction: row;
  width: 70px;
  justify-content: space-between;
  outline: 1px solid grey;
  outline-offset: 5px;
  border-radius: 2px;
}
.countRight {
  width: 20px;
  background-color: rgb(182, 179, 179);
  cursor: pointer;
  border-radius: 5px;
}
.countLeft {
  width: 20px;
  background-color: rgb(182, 179, 179);
  cursor: pointer;
  border-radius: 5px;
}
.countRight:active {
  transform: scale(0.9);
}
.countLeft:active {
  transform: scale(0.9);
}
.productRightSide {
  margin-left: 10px;
}
.productRightSide > div {
  margin: 15px 10px 25px;
}
.shipping {
  display: flex;
  justify-content: space-between;
  border-top: 2px rgb(216, 213, 213) solid;
  width: 300px;
  margin-left: 10px;
  margin-top: 10px;
  color: rgb(0, 0, 0);
}
h1 {
  margin-bottom: 30px;
}
.shippingAndTotal {
  margin-top: 40px;
}

select {
  border: none;
  vertical-align: super;
}
.selectCountry {
  width: 120px;
}

@media screen and (max-width: 768px) {
  body {
    height: auto;
  }
  .inputFormLR {
    flex-wrap: wrap-reverse;
    padding: 0 5rem;
    gap: 2rem;
  }

  .inputForm-left {
    width: 95%;
    padding: 1rem 5rem;
    text-align: start;
  }
  .inputForm-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .leftDownside-last {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .dropDownList {
    width: 100%;
  }

  .postCodeDiv {
    width: 100%;
    margin-left: 0px;
  }

  .postCode {
    width: 100%;
  }

  .btn {
    width: auto;
    text-align: start;
  }
}

@media screen and (max-width: 600px) {
  body {
    height: auto;
  }
  .inputFormLR {
    flex-wrap: wrap-reverse;
    padding: 0 5rem;
    gap: 2rem;
  }

  .inputForm-left {
    width: 90%;
    padding: 1rem 5rem;
    text-align: start;
  }
  .inputForm-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .leftDownside-last {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .dropDownList {
    width: 100%;
  }

  .postCodeDiv {
    width: 100%;
    margin-left: 0px;
  }

  .postCode {
    width: 100%;
  }

  .btn {
    width: auto;
    text-align: start;
  }
}
