#do-not-contact-form-wrapper {

    border-bottom: 5px solid #1e73be;

    form {
        padding: 0 25px;
        margin: 145px auto 70px auto;
        max-width: 800px;
    }
    div#do-not-contact-form-result p {
        margin-bottom: 120px;
        padding: 0 55px;
        font-weight: 400;
    }
    input[type="text"], input[type="email"], input[type="number"], input[type="tel"] {
        margin: 0 0 15px 0;
        display: block;
        width: 100%;
        border-radius: 5px;
        height: 40px;
    }
    input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="tel"]:focus {
        outline: none;
        border-bottom: 2px solid #494fa8;
    }
    label {
        transition: margin 300ms ease-in-out;
        font-size: 20px;
        transition: all .3s ease-out;
        color: #6d7274;
        display: block;
    }
    #opt-label-wrapper label {
        margin: 0;
    }
    input[type="text"].invalid-input, input[type="email"].invalid-input, input[type="number"].invalid-input, input[type="tel"].invalid-input, .get-support-form-invalid-input  {
        border-bottom: 2px solid #bb201a;
    }
    label.invalid-text, div#bussines-section.invalid-input > p {
        color: #bb201a !important;
    }
    .flex-items.special-labels label {
        margin: 0;
    }
    .flex-items.special-labels {
        margin-top: 25px;
    }
    .flex-items.special-labels > div {
        margin-bottom: 20px;
    }
    .flex-items.special-labels > div > div input[type="checkbox"] + label {
        padding-left: 5px;
        font-size: 14px;
    }
    form#do-not-contact-form h3 {
        text-align: center;
        margin-bottom: 5px;
        color: #034683;
        font-size: 30px;
        font-weight: 500;
    }
    div#form-wrapper {
        margin: 35px 0 0 0;
    }
    form#do-not-contact-form p {
        text-align: center;
    }
    button#do-not-contact-submit-button {
        width: 100%;
        margin-top: 40px;
        background: #182251;
        color: #fff;
        border-radius: 10px;
        text-transform: uppercase;
        font-weight: 600;
    }
    button#do-not-contact-submit-button:hover {
        background: #9bccc1;
        color: #000;
    }
    button#do-not-contact-submit-button.disable-button {
        background: #474747;
        pointer-events: none;
        text-decoration: none;
        display: flex;
        align-items: baseline;
        gap: 5px;
        justify-content: center;
    }
    .loading__dot {
        animation: dot ease-in-out 1s infinite;
        background-color: grey;
        display: inline-block;
        height: 3px;
        width: 3px;
    }
    .loading__dot:nth-of-type(2) {
        animation-delay: 0.2s;
    }
    .loading__dot:nth-of-type(3) {
        animation-delay: 0.3s;
    }
    form#do-not-contact-form p.label-paragraph {
        font-size: 20px;
        transition: all .3s ease-out;
        color: #6d7274;
        margin: 0;
        text-align: left;
    }
    div#do-not-contact-form-result {
        text-align: center;
    }
    div#do-not-contact-form-result svg {
        margin: 35px auto 10px auto;
    }
    div#opt-label-wrapper select {
        width: 100%;
        margin: 5px 0 30px 0;
        border: none;
        border-bottom: 1px solid #e9e9ea;
        padding-bottom: 10px;
        font-size: 16px;
        color: #000;
    }
    div#opt-label-wrapper {
        margin-top: 25px;
    }
    input[type="checkbox"] + label {
        padding-left: 5px;
        font-size: 14px;
    }
}
@keyframes dot {
    0% {
        background-color: grey;
        transform: scale(1);
    }

    50% {
        background-color: #d9f779;
        transform: scale(1.3);
    }

    100% {
        background-color: grey;
        transform: scale(1);
    }
}