::placeholder {
    color: #ccc !important;
}

#contact_form .select-override {
    display: block;
    appearance: none;
    width: 100%;
    padding-right: 40px !important;
    background: url("/images/ui/kbd_arrow_down.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
}
#contact_form .calendar-override {
    display: block;
    appearance: none;
    width: 100%;
    padding-right: 40px !important;
    background: url("/images/ui/calendar.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
}

[data-validation-error] {
    position: relative;
    box-sizing: border-box;
    margin: 0;
    top: -15px;
    padding: 0;
    /*height: 15px;*/
    /*background-color: yellow;*/
    color: #e7505a;
    font-size: .8em;
    line-height: .8em;
    /*overflow: hidden;*/
}

.cursor-pointer {
    cursor: pointer;
}

[disabled="disabled"] {
    color: var(--primary-color);
}

.required-input-label {
    position: relative;
}
.required-input-label::before {
    content: '*';
    display: block;
    position: absolute;
    top: -.25em;
    left: -.75em;
}

.message-sent {
    display: none; /* flex */
    position: fixed;
    margin: 0;
    padding: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffcc;
    flex-direction: column;
    justify-content: center;
    z-index: 999999999;
    cursor: default;
}
.message-sent > div {
    margin: 0 auto;
    padding: 40px;
    background-color: var(--primary-color);
    color: #fff;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 0 15px #00000044;
    border-radius: 20px;
    cursor: default;
}
