@CHARSET "UTF-8";

body {
	font-family: 'Roboto', sans-serif !important;
}

.container-fluid {
	padding-right: 0px !important;
}

.row{
    //margin-left: 0;
    margin-right: 0;
}

.container .row{
        margin-left: -15px;
        margin-right: -15px;
    
}


@media ( min-width : 576px) {
	.card-deck .card {
		margin-left: 0px;
		margin-right: 0px;
	}
	#straplinetext {
		margin-top: 60px;
	}
}

@media ( max-width : 576px) {
	.mb-4-mobile {
		margin-bottom: 1.5em !important;
	}
	
	.dp-small {
		display:block;
	}
}

/* Resize adverts */
INS > A > IMG {
	max-width: 100%;
    height: auto;
}

.form-control:focus {
	border-color: #0000ff;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px
		rgba(0, 0, 255, 0.6);
}

@media ( max-width : 1200px) {
	.index-card {
		height: 340px !important;
	}
}

.index-card {
	/*height: 302px;*/
}

.hover-grey:hover {
	background-color: #eee;
}

.clickable {
	cursor: pointer;
}

.fa-cog {
	color: #333;
}

.z-900 {
	z-index: 900;
}

.max-640 {
	max-height: 340px !important;
	overflow-y: scroll;
}

.scrollBox {
	overflow-y: scroll;
	height: calc(100vh - 420px); //
	padding: 0 1rem;
}

.modal-backdrop {
	opacity: 0.6 !important;
}

.bg-light {
	
}

.black-bold {
	color: #000 !important;
	font-weight: bold;
}

.tooltip>div {
	text-align: left;
	max-width: 400px;
	width: auto;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

ul.list-inline.lower-menu>li.list-inline-item>a:after {
	display: inline-block;
	content: '|';
	padding: 0 0 0 24px;
}

ul.list-inline.lower-menu>li.list-inline-item:last-child a:after {
	content: '';
}

.modal-header {
	border-bottom: 0;
}

.modal-body {
	padding-top: 0rem;
}

.jumbotron {
	border-radius: 0;
}

#menubarKink {
	height: 118px;
	overflow: visible;
	position: absolute;
	z-index: 999;
}

#black-bottom {
	background-image: url(/assets/images/menubar_bar.png);
	height: 36px;
}

.list-inline-item {
	padding: 0 7.5px !important;
}

#hero {
	background-image: url(/assets/images/hero/homepage_hero.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 58.33325% center;
	height: 406px;
}

#main-background {
	background-image: url(/assets/images/hero/modified-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat; //
	background-position: 58.33325% center;
}

#straplinetext {
	margin-top: 128px;
}

.shadow {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0
		rgba(0, 0, 0, 0.1);
}

.text-black {
	color: #000;
}

.text-black:hover {
	color: #000;
	text-decoration: none;
}

.footer {
	background: #f3f0ec;
	color: #000;
	padding-top: 30px; //
	margin-top: 30px;
	padding-bottom: 60px;
	box-shadow: 0 50vh 0 50vh #f3f0ec;
}

/* LOADER */
.loader {
	position: absolute;
	top: 50%;
	left: 40%;
	margin-left: 10%;
	transform: translate3d(-50%, -50%, 0);
}

.dot {
	width: 24px;
	height: 24px;
	background: #3ac;
	border-radius: 100%;
	display: inline-block;
	animation: slide 1s infinite;
}

.dot:nth-child(1) {
	animation-delay: 0.1s;
	background: #222222;
}

.dot:nth-child(2) {
	animation-delay: 0.2s;
	background: #555555;
}

.dot:nth-child(3) {
	animation-delay: 0.3s;
	background: #888888;
}

.dot:nth-child(4) {
	animation-delay: 0.4s;
	background: #aaaaaa;
}

.dot:nth-child(5) {
	animation-delay: 0.5s;
	background: #dddddd;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #2196F3;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}