.flex-column {
  display: flex;
  flex-direction: column;
  /* height: 250px; */
  flex-wrap: wrap;
}

@media (max-width: 450px) {
  .flex-column {
    display: none;
    height: auto;
  }
}
.select-domisili {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  padding: 5px;
}
.select-domisili:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
/*styling datalist*/
.kumpulan-email > * {
  margin-bottom: 1rem;
}

.autocomplete {
  position: relative;
  display: inline-block;
}

input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}

input[type="text"] {
  background-color: #f1f1f1;
  width: 100%;
}

input[type="submit"] {
  background-color: DodgerBlue;
  color: #fff;
  cursor: pointer;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

[readonly].form-control:focus {
  border-color: #bbb;
  background-color: #cdcdcd;
  box-shadow: none;
}

[readonly].form-control {
  border-color: #bbb;
  background-color: #cdcdcd;
  box-shadow: none;
}

.hide {
  display: none;
}

#switch_lang {
  position: absolute;
  right: 1em;
  top: -2.2em;
}

#form-container {
  position: relative;
}

.w-input-error input,
.w-input-error .ts-control {
  background: #ff00001a !important;
  border-color: red !important;
}

.w-input-error input:focus {
  box-shadow: 0 0 0 0.25rem rgb(162 84 107 / 25%) !important;
}

.w-input-error small,
.w-input-error label {
  color: red;
}

sup {
  line-height: 2em;
}

input[type="text"] {
  background-color: white !important;
}

[readonly].form-control:focus {
  border-color: #bbb !important;
  background-color: #cdcdcd !important;
  box-shadow: none !important;
}

[readonly].form-control {
  border-color: #bbb !important;
  background-color: #cdcdcd !important;
  box-shadow: none !important;
}

sup {
    color: red;
}