@charset "utf-8";
/* -----------------------------------
Site:       jeffheiser.com
CSS author: Jeff Heiser
Updated:	8/2019
----------------------------------- */
:root {
	--brown: #331a00;
	--cyan: #00ffff;
	--darkgreen: #006400;
	--gold: #c89e47;
	--indigo: #002868;
	--lightblue: #add8e6;
	--maroon: #800000;
	--pink: #ffc0cb;
	--purple: #800080;
	--red: #ff0000;
	--silver: #c0c0c0;
	--teal: #008080;
	--yellow: #ffff11;
	--scrollbar-size: .375rem;
	--scrollbar-minlength: 1.5rem; /* Minimum length of scrollbar thumb (width of horizontal, height of vertical) */
	--scrollbar-ff-width: thin; /* FF-only accepts auto, thin, none */
	--scrollbar-track-color: transparent;
	--scrollbar-color: rgba(255,102,0,0.8);
	--scrollbar-color-hover: rgba(255,102,0,0.9);
	--scrollbar-color-active: rgb(255,102,0);
}
@font-face {
    font-family: 'Looney Tunes';
    src: url('../fonts/looney_tunes.woff2') format('woff2'),
         url('../fonts/looney_tunes.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
*, *::before, *::after { scrollbar-gutter: stable; }
.sr-only { /* better solution */
    height: auto; 
    margin: 0; 
}
.sr-only-focusable:active, .sr-only-focusable:focus {
	position: absolute;
	display: block;
	left: 15px;
	top: 2px;
	right: auto;
	background-color: #f1f1f1;
	color: #f60;
	clip-path: none;
	text-decoration: none;
	line-height: normal;
	padding: 13px 23px 12px;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
	z-index: 9999;
}
.fa-ul .fa-regular, .orange { color: #f60; }
html { height: 100%; scroll-behavior: smooth; }
/***** A 1 1 Y  R E S E T *****/
*:focus:not(:focus-visible), *::before:focus:not(:focus-visible), *::after:focus:not(:focus-visible) {
	outline: none;
}
body.using-tab a:focus, body.using-tab .btn:focus, body.using-tab button:focus { 
	outline: none; 
	text-decoration: none; 
	box-shadow: 0 0 0 .1rem #fff, 0 0 0 .3rem #ff0dbf; 
}
/* https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939 */
@media(prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		transition: none !important;
		animation: none !important;
		scroll-behavior: auto !important;
	}
}
/***** B O D Y *****/
body {
	display: flex;          
	flex-direction: column;
	width: 100vw;
	height: 100vh;
	background: #e1f5fe; 
	color: #212121;
	overflow-x: hidden;
	padding-top: 3.125rem;
}

/***** H E A D I N G S  /  P *****/ 
h2, h3, h4, h5, h6, .h2, .h3, .h4, .h5, .h6 {
	font-family: Georgia, serif;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 -1px 0 rgba(0, 0, 0, 0.7);
	font-weight: 900;
	color: #002868;
	letter-spacing: .05em;
}
h1, .h1 {
	font: 1.75rem 'Looney Tunes', "DejaVu Serif", Georgia, "serif"; 
	color: #000;
	text-align: center;
	letter-spacing: .1em;
}
h1 + p { 
	font-family: "DejaVu Serif", Georgia, "serif";
	font-size: 1rem; 
	font-variant: small-caps; 
}
h2, .h2 { font-size: 1.5rem; }
h3, .h3 { font-size: 1.125rem; }
h4, .h4 {
	color: #bf0a30;
	font-size: 1rem;
}
h5, .h5, h6, .h6 {
	color: #002868;
	font-size: 1rem;
}
@media only screen and (min-width: 768px) {
	h2, h3 { 
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
	h1, .h1 { font-size: 2.5rem; }
	h2, .h2 { font-size: 1.75rem; }
	h3, .h3 { font-size: 1.25rem; }
	h4, .h4 { font-size: 1.125rem; }
}
@media only screen and (min-width: 992px) {
	h1, .h1 { font-size: 3rem; }
	h1 + p { font-size: 1.25rem; }
	h2, .h2 { font-size: 1.875rem; }
	h3, .h3 { font-size: 1.5rem; }
	h4, .h4 { font-size: 1.25rem; }
	h5, .h5, h6, .h6 { font-size: 1.125rem; }
}

/***** L I N K S *****/ 
a {
	font-family: "DejaVu Serif", Georgia, "serif";
	text-decoration: none;
	color: #f60;
	cursor: pointer;
	transition: all .3s ease-in-out;
	-webkit-touch-callout: none;
	-ms-user-select: none; /* IE 10 version for Windows Phone 8 */
}
a:not([href]):not([tabindex]) { color: #f60; }
main .textLink, main p a, main li a {
	color: #f60;
	font-weight: 600;
	padding: .1em .2em;
	border-radius: .2em;
	text-decoration: none;
}
a:hover { color: #fff; }
main p a:hover, main li a:hover { background-color: #f60; }
main a:not(.btn), .textLink {
	background: linear-gradient(to bottom, rgba(255, 102, 0, 0) 0%, rgba(255, 102, 0, 0) 50%, rgba(255, 102, 0, 1) 50%, rgba(255, 102, 0, 1) 100%);
	background-repeat: no-repeat;
	background-size: 100% 200%;
}
main a:not(.btn):hover, .textLink:hover { background-position: 0 100%; }
main a.plain-link, .side-nav a { background: none; }
.imgLink:hover {
	background: none;
	text-decoration: none;
	opacity: 0.75;
}
.header-link, .header-link:hover, .header-link:focus {
	background: none;
	color: #212121!important;
	text-decoration: none;
}
img { font-size: .6875rem; font-style: italic; } /* Style Alt Text */

/***** H E A D E R *****/
header { 
	position: relative;
	flex-shrink: 0;
}
.jeffBox {
	position: relative;
	display: flex;
	width: 90px;
	height: 90px;
	background: #fff url(../images/jeff_avatar.png) center no-repeat;
	background-size: contain;
	box-shadow: inset 0 0 0 1px #002868;
}
.jeffBox::before, .jeffBox::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.jeffBox::before, .jeffBox::after {
	content: '';
	margin: -5px;
	box-shadow: inset 0 0 0 2px #002868;
	animation: clipMe 8s linear infinite;
	z-index: -1;
}
.jeffBox::before { animation-delay: -4s; }
.jeffBox a { width: 100%; }
.jeffBox img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	opacity: 0;
	transition: opacity .3s linear;
	z-index: 1;
}
.jeffBox img:hover { opacity: 1; }
@keyframes clipMe {
	0% { clip: rect(0px, 100.0px, 2px, 0px); }
	25% { clip: rect(0px, 2px, 100.0px, 0px); }
	50% { clip: rect(98.0px, 100.0px, 100.0px, 0px); }
	75% { clip: rect(0px, 100.0px, 100.0px, 98.0px); }
	100% { clip: rect(0px, 100.0px, 2px, 0px); }
}

.bubble:hover::before {
	position: absolute;
	top: 53px;
	left: 70px;
	width: auto;
	min-width: 120px;
	height: auto;
	display: block;
	background-color: rgba(0, 0, 102, 0.7);
	color: #fff;
	font-size: .8125rem;
	text-align: center;
	white-space: nowrap;
	content: "Greetings & Welcome To My Web Site.";
	padding: 3px 8px;
	border-radius: 5px;
	z-index: 2;
}
.bubble:hover::after {
	position: absolute;
	top: 59px;
	left: 52px;
	width: 0;
	height: 0;
	display: block;
	content: "";
	border: 6px solid transparent;
	border-right: 12px solid rgba(0, 0, 102, 0.7);
	z-index: 2;
}
/***** L A Y O U T *****/
main {
	min-height: 400px;
	flex: 1 0 auto;
	padding-bottom: 1rem;
}
/***** F O O T E R *****/
.footer-text {
	font-size: .875rem; 
	text-align: center;
	margin-top: 1rem;
	margin-bottom: 4rem;
}

/***** M O B I L E  N A V I G A T I O N *****/
.navbar-header {
	width: 100vw;
	display: flex;
	margin: 0;
	padding: 0;
	/*box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.02), 0 2px 10px 0 rgba(0, 0, 0, 0.1);*/
}
.navbar-header a {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	align-items: center;
	justify-content: space-around;
	text-decoration: none;
	margin-top: -.2rem;
	z-index: 5;
}
.navbar-header a:hover { background: rgba(255, 255, 255, 0.2); }
.navbar-header a:hover i::before {
	color: #e5e5e5;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 -1px 0 rgba(0, 0, 0, 0.7);
}
.navbar-more {
	width: 3.5rem;
	height: 3.5rem;
	flex: 0 0 3.5rem;
	max-width: 3.5rem;
	background-color: #fff!important;
	margin-top: -.5rem;
	border: 2px solid #f60!important;
	border-radius: 50%;
}
.navbar-more i, .navbar-more:hover i::before  { color: #f60!important; margin-top: .625rem; }
a[aria-expanded="false"] .navbar-more .icon_canvas i::before { content: "\f0c9"; }
a[aria-expanded="true"] .navbar-more .icon_canvas i::before { content: "\f00d"; }
.navbar-brand { margin: 0; padding: 0; }
.navbar-brand img {
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16), 0 2px 2px 0 rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
}

/***** N A V I G A T I O N *****/
.navbar {
    width: 100%;
    height: 3.125rem;
	display: flex;
	background-color: #002868;
	margin: 0;
	padding: 0;
	border: 0;
	transition: transform 0.5s ease;  
	transform: translateY(0); 
	z-index: 50;
}
.navbar-nav { 
	flex-direction: row;
	justify-content: center;
	width: 100%; 
}
.nav-item { 
	flex: 0 0 14.28571%;
	max-width: 14.28571%;
}
@media only screen and (min-width: 992px){ 
	.nav-item { 
		flex: 0 0 12.5%;
		max-width: 12.5%;
	}
}
.nav-link {
	display: flex; 
	flex-direction: column;            
	align-items: center;
	justify-content: space-between;
	flex: 1 1 auto;
	text-decoration: none;
	padding-top: .1rem;
	padding-bottom: .1rem;
	cursor: pointer;
	border-radius: 0;
}
.nav-link.active, .nav-link:hover { background-color: rgba(255,255,255,0.4); }
.nav-link:hover i::before { 
	color: #ddd; 
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 -1px 0 rgba(0, 0, 0, 0.7);
}
#home a.home, #bugs-bunny a.bugs, #contact a.contact {
	background-color: rgba(255,255,255,0.2);
	border: 0;
	pointer-events: none;
	cursor: default;
}
.navbar-form {
	width: 16rem;
	max-width: 100%;
	margin: .5rem auto 0;
}
.navbar-form .btn { border-radius: 0 .25rem .25rem 0; }
.icon_canvas {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	text-align: center;
}
.icon_canvas i {
	display: block;
	width: 100%;
	height: auto;
	line-height: 1;
	font-size: 1.75rem;
	color: #fff;
}
.iconText {
	line-height: 1.125rem;
	font-size: .6875rem;
	color: #fff;
	white-space: nowrap;
}
@media only screen and (max-width: 767.98px) {
	body {  padding-top: 0; }
	footer { height: 7.0625rem; }
	.fixed-top { top: auto; bottom: 0; }
	.navbar { background-color: #f60; }
	.navbar-collapse {
		position: absolute;
		bottom: 3.125rem;
		left: 50%;
		width: 95%;
		max-width: 28.125rem;
		background: url(../images/bkgd_gray_texture.jpg) repeat-y #eee5d3;
		margin: 0;
		padding: 1rem;
		border: .25rem solid #adadad;
		border-bottom: none;
		border-radius: .375rem .375rem 0 0;
		transform: translateX(-50%);
	}
	.icon_canvas i { font-size: 2.25rem; }
	.navbar-nav { 
		flex-wrap: wrap;
		margin: 0 auto; 
	}
	.nav-item { 
		flex: 0 0 33%;
		max-width: 33%;
		margin: 0 auto 1rem;
	}
	.searchBox { 
		flex: 0 0 73%;
		max-width: 73%;
		margin: .25rem;
	}
	.nav-link, .navbar-nav i::before, .navbar-nav .iconText, .nav-link:hover i::before { 
		color: #002868; 
	}
	.navbar-nav .navbar-form i::before { color: #fff; }
	.nav-link:hover .iconText { text-decoration: underline; }
	#home a.home, #bugs-bunny a.bugs, #contact a.contact {
		background-color: rgba(0,0,0,0.2);
		border: 0;
		pointer-events: none;
		cursor: default;
	}
}
@media only screen and (max-width: 400px) {
	.searchBox { 
		flex: 0 0 96%;
		max-width: 96%;
	}
}
@media only screen and (max-width: 320px) {
	.nav-item { 
		flex: 0 0 50%;
		max-width: 50%;
	}
}
@media only screen and (min-width: 768px) {
	.navbar-hide { transform: translateY(-110%); }
	.navbar-nav { box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15); }
}
@media only screen and (min-width: 992px) { .iconText { font-size: .8125rem; } }

/***** P A G E  H E A D E R *****/
.page-header {
	position: relative;
	text-align: center;
	margin: 2rem auto;
}
.page-header h2 {
	position: relative;
	display: inline-block;
	text-align: center;
	font: 2.3125rem 'Looney Tunes', 'Comic Sans MS', sans-serif; 
	color: #000;
	letter-spacing: .05em;
	margin: .625rem 0;
}
.page-header h2::after {
	position: absolute;
	left: 10%;
	right: 10%;
	bottom: -.8rem;
	height: .2rem;
	width: 80%;
	content: "";
	display: inline-block;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,1), rgba(0,0,0,0)); 
	background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,1), rgba(0,0,0,0)); 
	background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,1), rgba(0,0,0,0)); 
	background-image: linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,1), rgba(0,0,0,0)); 
}

