#contact-container {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#contact-wrapper {
    display: none;

}

/* #contact-message {
    height: 40px;
    width: 200px;
    background-color: antiquewhite;
} */

#contact-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    font-family: 'Dosis';
    font-size: 1.4em;
    text-align: center;
    margin: 20px;
    padding: 20px;
    border: white 1px;
    background: linear-gradient(#456e73, #2f403e);
}

.contact-label {
    font-family: inherit;
    color: #bc8500;
    text-shadow: #2f403e 1px 1px;
    margin-bottom: 5px;
}

#contact-response-label {
    margin-top: 10px;
    text-align: center;
    text-shadow: #2f403e 2px 2px;
}

#contact-response {

    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

#contact-response-prompt {
    display: none;
    background-color: transparent;
    color: #bc8500;
    font-size: 2em;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 200%;
    background-color: black;
}

#contact-phone-valid {
    display: none;
}

#contact-email-valid {
    display: none;
}

#contact-slider {
    height: 80px;
    background-color: transparent;
}

datalist {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* writing-mode: horizontal; */
    width: 90%;
    margin-top: -30px;
    margin-left: 9px;
    color: #bc8500;
}

option {
    width: 20%;
    padding: 0;
}

.contact-option-none {
    left: -5px;
    position: relative;
    /* padding-right: 5px; */
}

.contact-option-text {
    /* left: -5px; */
    /* position: relative; */
    margin-left: 5px;
}

input[type="range"] {
    width: 85%;
    margin-bottom: 20px;
    -webkit-appearance: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 3px;
    background: transparent;
}

input[type="range"]::-moz-range-track {
    height: 3px;
    background: transparent;
}

input[type="range"]::-moz-range-thumb {
    height: 64px;
    width: 44px;
    background-image: url('../img/pointer.svg');
    background-size: cover;
    border: none;
    background-color: transparent;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 64px;
    width: 44px;
    background-image: url('../img/pointer.svg');
    background-size: cover;
    border: none;
}

#contact-name {
    margin-top: 0px;
}

.contact-input {
    background-color: antiquewhite;
    font-family: inherit;
    color: black;
    font-size: 1.4em;
    text-align: center;
    margin-top: 10px;
}

.contact-type {
    font-family: inherit;
}

.contact-input-textarea {
    display: none;
    height: 200px;
    width: 100%;
    margin-top: 20px;
    font-size: 1.4em;
    font-family: 'Dosis';
    background-color: antiquewhite;
    text-align: center;
}

#contact-phone {
    display: none;
}

#contact-email {
    display: none;
}

.contact-type-sms {
    font-family: inherit;
}

.contact-type-call {
    font-family: inherit;
}

.contact-type-email {
    font-family: inherit;
}

.contact-type-radio {
    font-family: inherit;
}

.contact-type-textarea {
    font-family: inherit;
}

.contact-type-text {
    font-family: inherit;
}

#contact-send {
    display: none;
    height: 80px;
    width: 100%;
}

#contact-send-button {
    margin-top: 10px;
    height: 80%;
    width: 100%;
    font-family: 'Dosis';
    font-size: 2em;
    color: #bc8500;
    background: linear-gradient(#2f403e, #456e73);
    border: none;
}