﻿.hidden {
    display: none !important;
}

.error {
    color: red;
}

.delete-link {
    display: flex;
    flex-grow: 100;
    justify-content: flex-end;
}

.form-check-label {
    margin-left: 1.25rem;
}

.success-message, .success-message:hover, .success-message:focus {
    color: #fff;
    background-color: green;
    border-color: green;
}

.error-message, .error-message:hover, .error-message:focus {
    color: #fff;
    background-color: red;
    border-color: red;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }

.bordered-group {
    border: solid 1px lightgray;
    border-radius: 10px;
    padding: 25px;
}

.cta {
    float: right;
    margin-left: 25px;
}

.caption-label {
    margin: 8px 0;
    min-width: 100px;
    display: block;
    background: whitesmoke;
    padding: 5px;
}