* {
  font-family: "Poppins", sans-serif;
}

body {
  padding: 0 25px;
  margin: 0 auto;
}
body #return-section {
  background-color: #f0f7fe;
  max-width: 480px;
  margin: 25px auto;
  box-shadow: 0 0 15px 10px rgb(240, 247, 254);
  width: 100%;
}
body #return-section .custom-select {
  width: 150px;
  font-size: 1rem;
  border: 1px solid lightgray;
}
body #return-section .custom-select.locales {
  display: flex;
  margin-left: auto;
  width: 100px;
  padding: 8px;
  border-radius: 5px;
}
body #return-section .language-selection {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
body #return-section .language-selection .logo img {
  width: 75%;
}
body #return-section .language-selection .language {
  width: 28%;
}
body #return-section .warningbox {
  border: 3px dashed darkred;
  border-radius: 5px;
  margin-bottom: 20px;
}
body #return-section .warningbox .warningbox-text {
  background: white;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35rem;
}
body #return-section .refundpage-title .title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 15px 0;
}
body #return-section .refundForm {
  display: flex;
  flex-direction: column;
}
body #return-section .refundForm .input-control {
  display: block;
  margin: 15px 0;
}
body #return-section .refundForm .input-control .title {
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  margin-left: 2px;
}
body #return-section .refundForm .input-control input[type=text], body #return-section .refundForm .input-control input[type=email] {
  width: 100%;
  height: 35px;
  margin-top: 5px;
  padding-left: 5px;
  border: 1px solid lightgray;
  border-radius: 5px;
}
body #return-section .refundForm .input-control textarea {
  width: 100%;
  margin-top: 5px;
  padding-left: 5px;
  padding-top: 5px;
  border: 1px solid lightgray;
  border-radius: 5px;
}
body #return-section .refundForm .input-control select {
  width: 100%;
  margin-top: 5px;
  padding: 10px 0 10px 5px;
  border: 1px solid lightgray;
  border-radius: 5px;
}
body #return-section .refundForm .input-control .validationWarning {
  display: block;
  color: red;
  font-weight: 600;
  margin-top: 8px;
  margin-left: 2px;
}
body #return-section .refundForm .input-control .input-control-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}
body #return-section .refundForm .input-control .tooltip {
  position: relative;
  display: inline-block;
  color: white;
  background-color: #0C4B88;
  padding: 4px 8px;
  border-radius: 100%;
  font-weight: bold;
  text-align: center;
  margin: 0 5px 5px auto;
}
body #return-section .refundForm .input-control .tooltip .tooltip-text {
  visibility: hidden;
  width: 250px;
  background-color: white;
  color: black;
  padding: 15px 15px;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
  border: 2px solid #0C4B88;
  box-shadow: 0 0 15px 5px rgba(12, 75, 136, 0.5);
  position: absolute;
  z-index: 1;
  top: 90%;
  right: -25%;
}
body #return-section .refundForm .input-control .tooltip .tooltip-text .tooltip-img {
  margin-top: 10px;
}
body #return-section .refundForm .input-control .tooltip .tooltip-text .tooltip-img img {
  width: 100%;
}
body #return-section .refundForm .input-control .tooltip:hover .tooltip-text {
  visibility: visible;
}
body #return-section .refundForm .input-control.ordernumber .ordernumber-example {
  font-size: 0.75rem;
  line-height: 1.1rem;
  margin-left: 2px;
}
body #return-section .refundForm .input-control.ordernumber input {
  padding-left: 80px;
}
body #return-section .refundForm .input-control.ordernumber .input-container {
  position: relative;
}
body #return-section .refundForm .input-control.ordernumber .input-container:after {
  content: "LIFEVAC-";
  position: absolute;
  top: 58%;
  left: 10px;
  transform: translateY(-50%);
}
body #return-section .refundForm .input-control.newcountry {
  margin: 0;
}
body #return-section .refundForm .input-control.refundtype .radio-buttons {
  display: flex;
  flex-direction: column;
}
body #return-section .refundForm .input-control.refundtype .radio-buttons div {
  margin: 5px 0;
}
body #return-section .refundForm .input-control.refundtype .radio-buttons .radio-label {
  font-size: 1rem;
}
body #return-section .refundForm .input-control.submit {
  margin: 0 auto;
}
body #return-section .refundForm .input-control.submit input[type=submit] {
  text-align: center;
  background-color: #459F49;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 15px 30px;
  text-decoration: none;
  margin: 15px 0 25px 0;
  cursor: pointer;
  border-radius: 5px;
}

@media (min-width: 480px) {
  body #return-section .refundForm .input-control .tooltip .tooltip-text {
    width: 400px;
  }
}
@media (min-width: 600px) {
  body #return-section {
    padding: 0 25px;
  }
  body #return-section .custom-select.locales {
    width: 135px;
  }
  body #return-section .language-selection {
    margin-bottom: 10px;
  }
  body #return-section .warningbox {
    margin-bottom: 25px;
  }
  body #return-section .warningbox .warningbox-text {
    line-height: 1.5rem;
  }
  body #return-section .refundForm .input-control .tooltip .tooltip-text {
    width: 450px;
  }
}
@media (min-width: 768px) {
  body #return-section {
    margin-top: 50px;
    box-shadow: 0 0 15px 25px rgb(240, 247, 254);
  }
}

/*# sourceMappingURL=style.css.map */
