:root {
	--content-width: 1000px;
	--primary-blue: #3d76d2;
}

body {
    font-family: 'Metropolis' !important;
}

/* General */
.tfi-object-contain {
	object-fit: contain;
}

.tfi-resize-vertical {
	resize: vertical;
}

.tfi-page-title {
	font-size: 21px;
	font-weight: bold;
	padding-bottom: 15px;
}

.tfi-refresh-tags:active {
	transform: scale(1.2);
}

.tfi-scale-1-2:active {
	transform: scale(1.2);
}

.tfi-break-word {
	overflow-wrap: break-word;
}

.tfi-text-left {
	text-align: left;
}
.tfi-text-center {
	text-align: center;
}

.tfi-bold {
	font-weight: bold;
}

.tfi-unsetall {
	all: unset;
}

.tfi-link {
	color: var(--primary-blue);
	text-decoration: none;
	transition: 0.3s;
}

.tfi-link:hover {
	filter: brightness(135%);
}

.tfi-content-container {
	padding: 50px 100px;
	margin: auto;
	clear: both;
}

.conform-container {
	width: initial !important;
	height: initial !important;
}

.tfi-cursor-pointer {
	cursor: pointer;
}

.tfi-block {
	display: block;
}

.tfi-inline-block {
	display: inline-block;
}

.tfi-none {
	display: none !important;
}

.tfi-inline {
	display:: inline;
}

.tfi-grid {
	display: grid;
}

.tfi-inline-grid {
	display: inline-grid;
}

.tfi-flex {
    display: flex;
}

.tfi-inline-flex {
	display: inline-flex;
}

.tfi-grow-1 {
	flex-grow: 1;
}

.tfi-flex-1 {
	flex: 1;
}
.tfi-flex-2 {
	flex: 2;
}
.tfi-flex-3 {
	flex: 3;
}

.tfi-flex-auto {
	flex: auto;
}

.tfi-flex-col {
	flex-direction: column;
}

.tfi-center {
    align-items: center;
    justify-content: center;
}

.tfi-toolbar {
	padding-bottom: 15px;
}

.tfi-header-bar {
	background: rgba(61, 118, 210, 1);
	border-radius: 5px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	outline: 1px solid lightgrey;
	padding: 15px;
	color: white;
	font-size: 15px;
	font-weight: bold;
}

.tfi-img-link-wrapper {
	font-size: 0;
}

.tfi-justify-center {
	justify-content: center;
}
.tfi-justify-between {
	justify-content: space-between;
}
.tfi-justify-end {
	justify-content: flex-end;
}
.tfi-justify-self-center {
	justify-self: center;
}
.tfi-justify-self-end {
	justify-self: end;
}
.tfi-justify-items-center {
	justify-items: center;
}

.tfi-align-center {
    align-items: center;
}
.tfi-flex-wrap {
	flex-wrap: wrap;
}

.tfi-hidden {
	visibility: hidden;
}

.tfi-break-word {
	word-break: break-word;
}

.tfi-float-right {
	float: right;
}

