/* -------------------------------------------------------------------------- */
/*                            Custom Styles                                   */
/* -------------------------------------------------------------------------- */
.navbar-nav .nav-item.welcome-message a.nav-link>span:after {
    content: "";
    display: block;
	position: absolute;
	top: 5px;
	right: 4px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #0ba360;
	cursor: pointer;
	box-shadow: 0 0 0 rgba(34, 192, 60, .9);
    animation: pulse 2s infinite;
	animation-duration: .9s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-out;
}
@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(34, 192, 60, .9);
		box-shadow: 0 0 0 0 rgba(34, 192, 60, .7)
	}
	70% {
		-moz-box-shadow: 0 0 0 10px transparent;
		box-shadow: 0 0 0 10px transparent
	}
	100% {
		-moz-box-shadow: 0 0 0 0 transparent;
		box-shadow: 0 0 0 0 transparent
	}
}
i.req { color: #f00; }
.cursor-pointer { cursor: pointer; }
.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin-bottom: 0;
}
.input-group>.custom-file {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    opacity: 0;
}
.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + .75rem);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0;
}
.dropzone.dropzone-custom .fallback > input[type=file] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    cursor: pointer;
    opacity: 0;
}
.accordion.instructions .accordion-button:not(.collapsed) {
    background-color: var(--falcon-soft-primary);
}
.cancel.btn-default {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
ul.court-list {
    margin: 0;
    padding: 0;
}
ul.court-list > li.list-item {
    position: relative;
    list-style: decimal;
    padding: 0.5rem 1rem;
    color: var(--falcon-gray-800);
    background-color: #fff;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: var(--falcon-border-color);
}
ul.court-list > li.list-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
/* Table Property OOP Court */
table.table-property-court thead > tr > th:first-child,
table.table-property-court tbody > tr > td:first-child {
    width: 25px;
    padding: .25rem .25rem;
}
table.table-property-court thead > tr > th:last-child,
table.table-property-court tbody > tr > td:last-child {
    padding: .25rem .25rem;
}
table.table-property-court .card ul {
    display: block;
    width: 210px;
    font-size: 85%;
    padding: 0;
    margin: 0;
}
table.table-property-court .card ul > li {
    display: block;
    list-style: none;
    margin: 0;
    padding: .05rem .25rem;
    border-bottom: 1px dotted var(--falcon-table-border-color);
}
table.table-property-court .card ul > li:first-child {
    padding-top: .25rem;
}
table.table-property-court .card ul > li:last-child {
    padding-bottom: .25rem;
}
table.table-property-court .card ul > li > span {
    display: block;
    width: 100%;
    height: 18px;
    line-height: 18px;
    color: #000;
}
