/* Minification failed. Returning unminified contents.
(4,28): run-time error CSS1039: Token not allowed after unary operator: '-orkin-dark-gray'
(45,24): run-time error CSS1039: Token not allowed after unary operator: '-orkin-red'
(79,17): run-time error CSS1039: Token not allowed after unary operator: '-orkin-red'
(86,17): run-time error CSS1039: Token not allowed after unary operator: '-orkin-red'
(92,17): run-time error CSS1039: Token not allowed after unary operator: '-orkin-gray'
 */
.form-table,
.form-table th,
.form-table td {
    border: 1px solid var(--orkin-dark-gray);
    border-collapse: collapse;
}

.form-table th,
.form-table td {
    padding: 2px 8px 2px 8px;
}

.table-noborder,
.table-noborder th,
.table-noborder td {
    border: none !important;
}

.email-modal-background {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-modal {
    width: 850px;
    height: 450px;
    background: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.form-control:focus {
    border-color: var(--orkin-red);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(204, 9, 47, 0.6);
}

.form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
}

.form-input-grow {
    display: flex;
    align-items: center;
}

.form-input-grow .form-control {
    flex-grow: 1;
    margin-left: 8px;
    margin-right: 5px;
}

.form-input-disabled {
    cursor: not-allowed;
    background-color: #E9ECEF;
}

.form-input-disabled:focus {
    cursor: not-allowed;
    background-color: #E9ECEF;
}

.form-required::after {
    content: '*';
    display: inline-block;
    color: var(--orkin-red);
}

.btn-basic-link {
    background: none !important;
    border: none;
    padding: 0 !important;
    color: var(--orkin-red);
    text-decoration: underline;
    cursor: pointer;
}

.btn-basic-link:hover {
    color: var(--orkin-gray);
}