/***** O R D E R E D  L I S T *****/
.reasonsBox ol { list-style: none; padding-left: 2.5em; }
.reasonsBox ul { list-style: none; padding-left: 0; }
.reasonsBox ol li::before { 
    position: absolute;
    left: 1.75rem;
    content: '\2460';
    font-size: 1.5rem;
    color: #f60;
    text-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 -1px 0 rgba(0,0,0,0.7);
    line-height: inherit;
    margin-top: -.3125rem;
    padding: 0 1px;
}
.reasonsBox ul li::before {
    content: '';
    left: 0;
    font-size: 0;
    margin: 0;
    padding: 0;
}
.reasonsBox ol li:nth-child(2)::before { content: '\2461'; }    
.reasonsBox ol li:nth-child(3)::before { content: '\2462'; }    
.reasonsBox ol li:nth-child(4)::before { content: '\2463'; }    
.reasonsBox ol li:nth-child(5)::before { content: '\2464'; }    
.reasonsBox ol li:nth-child(6)::before { content: '\2465'; }    
.reasonsBox ol li:nth-child(7)::before { content: '\2466'; }    
.reasonsBox ol li:nth-child(8)::before { content: '\2467'; }    
.reasonsBox ol li:nth-child(9)::before { content: '\2468'; }    
.reasonsBox ol li:nth-child(10)::before { content: '\2469'; }    

