/* oceanhomes custom.css */

/*
 * custom theme colours
 */
:root {
  --theme-outline-color: #465574;
}

/*
 * header customisation: gradient fill
 */
.hdr {
	background-color: #465574; /* For browsers that do not support gradients */
	/*background-image: linear-gradient(180deg, white 85%, yellow 5%, #eb6e00); incase a gradient border is needed*/
	border-bottom: 3px solid #465574 !important
}

/*
 * header customisation: show logo in header not realm name
 */
.hdr-org > img {
	display: block !important;
	content: url("../img/logo.png");
	padding-bottom: 5px;
	height: auto !important;
	width: auto !important
}
.hdr-org > h3 {
	display: none;
}

/*
 * social login button customisation: use custom logo for Northshire CC Citizen ID 
 */
.btn-social-login-jadu > img {
	content: url("../icons/idplogin.svg");
}

/*
 * background customisation: image
 */
main::before {
    content: '';    
	background-image: url(../img/background.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;	
	position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.6;
}

/*
 * button customisation: rounded buttons
 */
.btn {
	border-radius: 50rem!important;
}

/*
 * card customisation: add border
 */
/* 
.card {
	border: 1px solid rgba(0,0,0,.125);
}
.card-footer {
	border: 1px solid rgba(0,0,0,.125);
}
*/

/*
 * header customisation: hide header and show popout lang selection
 */
/*
.hdr {
	display: none !important;
}

.popout-lang {
	display: block !important;
	position: absolute;
	top: 10px;
	right: 10px;
}
*/



