<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.postcode-checker {
    max-width: 420px;
    border-radius: 10px;
    text-align: center;
    background-color: #fff;
    margin: 0 auto 4rem;
    border: 1px solid #DEE3E9;
}
.postcode-checker input, .postcode-checker button[type=submit], .postcode-checker label {
    display: block;
    width: 100%;
}

.postcode-checker label {
    text-align: left;
    padding-bottom: 8px;
    font-weight: 500;
}
.postcode-checker__icon {
    color: #bdc3c7;
}
.postcode-checker__field {
    text-align: left;
}
.postcode-checker__top {
    position: relative;
    min-height: 184px;
    padding: 40px;
}
.postcode-checker__top2 {
    position: relative;
    min-height: 110px;
}
.postcode-checker__bottom {
    padding: 64px 40px;
}
.postcode-checker__title {
    margin-bottom: 12px;
}
.postcode-checker__status {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
}
.postcode-checker__status-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    line-height: 5rem;
    background-color: #34495e;
    color: #fff;
}
.postcode-checker__status-message {
    margin: auto;
    display: block;
    max-width: 196px;
    font-weight: bold;
    line-height: 1.4;
}
.postcode-checker input {
    margin: 0 0 2px;
    padding: 14px 16px;
    border: 1px solid #DEE3E9;
    border-radius: 5px;
    background: #FAFAFA;
    line-height: 20px;
    font-weight: 500;
    font-size: 16px;
}
.postcode-checker button[type=submit] {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    border-color: #fdb701;
    border-radius: 15px;
    cursor: pointer;
    background-color: #fdb701;
    color: #19263f;
    margin: 10px auto 0px auto;
    max-width: 214px;
    margin-top: 15px;
}
.postcode-checker .button2 {
    border: 2px solid #19263F !important;
    background-color: #ffffff !important;
}
.postcode-checker button[type=submit]:hover {
    cursor: pointer;
    background-color: #5184a1 !important;
    border-color: #5184a1;
    color: #fff;
}
.postcode-checker button[type=submit]:disabled, .postcode-checker button[type=submit][disabled] {
    opacity: .5;
}
.postcode-checker .loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    margin-top: -16px;
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #fdb701;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
    0% {
    -webkit-transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(360deg);
}
}@keyframes spin {
    0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}.postcode-checker .animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s;
}
@-webkit-keyframes animatebottom {
    from {
    bottom: -100px;
    opacity: 0;
}
to {
    bottom: 0;
    opacity: 1;
}
}@keyframes animatebottom {
    from {
    bottom: -100px;
    opacity: 0;
}
to {
    bottom: 0;
    opacity: 1;
}
}


.postcode-checker__screenOff {
	display: none;
}

.postcode-copy {
	font-size: 18px;
	margin-bottom: 10px;
}

.postcode-error-msg {
	font-size: 14px;
	color: #fc6565;
	min-height: 25px;
	max-height: 25px;
}

.postcode-error-input {
	border: 1px solid #fc6565 !important;
}
</pre></body></html>