/***** B U T T O N *****/
.btn {
	position: relative;
	overflow: hidden;
	transform: translate3d(0, 0, 0);
}
.btn::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
	background-repeat: no-repeat;
	background-position: 50%;
	transform: scale(10, 10);
	opacity: 0;
	transition: transform .5s, opacity 1s;
}
.btn:active::after {
	transform: scale(0, 0);
	opacity: .3;
	transition: 0s;
}
.btn-print, .btn.fb-share { 
	align-self: flex-end; 
	width: 60px;
	color: #f60;
	border-color: #f60;
}
.btn-print:hover, .btn.fb-share:hover { 
  color: #343a40;
  background-color: #ddd;
  border-color: #343a40;
}
.btn.fb-share { align-self: flex-start; }
.bugs-container {
	position: relative;
	background: #e0e0e0 url(../images/bkgd_gray_texture.jpg) repeat-y;
	margin: 1rem auto;
    border-radius: 1rem;
}
.bugs-container::before {
	position: absolute;
	top: -.5rem;
	left: -.5rem;
    bottom: -.5rem;
    right: -.5rem;
	content: '';
	background-image: repeating-linear-gradient(-45deg,#f60,#f60 2rem,#fff 2rem,#fff 3rem);
    border-radius: 1rem;
	z-index: -1;
}
@media (min-width: 576px) and (max-width: 767.98px) { .bugs-container { max-width: 100%; } }
@media (max-width: 767.98px) { .bugs-container { overflow: hidden; } }
@media (max-width: 575.98px) { .col-xl-7 { padding-left: 5px; padding-right: 5px; } }

hr {
	width: 80%;
	height: 2px;
	background-image: -webkit-linear-gradient(left, rgba(255,102,0,0), rgba(255,102,0,1), rgba(255,102,0,0)); 
	background-image: -moz-linear-gradient(left, rgba(255,102,0,0), rgba(255,102,0,1), rgba(255,102,0,0)); 
	background-image: -ms-linear-gradient(left, rgba(255,102,0,0), rgba(255,102,0,1), rgba(255,102,0,0)); 
	background-image: linear-gradient(left, rgba(255,102,0,0), rgba(255,102,0,1), rgba(255,102,0,0)); 
	margin: 0 auto 10px;
}
.intro { text-indent: 1.5rem; }
.intro:first-letter {
	font: bold 150%/.5 Verdana, Geneva, sans-serif;
	color: #f60;
	text-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 -1px 0 rgba(0,0,0,0.7);
	margin-right: 1px;
}
.copyright {
	font-size: .75rem;
	text-indent: 0;
	text-align: center;
}
/***** O R D E R E D  L I S T *****/
.fa-ten::before { content: "10"; padding: 3px; }
.fa-eleven::before { content: "11"; padding: 3px; }
.sidebar2 figure {
	position: relative;
	display: flex;
	width: 150px;
	background: #f60;
	margin: 0 auto 20px;
	border: 1px solid #f60;
	border-radius: 5px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
	transition: all .5s ease-in-out;
	z-index: 10;
}
.sidebar2 figure:hover { 
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
	box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
	transform: translate(10%, -10%) scale(1.1);
	z-index: 20; 
}
.sidebar2 figcaption {
	position: absolute;
	left: 1px;
	bottom: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	font-size: .625rem;
	text-align: center;
	line-height: 100%;
	margin: 0;
	padding: 3px;
	opacity: 0;
	border-radius: 0 0 4px 4px;
	transition: all 0.5s ease-in-out;
}
.sidebar2 img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}
.sidebar2 figure:hover figcaption { opacity: 1; }
.reasonsBox {
	background: url(../images/bkgd_bugsbunny1.png) no-repeat center 2%,
		url(../images/bkgd_bugsbunny2.png) no-repeat 5% 94%;
	background-color: #fff;
	padding: 1.25rem;
	border: 1px solid #ccc;
	border-radius: 1em;
	box-shadow: inset 2px 2px 3px #999;
}
.reasonsBox li { margin-bottom: .5rem; }
.videoBox {
	max-width: 400px;
	text-align: center;
	margin: 0 auto 1rem;
	padding: 0;
}
.videoBox .card-body { padding: .75rem; }
iframe, video, object, .iframe {
	max-width: 100%;
	max-height: 100%;
	border: 2px solid #f60;
}

