.nsw-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nsw-contact-form >div {
    display: flex;
    gap: .5rem;
}

.nsw-contact-form .form-wide {
    width: 100%;
}

.nsw-contact-form input {
    background-color: #E8F0F5;
    text-indent: 10px;
    border-style: solid;
    border-width: 0.5px 0.5px 0.5px 0.5px;
    border-color: #71A9D14A;
}

.nsw-contact-form input[type="checkbox"] {
    width: 16px !important;
    height: 16px;
    background: #DCE8F0;
    border-width: 0.5px;
    border-color: #71A9D14A;
    margin: 0px 0px 0px 0px;
    padding: 2px 2px 2px 2px;
}

.nsw-contact-form .form-sms {
    display: flex;
    gap: .5rem;
}

.nsw-contact-form .service-reminder-wrap {
    line-height: 0;
}

.contact-form-success {
    display: none;
}

.contact-form-success {
    font-size: 24px;
}

#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:9999;
    display:none;
}

#cover-spin .cover-spin-content-container {
    position: absolute;
    top: 0; 
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 20px;
    width: 500px;
}

#cover-spin .cover-spin-content-container .cover-spin-content {
    position: relative;
    text-align: left;
    width: 100%;
    height: 20px;
    width: 500px;
}

@-webkit-keyframes spin {
    from {-webkit-transform:rotate(0deg);}
    to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
    border-style:solid;
    border-color: var(--dark-purple);
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}