di/* Style the form */
#regForm {
  background-color: #ffffff;
  margin: 100px auto;
  padding: 40px;
  width: 70%;
  min-width: 300px;
}

/* Style the input fields */
input {
  padding: 10px;
  /*width: 100%;*/
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}
hr {
  margin-top: 4px;
  margin-bottom: 10px;
  border: 0;
    border-top-width: 0px;
    border-top-style: none;
    border-top-color: currentcolor;
  border-top: 2px solid #171616;
}
/* Mark input boxes that gets an error on validation: */
.form-control.invalid {
  border-color: red !important;
}

.error-msg {
  color: red;
  font-weight: 800;
}

#request-response {
  opacity: 1;
  transition: opacity 0.5s ease;
}

#request-response.hidden {
  opacity: 0;
}

.col-sm-12.text-label {
	line-height: 1.3;
}
/* Hide all steps by default: */
.tab {
  display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

/* Mark the active step: */
.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
}
.country-select {
  width: 100% !Important;
}
.country-select .flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/country-select-js/2.1.1/img/flags.png") !important;
}
.summary-header {
  border-bottom: 2px solid #38c794;
  padding: 5px;
}
.form-check-label {
  padding-left: 20px !Important;
}

/* Fullscreen overlay */
#vatModal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modal content */
.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  font-family: sans-serif;
}

.modal-content button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}