.bg-teal { background-color: rgba(73,197,197,0.4); border-top: 1px solid rgba(73,197,197,0.5); border-bottom: 1px solid rgba(73,197,197,0.5); }

/***** M O D A L S *****/
.modal-dialog { width: 96%; }
.modal.fade .modal-dialog {
    opacity: 0;
	transform: scale(0.7);
	transition: all 0.3s;
}
.modal.show .modal-dialog {
    opacity: 1;
	transform: scale(1);
}
.modal-content { background: url(../images/bkgd_gray_texture.jpg) repeat-y #eee5d3; }
.modal-header { 
	border: 1px solid rgba(21,21,21,0.1);
	border-radius: .3rem .3rem 0 0;
}
.modal-header-raised {
	height: 64px;
	background: #f60;
	margin: -2rem 1rem 1rem 1rem;
	padding: 1rem;
	box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
    border: none;
	border-radius: .3rem;
}
.modal-title {
	color: #fff;
	margin-right: 3.5rem;
}
.modal-body { 
	max-height: calc(90vh - 3rem);
	background: rgba(0,0,0,0);
	font-size: 1rem;
	color: #212121;
	overflow-y: auto;
}
.close {
	position: absolute;
	top: -1.75rem;
	right: 2rem;
	float: none;
	font-size: 3rem;
	color: #fff;
	cursor: pointer;
}
.close:hover { color: #fff; }
.modal-header .btn-print { 
	align-self: center;
	float: left; 
	color: #fff; 
	border-color: #fff;
}
.modal-header .btn-print:hover { 
	color: #f60;
	background-color: #fff;
	border-color: #fff;
}
.printer { display: none; }
@media only screen and (min-width: 576px) {
	.modal-dialog {
		width: 100%;
		margin: auto;
	}
    .modal-dialog-centered { min-height: 100%; }
	.modal-content { box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);	}
}
@media only screen and (min-width: 768px) { .modal-dialog { max-width: 600px; } }

/***** S C R O L L B A R *****/
.scrollbar {
	overscroll-behavior: contain;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	scrollbar-width: var(--scrollbar-ff-width);
}
/* This class controls what elements have the new fancy scrollbar CSS */
.scrollbar { scrollbar-color: var(--scrollbar-color) var(--scrollbar-track-color); }
.scrollbar::-webkit-scrollbar {
	height: var(--scrollbar-size);
	width: var(--scrollbar-size);
}
.scrollbar::-webkit-scrollbar-track { background-color: var(--scrollbar-track-color); }
.scrollbar::-webkit-scrollbar-thumb {
	background-color: var(--scrollbar-color);
	border-radius: 3px;
}
.scrollbar::-webkit-scrollbar-thumb:hover { background-color: var(--scrollbar-color-hover); }
.scrollbar::-webkit-scrollbar-thumb:active { background-color: var(--scrollbar-color-active); }
.scrollbar::-webkit-scrollbar-thumb:vertical { min-height: var(--scrollbar-minlength); }
.scrollbar::-webkit-scrollbar-thumb:horizontal { min-width: var(--scrollbar-minlength); }

/***** T O O L T I P S  /  P O P O V E R S *****/
.tooltip-inner {
	max-width: 20rem;
	background-color: #fff;
	color: #002868;
	font-weight: 700;
	border: 1px solid #002868;
	box-shadow: .1rem .1rem .15rem rgba(0,0,0,0.5);
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { border-top-color: #002868; }
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { border-bottom-color: #002868; }
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { border-left-color: #002868; }
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { border-right-color: #002868; }
.bs-tooltip-left.show { left: -20px!important; }
.popover { 
	width: 216px; 
	background-color: #fff;
	border-color: #002868;
}
.popover-header {  background-color: #fff; padding-top: 0; }
.popover-body { color: #002868; }
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
	border-bottom-color: #002868;
}

/***** G O T O P *****/
.gotop, .gotop:focus {
	display: none;
	position: fixed;
	bottom: .5rem;
	right: .5rem;
	width: 3rem;
	height: auto;
	color: #002868;
	background-color: rgba(0, 0, 0, 0);
	font-size: 2.5rem;
	opacity: 1;
	padding: 0;
	border: 0;
	-webkit-appearance: none; /* Safari */
	z-index: 50;
}
.gotop:hover { opacity: 0.8; }
@media only screen and (max-width: 991px) { .gotop { display: none!important; } }
.d-flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (min-width: 1500px) { 
	.container { max-width: 1440px; }
	.sidebar2 figure { width: 200px; }
	.bugs-container { background-repeat: repeat; }
	.page-header h2 { font-size: 3rem; }
}

/***** M A G N I F I C  P O P U P  *****/
.mfp-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #000;
	opacity: 0.8;
	z-index: 902;
}
.mfp-wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	outline: none !important;
	-webkit-backface-visibility: hidden;
	z-index: 903;
}
.mfp-container {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	padding: 0 8px;
	box-sizing: border-box; 
}
.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.mfp-align-top .mfp-container:before { display: none; }
.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 905;
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}
.mfp-ajax-cur { cursor: progress; }
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}
.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content { cursor: auto; }
.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
	user-select: none;
}
.mfp-loading.mfp-figure { display: none; }
.mfp-hide { display: none !important; }
/***** Animated preloader *****/
.mfp-preloader {
	position: absolute;
	top: 50%;
	left: 8px;
	right: 8px;
	width: 30px;
	height: 30px;
	background-color: #fff;
	margin: 0 auto;
	opacity: 0.65;
	border-radius: 50%;
	animation: rotateplane 1.2s infinite ease-in-out;
	z-index: 904;
}
@keyframes rotateplane {
  0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
  50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
  100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); }
}
.mfp-preloader a { color: #cccccc; }
.mfp-preloader a:hover { color: #fff; }
.mfp-s-ready .mfp-preloader { display: none; }
.mfp-s-error .mfp-content { display: none; }
button.mfp-close, button.mfp-arrow {
	display: block;
	background: transparent;
	overflow: visible;
	padding: 0;
	cursor: pointer;
	border: 0;
	-webkit-appearance: none;
	z-index: 906;
}
button::-moz-focus-inner {
	padding: 0;
	border: 0;
}
.mfp-close {
	position: absolute;
	right: 0;
	top: 0;
	width: 44px;
	height: 44px;
	color: #ff0;
	font-size: 36px;
	line-height: 44px;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	padding: 0 0 18px 10px;
}
.mfp-close:hover, .mfp-close:focus { opacity: 1; }
.mfp-close:active { top: 1px; }
.mfp-close-btn-in .mfp-close { color: #333333; }
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	color: #fff;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}
.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #ff0;
	font-size: 12px;
	line-height: 1.5;
}
.mfp-arrow {
	position: absolute;
	top: 50%;
	width: 90px;
	height: 110px;
	opacity: 0.65;
	margin: -55px 0 0;
	padding: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active { margin-top: -54px; }
.mfp-arrow:hover, .mfp-arrow:focus { 
	opacity: 1; 
	outline: none;
}
.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: solid transparent;
}
.mfp-arrow:after, .mfp-arrow .mfp-a {
	opacity: 0.8;
	border-top-width: 12px;
	border-bottom-width: 12px;
	top: 8px;
}
.mfp-arrow:before, .mfp-arrow .mfp-b {
	border-top-width: 20px;
	border-bottom-width: 20px;
}
.mfp-arrow-left { left: 0; }
.mfp-arrow-left:after,  .mfp-arrow-left .mfp-a {
	border-right: 12px solid black;
	left: 5px;
}
.mfp-arrow-left:before,  .mfp-arrow-left .mfp-b { border-right: 20px solid white; }
.mfp-arrow-right { right: 0; }
.mfp-arrow-right:after,  .mfp-arrow-right .mfp-a {
	border-left: 12px solid black;
	left: 3px;
}
.mfp-arrow-right:before, .mfp-arrow-right .mfp-b { border-left: 20px solid white; }
.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}
.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
	position: absolute;
	top: -3px;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: black;
}
.mfp-iframe-holder .mfp-close { top: -43px; }
/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	padding: 40px 0 40px;
	margin: 0 auto;
	box-sizing: border-box;
}
/* The shadow behind the image */
.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	z-index: -1;
}
.mfp-figure { line-height: 0; }
.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}
.mfp-title {
	font-size: .875rem;
	text-align: left;
	line-height: 1.5;
	color: #fafafa;
	word-break: break-word;
	padding-right: 45px;
}
.mfp-figure small {
	color: #bdbdbd;
	display: block;
	font-size: 12px;
	line-height: 14px;
}
.mfp-image-holder .mfp-content { max-width: 100%; }
.mfp-gallery .mfp-image-holder .mfp-figure { cursor: pointer; }
.pin-it {
	position: absolute;
	top: -35px;
	left: 100%;
	margin-left: -30px;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
/***** Remove all paddings around the image on small screen *****/
  	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}
	.mfp-img-mobile img.mfp-img { padding: 0; }
	/* The shadow behind the image */
	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}
	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		box-sizing: border-box;
	}
	.mfp-img-mobile .mfp-bottom-bar:empty { padding: 0; }
	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}
	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}
}
@media all and (max-width: 800px) {
	.mfp-arrow { transform: scale(0.75); }
	.mfp-arrow-left { transform-origin: 0; }
	.mfp-arrow-right { transform-origin: 100%; }
	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}

