:root {
	--hotlap-background-gray: #fafafa;

	--hotlap-red: #7c0707;
	--hotlap-red-tint: #c92626;

	--hotlap-blue: rgb(34, 75, 138);
	--hotlap-blue-tint: rgb(33, 67, 127);

	--hotlap-lightblue: rgb(74, 113, 204);
	--hotlap-lightblue-tint: rgb(102, 145, 247);
	--hotlap-display-font: 'Titillium Web';
	--hotlap-font: 'Titillium Web';
}

html {
	position: relative;
	min-height: 100%;
	font-size: 15px;
}

* {
	font-family: var(--hotlap-font), sans-serif;
	border-radius: 0 !important;
}

body {
	overflow-y: scroll !important;
	background-color: rgb(245, 245, 245);
	font-size: 14px;
	padding-right: 0 !important;
}

/*rows cols*/
.border-between > [class*='col-']:before {
   background: #e3e3e3;
   bottom: 0;
   content: " ";
   left: 0;
   position: absolute;
   width: 1px;
   top: 0;
}

.border-between > [class*='col-']:first-child:before {
   display: none;
}

/* print */
@media print {
	@page {
		size: auto;
		margin: 0mm;
	}

	html {
		background-color: #FFFFFF;
		margin: 0px;
	}

	body {
		border: solid 0px blue;
		margin: 20mm 20mm 20mm 20mm;
	}
}

/* tabs */
.nav-tabs .nav-link {
	color: var(--hotlap-red);
}

.nav-tabs .nav-link:hover {
	color: var(--hotlap-red);
}

/* images */
.image-container {
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 700px;
	overflow: auto;
}

/* text */
.text-hotlap {
	color: var(--hotlap-red)
}

.text-bg-hotlap {
	background-color: var(--hotlap-red)
}


/* Buttons */
button {
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
	border: 1px solid #ccc;
	background-color: var(--bs-border-color);
	color: rgb(48, 48, 48);
}

button:hover {
	background-color: #cfcfcf;
}

.btn-hotlap {
	color: white;
	background-color: var(--hotlap-red);
}

.btn-hotlap:hover {
	color: white;
	background-color: var(--hotlap-red-tint);
}

.btn-hotlap:focus {
	color: white;
	background-color: var(--hotlap-red-tint);
}

.btn-xsm {
	padding: 2px 10px;
	font-size: 12px;
}

/* Containers */
@media (min-width: 1200px) {
	.container-lg {
		max-width: 1800px;
	}

	.container {
		max-width: 1200px;
	}

	.container-sm {
		max-width: 500px;
	}
}


@media (min-width: 600px) {
	.container-sm {
		max-width: 500px;
	}
}

/* Bootstrap Cards */
.card-img-top {
	width: 100%;
	height: 15vw;
	object-fit: cover;
}

.card-header {
	padding: 20px;
	background: white;
	font-size: 18px;
}

/* Titles */
.display-font {
	font-family: var(--hotlap-display-font), sans-serif;
}

.display-title-font {
	font-family: var(--hotlap-display-font), sans-serif;
}

/*Dropdown customizations*/

.hotlap-dropdown {
	background-color: #f0f0f0;
	/* Slight gray background */
}

.dropdown-menu {
	position: relative;
}

.dropdown-item {
	padding-left: 20px;
	/* Add some padding to the left to make space for the vertical bar */
}

