.row h1 {
  margin-top: 0px;
  text-align: center;
}

.row {
  display:table;
  width: 100%;
}

.checkboxes {
  display: flex;
}

.checkboxes .form-element {
  flex:1;
}

.rowForm {
  display: table;
}

.column {
  float: left;
  width: 50%;
  display: table-cell;
}

.col-left {
  float:left;
}

.col-right {
  float:right;

}

.form {
   width: 600px; 
}

.formCol {
  float:left;
  width: 50%;
  display: table-cell;
}

input {
  margin-bottom: 25px;
}

input[type="text"] {
  margin-top: 5px;
  margin-bottom: 15px;
  width: 250px;
  padding: 6px 12px;
  font-size: 16px;
  color: var(--main-background);
  /* background-color: var(--alternate-light); */
  background-color: var(--main-text);
  background-clip: padding-box;
  /* border: 1px solid var(--alternate-light); */
  border: 1px solid var(--main-text);
  appearance: none;
  border-radius: 4px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;

}
input[type="text"]:focus{
  border-color: var(--main-accent);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(136 192 208 / 25%);
}


.form-text-input {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-country {
  text-align: center;
}

.form-button {
  text-align: center;
  display: flex;
  justify-content: space-around;
}

.footer {
  text-align: center;
}

.output-field {
  text-align: center;
  margin-top: 0;
}

#info-output {
  color: var(--alternate-light);
}

button.resetfields {
  background-color: var(--alternate-alert);
  border-color: var(--alternate-alert);
}

button.resetfields:hover {
  background-color: var(--main-alert);
  border-color: var(--main-alert);
}

.required {
  color: var(--main-alert);
}

.text p {
  line-height: 1.5em;
}

.hrShort {
  width: 25%;
  margin-left: 0px;
}

@media screen and (max-width: 1325px) {
  .col-right {
    width: 300px;
  }
}

@media screen and (max-width: 1025px) {
  .col-right {
    width: 200px;
  }
}

@media screen and (max-width: 925px) {
  .col-right {
    display: none;
  }
}

.errors {
  margin-top:5rem;
}

/* Modal */

.template-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.template-modal-content {
  background-color: #2b2b2b;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  border-radius: 4px;
  width: 80%; /* Could be more or less, depending on screen size */
}

.template-modal-content button {
  margin-top: 2rem;
  margin-right: 1rem;
  margin-left: 1rem;
}

.template-modal-content select {
  padding: 6px 14px;
  border-radius: 4px;
}

.modal-row {
  display: table;
}

.modal-column {
  display: table-cell;
  max-width: 300px;
}

.modal-form-content {
  margin:1rem;
}

.modal-row select {
  width: 100%;
}

button.openModal {
  background-color: var(--alternate-green);
  border-color: var(--alternate-green);
}

button.openModal:hover {
  background-color: var(--alternate-blue);
  border-color: var(--alternate-blue);
}

.footer {
  margin-top:5rem;
}

.hyperlink {
  color: var(--main-accent);
}

.hyperlink:hover {
  text-decoration: underline;
}