/***** A N I M A T I O N S *****/
/* ====== Zoom-out effect ====== */
/* start state */
.mfp-zoom-out.mfp-bg {
	opacity: 0;
	transition: all 0.3s ease-out;
}
.mfp-zoom-out.mfp-bg.mfp-ready { opacity: 0.8; }
.mfp-zoom-out.mfp-bg.mfp-removing { opacity: 0; }
.mfp-zoom-out .mfp-content{
	opacity: 0;
	transition: all 0.3s ease-in-out;
	transform: scale(1.3);
}
/* animate in */
.mfp-zoom-out.mfp-ready .mfp-content {
	opacity: 1;
	transform: scale(1);
}
/* animate out */ 
.mfp-zoom-out.mfp-removing .mfp-content {
	opacity: 0;
	transform: scale(1.3);
}
.rubberBand {
	outline: none;
	-webkit-transform: translateZ(0);
	animation: rubberBand 15s linear 4s infinite;
}
@keyframes rubberBand {
	0% { transform: scale3d(1, 1, 1); }
	3% { transform: scale3d(1.25, 0.75, 1); }
	4% { transform: scale3d(0.75, 1.25, 1); }
	5% { transform: scale3d(1.15, 0.85, 1); }
	6.5% { transform: scale3d(.95, 1.05, 1); }
	7.5% { transform: scale3d(1.05, .95, 1); }
	10%, 100% { transform: scale3d(1, 1, 1); }
}

