/*
* Style Sheet for Property Information System
* Author - Ian Manuel - May 12, 2018
*/

/*
* === Main Spacing ===
*/

.title-space{
	margin-top:75px;
}

.table-header{
	padding:20px;
}

/*
* === Main Colour Scheme ===
*/

/* 
	red => blue-background
	hover-red => hover-blue-background
*/
.blue-background,.hover-blue-background:hover{
	color:#fff					!important;
	background-color:#00568A	!important;
}

/* 
	w3-text-red => text-blue-background
	w3-hover-text-red => hover-text-blue-background
*/
.text-blue-background,.hover-text-blue-background:hover{
	color:#00568A!important
}

/*
* === Pagination ===
*/
.pagination-links{
	margin:30px 0;
}

.pagination-links strong{
	padding:8px 13px;
	margin:5px;
	background:#00568A 		!important; /* Blue */
	color:#fff				!important;
	border: 1px #fff solid;
}

a.pagination-link{
	padding:8px 13px;
	margin:5px;
	background:#00568A 		!important;
	color:#fff				!important;
	border: 1px #fff solid;
}

/*
* === Alert Styling ===
*/


/* The alert message box */
.alert {
    padding: 20px;
    color: black;
    margin-bottom: 15px;
}

/* The alert Success */
.alert-success {
    background-color: #36f443; /* Green */
}

/* The alert Failure */
.alert-fail {
    background-color: #edff28; /* Yellow */
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}

/*
* === Horizontal Scrollbar ===
*/

.scrolling-wrapper {
  overflow-x: scroll;
  white-space: nowrap;
}