:root {
	--transition-default: all 0.3s ease-in-out;
	--primary-color: #EE1C25;
	--primary-hover: #ce141d;
	--primary-rgb: 226, 10, 23;
	--secondary-color: #003399;
	--secondary-hover: #0072ca;
	--secondary-rgb: 0, 51, 153;
}

body {
	font: 400 14px/1.4 'Open Sans', sans-serif;
	overflow-x: hidden;
	position: relative;
	width: 100%;
	color: #000f23;
}

a, a:hover, a:focus {
	outline: none;
	text-decoration: none;
	cursor: pointer;
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	-webkit-transition: var(--transition-default);
}

button, button:hover, button:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	text-decoration: none;
	cursor: pointer;
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	-webkit-transition: var(--transition-default);
}

input,
select,
textarea {
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	-webkit-transition: var(--transition-default);
}

input:focus,
select:focus,
textarea:focus {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	outline: none !important;
	border-color: #8f8d8d !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

.transition-default {
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	-webkit-transition: var(--transition-default);
}

.pseudo:before,
.pseudo:after {
	position: absolute;
	content: "";
	display: block;
}

.background-cover {
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.image-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.image-contain {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.object-fit-cover {
	-o-object-fit: cover;
	object-fit: cover;
}

.limit-lines {
	--lines: 3;
	--line-height: 1.5;
	--font-size: 0.875rem;
	--calc-max-height: calc(var(--line-height) * var(--lines) * var(--font-size) - 3);
	display: inline-block;
	display: -webkit-box;
	width: 100%;
	max-height: var(--calc-max-height);
	height: var(--calc-max-height);
	font-size: var(--font-size);
	line-height: var(--line-height);
	line-clamp: var(--lines);
	-webkit-line-clamp: var(--lines);
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.limit {
	--line: 2;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: var(--line);
	line-clamp: var(--line);
	-webkit-box-orient: vertical;
}

.hidden-effect {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.hidden-effect:hover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.z-index-0 {
	z-index: 0;
}

.z-index-1 {
	z-index: 1;
}

.z-index-2 {
	z-index: 2;
}

.z-index-3 {
	z-index: 3;
}

.z-index-4 {
	z-index: 4;
}

.z-index-5 {
	z-index: 5;
}

.z-index-10 {
	z-index: 10;
}

/*
    Start table of content
*/
.theme-toc {
	border: 1px solid #e9e9e9;
	background: #faf9fa;
	display: inline-flex;
	flex-direction: column;
	overflow: hidden;
	margin-bottom: 15px;
	min-width: 200px;
}

.theme-toc > .nav {
	padding: 0 0 8px;
	width: 100%;
}

.theme-toc .nav {
	display: inline-flex;
	flex-direction: column;
}

.theme-toc .nav > li > a {
	padding-top: 3px;
	padding-right: 15px;
	padding-bottom: 3px;
	display: block;
	color: var(--bs-gray-dark);
	font-size: .95rem;
}

.theme-toc .nav > li > a:hover,
.theme-toc .nav > li > a:active {
	color: var(--primary-color);
}

.theme-toc .nav > li > a.toc-link-1 {
	padding-left: 15px;
}

.theme-toc .nav > li > a.toc-link-2 {
	padding-left: 30px;
}

.theme-toc .nav > li > a:not(.toc-link-1):before {
	content: "-";
	margin-right: 9px;
}

.theme-toc .nav > li > a.toc-link-3 {
	padding-left: 45px;
}

.theme-toc .nav > li > a.toc-link-4 {
	padding-left: 60px;
}

.theme-toc .nav > li > a.toc-link-5 {
	padding-left: 75px;
}

.theme-toc .nav > li > a.toc-link-6 {
	padding-left: 90px;
}

.theme-toc .nav > li.toc-heading {
	background-color: #f5f5f5;
	border-bottom: 1px solid #dddddd;
	padding: 0;
	margin-bottom: 5px;
	width: 100%;
}

.theme-toc .nav > li.toc-heading > p {
	color: var(--bs-gray-dark);
	padding: 10px 0 12px;
	text-align: center;
	font-weight: 600;
	font-size: 1rem;
	display: block;
	margin-bottom: 0;
}

.theme-toc .nav > li.toc-heading > p > a {
	color: var(--primary-color);
	margin-left: 4px;
	font-size: .9rem;
}

.theme-toc .nav > li.toc-heading > p > a:hover,
.theme-toc .nav > li.toc-heading > p > a:active {
	color: var(--primary-hover);
}

.theme-toc .nav .nav {
	margin-bottom: 0;
}

@media screen and (max-width: 600px) {
	.theme-toc {
		width: 100%;
	}
}

.swal2-popup .swal2-title {
	font-size: 1.2em;
	color: var(--bs-gray-900);
	font-weight: 700;
}

.swal2-popup .swal2-html-container {
	color: var(--bs-gray-700);
	font-size: 1.05em;
}

.swal2-actions {
	flex-direction: row-reverse;
}

.swal2-popup .swal2-confirm,
.swal2-popup .swal2-cancel,
.swal2-popup .swal2-deny {
	font-size: .95em !important;
	font-weight: 500;
	text-transform: uppercase;
	padding: 5px 13px 4px;
	border-radius: 5px;
	transition: var(--transition-default);
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	letter-spacing: .5px;
	margin: 0 5px;
}

.swal2-popup .swal2-confirm {
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
	color: var(--bs-white);
}

.swal2-popup .swal2-confirm:hover {
	border: 1px solid var(--primary-hover);
	background: var(--primary-hover);
	color: var(--bs-white);
}

.ratio > img {
	-o-object-fit: cover;
	object-fit: cover;
}

.ratio-2x1 {
	--bs-aspect-ratio: 50%;
}

.ratio-3x2 {
	--bs-aspect-ratio: calc(2 / 3 * 100%);
}

.ratio-3x4 {
	--bs-aspect-ratio: calc(4 / 3 * 100%);
}

.is-overflow {
	overflow: hidden !important;
	height: 100vh !important;
}