.dynamic-postcode-output {
  clear: both;
  float: left;
  width: 100%;
  margin: 10px 0 0 0;
}

.dynamic-postcode-output.error {
  background: red;
  color: #fff;
}

.dynamic-postcode-output ul {
  margin: 0px;
}

.dynamic-postcode-output ul li {
    width: 100% !important;
    float: left !important;
    cursor: pointer;
    list-style-type: none !important;
    background: none !important;
    line-height: 1.5 !important;
    height: auto !important;
    border-bottom: solid 1px #f1efef;
    padding: 5px 0 5px !important;
    margin: 0px !important;
}

.dynamic-postcode-output ul li:hover {
  border-bottom: solid 1px #bdbdbd;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-top: 2px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    margin: 0px;
    border: 8px solid #ffffff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #46cc94 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