/***** NARROW SCREEN ADJUSTMENTS *****/
@media only screen and (max-width: 767.98px) {
	.container { 
		margin: 0;
		border: 0;
		border-radius: 0;
	}
}
@media only screen and (max-width: 599.98px) {
	ol > li { margin-left: 2.8em; }
	ol > li:before { margin-left: -2.2em; }
	.mCSB_draggerContainer { display: none; }
}
@media only screen and (max-width: 450px) { body { font-size: 1.125rem; } }

/***** P R I N T  S E L E C T I O N *****/
h4.printer { 
	font-size: 30pt;
	font-weight: bold;
	text-align: center; 
	margin-bottom: 2rem;
}
@media screen {
  	.printer { display: none; }
}
@page {  margin: .7in .5in; }
@media print {
	body { font-size: 16pt;}
	.modal-dialog { max-width: 900px; }
	.container, .reasonsBox, .modal-dialog, .modal-body, .col-print { 
		flex: 0 0 96%;
		width: 96%;
    	max-width: 96%;
		float: none;
		margin: 1rem auto;
		page-break-inside: avoid;
		padding-right: 5px;
		padding-left: 5px;
		border: 0; 
	}
	.modal-body { 
		height: 100%;
		max-height: 100%;
		font-size: 16pt;
		overflow: hidden;
		border: 0;
	}
	.img-thumbnail, .modal-content { border: 0; }
	.page-header h2 { font-size: 30pt; margin: 1rem 0 0; } 
	p.intro:first-letter, ol.custom > li::before { font-weight: bold; color: #000!important; }
	a[data-toggle=modal]::after, a[href$=".jpg"]::after, a[data-toggle=popover]::after,
	a[href]::after, .btn-print, .fb-share, .mCSB_draggerContainer { 
		display: none; 
	}
	main a { text-decoration: none; color: blue!important; font-weight: 400!important;}
	.footer-text { font-size: 12pt; margin-bottom: 1rem; }
	.printer { display: block; }
}