
/*
 * Custom CSS styles for the RD forms
 * This file contains additional styling for UI elements such as error messages.
 */

.error_msg {
    font-family: "IBM Plex Sans", sans-serif;
    color: rgb(226, 0, 26);
    font-size: 12px;
    font-weight: 500;
    font-style: italic;
}
.close-reveal-modal {
    background: transparent;
    border: none;
    color:  rgb(226, 0, 26);
    font-size: 24px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.spinner {
    z-index: 100000;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: hsla(0, 0%, 100%, .75);
    visibility: hidden;
    opacity: 0;
    transition: visibility .3s, opacity .3s;
}

    .spinner.show {
        visibility: visible;
        opacity: 1
    }

    .spinner #spinner {
        position: absolute;
        top: 50%;
        left: calc(50% - 16px);
        transform: translateY(-50%)
    }