.tfi-select-none {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.tfi-cols-31fr {
	grid-template-columns: repeat(3, 1fr);
}
.tfi-cols-21fr {
	grid-template-columns: repeat(2, 1fr);
}
.tfi-cols-50-50 {
	grid-template-columns: 50% 50%;
}
.tfi-cols-40-60 {
	grid-template-columns: 40% 60%;
}

.tfi-grid-col-1-3 {
	grid-column: 1 / 3;
}

.tfi-z-index-99 {
	z-index: 99;
}

.tfi-mw-100p {
	max-width: 100%;
}
.tfi-mw-95p {
	max-width: 95%;
}
.tfi-mw-90p {
	max-width: 90%;
}
.tfi-mw-85p {
	max-width: 85%;
}
.tfi-mw-80p {
	max-width: 80%;
}
.tfi-mw-75p {
	max-width: 75%;
}
.tfi-mw-50p {
	max-width: 50%;
}

.tfi-w-35p {
    width: 35%;
}
.tfi-w-80p {
	width: 80%;
}
.tfi-w-85p {
	width: 85%;
}
.tfi-w-90p {
	width: 90%;
}
.tfi-w-95p {
	width: 95%;
}
.tfi-w-100p {
    width: 100%;
}

.tfi-w-8 {
	width: 8px;
}
.tfi-w-12 {
	width: 12px;
}
.tfi-w-15 {
	width: 15px;
}
.tfi-w-20 {
	width: 20px;
}
.tfi-w-32 {
	width: 32px;
}
.tfi-w-50 {
	width: 50px;
}
.tfi-w-125 {
	width: 125px;
}
.tfi-w-60 {
	width: 60px;
}
.tfi-w-225 {
	width: 225px;
}

.tfi-h-8 {
	height: 8px;
}
.tfi-h-12 {
	height: 12px;
}
.tfi-h-15 {
	height: 15px;
}
.tfi-h-20 {
	height: 20px;
}
.tfi-h-32 {
	height: 32px;
}
.tfi-h-35 {
	height: 35px;
}
.tfi-h-50 {
	height: 50px;
}
.tfi-h-60 {
	height: 60px;
}
.tfi-h-100 {
	height: 100px;
}
.tfi-h-125 {
	height: 125px;
}
.tfi-h-150 {
	height: 150px;
}

.tfi-mh-500 {
	min-height: 500px;
}

.tfi-y-auto {
	overflow-y: auto;
}

.tfi-list-inside {
	list-style: inside;
}

.tfi-fixed {
	position: fixed;
}

.tfi-btm-right {
	bottom: 0;
	right: 0;
}

.tfi-nowrap {
	white-space: nowrap;
}
.tfi-clear-both {
	clear: both;
}

/* Seperators */
.tfi-dot-sep {
	margin: 12px 0;
	border: 0;
}
.tfi-dot-sep:before {
	content: "•••";
	font-size: 17px;
	color: var(--primary-blue);
}

/* Colors */
.tfi-white {
	color: white;
}
.tfi-black {
	color: black;
}
.tfi-green {
	color: green;
}
.tfi-mediumgrey {
	color: #eee;
}
.tfi-darkgrey {
	color: #ddd;
}
.tfi-darkergrey {
	color: #ccc;
}

.tfi-blue {
	color: rgba(9, 86, 212, 1);
}

.tfi-orange {
	color: orange;
}

.tfi-red {
	color: red;
}

.tfi-dark-charcoal {
	color: #333;
}
.tfi-yellow {
	color: yellow;
}
.tfi-gold-yellow {
	color: #FFC000;
}

.tfi-bg-white {
	background-color: #fff;
}
.tfi-bg-blue {
	background-color: rgba(9, 86, 212, 1);
}
.tfi-bg-red {
	background-color: rgba(255, 70, 0, 0.9) !important;
}
.tfi-bg-lightestgrey {
	background-color: #f8f8f8;
}
.tfi-bg-lightgrey {
	background-color: #f3f3f3;
}
.tfi-bg-mediumgrey {
	background-color: #eee;
}
.tfi-bg-darkgrey {
	background-color: #ddd;
}
.tfi-bg-darkergrey {
	background-color: #ccc;
}
.tfi-bg-grey {
	background-color: grey;
}
.tfi-bg-lightyellow {
	background-color: #ffffe0;
}
.tfi-bg-mediumyellow {
	background-color: #f0f0ab;
}
.tfi-bg-coral {
	background-color: #ff7f50;
}
.tfi-bg-matte-black {
	background-color: #111;
}
.tfi-bg-green {
	background-color: green;
}

/* Spacing */
.tfi-gap-sm {
	gap: 5px;
}
.tfi-gap-md {
	gap: 8px;
}
.tfi-gap-lg {
	gap: 15px;
}
.tfi-gap-xl {
	gap: 15px;
}

.tfi-pad-0 {
	padding: 0;
}
.tfi-pad-10 {
	padding: 10px;
}
.tfi-pad-sm {
	padding: 5px;
}
.tfi-pad-md {
	padding: 8px;
}
.tfi-pad-5 {
	padding: 5px;
}
.tfi-pad-15 {
	padding: 15px;
}
.tfi-pad-35 {
	padding: 35px;
}

.tfi-top-btm-pad-massive {
	padding-top: 150px;
	padding-bottom: 150px;
}

.tfi-top-btm-pad-2 {
	padding-top: 2px;
	padding-bottom: 2px;
}
.tfi-top-btm-pad-3 {
	padding-top: 3px;
	padding-bottom: 3px;
}
.tfi-top-btm-pad-20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.tfi-top-btm-pad-md {
	padding-top: 7px;
	padding-bottom: 7px;
}
.tfi-top-btm-pad-lg {
	padding-top: 10px;
	padding-bottom: 10px;
}
.tfi-top-btm-pad-xl {
	padding-top: 15px;
	padding-bottom: 15px;
}

.tfi-top-pad-3 {
	padding-top: 3px;
}
.tfi-top-pad-5 {
	padding-top: 5px;
}
.tfi-top-pad-7 {
	padding-top: 7px;
}
.tfi-top-pad-8 {
	padding-top: 8px;
}
.tfi-top-pad-lg {
	padding-top: 10px;
}
.tfi-top-pad-10 {
	padding-top: 10px;
}
.tfi-top-pad-20 {
	padding-top: 20px;
}
.tfi-top-pad-35 {
	padding-top: 35px;
}
.tfi-top-pad-50 {
	padding-top: 50px;
}
.tfi-top-pad-25 {
	padding-top: 25px;
}

.tfi-right-pad-10 {
	padding-right: 10px;
}
.tfi-right-pad-20 {
	padding-right: 20px;
}

.tfi-left-right-pad-10 {
	padding-left: 10px;
	padding-right: 10px;
}

.tfi-left-pad-sm {
	padding-left: 5px;
}

.tfi-btm-pad-sm {
	padding-bottom: 5px;
}
.tfi-btm-pad-md {
	padding-bottom: 8px;
}
.tfi-btm-pad-lg {
	padding-bottom: 10px;
}
.tfi-btm-pad-xl {
	padding-bottom: 15px;
}

/* Buttons */
.tfi-simple-button {
    padding: 10px !important;
    text-transform: uppercase;
    cursor: pointer;
    background: #3d76d2 !important;
	color: white !important;
}
.tfi-simple-button-small {
    padding: 5px !important;
    text-transform: uppercase;
    cursor: pointer;
    background: #3d76d2 !important;
	color: white !important;
}

.tfi-btm-pad-4xl {
	padding-bottom: 27px;
}

.tfi-btm-mrg-sm {
	margin-bottom: 5px;
}
.tfi-btm-mrg-md {
	margin-bottom: 8px;
}
.tfi-btm-mrg-lg {
	margin-bottom: 10px;
}
.tfi-btm-mrg-xl {
	margin-bottom: 15px;
}
.tfi-btm-mrg-2xl {
	margin-bottom: 25px;
}
.tfi-right-mrg-md {
	margin-right: 8px;
}

.tfi-top-btm-mrg-md {
	margin-top: 7px;
	margin-bottom: 7px;
}
.tfi-top-btm-mrg-xl {
	margin-top: 15px;
	margin-bottom: 15px;
}

.tfi-mrg-0 {
	margin: 0;
}

.tfi-mrg-top-15 {
	margin-top: 15px;
}

.tfi-mrg-left-7 {
	margin-left: 7px;
}
.tfi-mrg-left-20 {
	margin-left: 20px;
}

/* Size */

.tfi-size-sm {
	width: 12px;
}

/* Borders */
.tfi-border {
	border: 1px solid;
}
.tfi-border-b {
	border-bottom: 1px solid;
}

.tfi-border-r {
	border-right: 1px solid;
}

.tfi-outline {
	outline: 1px solid;
}
.tfi-outline-lightgrey {
	outline-color: lightgrey;
}

.tfi-radius-sm {
	border-radius: 5px;
}

.tfi-radius-md {
	border-radius: 8px;
}

.tfi-border-gray-light {
	border-color: lightgrey;
}
.tfi-border-gray-dark {
	border-color: darkgrey;
}

.tfi-box-shadow-primary {
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* Buttons */

.tfi-primary-button {
    padding: 5px 10px !important;
    cursor: pointer;
    background: rgba(61, 118, 210, 1) !important;
    color: white !important;
    font-weight: bold !important;
    transition: 0.3s;
    border-radius: 10px !important;
	border: none;
	box-shadow: 2px 2px 3px #333;
	-moz-box-shadow: 2px 2px 3px #333;
	-webkit-box-shadow: 2px 2px 3px #333;
}

.tfi-primary-button:active,
.tfi-primary-button:focus {
	border: none;
	box-shadow: 2px 2px 3px #333;
	-moz-box-shadow: 2px 2px 3px #333;
	-webkit-box-shadow: 2px 2px 3px #333;
}

.tfi-danger-button {
    padding: 5px 10px !important;
    cursor: pointer;
    background: red !important;
    color: white !important;
    font-weight: bold !important;
    transition: 0.3s;
    border-radius: 10px !important;
}

.tfi-simple-button {
    padding: 10px !important;
    text-transform: uppercase;
    cursor: pointer;
    background-color: #3d76d2;
	color: white !important;
}

.tfi-primary-button:hover {
    background: rgba(9, 86, 212, 1);
}

@keyframes pulse {
  0%   { transform: scale(1);   box-shadow: 0 0 0 0 rgba(255,0,0,0.7); }
  70%  { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255,0,0,0); }
  100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}

.tfi-alert {
  animation: pulse 2s infinite;
}

.gmaps-button {
	background-color: #fff !important;
	border: 2px solid #fff !important;
	color: black !important;
	font-weight: bold;
	margin-top: 11px;
	line-height: 32px;
	border-radius: 3px;
	box-shadow: 0 2px 6px rgba(0,0,0,.3);
	cursor: pointer;
	font-size: 16px;
	text-align: center;
	margin-top: 11px;
}

/* Links */
.underline {
	/* font-weight: bold; */
	color: var(--primary-blue);
	position: relative;
	text-decoration: none;
	background: linear-gradient(var(--primary-blue), var(--primary-blue)) left bottom no-repeat;
	background-size: 0% 2px;
	transition: all 0.7s;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.underline:hover {
	background-size: 100% 2px;
}

/* Components */
#toggle-none {
}

/* dropdown */
.tfi-dropdown {
	border: 1px solid darkgrey;
	border-radius: 3px;
	margin: 10px 0;
	background: white;
}

.tfi-dropdown:focus,
.tfi-dropdown:focus-visible,
.tfi-dropdown:active {
	border: 1px solid darkgrey;
	outline: none;
}

.show {
	display: block !important;
}

.gmaps-dropdown {
	position: relative;
	display: inline-block;
}

.gmaps-dropdown-content {
	display: none;
	position: absolute;
	background-color: #fff;
	min-width: 160px;
	padding: 20px;
	overflow: auto;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.tfi-search-box {
	padding: 5px;
	border-radius: 3px;
	border: 1px solid red;
}

.wayback-edit-form {
}
.modal-form-box-wrapper {
	display: grid;
	border: 1px solid darkgrey;
	border-radius: 5px;
	padding: 15px;
	background-color: #f3f3f3;
}

.wayback-datepicker {
	margin-bottom: 10px;
}

.form-input-pad-5 input,
.form-input-pad-5 select {
	padding: 5px;
}

/* custom js data-tables styles. */
.tfi-tab-jar-light {
	padding: 2rem 1rem;
}

.tfi-tab-jar-light .tfi-skltbs-tab {
	display: flex !important;
	gap: 5px;
    padding: 10px 8px !important;
	border: 1px solid #ccc !important;
	transition: 0.5s;
}

.tfi-tab-jar-light .tfi-skltbs-tab:not(.skltbs-active):hover {
	background: #e7e7e7;
}

.tfi-tab-jar-light .tfi-skltbs-panel{
	background: #f8f8f8 !important;
	border: 1px solid #ccc !important;
	border-radius: 5px;
}

.tfi-tab-jar-light strong {
	font-weight: bold;
}

.tfi-panel input[type="submit"] {
    padding: 10px;
    text-transform: uppercase;
    cursor: pointer;
    background: rgba(61, 118, 210, 1);
	color: white;
    font-weight: bold;
    transition: 0.5s;
    border-radius: 3px !important;
	margin: 0;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 8999; /* Sit behind showToast() */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  align-items: center;
  justify-content: center;
  text-align: left;
}

/* Modal Content */
.modal-content-container {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  width: 85vw;
  height: 100%;
  max-width: 85vw;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-content {
	overflow: auto;
	width: 100%;
}

/* The Close Button */
.modal .close {
	color: red;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Tables */
.table-container {
	outline: 1px solid lightgrey;
	padding: 15px;
	border-radius: 5px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.dataTables_length,
.dataTables_paginate {
	padding-bottom: 15px;
}

.dataTables_info,
.dataTables_paginate {
	padding-top: 20px !important;
}

.tfi-panel input[type="submit"]:hover {
    background: rgba(9, 86, 212, 1);
}

input[type="checkbox"] {
	cursor: pointer;
}

/* design panel content */
.tfi-panel {
	overflow-x: auto;
	padding: 1rem 0;
}

.tfi-panel ol li {
	padding-bottom: 10px;
}

/* dropdown */
.tfi-dropdown {
	border: 1px solid darkgrey;
	border-radius: 3px;
	margin: 10px 0;
	background: white;
}

.tfi-dropdown:focus,
.tfi-dropdown:focus-visible,
.tfi-dropdown:active {
	border: 1px solid darkgrey;
	outline: none;
}

/* Fonts */
.tfi-font-size-5 {
	font-size: 5px;
}
.tfi-font-size-8 {
	font-size: 8px;
}
.tfi-font-size-10 {
	font-size: 10px;
}
.tfi-font-size-12 {
	font-size: 12px;
}
.tfi-font-size-13 {
	font-size: 13px;
}
.tfi-font-size-14 {
	font-size: 14px;
}
.tfi-font-size-17 {
	font-size: 17px;
}
.tfi-font-size-20 {
	font-size: 20px;
}
.tfi-font-size-25 {
	font-size: 25px;
}
.tfi-font-size-30 {
	font-size: 30px;
}
.tfi-font-size-32 {
	font-size: 32px;
}
.tfi-font-size-35 {
	font-size: 35px;
}

.tfi-font-size-125p {
	font-size: 125%;
}
.tfi-font-size-135p {
	font-size: 135%;
}
.tfi-font-size-150p {
	font-size: 150%;
}

/* Text Decorations */
.tfi-underline {
	text-decoration: underline;
}
.tfi-decoration-none {
	text-decoration: none;
}
.tfi-uppercase {
	text-transform: uppercase;
}

/* Animations */

@-webkit-keyframes borderBlink {
    from,
    to {
        border-color: darkgrey;
    }
    50% {
        border-color: rgba(255, 99, 71, 0.7);
		box-shadow: rgba(255, 99, 71, 0.2) 0px 3px 8px 0px;
    }
}
@keyframes borderBlink {
    from,
    to {
        border-color: darkgrey;
    }
    50% {
        border-color: rgba(255, 99, 71, 0.7);
		box-shadow: rgba(255, 99, 71, 0.2) 0px 3px 8px 0px;
    }
}
.border-blink {
    -webkit-animation: borderBlink 1s step-end 5;
    animation: borderBlink 1s step-end 5;
}

/* Highcharts table */

.highcharts-data-table table {
    border-collapse: collapse;
    border-spacing: 0;
    background: white;
    min-width: 100%;
    margin-top: 10px;
}

.highcharts-data-table table .highcharts-table-caption {
	font-weight: bold;
	padding-bottom: 15px;
}

.highcharts-data-table th {
	font-weight: bold;
}

.highcharts-data-table td,
.highcharts-data-table th {
    text-align: center;
    font-family: sans-serif;
    font-size: 10pt;
    border: 1px solid silver;
    padding: 0.5em;
}

.highcharts-data-table tr:nth-child(even),
.highcharts-data-table thead tr {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: rgba(102, 133, 194, 0.3);
}
.tfi-text-right {
	text-align: right;
}
.tfi-text-left {
	text-align: left;
}

/* Alert boxes */
.info-msg,
.success-msg,
.warning-msg,
.error-msg {
	margin: 10px 0;
	padding: 10px;
	border-radius: 3px 3px 3px 3px;
}
.info-msg {
	color: #059;
	background-color: #BEF;
}
.success-msg {
	color: #270;
	background-color: #DFF2BF;
}
.warning-msg {
	color: #9F6000;
	background-color: #FEEFB3;
}
.error-msg {
	color: #000;
	background-color: #FFBABA;
}

/* Forms */

.tfi-clean-form {

}

.tfi-clean-form input,
.tfi-clean-form select {
	font-size: 17px;
	border: none;
	outline: none;
	background-color: transparent;
	border-bottom: 1px solid #ccc;
}
.tfi-clean-form .field {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 1em;
}
.tfi-clean-form label,
.tfi-clean-form input[type="text"] {
	transition: all 0.2s;
	touch-action: manipulation;
}
.tfi-clean-form label {
	font-size: 12px;
	text-transform: lowercase;
	font-weight: 900;
}
.tfi-clean-form input[type="checkbox"] {
	width: 20px;
	height: 20px;
}
.tfi-clean-form input[type="text"] {
	border: 0;
	border-bottom: 1px solid #ccc;
	font-family: inherit;
	-webkit-appearance: none;
	border-radius: 0;
	padding: 10px;
	cursor: text;
}
.tfi-clean-form input[type="text"]:focus,
.tfi-clean-form select:focus {
	outline: 0;
	border-bottom: 1px solid #777;
}
.tfi-clean-form .add-date-block button {
	margin: 0;
}

.tfi-simple-select {
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    background-color: transparent;
    padding: 4px;
}
