/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

span.required-field {
    color: #ff0000;
    padding: 5px;
}

label.error {
    color: #ff0000;
    padding-top: 5px;
}

#nw_successMessage.neowebSuccess,
#nw_errorMessage.neowebWarning {
    display: none;
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
    min-width: 100%;
}

.loader {
    display: none; /* Hidden by default */
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px !important;
    height: 120px !important;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 50%;
    right: 50%;
    left: 50%;
    bottom: 50%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


#waitingList input[type="text"],
#waitingList input[type="password"],
#waitingList input[type="date"],
#waitingList input[type="email"],
#waitingList input[type="tel"],
#waitingList input[type="search"],
#waitingList input[type="url"],
#waitingList textarea {
    -webkit-appearance: none;
    background-color: #fff;
    border: none;
    box-shadow: 0px 1px 0px rgb(0 0 0 / 3%), inset 1px 1px 4px 1px rgb(0 0 0 / 20%);
    color: rgba(0, 0, 0, 0.75);
    display: block;
    font-size: 15px;
    /* margin: 0 0 1em 0; */
    padding: 8px;
    width: 100%;
    border-radius: 3px;
    font-size: 16px;
}

#waitingList [type="checkbox"],
#waitingList [type="radio"] {
    box-sizing: border-box;
    padding: 0;
    display: inline-block !important;
    width: 5% !important;
    vertical-align: middle;
}

span#waitingList-search-addon {
    padding: 10px;
}