:root {
    --uapi-dark-blue: rgb(0, 72, 168);
    --uapi-grey: rgb(87, 89, 95);
}

body {
    line-height: 1.5;
}

a {
    color: var(--uapi-dark-blue);
    text-decoration: underline;
}

.alert {
    margin-top: 20px;
}

#company-well {
    font-weight: 500;
    color: var(--uapi-grey);
        
}

.form-group {
    margin-bottom: 0;
}

.input-hint {
    font-weight: 300;
    font-size: 12px;
    color: var(--uapi-grey);
}

.input-label {
    padding-top: 7px;
    text-align: left;
    margin-bottom: 4px;
    font-size: 16px;
}

.disclaimer-text {
    font-weight: 300;
    color: var(--uapi-grey);
}

.container {
    margin-top: 1.5em;
    padding-bottom: 1.5em;
    max-width: 500px;
}

.utility-specific-header {
    font-size: 21px;
    margin-bottom: 20px;
}

.custom-text {
    white-space: pre-line;
}

.input-lg {
    font-size: 12px;
}

.dropdown-toggle {
    width: 100%;
    text-align: left;
}

.glyphicon-menu-down {
    float: right;
    font-size: 15px;
}

.dropdown-menu {
    max-height: 300px;
    overflow-y: scroll;
    position: relative;
}

.dropdown-item {
    cursor: pointer;
    padding: 10px; 
    border-bottom: 1px solid rgb(219, 219, 219);

    a {
        text-decoration: none;
        text-color: black;
    }
}

.selected::before {
    font-family: "Glyphicons Halflings";
    content: "\e013";
}


.dropdown-item:hover, focus {
    background-color: rgb(219, 219, 219);
}

.button-section {
    margin-top: 8px;
    
    #decline-button {
        font-weight: 300; 
        color: rgb(87, 89, 95); 
        padding-left: 20px; 
        text-decoration: underline;
    }
}

.submit-buttons{
    margin-top: 34px;
    margin-bottom: 50px;
}

#footer-links {
    font-size: 11px;
    font-weight: 300;
    color: var(--uapi-grey);
}

/* bootstrap overrides */
.btn-primary {
    background-color: var(--uapi-dark-blue);
    padding: 15px 25px;
    border-radius: 8px;
}

