
#gc-contact-form-toast {
    visibility: hidden;
    min-width: 250px;
    border-radius: 10px;
    background-color: #00FFC4;
    color: #000064;
    text-align: center;
    padding: 16px;
    z-index: 1;
    /* position: fixed;
    left: 50%;
    bottom: 30px; */
}

#gc-contact-form-toast.show {
    visibility: visible;
    -webkit-animation: toastfadein 0.5s, toastfadeout 1s 3.5s;
    animation: toastfadein 0.5s, toastfadeout 1s 3.5s;
}

@-webkit-keyframes toastfadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}
@keyframes toastfadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes toastfadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}
@keyframes toastfadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

.btn-disabled {
    pointer-events: none;
    opacity: 0.4;
}

/* input:invalid, input:focus:invalid {
    border-color: #FF87A0 !important;
    background-color: #FFD2FA !important;
} */
/* input:invalid, input:focus:invalid, input:invalid:required {
    border-color: #FF87A0 !important;
    background-color: #FFD2FA !important;
} */