.bd-placeholder-img {
	font-size: 1.125rem;
	text-anchor: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

@media (min-width: 768px) {
	.bd-placeholder-img-lg {
		font-size: 3.5rem;
	}
}

.b-example-divider {
	width: 100%;
	height: 3rem;
	background-color: rgba(0, 0, 0, .1);
	border: solid rgba(0, 0, 0, .15);
	border-width: 1px 0;
	box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
	flex-shrink: 0;
	width: 1.5rem;
	height: 100vh;
}

.bi {
	vertical-align: -.125em;
	fill: currentColor;
}

.nav-scroller {
	position: relative;
	z-index: 2;
	height: 2.75rem;
	overflow-y: hidden;
}

.nav-scroller .nav {
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

.btn-bd-primary {
	--bd-violet-bg: #712cf9;
	--bd-violet-rgb: 112.520718, 44.062154, 249.437846;

	--bs-btn-font-weight: 600;
	--bs-btn-color: var(--bs-white);
	--bs-btn-bg: var(--bd-violet-bg);
	--bs-btn-border-color: var(--bd-violet-bg);
	--bs-btn-hover-color: var(--bs-white);
	--bs-btn-hover-bg: #6528e0;
	--bs-btn-hover-border-color: #6528e0;
	--bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
	--bs-btn-active-color: var(--bs-btn-hover-color);
	--bs-btn-active-bg: #5a23c8;
	--bs-btn-active-border-color: #5a23c8;
}

.bd-mode-toggle {
	z-index: 1500;
}

.bd-mode-toggle .dropdown-menu .active .bi {
	display: block !important;
}

.bi {
	display: inline-block;
	width: 1rem;
	height: 1rem;
}

/*
* Sidebar
*/

@media (min-width: 768px) {
	.sidebar {
		min-height: calc(100vh - 4rem);
	}

	.sidebar .offcanvas-lg {
		position: -webkit-sticky;
		position: sticky;
		top: 48px;
		height: 0;
	}

	.navbar-search {
		display: block;
	}
}

.sidebar .nav-link {
	font-size: .875rem;
	font-weight: 500;
	color: var(--hotlap-red);
}

.sidebar .nav-link:hover {
	font-size: .875rem;
	font-weight: 500;
	color: var(--hotlap-red-tint);
}

.sidebar .nav-link.active {
	color: var(--hotlap-red);
}

.sidebar-heading {
	font-size: .75rem;
}

/*
* Navbar
*/

.navbar-devtools {
	background-color: rgb(223, 223, 223) !important;
}

.navbar {
	background-color: var(--hotlap-red);
}

.navbar-brand {
	padding-top: .75rem;
	padding-bottom: .75rem;
}

.navbar .form-control {
	padding: .75rem 1rem;
}

/* Footer */
.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 60px;
	/* Set the fixed height of the footer here */
	line-height: 60px;
	/* Vertically center the text there */
}


/* TABLES */
.table-clear {
	--bs-table-bg: rgba(255, 255, 255, 0);
}

.table-fixed {
	table-layout: fixed;
}

.table-hotlap-blue {
	--bs-table-color: #fff;
	--bs-table-bg: var(--hotlap-blue)
}

.table-hotlap-red {
	--bs-table-color: #fff;
	--bs-table-bg: var(--hotlap-red)
}

.table-compact td,
.table-compact th {
	padding: 2px;
}


/* FORMS  */

input[type=text],
input[type=number],
input[type=email],
input[type=date],
input[type=datetime-local],
input[type=password] {
	/* background-color: #f5f5f5; */
	font-size: 14px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: var(--hotlap-red);
}

select {
	background-color: #f5f5f5;
	border: 0;
	padding: 6px 10px;
	font-size: 14px;
}

select:focus {
	border-color: #007bff;
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* public pages */
.b-divider {
	width: 100%;
	height: 3rem;
	background-color: rgba(0, 0, 0, .1);
	border: solid rgba(0, 0, 0, .15);
	border-width: 1px 0;
	/* box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15); */
}

.public-hero {
	background-color: white;
}

.public-hero-img {
	/* background: linear-gradient(to top, #350404dc, #850808ce), url("/images/public/hero-bg.jpg") no-repeat top center; */
	background: linear-gradient(to top, #000000aa, #000000bb), url("/images/public/hero-bg.jpg");
	background-size: cover;
}

.public-rate {
	color: var(--hotlap-blue);
}

.public-hero-get-started {
	background: linear-gradient(to top, #4a709bc9, #2e4775d3), url("/images/public/direct.jpg") no-repeat top center;
	background-size: cover;
}

/* custom padding */
.py-10 {
	padding-top: 8rem !important;
	padding-bottom: 8rem !important;
}

/* accordions */
.accordion-hotlap {
	--bs-accordion-active-bg: var(--hotlap-red);
	--bs-accordion-active-color: #ffffff;
	--bs-accordion-btn-color: #000000;
}

.accordion-hotlap .accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

/* tabs */
.nav-tab-hotlap {
	--bs-nav-link-color: var(--hotlap-red);
	--bs-nav-link-hover-color: var(--hotlap-red);
}