/*
Theme Name: Softworks
Theme URI: https://www.softworks.com.tr
Author: Softworks
Author URI: https://www.softworks.com.tr
Version: 5.2
*/

body {
	margin: 0;
	padding: 0;
	color: #383838;
	width: 100%;
	height: 100%;
	word-wrap: break-word;
	-ms-word-wrap: break-word;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
    display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-box-align: stretch;
	background-color: #fff;
    -webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-user-drag: none;
	-ms-content-zooming: none;
	overflow-y: scroll;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

body {
    -ms-touch-action: none;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

body, h1, h2, h3, h4, h5, h6 {
	font-family: 'Arial', sans-serif;
}

a {
    color: #383838;
    transition: color .2s linear;
}

a:hover,
a:focus {
    text-decoration: none;
}

a:focus,
input:focus,
button:focus {
    outline: none;
}

::-moz-selection {
	color: #ffffff;
	background-color: #444bf8;
    text-shadow: none;
}

::selection {
	color: #ffffff;
	background-color: #444bf8;
    text-shadow: none;
}

/* Loading Bar */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-color: transparent;
    z-index: 99999;
    transform: translateZ(0);
}

.loading-bar > .loader {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(0, 0);
	width: 100%;
	height: .2rem;
	background-color: rgb(229 9 20 / 30%);
	overflow: hidden;
}

.loading-bar > .loader:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: #e50914;
	animation: expand-primary 2100ms cubic-bezier(0.65,0.81,0.73,0.4) infinite;
}

.loading-bar > .loader:after {
	content: '';
	position:absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: #e50914;
	animation: expand-secondary 2100ms cubic-bezier(0.16,0.84,0.44,1) infinite;
	animation-delay: 1150ms;
}

@keyframes expand-primary {
	0% {
		left: -35%;
		right: 100%;
	}
	60%, 100% {
		left: 100%;
		right: -90%;
	}
}

@keyframes expand-secondary {
	0% {
		left: -200%;
		right: 100%;
	}
	60%, 100% {
		left: 107%;
		right: -8%;
	}
}

/* Search */
.search-active {
	overflow: hidden !important;
}

.search-active .search {
	opacity: 1;
	visibility: visible;
}

.search {
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 999999;
	background: #ffffff;
	padding: 8.125rem 16.25rem;
}

.search .close {
	width: 100%;
    height: 1.25rem;
    position: relative;
    display: block;
}

.search .close::before {
    content: '';
    background-color: #f1f1f1;
    opacity: .15;
    border-radius: 0.25rem;
    height: 0.25rem;
    width: 2.5rem;
    margin-top: 0.5rem;
    top: 0;
    right: 50%;
    margin-right: -1.25rem;
    position: absolute;
}

.search form {
	margin-top: 5%;
}

.search .search-results {
	margin: 0;
    padding: 2.5rem 5.625rem 0 4.375rem;
    min-height: 13.75rem;
    max-height: 23.125rem;
    overflow-y: scroll;
    position: relative;
}

.search .search-results::-webkit-scrollbar {
	width: 0;
}

.search .search-results .search-no-results {
	font-size: 1.563rem;
}

.search .search-results .search-results-item {
    display: flex;
    align-items: center;
    background-color: #fbfbfb;
    margin-bottom: 1.875rem;
    padding: 0.938rem 1.875rem;
	min-height: 6.25rem;
}

.search .search-results .search-results-item img {
	width: 5.625rem;
	height: 5.625rem;
	object-fit: cover;
}

.search .search-results .search-results-item .search-results-text {
	overflow: hidden;
    margin: 0 0 0 0.938rem;
}

.search .search-results .search-results-item .search-results-text h3 {
    color: #383838;
    font-size: 1.25rem;
	font-weight: 500;
    text-overflow: ellipsis;
	width: 100%;
    /* max-width: 21.875rem; */
	margin: 0 0 0.313rem;
    overflow: hidden;
    white-space: nowrap;
}

.search .search-results .search-results-item .search-results-text div {
	color: #383838;
    font-size: 0.938rem;
	word-break: break-all;
}

@media screen and (max-width: 840px) {
	.search {
	    padding: 6.25rem 1.875rem;
	}
	.search .search-results .search-results-item {
		padding: 0.938rem;
	}
	.search .search-results {
		padding: 0;
		max-height: 70vh;
	}
}

/* Cool Link */
.cool-link {
	display: inline-block;
}

.cool-link:after {
	display: block;
	content: '';
	border-bottom: solid 0.063rem #444bf8;
	transform: scaleX(0);
	transition: transform 0.25s ease-out 0s;
}

.cool-link:hover:after {
    transform: scaleX(1);
	transition: transform 0.5s ease-out 0s;
}

.cool-link.from-right:after {
    transform-origin: left bottom;
}

.cool-link.from-right:hover:after {
    transform-origin: right bottom;
}

.cool-link.from-left:after {
    transform-origin: right bottom;
}

.cool-link.from-left:hover:after {
    transform-origin: left bottom;
}

/* Wobble Effect */
.wobble {
	transition: all .5s;
	-webkit-transition: all .5s;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-webkit-animation-name: wobble-horizontal;
	animation-name: wobble-horizontal;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes wobble-horizontal {
	5.56% {
		-webkit-transform: translateX(8px);
		transform: translateX(8px);
	}
	11.11% {
		-webkit-transform: translateX(-6px);
		transform: translateX(-6px);
	}
	16.67% {
		-webkit-transform: translateX(4px);
		transform: translateX(4px);
	}
	22.22% {
		-webkit-transform: translateX(-2px);
		transform: translateX(-2px);
	}
	27.75% {
		-webkit-transform: translateX(1px);
		transform: translateX(1px);
	}
	33.33% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes wobble-horizontal {
	5.56% {
		-webkit-transform: translateX(8px);
		transform: translateX(8px);
	}
	11.11% {
		-webkit-transform: translateX(-6px);
		transform: translateX(-6px);
	}
	16.67% {
		-webkit-transform: translateX(4px);
		transform: translateX(4px);
	}
	22.22% {
		-webkit-transform: translateX(-2px);
		transform: translateX(-2px);
	}
	27.75% {
		-webkit-transform: translateX(1px);
		transform: translateX(1px);
	}
	33.33% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

/* Scroll Top */
.scroll-top {
	position: fixed;
    bottom: 1.875rem;
    right: 1.875rem;
    background: #444bf8;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: 0.4s;
    cursor: pointer;
    transform: scale(0);
}

.scroll-top.changed {
	transform: scale(1);
}

.scroll-top:before {
	color: #ffffff;
	font-family: 'Icon' !important;
	content: '\EA78';
	font-size: 1.875rem;
}

@media (hover: hover){
    .scroll-top:hover {
        opacity: .8;
    }
}

@media only screen and (max-width: 1199px){
    .scroll-top { display: none; }
}

/* Sticky Styles */
.sticky-queue {
	width: 15.625rem;
	position: fixed;
	z-index: 999;
}

.sticky-note {
	padding-right: 1.25rem;
}

.sticky {
	font-size: 0.75rem;
	color: #ffffff;
	display: none;
	padding: 0.938rem;
	position: relative;
	margin: 0.313rem 0 0;
	line-height: 1.5;
	background-color: #1f28f7;
}

.sticky.success {
	background-color: #8dc63f;
}

.sticky.warning {
	background-color: #ffba00;
}

.sticky.danger {
	background-color: #e50914;
}

.sticky-queue.top-right {
	right: 1.25rem;
}

.sticky-queue.top-left {
	left: 1.25rem;
}

.sticky-queue.top-right,
.sticky-queue.top-left {
	top: -0.125rem;
}

.sticky-queue.bottom-right {
	right: 1.25rem;
}

.sticky-queue.bottom-left {
	left: 1.25rem;
}

.sticky-queue.bottom-right,
.sticky-queue.bottom-left {
	bottom: 1.25rem;
}

/* Pagination */
.pagination {
	text-align: center;
}

.pagination ul {
	display: inline-block;
    padding-left: 0;
    margin: 1.25rem 0;
}

.pagination ul li {
	display: inline-block;
    margin: 0 0.313rem;
}

.pagination ul li a {
	color: #cccccc;
	font-size: 1.125rem;
	width: 3.125rem;
	height: 3.125rem;
	line-height: 3.125rem;
    float: left;
	position: relative;
    text-decoration: none;
    background-color: #ffffff;
    border: 0.063rem solid #dddddd;
}

.pagination ul li.active > a,
.pagination ul li.active > a:focus,
.pagination ul li.active > a:hover,
.pagination ul li.active > span,
.pagination ul li.active > span:focus,
.pagination ul li.active > span:hover {
	border-color: #444bf8;
    background-color: #444bf8;
	color: #ffffff;
}

/* BreadCrumbs */
.breadcrumbs {

}

.breadcrumbs > ul {
	padding: 0;
	margin-left: 0 !important;
	margin-bottom: 0 !important;
	background-color: transparent;
	list-style: none;
}

.breadcrumbs > ul > li {
    display: inline-block;
	margin-bottom: 0 !important;
	font-weight: 400;
}

.breadcrumbs > ul > li + li:before {
    color: #444bf8;
    padding: 0 0.313rem;
	position: relative;
	top: 0.188rem;
    font-family: 'Icon' !important;
    content: '\EA6E';
    font-size: 1rem;
}

.breadcrumbs a {
	color: #383838;
}

.breadcrumbs a:hover {
	color: #383838;
}

@media screen and (max-width: 767px) {
	.breadcrumbs {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		margin-bottom: 0.5rem;
		padding: 0.938rem 0;
		margin: 0;
	}
	.breadcrumbs ul {
	    display: flex;
	    padding: 0;
	    margin: 0;
	    align-items: center;
	}
	.breadcrumbs > ul > li {
		flex: none;
	}
}

/* WhatsApp */
.whatsapp-button {
    position: fixed;
    right: 1.875rem;
    bottom: 1.875rem;
    cursor: pointer;
    font-family: Arial,Helvetica,sans-serif;
    z-index: 999;
}

.whatsapp-notice {
	position: absolute;
	width: 1.25rem;
	height: 1.25rem;
	text-align: center;
	background-color: #e00;
	border-radius: 50%;
	line-height: 1.25rem;
	color: #fff;
	top: -0.313rem;
}

.whatsapp-button .whatsapp-button-text {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    width: 160.313rem;
    right: 100%;
    background-color: #f5f7f9;
    font-size: 0.75rem;
    color: #43474e;
    padding: 0.5rem 0.75rem;
    margin-right: 0.438rem;
    letter-spacing: -.03em;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -moz-transition: .4s ease all;
}

.whatsapp-button .whatsapp-button-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #2db742;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0 0.375rem 0.5rem 0.125rem rgb(0 0 0 / 14%);
}

.whatsapp-button .whatsapp-button-icon:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDc4LjE2NSA0NzguMTY1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0NzguMTY1IDQ3OC4xNjU7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiPg0KPGc+DQoJPHBhdGggaWQ9IldoYXRzQXBwIiBkPSJNNDc4LjE2NSwyMzIuOTQ2YzAsMTI4LjU2Ny0xMDUuMDU3LDIzMi45NjYtMjM0LjY3OSwyMzIuOTY2Yy00MS4xMDIsMC03OS44MTQtMTAuNTk5LTExMy40NDUtMjguOTY5ICAgTDAsNDc4LjE2NWw0Mi40MzctMTI1LjA0Yy0yMS40MzgtMzUuMDY1LTMzLjc3LTc2LjIwNy0zMy43Ny0xMjAuMTU5QzguNjY3LDEwNC4zNCwxMTMuNzYzLDAsMjQzLjQ4NSwwICAgQzM3My4xMDgsMCw0NzguMTY1LDEwNC4zNCw0NzguMTY1LDIzMi45NDZ6IE0yNDMuNDg1LDM3LjA5OGMtMTA4LjgwMiwwLTE5Ny40MjIsODcuODAzLTE5Ny40MjIsMTk1Ljg2OCAgIGMwLDQyLjkxNSwxMy45ODYsODIuNjAzLDM3LjU3NiwxMTQuODc5bC0yNC41ODYsNzIuNTQybDc1Ljg0OS0yMy45NjhjMzEuMTIxLDIwLjQ4MSw2OC40NTcsMzIuMjk2LDEwOC41ODMsMzIuMjk2ICAgYzEwOC43MjMsMCwxOTcuMzIzLTg3Ljg0MywxOTcuMzIzLTE5NS45MDhDNDQwLjgwOCwxMjQuOTIxLDM1Mi4yMDgsMzcuMDk4LDI0My40ODUsMzcuMDk4eiBNMzYxLjkzMSwyODYuNjIgICBjLTEuMzk1LTIuMzMxLTUuMjItMy43NDYtMTAuODk4LTYuODE0Yy01LjkxNy0yLjg0OS0zNC4wODktMTYuNDk3LTM5LjUwOC0xOC4zN2MtNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEsMi44MjkgICBjLTQuMDA1LDUuNjM4LTE0LjkwMywxOC42MjktMTguMjMsMjIuMzU0Yy0zLjU0NiwzLjc4NS02Ljg1NCw0LjI2NC0xMi41NTIsMS40MzVjLTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxICAgYy0xNy4wNTUtMTUuMDQyLTI4LjY3LTMzLjcxMS0zMS45OTctMzkuNTA4Yy0zLjQyNy01Ljc1OC0wLjM5OC04LjgyNiwyLjQ3MS0xMS42MzVjMi42OS0yLjU5LDUuNzc4LTYuNzM0LDguNjI3LTEwLjA0MSAgIGMyLjk2OS0zLjI4NywzLjkwNS01LjYzOCw1Ljc5OC05LjQyNGMxLjkxMy0zLjkwNSwwLjkzNi03LjE5Mi0wLjQ3OC0xMC4xNDFjLTEuNDE1LTIuODQ5LTEzLjAxLTMwLjg4MS0xNy43NTItNDIuMzM3ICAgYy00Ljg0MS0xMS40MTYtOS41NDMtOS41MjMtMTIuODcxLTkuNTIzYy0zLjQ2NywwLTcuMjEyLTAuNDc4LTExLjExNy0wLjQ3OGMtMy43ODUsMC0xMC4wNDEsMS4zOTUtMTUuMzgxLDcuMTkyICAgYy01LjIsNS42NTgtMjAuMTIzLDE5LjQ2NS0yMC4xMjMsNDcuNTk3YzAsMjguMDUyLDIwLjYwMSw1NS4zMDgsMjMuNTUsNTkuMDUzYzIuODY5LDMuNzg1LDM5Ljc0Nyw2My4xOTcsOTguMzAzLDg2LjA3ICAgYzU4LjQ3NiwyMi44NzIsNTguNDc2LDE1LjMyMSw2OS4xMTUsMTQuMzY1YzEwLjM4LTAuOTU2LDM0LjA2OS0xMy44NjcsMzguODExLTI3LjA5NiAgIEMzNjMuMzQ1LDMwMC4zMDcsMzYzLjM0NSwyODguOTkxLDM2MS45MzEsMjg2LjYyeiIgZmlsbD0iI0ZGRkZGRiIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=) center center no-repeat;
    background-size: 1.875rem auto;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -moz-transition: .4s ease all;
}

@media screen and (max-width: 767px) {
	.whatsapp-button {
		bottom: 0.938rem;
	}
	.whatsapp-button.whatsapp-button-left {
		left: 0.938rem !important;
	}
	.whatsapp-button.whatsapp-button-right {
		right: 0.938rem !important;
	}
}

/* Security Code */
.security-code {
	border: 0.063rem solid #dddddd;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: start;
	border-radius: .25rem;
}

.security-code img {
	max-width: 120px;
	max-height: 30px;
}

.security-code-group .input-inline {
	width: auto !important;
}

.security-code-group .input-inline:nth-child(1) {
	flex-grow: 1 !important;
}

.security-code-group .input-inline:nth-child(2) {
	flex-grow: 6 !important;
}

/* Cursor */
.cursor {
    position: fixed;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #f5f5f5;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 999;
    transition: width 0.2s, height 0.2s;
    transition: transform 0.2s, width 0.2s, height 0.2s;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 992px) {
	.cursor {
		display: none !important;
	}
}

@-ms-viewport {
    width: device-width;
}

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 33.75rem;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 45rem;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 60rem;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 71.25rem;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 82.5rem;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

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

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

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

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/* Sections */
.section {
	padding: 1.875rem 0;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	/* background-color: #ffffff; */
}

.section-h-auto {
	min-height: 18.75rem;
}

.section-h-50 {
	min-height: 50vh;
}

.section-h-high {
	min-height: 75vh;
}

.section-h-full {
	min-height: 100vh;
}

@media screen and (max-width: 768px) {
    .section-h-auto {
    	height: auto;
    	min-height: 12.5rem;
    }

    .section-h-50 {
    	min-height: 25vh;
    }

    .section-h-high {
    	min-height: 37.5vh;
    }

    .section-h-full {
    	min-height: 50vh;
    }
}

.section-sm,
.section-md,
.section-lg,
.section-xl,
.section-xxl {
	padding: 3.75rem 0;
}

@media (min-width: 768px) {
	.section-md {
		padding-top: 3.75rem;
		padding-bottom: 3.75rem;
	}
	.section-lg {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.section-xl {
		padding-top: 6.25rem;
		padding-bottom: 6.25rem;
	}
	.section-xxl {
		padding-top: 6.25rem;
		padding-bottom: 6.25rem;
	}
}

@media (min-width: 992px) {
	.section-xl {
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}
}

@media (min-width: 1200px) {
	.section-md {
		padding-top: 3.75rem;
		padding-bottom: 3.75rem;
	}
	.section-lg {
		padding-top: 6.25rem;
		padding-bottom: 6.25rem;
	}
	.section-xl {
		padding-top: 8.125rem;
		padding-bottom: 8.125rem;
	}
	.section-xxl {
		padding-top: 9.375rem;
		padding-bottom: 9.375rem;
	}
}

@media (min-width: 1600px) {
	.section-xl {
		padding-top: 10.313rem;
		padding-bottom: 10.313rem;
	}
	.section-xxl {
		padding-top: 12.5rem;
		padding-bottom: 12.5rem;
	}
}

@media (min-width: 1800px) {
	.section-xl {
		padding-top: 12.5rem;
		padding-bottom: 12.5rem;
	}
	.section-xxl {
		padding-top: 18.125rem;
		padding-bottom: 18.125rem;
	}
}

.section.no-padding-top {
	padding-top: 0 !important;
}

.section.no-padding-bottom {
	padding-bottom: 0 !important;
}

.section .container {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.section.section-viewport {
	min-height: calc(100% - 2 * 7.5rem);
}

.section.section-viewport .container {
	min-height: calc(100% - 2 * 7.5rem);
}

.section.section-image-bg {
	color: #f2f2f2;
}

.section .section-box {
	background: #ffffff;
	padding: 3.75rem 2.5rem;
	overflow: hidden;
	color: #444444;
	box-shadow: 0 0.3125rem 0.875rem 0 rgba(129, 129, 129, 0.2) !important;
}

.section .section-touch {
	border-top: solid 0.3125rem #329ef7;
	z-index: 2;
}

.section img + p, .section img + h3, .section img + h4 {
	/* margin-top: 1.25rem; */
}

.section img + h1, .section img + h2 {
	/* margin-top: 2.5rem; */
}

@media screen and (min-width: 992px) {
    .section .col-fill-left {
    	width: 50%;
    	position: absolute;
    	left: 0;
    	top: 0;
    	bottom: 0;
    	background-size: cover;
    	background-position: center;
    	z-index: 1;
    }
}

.section .col-fill-left + div {
	position: relative;
	z-index: 2;
}

@media screen and (min-width: 992px) {
    .section .col-fill-right {
    	width: 50%;
    	position: absolute;
    	right: 0;
    	top: 0;
    	bottom: 0;
    	background-size: cover;
    	background-position: center;
    	z-index: 1;
    }
}

.section .col-fill-right + div {
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 992px) {
    .section .col-fill-left,
    .section .col-fill-right {
    	width: 100%;
        min-height: 15.625rem;
    	background-size: cover;
    	background-position: center;
    }
}

.section img.section-icon {
	width: auto;
	width: 3.75rem;
}

.section img.section-icon-round {
	width: auto;
	width: 3.75rem;
}

.section .row-100 {
	height: 6.25rem;
	width: 100%;
}

.section .row-50 {
	height: 3.125rem;
	width: 100%;
}

.section .row-70 {
	height: 4.375rem;
	width: 100%;
}

.section [hidden] {
	display: none !important;
}

.section hr {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top: 0.063rem solid rgba(0, 0, 0, 0.1);
}

.section mark,
.section .mark {
	padding: 0.2em;
	background-color: #fcf8e3;
}

.section .lead {
    font-size: clamp(1rem, 0.231vw + 0.94rem, 1.125rem);
    line-height: clamp(1.8rem, 0vw + 1.8rem, 1.8rem);
    font-weight: 400;
}

/* Font-Size Dimensions {1-200} */
.font-size-1{font-size:0.0625rem;}.font-size-2{font-size:0.125rem;}.font-size-3{font-size:0.1875rem;}.font-size-4{font-size:0.25rem;}.font-size-5{font-size:0.3125rem;}.font-size-6{font-size:0.375rem;}.font-size-7{font-size:0.4375rem;}.font-size-8{font-size:0.5rem;}.font-size-9{font-size:0.5625rem;}.font-size-10{font-size:0.625rem;}.font-size-11{font-size:0.6875rem;}.font-size-12{font-size:0.75rem;}.font-size-13{font-size:0.8125rem;}.font-size-14{font-size:0.875rem;}.font-size-15{font-size:0.9375rem;}.font-size-16{font-size:1rem;}.font-size-17{font-size:1.0625rem;}.font-size-18{font-size:1.125rem;}.font-size-19{font-size:1.1875rem;}.font-size-20{font-size:1.25rem;}.font-size-21{font-size:1.3125rem;}.font-size-22{font-size:1.375rem;}.font-size-23{font-size:1.4375rem;}.font-size-24{font-size:1.5rem;}.font-size-25{font-size:1.5625rem;}.font-size-26{font-size:1.625rem;}.font-size-27{font-size:1.6875rem;}.font-size-28{font-size:1.75rem;}.font-size-29{font-size:1.8125rem;}.font-size-30{font-size:1.875rem;}.font-size-31{font-size:1.9375rem;}.font-size-32{font-size:2rem;}.font-size-33{font-size:2.0625rem;}.font-size-34{font-size:2.125rem;}.font-size-35{font-size:2.1875rem;}.font-size-36{font-size:2.25rem;}.font-size-37{font-size:2.3125rem;}.font-size-38{font-size:2.375rem;}.font-size-39{font-size:2.4375rem;}.font-size-40{font-size:2.5rem;}.font-size-41{font-size:2.5625rem;}.font-size-42{font-size:2.625rem;}.font-size-43{font-size:2.6875rem;}.font-size-44{font-size:2.75rem;}.font-size-45{font-size:2.8125rem;}.font-size-46{font-size:2.875rem;}.font-size-47{font-size:2.9375rem;}.font-size-48{font-size:3rem;}.font-size-49{font-size:3.0625rem;}.font-size-50{font-size:3.125rem;}.font-size-51{font-size:3.1875rem;}.font-size-52{font-size:3.25rem;}.font-size-53{font-size:3.3125rem;}.font-size-54{font-size:3.375rem;}.font-size-55{font-size:3.4375rem;}.font-size-56{font-size:3.5rem;}.font-size-57{font-size:3.5625rem;}.font-size-58{font-size:3.625rem;}.font-size-59{font-size:3.6875rem;}.font-size-60{font-size:3.75rem;}.font-size-61{font-size:3.8125rem;}.font-size-62{font-size:3.875rem;}.font-size-63{font-size:3.9375rem;}.font-size-64{font-size:4rem;}.font-size-65{font-size:4.0625rem;}.font-size-66{font-size:4.125rem;}.font-size-67{font-size:4.1875rem;}.font-size-68{font-size:4.25rem;}.font-size-69{font-size:4.3125rem;}.font-size-70{font-size:4.375rem;}.font-size-71{font-size:4.4375rem;}.font-size-72{font-size:4.5rem;}.font-size-73{font-size:4.5625rem;}.font-size-74{font-size:4.625rem;}.font-size-75{font-size:4.6875rem;}.font-size-76{font-size:4.75rem;}.font-size-77{font-size:4.8125rem;}.font-size-78{font-size:4.875rem;}.font-size-79{font-size:4.9375rem;}.font-size-80{font-size:5rem;}.font-size-81{font-size:5.0625rem;}.font-size-82{font-size:5.125rem;}.font-size-83{font-size:5.1875rem;}.font-size-84{font-size:5.25rem;}.font-size-85{font-size:5.3125rem;}.font-size-86{font-size:5.375rem;}.font-size-87{font-size:5.4375rem;}.font-size-88{font-size:5.5rem;}.font-size-89{font-size:5.5625rem;}.font-size-90{font-size:5.625rem;}.font-size-91{font-size:5.6875rem;}.font-size-92{font-size:5.75rem;}.font-size-93{font-size:5.8125rem;}.font-size-94{font-size:5.875rem;}.font-size-95{font-size:5.9375rem;}.font-size-96{font-size:6rem;}.font-size-97{font-size:6.0625rem;}.font-size-98{font-size:6.125rem;}.font-size-99{font-size:6.1875rem;}.font-size-100{font-size:6.25rem;}.font-size-101{font-size:6.3125rem;}.font-size-102{font-size:6.375rem;}.font-size-103{font-size:6.4375rem;}.font-size-104{font-size:6.5rem;}.font-size-105{font-size:6.5625rem;}.font-size-106{font-size:6.625rem;}.font-size-107{font-size:6.6875rem;}.font-size-108{font-size:6.75rem;}.font-size-109{font-size:6.8125rem;}.font-size-110{font-size:6.875rem;}.font-size-111{font-size:6.9375rem;}.font-size-112{font-size:7rem;}.font-size-113{font-size:7.0625rem;}.font-size-114{font-size:7.125rem;}.font-size-115{font-size:7.1875rem;}.font-size-116{font-size:7.25rem;}.font-size-117{font-size:7.3125rem;}.font-size-118{font-size:7.375rem;}.font-size-119{font-size:7.4375rem;}.font-size-120{font-size:7.5rem;}.font-size-121{font-size:7.5625rem;}.font-size-122{font-size:7.625rem;}.font-size-123{font-size:7.6875rem;}.font-size-124{font-size:7.75rem;}.font-size-125{font-size:7.8125rem;}.font-size-126{font-size:7.875rem;}.font-size-127{font-size:7.9375rem;}.font-size-128{font-size:8rem;}.font-size-129{font-size:8.0625rem;}.font-size-130{font-size:8.125rem;}.font-size-131{font-size:8.1875rem;}.font-size-132{font-size:8.25rem;}.font-size-133{font-size:8.3125rem;}.font-size-134{font-size:8.375rem;}.font-size-135{font-size:8.4375rem;}.font-size-136{font-size:8.5rem;}.font-size-137{font-size:8.5625rem;}.font-size-138{font-size:8.625rem;}.font-size-139{font-size:8.6875rem;}.font-size-140{font-size:8.75rem;}.font-size-141{font-size:8.8125rem;}.font-size-142{font-size:8.875rem;}.font-size-143{font-size:8.9375rem;}.font-size-144{font-size:9rem;}.font-size-145{font-size:9.0625rem;}.font-size-146{font-size:9.125rem;}.font-size-147{font-size:9.1875rem;}.font-size-148{font-size:9.25rem;}.font-size-149{font-size:9.3125rem;}.font-size-150{font-size:9.375rem;}.font-size-151{font-size:9.4375rem;}.font-size-152{font-size:9.5rem;}.font-size-153{font-size:9.5625rem;}.font-size-154{font-size:9.625rem;}.font-size-155{font-size:9.6875rem;}.font-size-156{font-size:9.75rem;}.font-size-157{font-size:9.8125rem;}.font-size-158{font-size:9.875rem;}.font-size-159{font-size:9.9375rem;}.font-size-160{font-size:10rem;}.font-size-161{font-size:10.0625rem;}.font-size-162{font-size:10.125rem;}.font-size-163{font-size:10.1875rem;}.font-size-164{font-size:10.25rem;}.font-size-165{font-size:10.3125rem;}.font-size-166{font-size:10.375rem;}.font-size-167{font-size:10.4375rem;}.font-size-168{font-size:10.5rem;}.font-size-169{font-size:10.5625rem;}.font-size-170{font-size:10.625rem;}.font-size-171{font-size:10.6875rem;}.font-size-172{font-size:10.75rem;}.font-size-173{font-size:10.8125rem;}.font-size-174{font-size:10.875rem;}.font-size-175{font-size:10.9375rem;}.font-size-176{font-size:11rem;}.font-size-177{font-size:11.0625rem;}.font-size-178{font-size:11.125rem;}.font-size-179{font-size:11.1875rem;}.font-size-180{font-size:11.25rem;}.font-size-181{font-size:11.3125rem;}.font-size-182{font-size:11.375rem;}.font-size-183{font-size:11.4375rem;}.font-size-184{font-size:11.5rem;}.font-size-185{font-size:11.5625rem;}.font-size-186{font-size:11.625rem;}.font-size-187{font-size:11.6875rem;}.font-size-188{font-size:11.75rem;}.font-size-189{font-size:11.8125rem;}.font-size-190{font-size:11.875rem;}.font-size-191{font-size:11.9375rem;}.font-size-192{font-size:12rem;}.font-size-193{font-size:12.0625rem;}.font-size-194{font-size:12.125rem;}.font-size-195{font-size:12.1875rem;}.font-size-196{font-size:12.25rem;}.font-size-197{font-size:12.3125rem;}.font-size-198{font-size:12.375rem;}.font-size-199{font-size:12.4375rem;}.font-size-200{font-size:12.5rem;}

/* Line-Height Dimensions {1-300} */
.line-height-1{line-height:0.0625rem;}.line-height-2{line-height:0.125rem;}.line-height-3{line-height:0.1875rem;}.line-height-4{line-height:0.25rem;}.line-height-5{line-height:0.3125rem;}.line-height-6{line-height:0.375rem;}.line-height-7{line-height:0.4375rem;}.line-height-8{line-height:0.5rem;}.line-height-9{line-height:0.5625rem;}.line-height-10{line-height:0.625rem;}.line-height-11{line-height:0.6875rem;}.line-height-12{line-height:0.75rem;}.line-height-13{line-height:0.8125rem;}.line-height-14{line-height:0.875rem;}.line-height-15{line-height:0.9375rem;}.line-height-16{line-height:1rem;}.line-height-17{line-height:1.0625rem;}.line-height-18{line-height:1.125rem;}.line-height-19{line-height:1.1875rem;}.line-height-20{line-height:1.25rem;}.line-height-21{line-height:1.3125rem;}.line-height-22{line-height:1.375rem;}.line-height-23{line-height:1.4375rem;}.line-height-24{line-height:1.5rem;}.line-height-25{line-height:1.5625rem;}.line-height-26{line-height:1.625rem;}.line-height-27{line-height:1.6875rem;}.line-height-28{line-height:1.75rem;}.line-height-29{line-height:1.8125rem;}.line-height-30{line-height:1.875rem;}.line-height-31{line-height:1.9375rem;}.line-height-32{line-height:2rem;}.line-height-33{line-height:2.0625rem;}.line-height-34{line-height:2.125rem;}.line-height-35{line-height:2.1875rem;}.line-height-36{line-height:2.25rem;}.line-height-37{line-height:2.3125rem;}.line-height-38{line-height:2.375rem;}.line-height-39{line-height:2.4375rem;}.line-height-40{line-height:2.5rem;}.line-height-41{line-height:2.5625rem;}.line-height-42{line-height:2.625rem;}.line-height-43{line-height:2.6875rem;}.line-height-44{line-height:2.75rem;}.line-height-45{line-height:2.8125rem;}.line-height-46{line-height:2.875rem;}.line-height-47{line-height:2.9375rem;}.line-height-48{line-height:3rem;}.line-height-49{line-height:3.0625rem;}.line-height-50{line-height:3.125rem;}.line-height-51{line-height:3.1875rem;}.line-height-52{line-height:3.25rem;}.line-height-53{line-height:3.3125rem;}.line-height-54{line-height:3.375rem;}.line-height-55{line-height:3.4375rem;}.line-height-56{line-height:3.5rem;}.line-height-57{line-height:3.5625rem;}.line-height-58{line-height:3.625rem;}.line-height-59{line-height:3.6875rem;}.line-height-60{line-height:3.75rem;}.line-height-61{line-height:3.8125rem;}.line-height-62{line-height:3.875rem;}.line-height-63{line-height:3.9375rem;}.line-height-64{line-height:4rem;}.line-height-65{line-height:4.0625rem;}.line-height-66{line-height:4.125rem;}.line-height-67{line-height:4.1875rem;}.line-height-68{line-height:4.25rem;}.line-height-69{line-height:4.3125rem;}.line-height-70{line-height:4.375rem;}.line-height-71{line-height:4.4375rem;}.line-height-72{line-height:4.5rem;}.line-height-73{line-height:4.5625rem;}.line-height-74{line-height:4.625rem;}.line-height-75{line-height:4.6875rem;}.line-height-76{line-height:4.75rem;}.line-height-77{line-height:4.8125rem;}.line-height-78{line-height:4.875rem;}.line-height-79{line-height:4.9375rem;}.line-height-80{line-height:5rem;}.line-height-81{line-height:5.0625rem;}.line-height-82{line-height:5.125rem;}.line-height-83{line-height:5.1875rem;}.line-height-84{line-height:5.25rem;}.line-height-85{line-height:5.3125rem;}.line-height-86{line-height:5.375rem;}.line-height-87{line-height:5.4375rem;}.line-height-88{line-height:5.5rem;}.line-height-89{line-height:5.5625rem;}.line-height-90{line-height:5.625rem;}.line-height-91{line-height:5.6875rem;}.line-height-92{line-height:5.75rem;}.line-height-93{line-height:5.8125rem;}.line-height-94{line-height:5.875rem;}.line-height-95{line-height:5.9375rem;}.line-height-96{line-height:6rem;}.line-height-97{line-height:6.0625rem;}.line-height-98{line-height:6.125rem;}.line-height-99{line-height:6.1875rem;}.line-height-100{line-height:6.25rem;}.line-height-101{line-height:6.3125rem;}.line-height-102{line-height:6.375rem;}.line-height-103{line-height:6.4375rem;}.line-height-104{line-height:6.5rem;}.line-height-105{line-height:6.5625rem;}.line-height-106{line-height:6.625rem;}.line-height-107{line-height:6.6875rem;}.line-height-108{line-height:6.75rem;}.line-height-109{line-height:6.8125rem;}.line-height-110{line-height:6.875rem;}.line-height-111{line-height:6.9375rem;}.line-height-112{line-height:7rem;}.line-height-113{line-height:7.0625rem;}.line-height-114{line-height:7.125rem;}.line-height-115{line-height:7.1875rem;}.line-height-116{line-height:7.25rem;}.line-height-117{line-height:7.3125rem;}.line-height-118{line-height:7.375rem;}.line-height-119{line-height:7.4375rem;}.line-height-120{line-height:7.5rem;}.line-height-121{line-height:7.5625rem;}.line-height-122{line-height:7.625rem;}.line-height-123{line-height:7.6875rem;}.line-height-124{line-height:7.75rem;}.line-height-125{line-height:7.8125rem;}.line-height-126{line-height:7.875rem;}.line-height-127{line-height:7.9375rem;}.line-height-128{line-height:8rem;}.line-height-129{line-height:8.0625rem;}.line-height-130{line-height:8.125rem;}.line-height-131{line-height:8.1875rem;}.line-height-132{line-height:8.25rem;}.line-height-133{line-height:8.3125rem;}.line-height-134{line-height:8.375rem;}.line-height-135{line-height:8.4375rem;}.line-height-136{line-height:8.5rem;}.line-height-137{line-height:8.5625rem;}.line-height-138{line-height:8.625rem;}.line-height-139{line-height:8.6875rem;}.line-height-140{line-height:8.75rem;}.line-height-141{line-height:8.8125rem;}.line-height-142{line-height:8.875rem;}.line-height-143{line-height:8.9375rem;}.line-height-144{line-height:9rem;}.line-height-145{line-height:9.0625rem;}.line-height-146{line-height:9.125rem;}.line-height-147{line-height:9.1875rem;}.line-height-148{line-height:9.25rem;}.line-height-149{line-height:9.3125rem;}.line-height-150{line-height:9.375rem;}.line-height-151{line-height:9.4375rem;}.line-height-152{line-height:9.5rem;}.line-height-153{line-height:9.5625rem;}.line-height-154{line-height:9.625rem;}.line-height-155{line-height:9.6875rem;}.line-height-156{line-height:9.75rem;}.line-height-157{line-height:9.8125rem;}.line-height-158{line-height:9.875rem;}.line-height-159{line-height:9.9375rem;}.line-height-160{line-height:10rem;}.line-height-161{line-height:10.0625rem;}.line-height-162{line-height:10.125rem;}.line-height-163{line-height:10.1875rem;}.line-height-164{line-height:10.25rem;}.line-height-165{line-height:10.3125rem;}.line-height-166{line-height:10.375rem;}.line-height-167{line-height:10.4375rem;}.line-height-168{line-height:10.5rem;}.line-height-169{line-height:10.5625rem;}.line-height-170{line-height:10.625rem;}.line-height-171{line-height:10.6875rem;}.line-height-172{line-height:10.75rem;}.line-height-173{line-height:10.8125rem;}.line-height-174{line-height:10.875rem;}.line-height-175{line-height:10.9375rem;}.line-height-176{line-height:11rem;}.line-height-177{line-height:11.0625rem;}.line-height-178{line-height:11.125rem;}.line-height-179{line-height:11.1875rem;}.line-height-180{line-height:11.25rem;}.line-height-181{line-height:11.3125rem;}.line-height-182{line-height:11.375rem;}.line-height-183{line-height:11.4375rem;}.line-height-184{line-height:11.5rem;}.line-height-185{line-height:11.5625rem;}.line-height-186{line-height:11.625rem;}.line-height-187{line-height:11.6875rem;}.line-height-188{line-height:11.75rem;}.line-height-189{line-height:11.8125rem;}.line-height-190{line-height:11.875rem;}.line-height-191{line-height:11.9375rem;}.line-height-192{line-height:12rem;}.line-height-193{line-height:12.0625rem;}.line-height-194{line-height:12.125rem;}.line-height-195{line-height:12.1875rem;}.line-height-196{line-height:12.25rem;}.line-height-197{line-height:12.3125rem;}.line-height-198{line-height:12.375rem;}.line-height-199{line-height:12.4375rem;}.line-height-200{line-height:12.5rem;}.line-height-201{line-height:12.5625rem;}.line-height-202{line-height:12.625rem;}.line-height-203{line-height:12.6875rem;}.line-height-204{line-height:12.75rem;}.line-height-205{line-height:12.8125rem;}.line-height-206{line-height:12.875rem;}.line-height-207{line-height:12.9375rem;}.line-height-208{line-height:13rem;}.line-height-209{line-height:13.0625rem;}.line-height-210{line-height:13.125rem;}.line-height-211{line-height:13.1875rem;}.line-height-212{line-height:13.25rem;}.line-height-213{line-height:13.3125rem;}.line-height-214{line-height:13.375rem;}.line-height-215{line-height:13.4375rem;}.line-height-216{line-height:13.5rem;}.line-height-217{line-height:13.5625rem;}.line-height-218{line-height:13.625rem;}.line-height-219{line-height:13.6875rem;}.line-height-220{line-height:13.75rem;}.line-height-221{line-height:13.8125rem;}.line-height-222{line-height:13.875rem;}.line-height-223{line-height:13.9375rem;}.line-height-224{line-height:14rem;}.line-height-225{line-height:14.0625rem;}.line-height-226{line-height:14.125rem;}.line-height-227{line-height:14.1875rem;}.line-height-228{line-height:14.25rem;}.line-height-229{line-height:14.3125rem;}.line-height-230{line-height:14.375rem;}.line-height-231{line-height:14.4375rem;}.line-height-232{line-height:14.5rem;}.line-height-233{line-height:14.5625rem;}.line-height-234{line-height:14.625rem;}.line-height-235{line-height:14.6875rem;}.line-height-236{line-height:14.75rem;}.line-height-237{line-height:14.8125rem;}.line-height-238{line-height:14.875rem;}.line-height-239{line-height:14.9375rem;}.line-height-240{line-height:15rem;}.line-height-241{line-height:15.0625rem;}.line-height-242{line-height:15.125rem;}.line-height-243{line-height:15.1875rem;}.line-height-244{line-height:15.25rem;}.line-height-245{line-height:15.3125rem;}.line-height-246{line-height:15.375rem;}.line-height-247{line-height:15.4375rem;}.line-height-248{line-height:15.5rem;}.line-height-249{line-height:15.5625rem;}.line-height-250{line-height:15.625rem;}.line-height-251{line-height:15.6875rem;}.line-height-252{line-height:15.75rem;}.line-height-253{line-height:15.8125rem;}.line-height-254{line-height:15.875rem;}.line-height-255{line-height:15.9375rem;}.line-height-256{line-height:16rem;}.line-height-257{line-height:16.0625rem;}.line-height-258{line-height:16.125rem;}.line-height-259{line-height:16.1875rem;}.line-height-260{line-height:16.25rem;}.line-height-261{line-height:16.3125rem;}.line-height-262{line-height:16.375rem;}.line-height-263{line-height:16.4375rem;}.line-height-264{line-height:16.5rem;}.line-height-265{line-height:16.5625rem;}.line-height-266{line-height:16.625rem;}.line-height-267{line-height:16.6875rem;}.line-height-268{line-height:16.75rem;}.line-height-269{line-height:16.8125rem;}.line-height-270{line-height:16.875rem;}.line-height-271{line-height:16.9375rem;}.line-height-272{line-height:17rem;}.line-height-273{line-height:17.0625rem;}.line-height-274{line-height:17.125rem;}.line-height-275{line-height:17.1875rem;}.line-height-276{line-height:17.25rem;}.line-height-277{line-height:17.3125rem;}.line-height-278{line-height:17.375rem;}.line-height-279{line-height:17.4375rem;}.line-height-280{line-height:17.5rem;}.line-height-281{line-height:17.5625rem;}.line-height-282{line-height:17.625rem;}.line-height-283{line-height:17.6875rem;}.line-height-284{line-height:17.75rem;}.line-height-285{line-height:17.8125rem;}.line-height-286{line-height:17.875rem;}.line-height-287{line-height:17.9375rem;}.line-height-288{line-height:18rem;}.line-height-289{line-height:18.0625rem;}.line-height-290{line-height:18.125rem;}.line-height-291{line-height:18.1875rem;}.line-height-292{line-height:18.25rem;}.line-height-293{line-height:18.3125rem;}.line-height-294{line-height:18.375rem;}.line-height-295{line-height:18.4375rem;}.line-height-296{line-height:18.5rem;}.line-height-297{line-height:18.5625rem;}.line-height-298{line-height:18.625rem;}.line-height-299{line-height:18.6875rem;}.line-height-300{line-height:18.75rem;}

/* Spacer Dimensions {1-300} */
.spacer-1{height:0.0625rem;}.spacer-2{height:0.125rem;}.spacer-3{height:0.1875rem;}.spacer-4{height:0.25rem;}.spacer-5{height:0.3125rem;}.spacer-6{height:0.375rem;}.spacer-7{height:0.4375rem;}.spacer-8{height:0.5rem;}.spacer-9{height:0.5625rem;}.spacer-10{height:0.625rem;}.spacer-11{height:0.6875rem;}.spacer-12{height:0.75rem;}.spacer-13{height:0.8125rem;}.spacer-14{height:0.875rem;}.spacer-15{height:0.9375rem;}.spacer-16{height:1rem;}.spacer-17{height:1.0625rem;}.spacer-18{height:1.125rem;}.spacer-19{height:1.1875rem;}.spacer-20{height:1.25rem;}.spacer-21{height:1.3125rem;}.spacer-22{height:1.375rem;}.spacer-23{height:1.4375rem;}.spacer-24{height:1.5rem;}.spacer-25{height:1.5625rem;}.spacer-26{height:1.625rem;}.spacer-27{height:1.6875rem;}.spacer-28{height:1.75rem;}.spacer-29{height:1.8125rem;}.spacer-30{height:1.875rem;}.spacer-31{height:1.9375rem;}.spacer-32{height:2rem;}.spacer-33{height:2.0625rem;}.spacer-34{height:2.125rem;}.spacer-35{height:2.1875rem;}.spacer-36{height:2.25rem;}.spacer-37{height:2.3125rem;}.spacer-38{height:2.375rem;}.spacer-39{height:2.4375rem;}.spacer-40{height:2.5rem;}.spacer-41{height:2.5625rem;}.spacer-42{height:2.625rem;}.spacer-43{height:2.6875rem;}.spacer-44{height:2.75rem;}.spacer-45{height:2.8125rem;}.spacer-46{height:2.875rem;}.spacer-47{height:2.9375rem;}.spacer-48{height:3rem;}.spacer-49{height:3.0625rem;}.spacer-50{height:3.125rem;}.spacer-51{height:3.1875rem;}.spacer-52{height:3.25rem;}.spacer-53{height:3.3125rem;}.spacer-54{height:3.375rem;}.spacer-55{height:3.4375rem;}.spacer-56{height:3.5rem;}.spacer-57{height:3.5625rem;}.spacer-58{height:3.625rem;}.spacer-59{height:3.6875rem;}.spacer-60{height:3.75rem;}.spacer-61{height:3.8125rem;}.spacer-62{height:3.875rem;}.spacer-63{height:3.9375rem;}.spacer-64{height:4rem;}.spacer-65{height:4.0625rem;}.spacer-66{height:4.125rem;}.spacer-67{height:4.1875rem;}.spacer-68{height:4.25rem;}.spacer-69{height:4.3125rem;}.spacer-70{height:4.375rem;}.spacer-71{height:4.4375rem;}.spacer-72{height:4.5rem;}.spacer-73{height:4.5625rem;}.spacer-74{height:4.625rem;}.spacer-75{height:4.6875rem;}.spacer-76{height:4.75rem;}.spacer-77{height:4.8125rem;}.spacer-78{height:4.875rem;}.spacer-79{height:4.9375rem;}.spacer-80{height:5rem;}.spacer-81{height:5.0625rem;}.spacer-82{height:5.125rem;}.spacer-83{height:5.1875rem;}.spacer-84{height:5.25rem;}.spacer-85{height:5.3125rem;}.spacer-86{height:5.375rem;}.spacer-87{height:5.4375rem;}.spacer-88{height:5.5rem;}.spacer-89{height:5.5625rem;}.spacer-90{height:5.625rem;}.spacer-91{height:5.6875rem;}.spacer-92{height:5.75rem;}.spacer-93{height:5.8125rem;}.spacer-94{height:5.875rem;}.spacer-95{height:5.9375rem;}.spacer-96{height:6rem;}.spacer-97{height:6.0625rem;}.spacer-98{height:6.125rem;}.spacer-99{height:6.1875rem;}.spacer-100{height:6.25rem;}.spacer-101{height:6.3125rem;}.spacer-102{height:6.375rem;}.spacer-103{height:6.4375rem;}.spacer-104{height:6.5rem;}.spacer-105{height:6.5625rem;}.spacer-106{height:6.625rem;}.spacer-107{height:6.6875rem;}.spacer-108{height:6.75rem;}.spacer-109{height:6.8125rem;}.spacer-110{height:6.875rem;}.spacer-111{height:6.9375rem;}.spacer-112{height:7rem;}.spacer-113{height:7.0625rem;}.spacer-114{height:7.125rem;}.spacer-115{height:7.1875rem;}.spacer-116{height:7.25rem;}.spacer-117{height:7.3125rem;}.spacer-118{height:7.375rem;}.spacer-119{height:7.4375rem;}.spacer-120{height:7.5rem;}.spacer-121{height:7.5625rem;}.spacer-122{height:7.625rem;}.spacer-123{height:7.6875rem;}.spacer-124{height:7.75rem;}.spacer-125{height:7.8125rem;}.spacer-126{height:7.875rem;}.spacer-127{height:7.9375rem;}.spacer-128{height:8rem;}.spacer-129{height:8.0625rem;}.spacer-130{height:8.125rem;}.spacer-131{height:8.1875rem;}.spacer-132{height:8.25rem;}.spacer-133{height:8.3125rem;}.spacer-134{height:8.375rem;}.spacer-135{height:8.4375rem;}.spacer-136{height:8.5rem;}.spacer-137{height:8.5625rem;}.spacer-138{height:8.625rem;}.spacer-139{height:8.6875rem;}.spacer-140{height:8.75rem;}.spacer-141{height:8.8125rem;}.spacer-142{height:8.875rem;}.spacer-143{height:8.9375rem;}.spacer-144{height:9rem;}.spacer-145{height:9.0625rem;}.spacer-146{height:9.125rem;}.spacer-147{height:9.1875rem;}.spacer-148{height:9.25rem;}.spacer-149{height:9.3125rem;}.spacer-150{height:9.375rem;}.spacer-151{height:9.4375rem;}.spacer-152{height:9.5rem;}.spacer-153{height:9.5625rem;}.spacer-154{height:9.625rem;}.spacer-155{height:9.6875rem;}.spacer-156{height:9.75rem;}.spacer-157{height:9.8125rem;}.spacer-158{height:9.875rem;}.spacer-159{height:9.9375rem;}.spacer-160{height:10rem;}.spacer-161{height:10.0625rem;}.spacer-162{height:10.125rem;}.spacer-163{height:10.1875rem;}.spacer-164{height:10.25rem;}.spacer-165{height:10.3125rem;}.spacer-166{height:10.375rem;}.spacer-167{height:10.4375rem;}.spacer-168{height:10.5rem;}.spacer-169{height:10.5625rem;}.spacer-170{height:10.625rem;}.spacer-171{height:10.6875rem;}.spacer-172{height:10.75rem;}.spacer-173{height:10.8125rem;}.spacer-174{height:10.875rem;}.spacer-175{height:10.9375rem;}.spacer-176{height:11rem;}.spacer-177{height:11.0625rem;}.spacer-178{height:11.125rem;}.spacer-179{height:11.1875rem;}.spacer-180{height:11.25rem;}.spacer-181{height:11.3125rem;}.spacer-182{height:11.375rem;}.spacer-183{height:11.4375rem;}.spacer-184{height:11.5rem;}.spacer-185{height:11.5625rem;}.spacer-186{height:11.625rem;}.spacer-187{height:11.6875rem;}.spacer-188{height:11.75rem;}.spacer-189{height:11.8125rem;}.spacer-190{height:11.875rem;}.spacer-191{height:11.9375rem;}.spacer-192{height:12rem;}.spacer-193{height:12.0625rem;}.spacer-194{height:12.125rem;}.spacer-195{height:12.1875rem;}.spacer-196{height:12.25rem;}.spacer-197{height:12.3125rem;}.spacer-198{height:12.375rem;}.spacer-199{height:12.4375rem;}.spacer-200{height:12.5rem;}.spacer-201{height:12.5625rem;}.spacer-202{height:12.625rem;}.spacer-203{height:12.6875rem;}.spacer-204{height:12.75rem;}.spacer-205{height:12.8125rem;}.spacer-206{height:12.875rem;}.spacer-207{height:12.9375rem;}.spacer-208{height:13rem;}.spacer-209{height:13.0625rem;}.spacer-210{height:13.125rem;}.spacer-211{height:13.1875rem;}.spacer-212{height:13.25rem;}.spacer-213{height:13.3125rem;}.spacer-214{height:13.375rem;}.spacer-215{height:13.4375rem;}.spacer-216{height:13.5rem;}.spacer-217{height:13.5625rem;}.spacer-218{height:13.625rem;}.spacer-219{height:13.6875rem;}.spacer-220{height:13.75rem;}.spacer-221{height:13.8125rem;}.spacer-222{height:13.875rem;}.spacer-223{height:13.9375rem;}.spacer-224{height:14rem;}.spacer-225{height:14.0625rem;}.spacer-226{height:14.125rem;}.spacer-227{height:14.1875rem;}.spacer-228{height:14.25rem;}.spacer-229{height:14.3125rem;}.spacer-230{height:14.375rem;}.spacer-231{height:14.4375rem;}.spacer-232{height:14.5rem;}.spacer-233{height:14.5625rem;}.spacer-234{height:14.625rem;}.spacer-235{height:14.6875rem;}.spacer-236{height:14.75rem;}.spacer-237{height:14.8125rem;}.spacer-238{height:14.875rem;}.spacer-239{height:14.9375rem;}.spacer-240{height:15rem;}.spacer-241{height:15.0625rem;}.spacer-242{height:15.125rem;}.spacer-243{height:15.1875rem;}.spacer-244{height:15.25rem;}.spacer-245{height:15.3125rem;}.spacer-246{height:15.375rem;}.spacer-247{height:15.4375rem;}.spacer-248{height:15.5rem;}.spacer-249{height:15.5625rem;}.spacer-250{height:15.625rem;}.spacer-251{height:15.6875rem;}.spacer-252{height:15.75rem;}.spacer-253{height:15.8125rem;}.spacer-254{height:15.875rem;}.spacer-255{height:15.9375rem;}.spacer-256{height:16rem;}.spacer-257{height:16.0625rem;}.spacer-258{height:16.125rem;}.spacer-259{height:16.1875rem;}.spacer-260{height:16.25rem;}.spacer-261{height:16.3125rem;}.spacer-262{height:16.375rem;}.spacer-263{height:16.4375rem;}.spacer-264{height:16.5rem;}.spacer-265{height:16.5625rem;}.spacer-266{height:16.625rem;}.spacer-267{height:16.6875rem;}.spacer-268{height:16.75rem;}.spacer-269{height:16.8125rem;}.spacer-270{height:16.875rem;}.spacer-271{height:16.9375rem;}.spacer-272{height:17rem;}.spacer-273{height:17.0625rem;}.spacer-274{height:17.125rem;}.spacer-275{height:17.1875rem;}.spacer-276{height:17.25rem;}.spacer-277{height:17.3125rem;}.spacer-278{height:17.375rem;}.spacer-279{height:17.4375rem;}.spacer-280{height:17.5rem;}.spacer-281{height:17.5625rem;}.spacer-282{height:17.625rem;}.spacer-283{height:17.6875rem;}.spacer-284{height:17.75rem;}.spacer-285{height:17.8125rem;}.spacer-286{height:17.875rem;}.spacer-287{height:17.9375rem;}.spacer-288{height:18rem;}.spacer-289{height:18.0625rem;}.spacer-290{height:18.125rem;}.spacer-291{height:18.1875rem;}.spacer-292{height:18.25rem;}.spacer-293{height:18.3125rem;}.spacer-294{height:18.375rem;}.spacer-295{height:18.4375rem;}.spacer-296{height:18.5rem;}.spacer-297{height:18.5625rem;}.spacer-298{height:18.625rem;}.spacer-299{height:18.6875rem;}.spacer-300{height:18.75rem;}

/*
var max = 301;
var text = '';
for (var i = 1; i < max; i++) {
    text += '.margin-horizontal-' + i + '{margin-left:' + ream.get('font').remCalc(i) + ';margin-right:' + ream.get('font').remCalc(i) + '}';
}
console.log(text);
*/

/* Cursor */
.cursor-wait { cursor:wait; }
.cursor-pointer { cursor:pointer; }
.cursor-default { cursor:default; }
.cursor-move { cursor:move; }

/* Helper Classes */
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.uppercase { text-transform: uppercase !important; }
.float-left { float: left; }
.float-right { float: right; }
.float-none { float: none; }
.position-relative { position: relative; }
.position-fixed { position: fixed; }
.position-absolute { position: absolute; }
.border-solid { border: 0.063rem solid #e6e6e6; }
.border-dashed { border: 0.063rem dashed #e6e6e6; }
.no-margin { margin: 0 !important; }
.no-margin-left { margin-left: 0 !important; }
.no-margin-right { margin-right: 0 !important; }
.no-margin-top { margin-top: 0 !important; }
.no-margin-bottom { margin-bottom: 0 !important; }
.no-padding { padding: 0 !important; }
.no-padding-left { padding-left: 0 !important; }
.no-padding-right { padding-right: 0 !important; }
.no-padding-top { padding-top: 0 !important; }
.no-padding-bottom { padding-bottom: 0 !important; }
.no-border { border: none !important; }
.no-top-border { border-top: none !important; }
.no-bottom-border { border-bottom: none !important; }
.border-bottom-divider { border-bottom: 0.063rem solid #A0A0A0; }
.no-box-shadow { box-shadow: none !important; }
.display-none { display: none; }
.display-block { display: block; }
.display-inline { display: inline; }
.display-inline-block { display: -moz-inline-stack !important; display: inline-block !important; display: inline !important; zoom:1 !important; }
.center-block { display: block; margin-right: auto; margin-left: auto; }
.visibility-visible { visibility:visible; }
.visibility-hidden { visibility:hidden; }
.font-weight-bold { font-weight: 700 !important; }
.font-weight-semibold { font-weight: 600 !important; }
.font-weight-medium { font-weight: 500 !important; }
.font-weight-normal { font-weight: 400 !important; }
.font-weight-light { font-weight: 300 !important; }
.font-style-italic { font-style: italic; }
.text-decoration-none { text-decoration: none; }
.text-decoration-line-through { text-decoration: line-through; }
.text-decoration-underline { text-decoration: underline; }
.text-decoration-through { text-decoration: through; }
.text-uppercase { text-transform: uppercase!important; }
.text-muted { color: #798087!important; }
.text-custom { color: #64b0f2; }
.text-primary { color: #1f28f7 !important; }
.text-success { color: #8dc63f !important; }
.text-info { color: #40bbea !important; }
.text-warning { color: #ffba00 !important; }
.text-danger { color: #e33244 !important; }
.text-purple { color: #673ab7; }
.text-pink { color: #ff7aa3; }
.text-dark { color: #383838; }
.text-white { color: #ffffff; }
.bg-primary { background-color: #1f28f7; }
.bg-success { background-color: #8dc63f; }
.bg-info { background-color: #40bbea; }
.bg-warning { background-color: #ffba00; }
.bg-danger { background-color: #e33244; }
.bg-purple { background-color: #673ab7; }
.bg-pink { background-color: #ff7aa3; }
.bg-dark { background-color: #2b3d51; }
.no-cursor { cursor: default; }
.hide { display: none; }
.hidden { left: -99999px; position: absolute !important; }
.antialiased { -webkit-font-smoothing: antialiased; }
.center-block { display: block;margin-left: auto;margin-right: auto; }
.img-circle {border-radius: 50%;}
.border-radius{border-radius: .25rem;}
.box-shadow {box-shadow: 0 0.313rem 1.25rem rgba(0, 0, 0, 0.05);}
a.noTransition {-moz-transition: none;-webkit-transition: none;-o-transition: color 0 ease-in;transition: none;}
p {margin:0 0 0.938rem;line-height:1.8;font-size:1rem;font-weight:400;}
p:last-child{margin-bottom:0 !important;}
h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,
.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,
h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,
.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small {display: block; font-weight: normal; color: #777;}
h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small {font-size: 65%;}
h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small {font-size: 75%;}
hr {border: 0; border-top: 0.063rem solid #A0A0A0;}
div.clear {clear:both;}
.no-overflow{overflow: initial !important;}
.clearfix:before,.clearfix:after{content: " ";display: table}.clearfix:after{clear: both}
.first-child {margin-top: 0 !important;}
.last-child {margin-bottom: 0 !important;}
.vertical-middle{display:table;}
.vertical-middle-child{display:table-cell;vertical-align:middle;}
.image-center{position:absolute;top:0;right:0;bottom:0;left:0;display:inline-block;border:none;margin:auto;}
ul.list-style{margin:0 0 0.938rem 1.125rem;}
ul.list-style.list-style-disc{list-style-type:disc;}
ul.list-style li{margin:0 0 0.625rem 0;}
ul.list-style li:last-child{margin-bottom:0;}
.hover-scale {transition: 0.2s linear;}
.hover-scale:hover {transform: scale(1.02);}
.grayscale {filter: grayscale(1);}
.grayscale,.hover-grayscale {transition: 0.2s linear;}
.hover-grayscale:hover {filter: grayscale(1);}
.hover-ungrayscale:hover {filter: grayscale(0);}

/* Image Position */
img.alignleft {
    float: left;
    margin-right: 0.938rem;
    margin-bottom: 0.625rem;
}
img.alignright {
    float: right;
    margin-left: 0.938rem;
    margin-bottom: 0.625rem;
}
img.aligncenter {
	display: block;
    margin: 0 auto 0.938rem auto;
}
/* Responsive - Mobile */
@media screen and (max-width: 992px) {
	.mobile-hide {
		display: none !important;
	}
	.mobile-visible {
		display: inline-block !important;
	}
	.mobile-text-left {
		text-align: left !important;
	}
	.mobile-text-right {
		text-align: right !important;
	}
	.mobile-text-center {
		text-align: center !important;
	}
    .flex-mobile-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .overflow-x-mobile-scroll {
        overflow-x: auto;
    }
}

/* Responsive - Tablet */
@media only screen and (min-width: 992px) and (max-width: 1024px) {
	.tablet-hide {
		display: none !important;
	}
	.tablet-visible {
		display: inline-block !important;
	}
	.tablet-text-left {
		text-align: left !important;
	}
	.tablet-text-right {
		text-align: right !important;
	}
	.tablet-text-center {
		text-align: center !important;
	}
}

/* Responsive - Desktop */
@media only screen and (min-width: 1024px) {
	.desktop-hide {
		display: none !important;
	}
	.desktop-visible {
		display: inline-block !important;
	}
	.text-lg-left {
		text-align: left !important;
	}
	.text-lg-right {
		text-align: right !important;
	}
	.text-lg-center {
		text-align: center !important;
	}
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}
body {
    margin: 0;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased
}
/* html::-webkit-scrollbar-track {
	background-color: transparent;
}
html::-webkit-scrollbar {
	width: 8px;
}
html::-webkit-scrollbar-thumb {
	background-color: #555555;
	border-radius: 5px;
}
html::-webkit-scrollbar-thumb:hover {
	background-color: #666666;
} */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}
audio:not([controls]) {
    display: none;
    height: 0
}
[hidden],
template {
    display: none
}
a {
    text-decoration: none;
    background-color: transparent;
    -webkit-touch-callout: none
}
a:active,
a:hover,
a:focus {
    outline: 0
}
abbr[title] {
    border-bottom: 1px dotted
}
b,
strong {
    font-weight: 600;
}
dfn {
    font-style: italic
}
mark {
    background: #ff0;
    color: #000
}
small {
    font-size: 80%
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}
sup {
    top: -0.5em
}
sub {
    bottom: -0.25em
}
img {
    /* Only render when in viewport */
    /* content-visibility: visible; */
    max-width: 100%;
    height: auto;
    border: 0
}
svg:not(:root) {
    overflow: hidden
}
hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}
pre {
    overflow: auto
}
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}
button {
    overflow: visible
}
button,
select {
    text-transform: none
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: none;
    background-color: transparent;
    -webkit-appearance: none;
    cursor: pointer
}
button[disabled],
html input[disabled] {
    cursor: default
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}
input {
    line-height: normal
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto
}
input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}
input::-ms-clear {
    display: none;
}
/* https://stackoverflow.com/questions/58263122/google-chrome-autofill-background-color-change */
input:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 50px white inset;
}
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em
}
legend {
    border: 0;
    padding: 0
}
textarea {
    overflow: auto
}
optgroup {
    font-weight: 700
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
td,
th {
    padding: 0
}
ul {
    list-style: none
}
iframe {
    border: 0;
    box-shadow: 0px 8px 15px 4px rgb(0 0 0 / 5%);
    margin-bottom: -5px;
    overflow: hidden;
}

button:focus,
a:focus, a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    outline: none !important;
}

select:-moz-focusring {
    outline: none !important;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 1.25rem;
    font-size: 1.313rem;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 0.063rem solid #e5e5e5;
}

input[type="file"] {
	border: medium none;
    box-shadow: none;
    cursor: pointer;
    margin: 0;
    max-width: none;
    padding: 0;
    width: auto;
	height: 1.938rem;
	display: inline-block;
}

input[type="search"] {
    box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 0.25rem 0 0;
    margin-top: 0.063rem \9;
    line-height: normal;
}

input[type="file"] {
    display: block;
}

input[type="range"] {
    display: block;
    width: 100%;
}

select[multiple],
select[size] {
    height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted;
    outline: 0 auto -webkit-focus-ring-color;
    outline-offset: -0.125rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

input[type="date"]::-webkit-datetime-edit-year-field:not([aria-valuenow]),
input[type="date"]::-webkit-datetime-edit-month-field:not([aria-valuenow]),
input[type="date"]::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
    color: transparent;
}

input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
}

select {
    cursor: pointer;
}

output {
    display: block;
    padding-top: 0.438rem;
    font-size: 0.875rem;
    line-height: 1.42857143;
    color: #666666;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(2.9rem + .25rem);
    padding: .375rem .75rem;
    font-size: 1em;
	font-weight: 300;
    color: #495057;
    background-color: #ffffff;
    border: solid 0.063rem #dddddd;
    border-radius: .25rem;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: #bdc5c9;
    outline: 0;
	background-color:#ffffff;
}

.form-control::-moz-placeholder {
    color: #999999;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999999;
}

.form-control::-webkit-input-placeholder {
    color: #999999;
}

.has-search .form-control {
    padding-left: 2.612rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.912rem;
    height: 3.246rem;
    line-height: 3.246rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.form-control-desc {
    color: #495057;
    font-size: 0.813rem;
    font-style: italic;
    margin: 0.125rem 0 0;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1;
}

textarea.form-control {
    height: auto;
	min-height: 6.25rem;
	resize:none;
}

input[type="search"] {
    -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
	input[type="date"],
	input[type="time"],
	input[type="datetime-local"],
	input[type="month"] {
		line-height: 3.25rem;
	}
}

/* Selectbox */
.selectbox {
	position:relative;
	line-height: initial;
}

.selectbox:after {
    content: '';
    position: absolute;
    right: 1.313rem;
    top: 1.008rem;
    width: 1.063rem;
    height: 1.375rem;
    background-size: 1.063rem 1.375rem;
    background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg width='0.688rem' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.822266 1.08789L5.32227 5.58789L9.82227 1.08789' stroke='%2366656B' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.selectbox > select {
    border: 0.063rem solid #dddddd;
    border-radius: 0.625rem;
    box-shadow: none;
	min-width: 2.5rem;
	height: calc(2.9rem + .25rem);
    color: #495057;
    font-size: 0.875rem;
    font-weight: 300;
	padding: .375rem .75rem;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
    text-overflow: '';
	background-color: #ffffff;
}

.selectbox.selectbox-block > select {
	width: 100%;
	display: block;
}

.selectbox > select:focus {
    border-color: #444bf8;
    outline: 0;
    background-color: #ffffff;
}

@media all and (min-width: 0) {
	.selectbox > select {
		background: none\0/;
		padding: 0.313rem\0/;
	}
}

@media screen and (-ms-high-contrast:active), (-ms-high-contrast:none) {
	.selectBox > select {
		padding: 0.313rem 20.313rem 0.313rem 0.313rem;
	}
}

select::-ms-expand {
    display: none;
}

/* Input Icon */
.input-icon {
    position: relative;
}

.input-icon > .form-control {
    padding-left: 2.063rem;
}

.input-icon > i {
    color: #b7b7b7;
    display: block;
    position: absolute;
    margin: 0.375rem 0.125rem 0.25rem 0.625rem;
    z-index: 3;
    width: 10.375rem;
    font-size: 10.375rem;
    text-align: center;
}

.input-icon.input-icon-right > .form-control {
    padding-right: 2.063rem;
    padding-left: 1.125rem;
}

.input-icon.input-icon-right > i {
    right: 0.5rem;
    float: right;
}

/* Form Group */
.form-group {
    margin-bottom: 0.938rem;
}

@media screen and (min-width: 40em) {
	.form-group {
        margin-bottom: 1.25rem;
	}
}

.form-group:before,
.form-group:after {
    content: " ";
    display: table;
}

.form-group:after {
    clear: both;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group .label-control {
	padding-top: 0;
}

.form-group .label-control {
	font-size: 0.875rem;
	font-weight: 600;
	color: #666666;
    margin-bottom: 0.313rem;
	display: inline-block;
	padding-top: 10.313rem;
}

.form-group .label-control.label-control-block {
	display:block;
	width:100%;
}

.form-group.filled,
.form-group.flex.filled .input-inline {
    position: relative;
}

.form-group .label-filled {
    color: #8d8d8d;
    left: .75rem;
    position: absolute;
    pointer-events: none;
    top: 1rem;
    font-size: 1em;
    line-height: initial;
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
}

.form-group.filled [data-filled] {
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.form-group.filled textarea[data-filled] {
    padding-top: 1.25rem;
}

.form-group.filled textarea[data-filled] + label.label-filled {
    top: 1.125rem;
}

.form-group.filled select[data-filled] {
    color: transparent;
}

.form-group.filled select[data-filled]:focus,
.form-group.filled select[data-filled].input-filled {
    color: #495057;
}

.form-group [data-filled]:focus + label.label-filled,
.form-group [data-filled].input-filled + label.label-filled {
    color: #353f45;
    font-size: 1.125rem;
    font-weight: 400;
    left: .75rem;
    top: -0.438rem !important;
    padding: 0 0.375rem;
    background: #fff;
}

.form-group:before,
.form-group:after {
    content: " ";
    display: table;
}

.form-group:after,
.form-group:after {
    clear: both;
}

.form-group.flex {
    display: flex;
}

.form-group.flex .input-inline {
    width: 100%;
    margin-right: 1.25rem;
    flex: 1 0 0;
}

html[dir="Rtl"] .form-group.flex .input-inline {
	margin-right: 0;
    margin-left: 1.25rem;
}

.form-group.flex .input-inline:last-child {
    margin-right: 0;
}

html[dir="Rtl"] .form-group.flex .input-inline:last-child {
    margin-left: 0;
}

@media screen and (max-width: 40em) {
    .form-group.flex {
        display: block;
    }
    .form-group.flex .input-inline {
        margin-right: 0;
        margin-bottom: 0.938rem;
    }
    .form-group.flex .input-inline:last-child {
        margin-bottom: 0;
    }
}

/* Validate Styles */
input.validate-error,
input.validate-error:focus,
select.validate-error,
select.validate-error:focus,
textarea.validate-error,
textarea.validate-error:focus {
	border-color: #d80000;
	background-color: #ffffff;
}

div.validate-error {
	font-size: 0.925rem;
	line-height: 1.5;
    margin: 0.413rem 0 0;
	color: #d80000;
}

div.selectbox-validate-error::after {
	color: #d80000;
}

/* Radio & Checkbox Styles */
.radio,
.checkbox {
    position: relative;
    display: block;
    min-height: 0.5rem;
    margin-bottom: 0.625rem;
}

.radios > .radio:last-child,
.checkboxes > .checkbox:last-child {
    min-height: 1.25rem;
    margin-bottom: 0;
}

.radio label,
.checkbox label {
    cursor: pointer;
    margin-bottom: 0;
    line-height: 1.3;
}

.radio input[type="radio"]:not(.input-radio),
.checkbox input[type="checkbox"]:not(.input-checkbox) {
    position: absolute;
    margin-top: 0.25rem \9;
}

.radio + .radio,
.checkbox + .checkbox {
    margin-top: -0.313rem;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed;
}

.radio-inline.disabled,
.checkbox-inline.disabled {
    cursor: not-allowed;
}

.radio.disabled label,
.checkbox.disabled label {
    cursor: not-allowed;
}

.radio-custom,
.checkbox-custom {
    display: block;
}

.radio-custom input[type=radio],
.checkbox-custom input[type=checkbox] {
    position: absolute;
    left: -9999em;
}

.radio-custom > label,
.checkbox-custom > label {
    position: relative;
    padding-left: 1.875rem;
}

.radio-custom > label:before,
.checkbox-custom > label:before {
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    left: 0;
    top: 0;
    margin: 0;
    content: '';
    border: 0.063rem solid #dddddd;
    border-radius: .25rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 50% 50%;
    background-size: 50% 50%;
}

.radio-custom > label,
.radio-custom > label:before {
    border-radius: 100%;
}

.radio-custom > input[type=radio]:checked + label:before,
.checkbox-custom > input[type=checkbox]:checked + label:before {
    color: #333333;
}

.radio-custom > input[type=radio]:disabled + label:before,
.checkbox-custom > input[type=checkbox]:disabled + label:before {
    color: #bfbfbf;
}

.radio-custom > input[type=radio]:checked + label:before {
    background-color: #1f28f7;
}

.radio-custom > input[type=radio]:disabled + label:before {
    background-color: #eeeeee;
}

.checkbox-custom > input[type=checkbox]:checked + label:before {
    border-color: #1f28f7;
    background-color: #1f28f7;
}

.checkbox-custom > input[type=checkbox]:disabled + label:before {
    background-color: #eeeeee;
}

/* Custom Radio & Checkbox Horizontal Styles */
.radios.radio-horizontal .radio,
.checkboxes.checkbox-horizontal .checkbox {
    margin: 0 0.625rem 0.313rem 0;
    display: inline-block;
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group > .custom-select:not(:last-child),
.input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group-append {
    margin-left: -0.063rem;
}

.input-group-append,
.input-group-prepend {
    display: -ms-flexbox;
    display: flex;
}

.input-group > .input-group-append > .button,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .button:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .button,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Button */
.button {
	margin: 0 0.313rem 0 0;
	padding: 0.625rem 1.125rem;
	font-size: 0.875rem;
	font-weight: 700;
    border-width: 0;
	border-style: solid;
	border-color: #c3c6c9;
	border-radius: .25rem;
	position: relative;
	display: inline-flex;
    align-items: center;
	justify-content: center;
	gap: 0.938rem;
    cursor: pointer;
	text-align: center;
	transition: background-color .1s linear, border-color .1s linear;
	color: #666666;
	background-color: #ffffff;
    user-select: none;
}

.button:last-child {
	margin-right: 0;
}

.button:not(.disabled):hover {
	outline: none;
}

.button-loading {
	position: relative;
	cursor: default;
	point-events: none;
	text-shadow: none !important;
	color: transparent !important;
	-webkit-transition: all 0s linear;
	transition: all 0s linear;
}

.button-loading i {
	visibility: hidden;
}

.button-loading:before {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	margin: -0.6em 0 0 -0.6em;
	width: 1.1857em;
	height: 1.1857em;
	border-radius: 500rem;
	border: 0.188rem solid rgba(0, 0, 0, 0.15);
}

.button-loading:after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	margin: -0.6em 0 0 -0.6em;
	width: 1.1857em;
	height: 1.1857em;
	-webkit-animation: button-spin 0.5s linear;
	animation: button-spin 0.5s linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	border-radius: 500rem;
	border-color: #ffffff transparent transparent;
	border-style: solid;
	border-width: 0.188rem;
	box-shadow: 0 0 0 0.063rem transparent;
}

@-webkit-keyframes button-spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes button-spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.button-block {
	width: 100%;
	display: block;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

@media screen and (max-width: 768px) {
	.button-mobile-block {
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

/* Button Icon */
.button i {
	margin: 0;
}

.button i:before {
	font-size: 1.25rem;
}

/* Button Position */
.button.button-left-icon i,
.button.button-right-icon i {
	position: relative;
	font-weight: normal !important;
	/* top: 0.063rem; */
}

.button.text-left.button-right-icon i {
	float: right;
}

.button.text-right.button-left-icon i {
	float: left;
}

.button.text-center.button-left-icon i {
	float: left;
}

.button.button-left-icon i::before,
.button.button-right-icon i::before {
	font-size: 0.875rem;
}

.button.button-small.button-left-icon i::before,
.button.button-small.button-right-icon i::before {
	font-size: 0.875rem;
}

.button.button-medium.button-left-icon i::before,
.button.button-medium.button-right-icon i::before {
	font-size: 1.125rem;
}

.button.button-large.button-left-icon i::before,
.button.button-large.button-right-icon i::before {
	font-size: 1.25rem;
}

/* Button Primary */
.button.button-primary {
    color: #ffffff;
    background: #1f28f7;
    border: 0.063rem solid transparent;
}

.button.button-primary > i:before {
    color: #ffffff;
}

.button.button-primary:hover {
    color: #ffffff;
    background: #1f28f7;
}

.button.button-primary:hover > i:before {
    color: #ffffff;
}

/* Button Primary Outline */
.button.button-primary-outline {
	color: #444bf8;
	border: 0.063rem solid #444bf8;
}

.button.button-primary-outline > i:before {
    color: #444bf8;
}

.button.button-primary-outline:hover {
	color: #ffffff;
	border: 0.063rem solid #444bf8;
    background: #444bf8;
}

.button.button-primary-outline:hover > i {
	color: #ffffff;
}

/* Button Secondary */
.button.button-secondary {
    color: #ffffff;
    background: #121118;
    border: 0.063rem solid transparent;
}

.button.button-secondary > i:before {
    color: #ffffff;
}

.button.button-secondary:hover {
    color: #ffffff;
    background: #fff170;
}

.button.button-secondary:hover > i:before {
    color: #ffffff;
}

/* Button Secondary Outline */
.button.button-secondary-outline {
	color: #121118;
	border: 0.063rem solid #121118;
}

.button.button-secondary-outline > i:before {
    color: #121118;
}

.button.button-secondary-outline:hover {
	color: #ffffff;
	border: 0.063rem solid #121118;
    background: #121118;
}

.button.button-secondary-outline:hover > i:before {
	color: #ffffff;
}

/* Button Disabled */
button.button[disabled]:not(.button-loading),
.button.disabled:not(.button-loading),
.button.button-disabled:not(.button-loading),
.button.button-disabled:not(.button-loading):hover,
.button.button-disabled:not(.button-loading):active,
.button.button-disabled:not(.button-loading):focus {
	cursor: not-allowed !important;
	background-color: #c5c5c5 !important;
	color: #ffffff !important;
	box-shadow: none !important;
}

.button.disabled:not(.button-loading) > i:before,
.button.button-disabled:not(.button-loading) > i:before {
	color: #ffffff;
	opacity: .8;
}

/* Button Badge */
.button .badge {
	margin: 0 0 -0.063rem;
	padding: 0.125rem 0.313rem;
    position: relative;
    top: 0;
	left: 0.188rem;
}

.button .badge > i {
	font-size: 0.688rem;
    margin: 0;
    position: relative;
    top: -0.063rem;
}

/*
* Remix Icon v3.2.0
* https://remixicon.com
* https://github.com/Remix-Design/RemixIcon
*
* Copyright RemixIcon.com
* Released under the Apache License Version 2.0
*
* Date: 2023-04-15
*/

[class^="ic-"], [class*=" ic-"] {
  font-family: 'icon' !important;
  font-weight: normal !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ic-lg { font-size: 1.3333em; line-height: 0.75em; vertical-align: -.0667em; }
.ic-xl { font-size: 1.5em; line-height: 0.6666em; vertical-align: -.075em; }
.ic-xxs { font-size: .5em; }
.ic-xs { font-size: .75em; }
.ic-sm { font-size: .875em }
.ic-1x { font-size: 1em; }
.ic-2x { font-size: 2em; }
.ic-3x { font-size: 3em; }
.ic-4x { font-size: 4em; }
.ic-5x { font-size: 5em; }
.ic-6x { font-size: 6em; }
.ic-7x { font-size: 7em; }
.ic-8x { font-size: 8em; }
.ic-9x { font-size: 9em; }
.ic-10x { font-size: 10em; }
.ic-fw { text-align: center; width: 1.25em; }

.ic-24-hours-fill:before { content: "\ea01"; }
.ic-24-hours-line:before { content: "\ea02"; }
.ic-4k-fill:before { content: "\ea03"; }
.ic-4k-line:before { content: "\ea04"; }
.ic-a-b:before { content: "\ea05"; }
.ic-account-box-fill:before { content: "\ea06"; }
.ic-account-box-line:before { content: "\ea07"; }
.ic-account-circle-fill:before { content: "\ea08"; }
.ic-account-circle-line:before { content: "\ea09"; }
.ic-account-pin-box-fill:before { content: "\ea0a"; }
.ic-account-pin-box-line:before { content: "\ea0b"; }
.ic-account-pin-circle-fill:before { content: "\ea0c"; }
.ic-account-pin-circle-line:before { content: "\ea0d"; }
.ic-add-box-fill:before { content: "\ea0e"; }
.ic-add-box-line:before { content: "\ea0f"; }
.ic-add-circle-fill:before { content: "\ea10"; }
.ic-add-circle-line:before { content: "\ea11"; }
.ic-add-fill:before { content: "\ea12"; }
.ic-add-line:before { content: "\ea13"; }
.ic-admin-fill:before { content: "\ea14"; }
.ic-admin-line:before { content: "\ea15"; }
.ic-advertisement-fill:before { content: "\ea16"; }
.ic-advertisement-line:before { content: "\ea17"; }
.ic-airplay-fill:before { content: "\ea18"; }
.ic-airplay-line:before { content: "\ea19"; }
.ic-alarm-fill:before { content: "\ea1a"; }
.ic-alarm-line:before { content: "\ea1b"; }
.ic-alarm-warning-fill:before { content: "\ea1c"; }
.ic-alarm-warning-line:before { content: "\ea1d"; }
.ic-album-fill:before { content: "\ea1e"; }
.ic-album-line:before { content: "\ea1f"; }
.ic-alert-fill:before { content: "\ea20"; }
.ic-alert-line:before { content: "\ea21"; }
.ic-aliens-fill:before { content: "\ea22"; }
.ic-aliens-line:before { content: "\ea23"; }
.ic-align-bottom:before { content: "\ea24"; }
.ic-align-center:before { content: "\ea25"; }
.ic-align-justify:before { content: "\ea26"; }
.ic-align-left:before { content: "\ea27"; }
.ic-align-right:before { content: "\ea28"; }
.ic-align-top:before { content: "\ea29"; }
.ic-align-vertically:before { content: "\ea2a"; }
.ic-alipay-fill:before { content: "\ea2b"; }
.ic-alipay-line:before { content: "\ea2c"; }
.ic-amazon-fill:before { content: "\ea2d"; }
.ic-amazon-line:before { content: "\ea2e"; }
.ic-anchor-fill:before { content: "\ea2f"; }
.ic-anchor-line:before { content: "\ea30"; }
.ic-ancient-gate-fill:before { content: "\ea31"; }
.ic-ancient-gate-line:before { content: "\ea32"; }
.ic-ancient-pavilion-fill:before { content: "\ea33"; }
.ic-ancient-pavilion-line:before { content: "\ea34"; }
.ic-android-fill:before { content: "\ea35"; }
.ic-android-line:before { content: "\ea36"; }
.ic-angularjs-fill:before { content: "\ea37"; }
.ic-angularjs-line:before { content: "\ea38"; }
.ic-anticlockwise-2-fill:before { content: "\ea39"; }
.ic-anticlockwise-2-line:before { content: "\ea3a"; }
.ic-anticlockwise-fill:before { content: "\ea3b"; }
.ic-anticlockwise-line:before { content: "\ea3c"; }
.ic-app-store-fill:before { content: "\ea3d"; }
.ic-app-store-line:before { content: "\ea3e"; }
.ic-apple-fill:before { content: "\ea3f"; }
.ic-apple-line:before { content: "\ea40"; }
.ic-apps-2-fill:before { content: "\ea41"; }
.ic-apps-2-line:before { content: "\ea42"; }
.ic-apps-fill:before { content: "\ea43"; }
.ic-apps-line:before { content: "\ea44"; }
.ic-archive-drawer-fill:before { content: "\ea45"; }
.ic-archive-drawer-line:before { content: "\ea46"; }
.ic-archive-fill:before { content: "\ea47"; }
.ic-archive-line:before { content: "\ea48"; }
.ic-arrow-down-circle-fill:before { content: "\ea49"; }
.ic-arrow-down-circle-line:before { content: "\ea4a"; }
.ic-arrow-down-fill:before { content: "\ea4b"; }
.ic-arrow-down-line:before { content: "\ea4c"; }
.ic-arrow-down-s-fill:before { content: "\ea4d"; }
.ic-arrow-down-s-line:before { content: "\ea4e"; }
.ic-arrow-drop-down-fill:before { content: "\ea4f"; }
.ic-arrow-drop-down-line:before { content: "\ea50"; }
.ic-arrow-drop-left-fill:before { content: "\ea51"; }
.ic-arrow-drop-left-line:before { content: "\ea52"; }
.ic-arrow-drop-right-fill:before { content: "\ea53"; }
.ic-arrow-drop-right-line:before { content: "\ea54"; }
.ic-arrow-drop-up-fill:before { content: "\ea55"; }
.ic-arrow-drop-up-line:before { content: "\ea56"; }
.ic-arrow-go-back-fill:before { content: "\ea57"; }
.ic-arrow-go-back-line:before { content: "\ea58"; }
.ic-arrow-go-forward-fill:before { content: "\ea59"; }
.ic-arrow-go-forward-line:before { content: "\ea5a"; }
.ic-arrow-left-circle-fill:before { content: "\ea5b"; }
.ic-arrow-left-circle-line:before { content: "\ea5c"; }
.ic-arrow-left-down-fill:before { content: "\ea5d"; }
.ic-arrow-left-down-line:before { content: "\ea5e"; }
.ic-arrow-left-fill:before { content: "\ea5f"; }
.ic-arrow-left-line:before { content: "\ea60"; }
.ic-arrow-left-right-fill:before { content: "\ea61"; }
.ic-arrow-left-right-line:before { content: "\ea62"; }
.ic-arrow-left-s-fill:before { content: "\ea63"; }
.ic-arrow-left-s-line:before { content: "\ea64"; }
.ic-arrow-left-up-fill:before { content: "\ea65"; }
.ic-arrow-left-up-line:before { content: "\ea66"; }
.ic-arrow-right-circle-fill:before { content: "\ea67"; }
.ic-arrow-right-circle-line:before { content: "\ea68"; }
.ic-arrow-right-down-fill:before { content: "\ea69"; }
.ic-arrow-right-down-line:before { content: "\ea6a"; }
.ic-arrow-right-fill:before { content: "\ea6b"; }
.ic-arrow-right-line:before { content: "\ea6c"; }
.ic-arrow-right-s-fill:before { content: "\ea6d"; }
.ic-arrow-right-s-line:before { content: "\ea6e"; }
.ic-arrow-right-up-fill:before { content: "\ea6f"; }
.ic-arrow-right-up-line:before { content: "\ea70"; }
.ic-arrow-up-circle-fill:before { content: "\ea71"; }
.ic-arrow-up-circle-line:before { content: "\ea72"; }
.ic-arrow-up-down-fill:before { content: "\ea73"; }
.ic-arrow-up-down-line:before { content: "\ea74"; }
.ic-arrow-up-fill:before { content: "\ea75"; }
.ic-arrow-up-line:before { content: "\ea76"; }
.ic-arrow-up-s-fill:before { content: "\ea77"; }
.ic-arrow-up-s-line:before { content: "\ea78"; }
.ic-artboard-2-fill:before { content: "\ea79"; }
.ic-artboard-2-line:before { content: "\ea7a"; }
.ic-artboard-fill:before { content: "\ea7b"; }
.ic-artboard-line:before { content: "\ea7c"; }
.ic-article-fill:before { content: "\ea7d"; }
.ic-article-line:before { content: "\ea7e"; }
.ic-aspect-ratio-fill:before { content: "\ea7f"; }
.ic-aspect-ratio-line:before { content: "\ea80"; }
.ic-asterisk:before { content: "\ea81"; }
.ic-at-fill:before { content: "\ea82"; }
.ic-at-line:before { content: "\ea83"; }
.ic-attachment-2:before { content: "\ea84"; }
.ic-attachment-fill:before { content: "\ea85"; }
.ic-attachment-line:before { content: "\ea86"; }
.ic-auction-fill:before { content: "\ea87"; }
.ic-auction-line:before { content: "\ea88"; }
.ic-award-fill:before { content: "\ea89"; }
.ic-award-line:before { content: "\ea8a"; }
.ic-baidu-fill:before { content: "\ea8b"; }
.ic-baidu-line:before { content: "\ea8c"; }
.ic-ball-pen-fill:before { content: "\ea8d"; }
.ic-ball-pen-line:before { content: "\ea8e"; }
.ic-bank-card-2-fill:before { content: "\ea8f"; }
.ic-bank-card-2-line:before { content: "\ea90"; }
.ic-bank-card-fill:before { content: "\ea91"; }
.ic-bank-card-line:before { content: "\ea92"; }
.ic-bank-fill:before { content: "\ea93"; }
.ic-bank-line:before { content: "\ea94"; }
.ic-bar-chart-2-fill:before { content: "\ea95"; }
.ic-bar-chart-2-line:before { content: "\ea96"; }
.ic-bar-chart-box-fill:before { content: "\ea97"; }
.ic-bar-chart-box-line:before { content: "\ea98"; }
.ic-bar-chart-fill:before { content: "\ea99"; }
.ic-bar-chart-grouped-fill:before { content: "\ea9a"; }
.ic-bar-chart-grouped-line:before { content: "\ea9b"; }
.ic-bar-chart-horizontal-fill:before { content: "\ea9c"; }
.ic-bar-chart-horizontal-line:before { content: "\ea9d"; }
.ic-bar-chart-line:before { content: "\ea9e"; }
.ic-barcode-box-fill:before { content: "\ea9f"; }
.ic-barcode-box-line:before { content: "\eaa0"; }
.ic-barcode-fill:before { content: "\eaa1"; }
.ic-barcode-line:before { content: "\eaa2"; }
.ic-barricade-fill:before { content: "\eaa3"; }
.ic-barricade-line:before { content: "\eaa4"; }
.ic-base-station-fill:before { content: "\eaa5"; }
.ic-base-station-line:before { content: "\eaa6"; }
.ic-basketball-fill:before { content: "\eaa7"; }
.ic-basketball-line:before { content: "\eaa8"; }
.ic-battery-2-charge-fill:before { content: "\eaa9"; }
.ic-battery-2-charge-line:before { content: "\eaaa"; }
.ic-battery-2-fill:before { content: "\eaab"; }
.ic-battery-2-line:before { content: "\eaac"; }
.ic-battery-charge-fill:before { content: "\eaad"; }
.ic-battery-charge-line:before { content: "\eaae"; }
.ic-battery-fill:before { content: "\eaaf"; }
.ic-battery-line:before { content: "\eab0"; }
.ic-battery-low-fill:before { content: "\eab1"; }
.ic-battery-low-line:before { content: "\eab2"; }
.ic-battery-saver-fill:before { content: "\eab3"; }
.ic-battery-saver-line:before { content: "\eab4"; }
.ic-battery-share-fill:before { content: "\eab5"; }
.ic-battery-share-line:before { content: "\eab6"; }
.ic-bear-smile-fill:before { content: "\eab7"; }
.ic-bear-smile-line:before { content: "\eab8"; }
.ic-behance-fill:before { content: "\eab9"; }
.ic-behance-line:before { content: "\eaba"; }
.ic-bell-fill:before { content: "\eabb"; }
.ic-bell-line:before { content: "\eabc"; }
.ic-bike-fill:before { content: "\eabd"; }
.ic-bike-line:before { content: "\eabe"; }
.ic-bilibili-fill:before { content: "\eabf"; }
.ic-bilibili-line:before { content: "\eac0"; }
.ic-bill-fill:before { content: "\eac1"; }
.ic-bill-line:before { content: "\eac2"; }
.ic-billiards-fill:before { content: "\eac3"; }
.ic-billiards-line:before { content: "\eac4"; }
.ic-bit-coin-fill:before { content: "\eac5"; }
.ic-bit-coin-line:before { content: "\eac6"; }
.ic-blaze-fill:before { content: "\eac7"; }
.ic-blaze-line:before { content: "\eac8"; }
.ic-bluetooth-connect-fill:before { content: "\eac9"; }
.ic-bluetooth-connect-line:before { content: "\eaca"; }
.ic-bluetooth-fill:before { content: "\eacb"; }
.ic-bluetooth-line:before { content: "\eacc"; }
.ic-blur-off-fill:before { content: "\eacd"; }
.ic-blur-off-line:before { content: "\eace"; }
.ic-body-scan-fill:before { content: "\eacf"; }
.ic-body-scan-line:before { content: "\ead0"; }
.ic-bold:before { content: "\ead1"; }
.ic-book-2-fill:before { content: "\ead2"; }
.ic-book-2-line:before { content: "\ead3"; }
.ic-book-3-fill:before { content: "\ead4"; }
.ic-book-3-line:before { content: "\ead5"; }
.ic-book-fill:before { content: "\ead6"; }
.ic-book-line:before { content: "\ead7"; }
.ic-book-marked-fill:before { content: "\ead8"; }
.ic-book-marked-line:before { content: "\ead9"; }
.ic-book-open-fill:before { content: "\eada"; }
.ic-book-open-line:before { content: "\eadb"; }
.ic-book-read-fill:before { content: "\eadc"; }
.ic-book-read-line:before { content: "\eadd"; }
.ic-booklet-fill:before { content: "\eade"; }
.ic-booklet-line:before { content: "\eadf"; }
.ic-bookmark-2-fill:before { content: "\eae0"; }
.ic-bookmark-2-line:before { content: "\eae1"; }
.ic-bookmark-3-fill:before { content: "\eae2"; }
.ic-bookmark-3-line:before { content: "\eae3"; }
.ic-bookmark-fill:before { content: "\eae4"; }
.ic-bookmark-line:before { content: "\eae5"; }
.ic-boxing-fill:before { content: "\eae6"; }
.ic-boxing-line:before { content: "\eae7"; }
.ic-braces-fill:before { content: "\eae8"; }
.ic-braces-line:before { content: "\eae9"; }
.ic-brackets-fill:before { content: "\eaea"; }
.ic-brackets-line:before { content: "\eaeb"; }
.ic-briefcase-2-fill:before { content: "\eaec"; }
.ic-briefcase-2-line:before { content: "\eaed"; }
.ic-briefcase-3-fill:before { content: "\eaee"; }
.ic-briefcase-3-line:before { content: "\eaef"; }
.ic-briefcase-4-fill:before { content: "\eaf0"; }
.ic-briefcase-4-line:before { content: "\eaf1"; }
.ic-briefcase-5-fill:before { content: "\eaf2"; }
.ic-briefcase-5-line:before { content: "\eaf3"; }
.ic-briefcase-fill:before { content: "\eaf4"; }
.ic-briefcase-line:before { content: "\eaf5"; }
.ic-bring-forward:before { content: "\eaf6"; }
.ic-bring-to-front:before { content: "\eaf7"; }
.ic-broadcast-fill:before { content: "\eaf8"; }
.ic-broadcast-line:before { content: "\eaf9"; }
.ic-brush-2-fill:before { content: "\eafa"; }
.ic-brush-2-line:before { content: "\eafb"; }
.ic-brush-3-fill:before { content: "\eafc"; }
.ic-brush-3-line:before { content: "\eafd"; }
.ic-brush-4-fill:before { content: "\eafe"; }
.ic-brush-4-line:before { content: "\eaff"; }
.ic-brush-fill:before { content: "\eb00"; }
.ic-brush-line:before { content: "\eb01"; }
.ic-bubble-chart-fill:before { content: "\eb02"; }
.ic-bubble-chart-line:before { content: "\eb03"; }
.ic-bug-2-fill:before { content: "\eb04"; }
.ic-bug-2-line:before { content: "\eb05"; }
.ic-bug-fill:before { content: "\eb06"; }
.ic-bug-line:before { content: "\eb07"; }
.ic-building-2-fill:before { content: "\eb08"; }
.ic-building-2-line:before { content: "\eb09"; }
.ic-building-3-fill:before { content: "\eb0a"; }
.ic-building-3-line:before { content: "\eb0b"; }
.ic-building-4-fill:before { content: "\eb0c"; }
.ic-building-4-line:before { content: "\eb0d"; }
.ic-building-fill:before { content: "\eb0e"; }
.ic-building-line:before { content: "\eb0f"; }
.ic-bus-2-fill:before { content: "\eb10"; }
.ic-bus-2-line:before { content: "\eb11"; }
.ic-bus-fill:before { content: "\eb12"; }
.ic-bus-line:before { content: "\eb13"; }
.ic-bus-wifi-fill:before { content: "\eb14"; }
.ic-bus-wifi-line:before { content: "\eb15"; }
.ic-cactus-fill:before { content: "\eb16"; }
.ic-cactus-line:before { content: "\eb17"; }
.ic-cake-2-fill:before { content: "\eb18"; }
.ic-cake-2-line:before { content: "\eb19"; }
.ic-cake-3-fill:before { content: "\eb1a"; }
.ic-cake-3-line:before { content: "\eb1b"; }
.ic-cake-fill:before { content: "\eb1c"; }
.ic-cake-line:before { content: "\eb1d"; }
.ic-calculator-fill:before { content: "\eb1e"; }
.ic-calculator-line:before { content: "\eb1f"; }
.ic-calendar-2-fill:before { content: "\eb20"; }
.ic-calendar-2-line:before { content: "\eb21"; }
.ic-calendar-check-fill:before { content: "\eb22"; }
.ic-calendar-check-line:before { content: "\eb23"; }
.ic-calendar-event-fill:before { content: "\eb24"; }
.ic-calendar-event-line:before { content: "\eb25"; }
.ic-calendar-fill:before { content: "\eb26"; }
.ic-calendar-line:before { content: "\eb27"; }
.ic-calendar-todo-fill:before { content: "\eb28"; }
.ic-calendar-todo-line:before { content: "\eb29"; }
.ic-camera-2-fill:before { content: "\eb2a"; }
.ic-camera-2-line:before { content: "\eb2b"; }
.ic-camera-3-fill:before { content: "\eb2c"; }
.ic-camera-3-line:before { content: "\eb2d"; }
.ic-camera-fill:before { content: "\eb2e"; }
.ic-camera-lens-fill:before { content: "\eb2f"; }
.ic-camera-lens-line:before { content: "\eb30"; }
.ic-camera-line:before { content: "\eb31"; }
.ic-camera-off-fill:before { content: "\eb32"; }
.ic-camera-off-line:before { content: "\eb33"; }
.ic-camera-switch-fill:before { content: "\eb34"; }
.ic-camera-switch-line:before { content: "\eb35"; }
.ic-capsule-fill:before { content: "\eb36"; }
.ic-capsule-line:before { content: "\eb37"; }
.ic-car-fill:before { content: "\eb38"; }
.ic-car-line:before { content: "\eb39"; }
.ic-car-washing-fill:before { content: "\eb3a"; }
.ic-car-washing-line:before { content: "\eb3b"; }
.ic-caravan-fill:before { content: "\eb3c"; }
.ic-caravan-line:before { content: "\eb3d"; }
.ic-cast-fill:before { content: "\eb3e"; }
.ic-cast-line:before { content: "\eb3f"; }
.ic-cellphone-fill:before { content: "\eb40"; }
.ic-cellphone-line:before { content: "\eb41"; }
.ic-celsius-fill:before { content: "\eb42"; }
.ic-celsius-line:before { content: "\eb43"; }
.ic-centos-fill:before { content: "\eb44"; }
.ic-centos-line:before { content: "\eb45"; }
.ic-character-recognition-fill:before { content: "\eb46"; }
.ic-character-recognition-line:before { content: "\eb47"; }
.ic-charging-pile-2-fill:before { content: "\eb48"; }
.ic-charging-pile-2-line:before { content: "\eb49"; }
.ic-charging-pile-fill:before { content: "\eb4a"; }
.ic-charging-pile-line:before { content: "\eb4b"; }
.ic-chat-1-fill:before { content: "\eb4c"; }
.ic-chat-1-line:before { content: "\eb4d"; }
.ic-chat-2-fill:before { content: "\eb4e"; }
.ic-chat-2-line:before { content: "\eb4f"; }
.ic-chat-3-fill:before { content: "\eb50"; }
.ic-chat-3-line:before { content: "\eb51"; }
.ic-chat-4-fill:before { content: "\eb52"; }
.ic-chat-4-line:before { content: "\eb53"; }
.ic-chat-check-fill:before { content: "\eb54"; }
.ic-chat-check-line:before { content: "\eb55"; }
.ic-chat-delete-fill:before { content: "\eb56"; }
.ic-chat-delete-line:before { content: "\eb57"; }
.ic-chat-download-fill:before { content: "\eb58"; }
.ic-chat-download-line:before { content: "\eb59"; }
.ic-chat-follow-up-fill:before { content: "\eb5a"; }
.ic-chat-follow-up-line:before { content: "\eb5b"; }
.ic-chat-forward-fill:before { content: "\eb5c"; }
.ic-chat-forward-line:before { content: "\eb5d"; }
.ic-chat-heart-fill:before { content: "\eb5e"; }
.ic-chat-heart-line:before { content: "\eb5f"; }
.ic-chat-history-fill:before { content: "\eb60"; }
.ic-chat-history-line:before { content: "\eb61"; }
.ic-chat-new-fill:before { content: "\eb62"; }
.ic-chat-new-line:before { content: "\eb63"; }
.ic-chat-off-fill:before { content: "\eb64"; }
.ic-chat-off-line:before { content: "\eb65"; }
.ic-chat-poll-fill:before { content: "\eb66"; }
.ic-chat-poll-line:before { content: "\eb67"; }
.ic-chat-private-fill:before { content: "\eb68"; }
.ic-chat-private-line:before { content: "\eb69"; }
.ic-chat-quote-fill:before { content: "\eb6a"; }
.ic-chat-quote-line:before { content: "\eb6b"; }
.ic-chat-settings-fill:before { content: "\eb6c"; }
.ic-chat-settings-line:before { content: "\eb6d"; }
.ic-chat-smile-2-fill:before { content: "\eb6e"; }
.ic-chat-smile-2-line:before { content: "\eb6f"; }
.ic-chat-smile-3-fill:before { content: "\eb70"; }
.ic-chat-smile-3-line:before { content: "\eb71"; }
.ic-chat-smile-fill:before { content: "\eb72"; }
.ic-chat-smile-line:before { content: "\eb73"; }
.ic-chat-upload-fill:before { content: "\eb74"; }
.ic-chat-upload-line:before { content: "\eb75"; }
.ic-chat-voice-fill:before { content: "\eb76"; }
.ic-chat-voice-line:before { content: "\eb77"; }
.ic-check-double-fill:before { content: "\eb78"; }
.ic-check-double-line:before { content: "\eb79"; }
.ic-check-fill:before { content: "\eb7a"; }
.ic-check-line:before { content: "\eb7b"; }
.ic-checkbox-blank-circle-fill:before { content: "\eb7c"; }
.ic-checkbox-blank-circle-line:before { content: "\eb7d"; }
.ic-checkbox-blank-fill:before { content: "\eb7e"; }
.ic-checkbox-blank-line:before { content: "\eb7f"; }
.ic-checkbox-circle-fill:before { content: "\eb80"; }
.ic-checkbox-circle-line:before { content: "\eb81"; }
.ic-checkbox-fill:before { content: "\eb82"; }
.ic-checkbox-indeterminate-fill:before { content: "\eb83"; }
.ic-checkbox-indeterminate-line:before { content: "\eb84"; }
.ic-checkbox-line:before { content: "\eb85"; }
.ic-checkbox-multiple-blank-fill:before { content: "\eb86"; }
.ic-checkbox-multiple-blank-line:before { content: "\eb87"; }
.ic-checkbox-multiple-fill:before { content: "\eb88"; }
.ic-checkbox-multiple-line:before { content: "\eb89"; }
.ic-china-railway-fill:before { content: "\eb8a"; }
.ic-china-railway-line:before { content: "\eb8b"; }
.ic-chrome-fill:before { content: "\eb8c"; }
.ic-chrome-line:before { content: "\eb8d"; }
.ic-clapperboard-fill:before { content: "\eb8e"; }
.ic-clapperboard-line:before { content: "\eb8f"; }
.ic-clipboard-fill:before { content: "\eb90"; }
.ic-clipboard-line:before { content: "\eb91"; }
.ic-clockwise-2-fill:before { content: "\eb92"; }
.ic-clockwise-2-line:before { content: "\eb93"; }
.ic-clockwise-fill:before { content: "\eb94"; }
.ic-clockwise-line:before { content: "\eb95"; }
.ic-close-circle-fill:before { content: "\eb96"; }
.ic-close-circle-line:before { content: "\eb97"; }
.ic-close-fill:before { content: "\eb98"; }
.ic-close-line:before { content: "\eb99"; }
.ic-closed-captioning-fill:before { content: "\eb9a"; }
.ic-closed-captioning-line:before { content: "\eb9b"; }
.ic-cloud-fill:before { content: "\eb9c"; }
.ic-cloud-line:before { content: "\eb9d"; }
.ic-cloud-off-fill:before { content: "\eb9e"; }
.ic-cloud-off-line:before { content: "\eb9f"; }
.ic-cloud-windy-fill:before { content: "\eba0"; }
.ic-cloud-windy-line:before { content: "\eba1"; }
.ic-cloudy-2-fill:before { content: "\eba2"; }
.ic-cloudy-2-line:before { content: "\eba3"; }
.ic-cloudy-fill:before { content: "\eba4"; }
.ic-cloudy-line:before { content: "\eba5"; }
.ic-code-box-fill:before { content: "\eba6"; }
.ic-code-box-line:before { content: "\eba7"; }
.ic-code-fill:before { content: "\eba8"; }
.ic-code-line:before { content: "\eba9"; }
.ic-code-s-fill:before { content: "\ebaa"; }
.ic-code-s-line:before { content: "\ebab"; }
.ic-code-s-slash-fill:before { content: "\ebac"; }
.ic-code-s-slash-line:before { content: "\ebad"; }
.ic-code-view:before { content: "\ebae"; }
.ic-codepen-fill:before { content: "\ebaf"; }
.ic-codepen-line:before { content: "\ebb0"; }
.ic-coin-fill:before { content: "\ebb1"; }
.ic-coin-line:before { content: "\ebb2"; }
.ic-coins-fill:before { content: "\ebb3"; }
.ic-coins-line:before { content: "\ebb4"; }
.ic-collage-fill:before { content: "\ebb5"; }
.ic-collage-line:before { content: "\ebb6"; }
.ic-command-fill:before { content: "\ebb7"; }
.ic-command-line:before { content: "\ebb8"; }
.ic-community-fill:before { content: "\ebb9"; }
.ic-community-line:before { content: "\ebba"; }
.ic-compass-2-fill:before { content: "\ebbb"; }
.ic-compass-2-line:before { content: "\ebbc"; }
.ic-compass-3-fill:before { content: "\ebbd"; }
.ic-compass-3-line:before { content: "\ebbe"; }
.ic-compass-4-fill:before { content: "\ebbf"; }
.ic-compass-4-line:before { content: "\ebc0"; }
.ic-compass-discover-fill:before { content: "\ebc1"; }
.ic-compass-discover-line:before { content: "\ebc2"; }
.ic-compass-fill:before { content: "\ebc3"; }
.ic-compass-line:before { content: "\ebc4"; }
.ic-compasses-2-fill:before { content: "\ebc5"; }
.ic-compasses-2-line:before { content: "\ebc6"; }
.ic-compasses-fill:before { content: "\ebc7"; }
.ic-compasses-line:before { content: "\ebc8"; }
.ic-computer-fill:before { content: "\ebc9"; }
.ic-computer-line:before { content: "\ebca"; }
.ic-contacts-book-2-fill:before { content: "\ebcb"; }
.ic-contacts-book-2-line:before { content: "\ebcc"; }
.ic-contacts-book-fill:before { content: "\ebcd"; }
.ic-contacts-book-line:before { content: "\ebce"; }
.ic-contacts-book-upload-fill:before { content: "\ebcf"; }
.ic-contacts-book-upload-line:before { content: "\ebd0"; }
.ic-contacts-fill:before { content: "\ebd1"; }
.ic-contacts-line:before { content: "\ebd2"; }
.ic-contrast-2-fill:before { content: "\ebd3"; }
.ic-contrast-2-line:before { content: "\ebd4"; }
.ic-contrast-drop-2-fill:before { content: "\ebd5"; }
.ic-contrast-drop-2-line:before { content: "\ebd6"; }
.ic-contrast-drop-fill:before { content: "\ebd7"; }
.ic-contrast-drop-line:before { content: "\ebd8"; }
.ic-contrast-fill:before { content: "\ebd9"; }
.ic-contrast-line:before { content: "\ebda"; }
.ic-copper-coin-fill:before { content: "\ebdb"; }
.ic-copper-coin-line:before { content: "\ebdc"; }
.ic-copper-diamond-fill:before { content: "\ebdd"; }
.ic-copper-diamond-line:before { content: "\ebde"; }
.ic-copyleft-fill:before { content: "\ebdf"; }
.ic-copyleft-line:before { content: "\ebe0"; }
.ic-copyright-fill:before { content: "\ebe1"; }
.ic-copyright-line:before { content: "\ebe2"; }
.ic-coreos-fill:before { content: "\ebe3"; }
.ic-coreos-line:before { content: "\ebe4"; }
.ic-coupon-2-fill:before { content: "\ebe5"; }
.ic-coupon-2-line:before { content: "\ebe6"; }
.ic-coupon-3-fill:before { content: "\ebe7"; }
.ic-coupon-3-line:before { content: "\ebe8"; }
.ic-coupon-4-fill:before { content: "\ebe9"; }
.ic-coupon-4-line:before { content: "\ebea"; }
.ic-coupon-5-fill:before { content: "\ebeb"; }
.ic-coupon-5-line:before { content: "\ebec"; }
.ic-coupon-fill:before { content: "\ebed"; }
.ic-coupon-line:before { content: "\ebee"; }
.ic-cpu-fill:before { content: "\ebef"; }
.ic-cpu-line:before { content: "\ebf0"; }
.ic-creative-commons-by-fill:before { content: "\ebf1"; }
.ic-creative-commons-by-line:before { content: "\ebf2"; }
.ic-creative-commons-fill:before { content: "\ebf3"; }
.ic-creative-commons-line:before { content: "\ebf4"; }
.ic-creative-commons-nc-fill:before { content: "\ebf5"; }
.ic-creative-commons-nc-line:before { content: "\ebf6"; }
.ic-creative-commons-nd-fill:before { content: "\ebf7"; }
.ic-creative-commons-nd-line:before { content: "\ebf8"; }
.ic-creative-commons-sa-fill:before { content: "\ebf9"; }
.ic-creative-commons-sa-line:before { content: "\ebfa"; }
.ic-creative-commons-zero-fill:before { content: "\ebfb"; }
.ic-creative-commons-zero-line:before { content: "\ebfc"; }
.ic-criminal-fill:before { content: "\ebfd"; }
.ic-criminal-line:before { content: "\ebfe"; }
.ic-crop-2-fill:before { content: "\ebff"; }
.ic-crop-2-line:before { content: "\ec00"; }
.ic-crop-fill:before { content: "\ec01"; }
.ic-crop-line:before { content: "\ec02"; }
.ic-css3-fill:before { content: "\ec03"; }
.ic-css3-line:before { content: "\ec04"; }
.ic-cup-fill:before { content: "\ec05"; }
.ic-cup-line:before { content: "\ec06"; }
.ic-currency-fill:before { content: "\ec07"; }
.ic-currency-line:before { content: "\ec08"; }
.ic-cursor-fill:before { content: "\ec09"; }
.ic-cursor-line:before { content: "\ec0a"; }
.ic-customer-service-2-fill:before { content: "\ec0b"; }
.ic-customer-service-2-line:before { content: "\ec0c"; }
.ic-customer-service-fill:before { content: "\ec0d"; }
.ic-customer-service-line:before { content: "\ec0e"; }
.ic-dashboard-2-fill:before { content: "\ec0f"; }
.ic-dashboard-2-line:before { content: "\ec10"; }
.ic-dashboard-3-fill:before { content: "\ec11"; }
.ic-dashboard-3-line:before { content: "\ec12"; }
.ic-dashboard-fill:before { content: "\ec13"; }
.ic-dashboard-line:before { content: "\ec14"; }
.ic-database-2-fill:before { content: "\ec15"; }
.ic-database-2-line:before { content: "\ec16"; }
.ic-database-fill:before { content: "\ec17"; }
.ic-database-line:before { content: "\ec18"; }
.ic-delete-back-2-fill:before { content: "\ec19"; }
.ic-delete-back-2-line:before { content: "\ec1a"; }
.ic-delete-back-fill:before { content: "\ec1b"; }
.ic-delete-back-line:before { content: "\ec1c"; }
.ic-delete-bin-2-fill:before { content: "\ec1d"; }
.ic-delete-bin-2-line:before { content: "\ec1e"; }
.ic-delete-bin-3-fill:before { content: "\ec1f"; }
.ic-delete-bin-3-line:before { content: "\ec20"; }
.ic-delete-bin-4-fill:before { content: "\ec21"; }
.ic-delete-bin-4-line:before { content: "\ec22"; }
.ic-delete-bin-5-fill:before { content: "\ec23"; }
.ic-delete-bin-5-line:before { content: "\ec24"; }
.ic-delete-bin-6-fill:before { content: "\ec25"; }
.ic-delete-bin-6-line:before { content: "\ec26"; }
.ic-delete-bin-7-fill:before { content: "\ec27"; }
.ic-delete-bin-7-line:before { content: "\ec28"; }
.ic-delete-bin-fill:before { content: "\ec29"; }
.ic-delete-bin-line:before { content: "\ec2a"; }
.ic-delete-column:before { content: "\ec2b"; }
.ic-delete-row:before { content: "\ec2c"; }
.ic-device-fill:before { content: "\ec2d"; }
.ic-device-line:before { content: "\ec2e"; }
.ic-device-recover-fill:before { content: "\ec2f"; }
.ic-device-recover-line:before { content: "\ec30"; }
.ic-dingding-fill:before { content: "\ec31"; }
.ic-dingding-line:before { content: "\ec32"; }
.ic-direction-fill:before { content: "\ec33"; }
.ic-direction-line:before { content: "\ec34"; }
.ic-disc-fill:before { content: "\ec35"; }
.ic-disc-line:before { content: "\ec36"; }
.ic-discord-fill:before { content: "\ec37"; }
.ic-discord-line:before { content: "\ec38"; }
.ic-discuss-fill:before { content: "\ec39"; }
.ic-discuss-line:before { content: "\ec3a"; }
.ic-dislike-fill:before { content: "\ec3b"; }
.ic-dislike-line:before { content: "\ec3c"; }
.ic-disqus-fill:before { content: "\ec3d"; }
.ic-disqus-line:before { content: "\ec3e"; }
.ic-divide-fill:before { content: "\ec3f"; }
.ic-divide-line:before { content: "\ec40"; }
.ic-donut-chart-fill:before { content: "\ec41"; }
.ic-donut-chart-line:before { content: "\ec42"; }
.ic-door-closed-fill:before { content: "\ec43"; }
.ic-door-closed-line:before { content: "\ec44"; }
.ic-door-fill:before { content: "\ec45"; }
.ic-door-line:before { content: "\ec46"; }
.ic-door-lock-box-fill:before { content: "\ec47"; }
.ic-door-lock-box-line:before { content: "\ec48"; }
.ic-door-lock-fill:before { content: "\ec49"; }
.ic-door-lock-line:before { content: "\ec4a"; }
.ic-door-open-fill:before { content: "\ec4b"; }
.ic-door-open-line:before { content: "\ec4c"; }
.ic-dossier-fill:before { content: "\ec4d"; }
.ic-dossier-line:before { content: "\ec4e"; }
.ic-douban-fill:before { content: "\ec4f"; }
.ic-douban-line:before { content: "\ec50"; }
.ic-double-quotes-l:before { content: "\ec51"; }
.ic-double-quotes-r:before { content: "\ec52"; }
.ic-download-2-fill:before { content: "\ec53"; }
.ic-download-2-line:before { content: "\ec54"; }
.ic-download-cloud-2-fill:before { content: "\ec55"; }
.ic-download-cloud-2-line:before { content: "\ec56"; }
.ic-download-cloud-fill:before { content: "\ec57"; }
.ic-download-cloud-line:before { content: "\ec58"; }
.ic-download-fill:before { content: "\ec59"; }
.ic-download-line:before { content: "\ec5a"; }
.ic-draft-fill:before { content: "\ec5b"; }
.ic-draft-line:before { content: "\ec5c"; }
.ic-drag-drop-fill:before { content: "\ec5d"; }
.ic-drag-drop-line:before { content: "\ec5e"; }
.ic-drag-move-2-fill:before { content: "\ec5f"; }
.ic-drag-move-2-line:before { content: "\ec60"; }
.ic-drag-move-fill:before { content: "\ec61"; }
.ic-drag-move-line:before { content: "\ec62"; }
.ic-dribbble-fill:before { content: "\ec63"; }
.ic-dribbble-line:before { content: "\ec64"; }
.ic-drive-fill:before { content: "\ec65"; }
.ic-drive-line:before { content: "\ec66"; }
.ic-drizzle-fill:before { content: "\ec67"; }
.ic-drizzle-line:before { content: "\ec68"; }
.ic-drop-fill:before { content: "\ec69"; }
.ic-drop-line:before { content: "\ec6a"; }
.ic-dropbox-fill:before { content: "\ec6b"; }
.ic-dropbox-line:before { content: "\ec6c"; }
.ic-dual-sim-1-fill:before { content: "\ec6d"; }
.ic-dual-sim-1-line:before { content: "\ec6e"; }
.ic-dual-sim-2-fill:before { content: "\ec6f"; }
.ic-dual-sim-2-line:before { content: "\ec70"; }
.ic-dv-fill:before { content: "\ec71"; }
.ic-dv-line:before { content: "\ec72"; }
.ic-dvd-fill:before { content: "\ec73"; }
.ic-dvd-line:before { content: "\ec74"; }
.ic-e-bike-2-fill:before { content: "\ec75"; }
.ic-e-bike-2-line:before { content: "\ec76"; }
.ic-e-bike-fill:before { content: "\ec77"; }
.ic-e-bike-line:before { content: "\ec78"; }
.ic-earth-fill:before { content: "\ec79"; }
.ic-earth-line:before { content: "\ec7a"; }
.ic-earthquake-fill:before { content: "\ec7b"; }
.ic-earthquake-line:before { content: "\ec7c"; }
.ic-edge-fill:before { content: "\ec7d"; }
.ic-edge-line:before { content: "\ec7e"; }
.ic-edit-2-fill:before { content: "\ec7f"; }
.ic-edit-2-line:before { content: "\ec80"; }
.ic-edit-box-fill:before { content: "\ec81"; }
.ic-edit-box-line:before { content: "\ec82"; }
.ic-edit-circle-fill:before { content: "\ec83"; }
.ic-edit-circle-line:before { content: "\ec84"; }
.ic-edit-fill:before { content: "\ec85"; }
.ic-edit-line:before { content: "\ec86"; }
.ic-eject-fill:before { content: "\ec87"; }
.ic-eject-line:before { content: "\ec88"; }
.ic-emotion-2-fill:before { content: "\ec89"; }
.ic-emotion-2-line:before { content: "\ec8a"; }
.ic-emotion-fill:before { content: "\ec8b"; }
.ic-emotion-happy-fill:before { content: "\ec8c"; }
.ic-emotion-happy-line:before { content: "\ec8d"; }
.ic-emotion-laugh-fill:before { content: "\ec8e"; }
.ic-emotion-laugh-line:before { content: "\ec8f"; }
.ic-emotion-line:before { content: "\ec90"; }
.ic-emotion-normal-fill:before { content: "\ec91"; }
.ic-emotion-normal-line:before { content: "\ec92"; }
.ic-emotion-sad-fill:before { content: "\ec93"; }
.ic-emotion-sad-line:before { content: "\ec94"; }
.ic-emotion-unhappy-fill:before { content: "\ec95"; }
.ic-emotion-unhappy-line:before { content: "\ec96"; }
.ic-empathize-fill:before { content: "\ec97"; }
.ic-empathize-line:before { content: "\ec98"; }
.ic-emphasis-cn:before { content: "\ec99"; }
.ic-emphasis:before { content: "\ec9a"; }
.ic-english-input:before { content: "\ec9b"; }
.ic-equalizer-fill:before { content: "\ec9c"; }
.ic-equalizer-line:before { content: "\ec9d"; }
.ic-eraser-fill:before { content: "\ec9e"; }
.ic-eraser-line:before { content: "\ec9f"; }
.ic-error-warning-fill:before { content: "\eca0"; }
.ic-error-warning-line:before { content: "\eca1"; }
.ic-evernote-fill:before { content: "\eca2"; }
.ic-evernote-line:before { content: "\eca3"; }
.ic-exchange-box-fill:before { content: "\eca4"; }
.ic-exchange-box-line:before { content: "\eca5"; }
.ic-exchange-cny-fill:before { content: "\eca6"; }
.ic-exchange-cny-line:before { content: "\eca7"; }
.ic-exchange-dollar-fill:before { content: "\eca8"; }
.ic-exchange-dollar-line:before { content: "\eca9"; }
.ic-exchange-fill:before { content: "\ecaa"; }
.ic-exchange-funds-fill:before { content: "\ecab"; }
.ic-exchange-funds-line:before { content: "\ecac"; }
.ic-exchange-line:before { content: "\ecad"; }
.ic-external-link-fill:before { content: "\ecae"; }
.ic-external-link-line:before { content: "\ecaf"; }
.ic-eye-2-fill:before { content: "\ecb0"; }
.ic-eye-2-line:before { content: "\ecb1"; }
.ic-eye-close-fill:before { content: "\ecb2"; }
.ic-eye-close-line:before { content: "\ecb3"; }
.ic-eye-fill:before { content: "\ecb4"; }
.ic-eye-line:before { content: "\ecb5"; }
.ic-eye-off-fill:before { content: "\ecb6"; }
.ic-eye-off-line:before { content: "\ecb7"; }
.ic-facebook-box-fill:before { content: "\ecb8"; }
.ic-facebook-box-line:before { content: "\ecb9"; }
.ic-facebook-circle-fill:before { content: "\ecba"; }
.ic-facebook-circle-line:before { content: "\ecbb"; }
.ic-facebook-fill:before { content: "\ecbc"; }
.ic-facebook-line:before { content: "\ecbd"; }
.ic-fahrenheit-fill:before { content: "\ecbe"; }
.ic-fahrenheit-line:before { content: "\ecbf"; }
.ic-feedback-fill:before { content: "\ecc0"; }
.ic-feedback-line:before { content: "\ecc1"; }
.ic-file-2-fill:before { content: "\ecc2"; }
.ic-file-2-line:before { content: "\ecc3"; }
.ic-file-3-fill:before { content: "\ecc4"; }
.ic-file-3-line:before { content: "\ecc5"; }
.ic-file-4-fill:before { content: "\ecc6"; }
.ic-file-4-line:before { content: "\ecc7"; }
.ic-file-add-fill:before { content: "\ecc8"; }
.ic-file-add-line:before { content: "\ecc9"; }
.ic-file-chart-2-fill:before { content: "\ecca"; }
.ic-file-chart-2-line:before { content: "\eccb"; }
.ic-file-chart-fill:before { content: "\eccc"; }
.ic-file-chart-line:before { content: "\eccd"; }
.ic-file-cloud-fill:before { content: "\ecce"; }
.ic-file-cloud-line:before { content: "\eccf"; }
.ic-file-code-fill:before { content: "\ecd0"; }
.ic-file-code-line:before { content: "\ecd1"; }
.ic-file-copy-2-fill:before { content: "\ecd2"; }
.ic-file-copy-2-line:before { content: "\ecd3"; }
.ic-file-copy-fill:before { content: "\ecd4"; }
.ic-file-copy-line:before { content: "\ecd5"; }
.ic-file-damage-fill:before { content: "\ecd6"; }
.ic-file-damage-line:before { content: "\ecd7"; }
.ic-file-download-fill:before { content: "\ecd8"; }
.ic-file-download-line:before { content: "\ecd9"; }
.ic-file-edit-fill:before { content: "\ecda"; }
.ic-file-edit-line:before { content: "\ecdb"; }
.ic-file-excel-2-fill:before { content: "\ecdc"; }
.ic-file-excel-2-line:before { content: "\ecdd"; }
.ic-file-excel-fill:before { content: "\ecde"; }
.ic-file-excel-line:before { content: "\ecdf"; }
.ic-file-fill:before { content: "\ece0"; }
.ic-file-forbid-fill:before { content: "\ece1"; }
.ic-file-forbid-line:before { content: "\ece2"; }
.ic-file-gif-fill:before { content: "\ece3"; }
.ic-file-gif-line:before { content: "\ece4"; }
.ic-file-history-fill:before { content: "\ece5"; }
.ic-file-history-line:before { content: "\ece6"; }
.ic-file-hwp-fill:before { content: "\ece7"; }
.ic-file-hwp-line:before { content: "\ece8"; }
.ic-file-info-fill:before { content: "\ece9"; }
.ic-file-info-line:before { content: "\ecea"; }
.ic-file-line:before { content: "\eceb"; }
.ic-file-list-2-fill:before { content: "\ecec"; }
.ic-file-list-2-line:before { content: "\eced"; }
.ic-file-list-3-fill:before { content: "\ecee"; }
.ic-file-list-3-line:before { content: "\ecef"; }
.ic-file-list-fill:before { content: "\ecf0"; }
.ic-file-list-line:before { content: "\ecf1"; }
.ic-file-lock-fill:before { content: "\ecf2"; }
.ic-file-lock-line:before { content: "\ecf3"; }
.ic-file-marked-fill:before { content: "\ecf4"; }
.ic-file-marked-line:before { content: "\ecf5"; }
.ic-file-music-fill:before { content: "\ecf6"; }
.ic-file-music-line:before { content: "\ecf7"; }
.ic-file-paper-2-fill:before { content: "\ecf8"; }
.ic-file-paper-2-line:before { content: "\ecf9"; }
.ic-file-paper-fill:before { content: "\ecfa"; }
.ic-file-paper-line:before { content: "\ecfb"; }
.ic-file-pdf-fill:before { content: "\ecfc"; }
.ic-file-pdf-line:before { content: "\ecfd"; }
.ic-file-ppt-2-fill:before { content: "\ecfe"; }
.ic-file-ppt-2-line:before { content: "\ecff"; }
.ic-file-ppt-fill:before { content: "\ed00"; }
.ic-file-ppt-line:before { content: "\ed01"; }
.ic-file-reduce-fill:before { content: "\ed02"; }
.ic-file-reduce-line:before { content: "\ed03"; }
.ic-file-search-fill:before { content: "\ed04"; }
.ic-file-search-line:before { content: "\ed05"; }
.ic-file-settings-fill:before { content: "\ed06"; }
.ic-file-settings-line:before { content: "\ed07"; }
.ic-file-shield-2-fill:before { content: "\ed08"; }
.ic-file-shield-2-line:before { content: "\ed09"; }
.ic-file-shield-fill:before { content: "\ed0a"; }
.ic-file-shield-line:before { content: "\ed0b"; }
.ic-file-shred-fill:before { content: "\ed0c"; }
.ic-file-shred-line:before { content: "\ed0d"; }
.ic-file-text-fill:before { content: "\ed0e"; }
.ic-file-text-line:before { content: "\ed0f"; }
.ic-file-transfer-fill:before { content: "\ed10"; }
.ic-file-transfer-line:before { content: "\ed11"; }
.ic-file-unknow-fill:before { content: "\ed12"; }
.ic-file-unknow-line:before { content: "\ed13"; }
.ic-file-upload-fill:before { content: "\ed14"; }
.ic-file-upload-line:before { content: "\ed15"; }
.ic-file-user-fill:before { content: "\ed16"; }
.ic-file-user-line:before { content: "\ed17"; }
.ic-file-warning-fill:before { content: "\ed18"; }
.ic-file-warning-line:before { content: "\ed19"; }
.ic-file-word-2-fill:before { content: "\ed1a"; }
.ic-file-word-2-line:before { content: "\ed1b"; }
.ic-file-word-fill:before { content: "\ed1c"; }
.ic-file-word-line:before { content: "\ed1d"; }
.ic-file-zip-fill:before { content: "\ed1e"; }
.ic-file-zip-line:before { content: "\ed1f"; }
.ic-film-fill:before { content: "\ed20"; }
.ic-film-line:before { content: "\ed21"; }
.ic-filter-2-fill:before { content: "\ed22"; }
.ic-filter-2-line:before { content: "\ed23"; }
.ic-filter-3-fill:before { content: "\ed24"; }
.ic-filter-3-line:before { content: "\ed25"; }
.ic-filter-fill:before { content: "\ed26"; }
.ic-filter-line:before { content: "\ed27"; }
.ic-filter-off-fill:before { content: "\ed28"; }
.ic-filter-off-line:before { content: "\ed29"; }
.ic-find-replace-fill:before { content: "\ed2a"; }
.ic-find-replace-line:before { content: "\ed2b"; }
.ic-finder-fill:before { content: "\ed2c"; }
.ic-finder-line:before { content: "\ed2d"; }
.ic-fingerprint-2-fill:before { content: "\ed2e"; }
.ic-fingerprint-2-line:before { content: "\ed2f"; }
.ic-fingerprint-fill:before { content: "\ed30"; }
.ic-fingerprint-line:before { content: "\ed31"; }
.ic-fire-fill:before { content: "\ed32"; }
.ic-fire-line:before { content: "\ed33"; }
.ic-firefox-fill:before { content: "\ed34"; }
.ic-firefox-line:before { content: "\ed35"; }
.ic-first-aid-kit-fill:before { content: "\ed36"; }
.ic-first-aid-kit-line:before { content: "\ed37"; }
.ic-flag-2-fill:before { content: "\ed38"; }
.ic-flag-2-line:before { content: "\ed39"; }
.ic-flag-fill:before { content: "\ed3a"; }
.ic-flag-line:before { content: "\ed3b"; }
.ic-flashlight-fill:before { content: "\ed3c"; }
.ic-flashlight-line:before { content: "\ed3d"; }
.ic-flask-fill:before { content: "\ed3e"; }
.ic-flask-line:before { content: "\ed3f"; }
.ic-flight-land-fill:before { content: "\ed40"; }
.ic-flight-land-line:before { content: "\ed41"; }
.ic-flight-takeoff-fill:before { content: "\ed42"; }
.ic-flight-takeoff-line:before { content: "\ed43"; }
.ic-flood-fill:before { content: "\ed44"; }
.ic-flood-line:before { content: "\ed45"; }
.ic-flow-chart:before { content: "\ed46"; }
.ic-flutter-fill:before { content: "\ed47"; }
.ic-flutter-line:before { content: "\ed48"; }
.ic-focus-2-fill:before { content: "\ed49"; }
.ic-focus-2-line:before { content: "\ed4a"; }
.ic-focus-3-fill:before { content: "\ed4b"; }
.ic-focus-3-line:before { content: "\ed4c"; }
.ic-focus-fill:before { content: "\ed4d"; }
.ic-focus-line:before { content: "\ed4e"; }
.ic-foggy-fill:before { content: "\ed4f"; }
.ic-foggy-line:before { content: "\ed50"; }
.ic-folder-2-fill:before { content: "\ed51"; }
.ic-folder-2-line:before { content: "\ed52"; }
.ic-folder-3-fill:before { content: "\ed53"; }
.ic-folder-3-line:before { content: "\ed54"; }
.ic-folder-4-fill:before { content: "\ed55"; }
.ic-folder-4-line:before { content: "\ed56"; }
.ic-folder-5-fill:before { content: "\ed57"; }
.ic-folder-5-line:before { content: "\ed58"; }
.ic-folder-add-fill:before { content: "\ed59"; }
.ic-folder-add-line:before { content: "\ed5a"; }
.ic-folder-chart-2-fill:before { content: "\ed5b"; }
.ic-folder-chart-2-line:before { content: "\ed5c"; }
.ic-folder-chart-fill:before { content: "\ed5d"; }
.ic-folder-chart-line:before { content: "\ed5e"; }
.ic-folder-download-fill:before { content: "\ed5f"; }
.ic-folder-download-line:before { content: "\ed60"; }
.ic-folder-fill:before { content: "\ed61"; }
.ic-folder-forbid-fill:before { content: "\ed62"; }
.ic-folder-forbid-line:before { content: "\ed63"; }
.ic-folder-history-fill:before { content: "\ed64"; }
.ic-folder-history-line:before { content: "\ed65"; }
.ic-folder-info-fill:before { content: "\ed66"; }
.ic-folder-info-line:before { content: "\ed67"; }
.ic-folder-keyhole-fill:before { content: "\ed68"; }
.ic-folder-keyhole-line:before { content: "\ed69"; }
.ic-folder-line:before { content: "\ed6a"; }
.ic-folder-lock-fill:before { content: "\ed6b"; }
.ic-folder-lock-line:before { content: "\ed6c"; }
.ic-folder-music-fill:before { content: "\ed6d"; }
.ic-folder-music-line:before { content: "\ed6e"; }
.ic-folder-open-fill:before { content: "\ed6f"; }
.ic-folder-open-line:before { content: "\ed70"; }
.ic-folder-received-fill:before { content: "\ed71"; }
.ic-folder-received-line:before { content: "\ed72"; }
.ic-folder-reduce-fill:before { content: "\ed73"; }
.ic-folder-reduce-line:before { content: "\ed74"; }
.ic-folder-settings-fill:before { content: "\ed75"; }
.ic-folder-settings-line:before { content: "\ed76"; }
.ic-folder-shared-fill:before { content: "\ed77"; }
.ic-folder-shared-line:before { content: "\ed78"; }
.ic-folder-shield-2-fill:before { content: "\ed79"; }
.ic-folder-shield-2-line:before { content: "\ed7a"; }
.ic-folder-shield-fill:before { content: "\ed7b"; }
.ic-folder-shield-line:before { content: "\ed7c"; }
.ic-folder-transfer-fill:before { content: "\ed7d"; }
.ic-folder-transfer-line:before { content: "\ed7e"; }
.ic-folder-unknow-fill:before { content: "\ed7f"; }
.ic-folder-unknow-line:before { content: "\ed80"; }
.ic-folder-upload-fill:before { content: "\ed81"; }
.ic-folder-upload-line:before { content: "\ed82"; }
.ic-folder-user-fill:before { content: "\ed83"; }
.ic-folder-user-line:before { content: "\ed84"; }
.ic-folder-warning-fill:before { content: "\ed85"; }
.ic-folder-warning-line:before { content: "\ed86"; }
.ic-folder-zip-fill:before { content: "\ed87"; }
.ic-folder-zip-line:before { content: "\ed88"; }
.ic-folders-fill:before { content: "\ed89"; }
.ic-folders-line:before { content: "\ed8a"; }
.ic-font-color:before { content: "\ed8b"; }
.ic-font-size-2:before { content: "\ed8c"; }
.ic-font-size:before { content: "\ed8d"; }
.ic-football-fill:before { content: "\ed8e"; }
.ic-football-line:before { content: "\ed8f"; }
.ic-footprint-fill:before { content: "\ed90"; }
.ic-footprint-line:before { content: "\ed91"; }
.ic-forbid-2-fill:before { content: "\ed92"; }
.ic-forbid-2-line:before { content: "\ed93"; }
.ic-forbid-fill:before { content: "\ed94"; }
.ic-forbid-line:before { content: "\ed95"; }
.ic-format-clear:before { content: "\ed96"; }
.ic-fridge-fill:before { content: "\ed97"; }
.ic-fridge-line:before { content: "\ed98"; }
.ic-fullscreen-exit-fill:before { content: "\ed99"; }
.ic-fullscreen-exit-line:before { content: "\ed9a"; }
.ic-fullscreen-fill:before { content: "\ed9b"; }
.ic-fullscreen-line:before { content: "\ed9c"; }
.ic-function-fill:before { content: "\ed9d"; }
.ic-function-line:before { content: "\ed9e"; }
.ic-functions:before { content: "\ed9f"; }
.ic-funds-box-fill:before { content: "\eda0"; }
.ic-funds-box-line:before { content: "\eda1"; }
.ic-funds-fill:before { content: "\eda2"; }
.ic-funds-line:before { content: "\eda3"; }
.ic-gallery-fill:before { content: "\eda4"; }
.ic-gallery-line:before { content: "\eda5"; }
.ic-gallery-upload-fill:before { content: "\eda6"; }
.ic-gallery-upload-line:before { content: "\eda7"; }
.ic-game-fill:before { content: "\eda8"; }
.ic-game-line:before { content: "\eda9"; }
.ic-gamepad-fill:before { content: "\edaa"; }
.ic-gamepad-line:before { content: "\edab"; }
.ic-gas-station-fill:before { content: "\edac"; }
.ic-gas-station-line:before { content: "\edad"; }
.ic-gatsby-fill:before { content: "\edae"; }
.ic-gatsby-line:before { content: "\edaf"; }
.ic-genderless-fill:before { content: "\edb0"; }
.ic-genderless-line:before { content: "\edb1"; }
.ic-ghost-2-fill:before { content: "\edb2"; }
.ic-ghost-2-line:before { content: "\edb3"; }
.ic-ghost-fill:before { content: "\edb4"; }
.ic-ghost-line:before { content: "\edb5"; }
.ic-ghost-smile-fill:before { content: "\edb6"; }
.ic-ghost-smile-line:before { content: "\edb7"; }
.ic-gift-2-fill:before { content: "\edb8"; }
.ic-gift-2-line:before { content: "\edb9"; }
.ic-gift-fill:before { content: "\edba"; }
.ic-gift-line:before { content: "\edbb"; }
.ic-git-branch-fill:before { content: "\edbc"; }
.ic-git-branch-line:before { content: "\edbd"; }
.ic-git-commit-fill:before { content: "\edbe"; }
.ic-git-commit-line:before { content: "\edbf"; }
.ic-git-merge-fill:before { content: "\edc0"; }
.ic-git-merge-line:before { content: "\edc1"; }
.ic-git-pull-request-fill:before { content: "\edc2"; }
.ic-git-pull-request-line:before { content: "\edc3"; }
.ic-git-repository-commits-fill:before { content: "\edc4"; }
.ic-git-repository-commits-line:before { content: "\edc5"; }
.ic-git-repository-fill:before { content: "\edc6"; }
.ic-git-repository-line:before { content: "\edc7"; }
.ic-git-repository-private-fill:before { content: "\edc8"; }
.ic-git-repository-private-line:before { content: "\edc9"; }
.ic-github-fill:before { content: "\edca"; }
.ic-github-line:before { content: "\edcb"; }
.ic-gitlab-fill:before { content: "\edcc"; }
.ic-gitlab-line:before { content: "\edcd"; }
.ic-global-fill:before { content: "\edce"; }
.ic-global-line:before { content: "\edcf"; }
.ic-globe-fill:before { content: "\edd0"; }
.ic-globe-line:before { content: "\edd1"; }
.ic-goblet-fill:before { content: "\edd2"; }
.ic-goblet-line:before { content: "\edd3"; }
.ic-google-fill:before { content: "\edd4"; }
.ic-google-line:before { content: "\edd5"; }
.ic-google-play-fill:before { content: "\edd6"; }
.ic-google-play-line:before { content: "\edd7"; }
.ic-government-fill:before { content: "\edd8"; }
.ic-government-line:before { content: "\edd9"; }
.ic-gps-fill:before { content: "\edda"; }
.ic-gps-line:before { content: "\eddb"; }
.ic-gradienter-fill:before { content: "\eddc"; }
.ic-gradienter-line:before { content: "\eddd"; }
.ic-grid-fill:before { content: "\edde"; }
.ic-grid-line:before { content: "\eddf"; }
.ic-group-2-fill:before { content: "\ede0"; }
.ic-group-2-line:before { content: "\ede1"; }
.ic-group-fill:before { content: "\ede2"; }
.ic-group-line:before { content: "\ede3"; }
.ic-guide-fill:before { content: "\ede4"; }
.ic-guide-line:before { content: "\ede5"; }
.ic-h-1:before { content: "\ede6"; }
.ic-h-2:before { content: "\ede7"; }
.ic-h-3:before { content: "\ede8"; }
.ic-h-4:before { content: "\ede9"; }
.ic-h-5:before { content: "\edea"; }
.ic-h-6:before { content: "\edeb"; }
.ic-hail-fill:before { content: "\edec"; }
.ic-hail-line:before { content: "\eded"; }
.ic-hammer-fill:before { content: "\edee"; }
.ic-hammer-line:before { content: "\edef"; }
.ic-hand-coin-fill:before { content: "\edf0"; }
.ic-hand-coin-line:before { content: "\edf1"; }
.ic-hand-heart-fill:before { content: "\edf2"; }
.ic-hand-heart-line:before { content: "\edf3"; }
.ic-hand-sanitizer-fill:before { content: "\edf4"; }
.ic-hand-sanitizer-line:before { content: "\edf5"; }
.ic-handbag-fill:before { content: "\edf6"; }
.ic-handbag-line:before { content: "\edf7"; }
.ic-hard-drive-2-fill:before { content: "\edf8"; }
.ic-hard-drive-2-line:before { content: "\edf9"; }
.ic-hard-drive-fill:before { content: "\edfa"; }
.ic-hard-drive-line:before { content: "\edfb"; }
.ic-hashtag:before { content: "\edfc"; }
.ic-haze-2-fill:before { content: "\edfd"; }
.ic-haze-2-line:before { content: "\edfe"; }
.ic-haze-fill:before { content: "\edff"; }
.ic-haze-line:before { content: "\ee00"; }
.ic-hd-fill:before { content: "\ee01"; }
.ic-hd-line:before { content: "\ee02"; }
.ic-heading:before { content: "\ee03"; }
.ic-headphone-fill:before { content: "\ee04"; }
.ic-headphone-line:before { content: "\ee05"; }
.ic-health-book-fill:before { content: "\ee06"; }
.ic-health-book-line:before { content: "\ee07"; }
.ic-heart-2-fill:before { content: "\ee08"; }
.ic-heart-2-line:before { content: "\ee09"; }
.ic-heart-3-fill:before { content: "\ee0a"; }
.ic-heart-3-line:before { content: "\ee0b"; }
.ic-heart-add-fill:before { content: "\ee0c"; }
.ic-heart-add-line:before { content: "\ee0d"; }
.ic-heart-fill:before { content: "\ee0e"; }
.ic-heart-line:before { content: "\ee0f"; }
.ic-heart-pulse-fill:before { content: "\ee10"; }
.ic-heart-pulse-line:before { content: "\ee11"; }
.ic-hearts-fill:before { content: "\ee12"; }
.ic-hearts-line:before { content: "\ee13"; }
.ic-heavy-showers-fill:before { content: "\ee14"; }
.ic-heavy-showers-line:before { content: "\ee15"; }
.ic-history-fill:before { content: "\ee16"; }
.ic-history-line:before { content: "\ee17"; }
.ic-home-2-fill:before { content: "\ee18"; }
.ic-home-2-line:before { content: "\ee19"; }
.ic-home-3-fill:before { content: "\ee1a"; }
.ic-home-3-line:before { content: "\ee1b"; }
.ic-home-4-fill:before { content: "\ee1c"; }
.ic-home-4-line:before { content: "\ee1d"; }
.ic-home-5-fill:before { content: "\ee1e"; }
.ic-home-5-line:before { content: "\ee1f"; }
.ic-home-6-fill:before { content: "\ee20"; }
.ic-home-6-line:before { content: "\ee21"; }
.ic-home-7-fill:before { content: "\ee22"; }
.ic-home-7-line:before { content: "\ee23"; }
.ic-home-8-fill:before { content: "\ee24"; }
.ic-home-8-line:before { content: "\ee25"; }
.ic-home-fill:before { content: "\ee26"; }
.ic-home-gear-fill:before { content: "\ee27"; }
.ic-home-gear-line:before { content: "\ee28"; }
.ic-home-heart-fill:before { content: "\ee29"; }
.ic-home-heart-line:before { content: "\ee2a"; }
.ic-home-line:before { content: "\ee2b"; }
.ic-home-smile-2-fill:before { content: "\ee2c"; }
.ic-home-smile-2-line:before { content: "\ee2d"; }
.ic-home-smile-fill:before { content: "\ee2e"; }
.ic-home-smile-line:before { content: "\ee2f"; }
.ic-home-wifi-fill:before { content: "\ee30"; }
.ic-home-wifi-line:before { content: "\ee31"; }
.ic-honor-of-kings-fill:before { content: "\ee32"; }
.ic-honor-of-kings-line:before { content: "\ee33"; }
.ic-honour-fill:before { content: "\ee34"; }
.ic-honour-line:before { content: "\ee35"; }
.ic-hospital-fill:before { content: "\ee36"; }
.ic-hospital-line:before { content: "\ee37"; }
.ic-hotel-bed-fill:before { content: "\ee38"; }
.ic-hotel-bed-line:before { content: "\ee39"; }
.ic-hotel-fill:before { content: "\ee3a"; }
.ic-hotel-line:before { content: "\ee3b"; }
.ic-hotspot-fill:before { content: "\ee3c"; }
.ic-hotspot-line:before { content: "\ee3d"; }
.ic-hq-fill:before { content: "\ee3e"; }
.ic-hq-line:before { content: "\ee3f"; }
.ic-html5-fill:before { content: "\ee40"; }
.ic-html5-line:before { content: "\ee41"; }
.ic-ie-fill:before { content: "\ee42"; }
.ic-ie-line:before { content: "\ee43"; }
.ic-image-2-fill:before { content: "\ee44"; }
.ic-image-2-line:before { content: "\ee45"; }
.ic-image-add-fill:before { content: "\ee46"; }
.ic-image-add-line:before { content: "\ee47"; }
.ic-image-edit-fill:before { content: "\ee48"; }
.ic-image-edit-line:before { content: "\ee49"; }
.ic-image-fill:before { content: "\ee4a"; }
.ic-image-line:before { content: "\ee4b"; }
.ic-inbox-archive-fill:before { content: "\ee4c"; }
.ic-inbox-archive-line:before { content: "\ee4d"; }
.ic-inbox-fill:before { content: "\ee4e"; }
.ic-inbox-line:before { content: "\ee4f"; }
.ic-inbox-unarchive-fill:before { content: "\ee50"; }
.ic-inbox-unarchive-line:before { content: "\ee51"; }
.ic-increase-decrease-fill:before { content: "\ee52"; }
.ic-increase-decrease-line:before { content: "\ee53"; }
.ic-indent-decrease:before { content: "\ee54"; }
.ic-indent-increase:before { content: "\ee55"; }
.ic-indeterminate-circle-fill:before { content: "\ee56"; }
.ic-indeterminate-circle-line:before { content: "\ee57"; }
.ic-information-fill:before { content: "\ee58"; }
.ic-information-line:before { content: "\ee59"; }
.ic-infrared-thermometer-fill:before { content: "\ee5a"; }
.ic-infrared-thermometer-line:before { content: "\ee5b"; }
.ic-ink-bottle-fill:before { content: "\ee5c"; }
.ic-ink-bottle-line:before { content: "\ee5d"; }
.ic-input-cursor-move:before { content: "\ee5e"; }
.ic-input-method-fill:before { content: "\ee5f"; }
.ic-input-method-line:before { content: "\ee60"; }
.ic-insert-column-left:before { content: "\ee61"; }
.ic-insert-column-right:before { content: "\ee62"; }
.ic-insert-row-bottom:before { content: "\ee63"; }
.ic-insert-row-top:before { content: "\ee64"; }
.ic-instagram-fill:before { content: "\ee65"; }
.ic-instagram-line:before { content: "\ee66"; }
.ic-install-fill:before { content: "\ee67"; }
.ic-install-line:before { content: "\ee68"; }
.ic-invision-fill:before { content: "\ee69"; }
.ic-invision-line:before { content: "\ee6a"; }
.ic-italic:before { content: "\ee6b"; }
.ic-kakao-talk-fill:before { content: "\ee6c"; }
.ic-kakao-talk-line:before { content: "\ee6d"; }
.ic-key-2-fill:before { content: "\ee6e"; }
.ic-key-2-line:before { content: "\ee6f"; }
.ic-key-fill:before { content: "\ee70"; }
.ic-key-line:before { content: "\ee71"; }
.ic-keyboard-box-fill:before { content: "\ee72"; }
.ic-keyboard-box-line:before { content: "\ee73"; }
.ic-keyboard-fill:before { content: "\ee74"; }
.ic-keyboard-line:before { content: "\ee75"; }
.ic-keynote-fill:before { content: "\ee76"; }
.ic-keynote-line:before { content: "\ee77"; }
.ic-knife-blood-fill:before { content: "\ee78"; }
.ic-knife-blood-line:before { content: "\ee79"; }
.ic-knife-fill:before { content: "\ee7a"; }
.ic-knife-line:before { content: "\ee7b"; }
.ic-landscape-fill:before { content: "\ee7c"; }
.ic-landscape-line:before { content: "\ee7d"; }
.ic-layout-2-fill:before { content: "\ee7e"; }
.ic-layout-2-line:before { content: "\ee7f"; }
.ic-layout-3-fill:before { content: "\ee80"; }
.ic-layout-3-line:before { content: "\ee81"; }
.ic-layout-4-fill:before { content: "\ee82"; }
.ic-layout-4-line:before { content: "\ee83"; }
.ic-layout-5-fill:before { content: "\ee84"; }
.ic-layout-5-line:before { content: "\ee85"; }
.ic-layout-6-fill:before { content: "\ee86"; }
.ic-layout-6-line:before { content: "\ee87"; }
.ic-layout-bottom-2-fill:before { content: "\ee88"; }
.ic-layout-bottom-2-line:before { content: "\ee89"; }
.ic-layout-bottom-fill:before { content: "\ee8a"; }
.ic-layout-bottom-line:before { content: "\ee8b"; }
.ic-layout-column-fill:before { content: "\ee8c"; }
.ic-layout-column-line:before { content: "\ee8d"; }
.ic-layout-fill:before { content: "\ee8e"; }
.ic-layout-grid-fill:before { content: "\ee8f"; }
.ic-layout-grid-line:before { content: "\ee90"; }
.ic-layout-left-2-fill:before { content: "\ee91"; }
.ic-layout-left-2-line:before { content: "\ee92"; }
.ic-layout-left-fill:before { content: "\ee93"; }
.ic-layout-left-line:before { content: "\ee94"; }
.ic-layout-line:before { content: "\ee95"; }
.ic-layout-masonry-fill:before { content: "\ee96"; }
.ic-layout-masonry-line:before { content: "\ee97"; }
.ic-layout-right-2-fill:before { content: "\ee98"; }
.ic-layout-right-2-line:before { content: "\ee99"; }
.ic-layout-right-fill:before { content: "\ee9a"; }
.ic-layout-right-line:before { content: "\ee9b"; }
.ic-layout-row-fill:before { content: "\ee9c"; }
.ic-layout-row-line:before { content: "\ee9d"; }
.ic-layout-top-2-fill:before { content: "\ee9e"; }
.ic-layout-top-2-line:before { content: "\ee9f"; }
.ic-layout-top-fill:before { content: "\eea0"; }
.ic-layout-top-line:before { content: "\eea1"; }
.ic-leaf-fill:before { content: "\eea2"; }
.ic-leaf-line:before { content: "\eea3"; }
.ic-lifebuoy-fill:before { content: "\eea4"; }
.ic-lifebuoy-line:before { content: "\eea5"; }
.ic-lightbulb-fill:before { content: "\eea6"; }
.ic-lightbulb-flash-fill:before { content: "\eea7"; }
.ic-lightbulb-flash-line:before { content: "\eea8"; }
.ic-lightbulb-line:before { content: "\eea9"; }
.ic-line-chart-fill:before { content: "\eeaa"; }
.ic-line-chart-line:before { content: "\eeab"; }
.ic-line-fill:before { content: "\eeac"; }
.ic-line-height:before { content: "\eead"; }
.ic-line-line:before { content: "\eeae"; }
.ic-link-m:before { content: "\eeaf"; }
.ic-link-unlink-m:before { content: "\eeb0"; }
.ic-link-unlink:before { content: "\eeb1"; }
.ic-link:before { content: "\eeb2"; }
.ic-linkedin-box-fill:before { content: "\eeb3"; }
.ic-linkedin-box-line:before { content: "\eeb4"; }
.ic-linkedin-fill:before { content: "\eeb5"; }
.ic-linkedin-line:before { content: "\eeb6"; }
.ic-links-fill:before { content: "\eeb7"; }
.ic-links-line:before { content: "\eeb8"; }
.ic-list-check-2:before { content: "\eeb9"; }
.ic-list-check:before { content: "\eeba"; }
.ic-list-ordered:before { content: "\eebb"; }
.ic-list-settings-fill:before { content: "\eebc"; }
.ic-list-settings-line:before { content: "\eebd"; }
.ic-list-unordered:before { content: "\eebe"; }
.ic-live-fill:before { content: "\eebf"; }
.ic-live-line:before { content: "\eec0"; }
.ic-loader-2-fill:before { content: "\eec1"; }
.ic-loader-2-line:before { content: "\eec2"; }
.ic-loader-3-fill:before { content: "\eec3"; }
.ic-loader-3-line:before { content: "\eec4"; }
.ic-loader-4-fill:before { content: "\eec5"; }
.ic-loader-4-line:before { content: "\eec6"; }
.ic-loader-5-fill:before { content: "\eec7"; }
.ic-loader-5-line:before { content: "\eec8"; }
.ic-loader-fill:before { content: "\eec9"; }
.ic-loader-line:before { content: "\eeca"; }
.ic-lock-2-fill:before { content: "\eecb"; }
.ic-lock-2-line:before { content: "\eecc"; }
.ic-lock-fill:before { content: "\eecd"; }
.ic-lock-line:before { content: "\eece"; }
.ic-lock-password-fill:before { content: "\eecf"; }
.ic-lock-password-line:before { content: "\eed0"; }
.ic-lock-unlock-fill:before { content: "\eed1"; }
.ic-lock-unlock-line:before { content: "\eed2"; }
.ic-login-box-fill:before { content: "\eed3"; }
.ic-login-box-line:before { content: "\eed4"; }
.ic-login-circle-fill:before { content: "\eed5"; }
.ic-login-circle-line:before { content: "\eed6"; }
.ic-logout-box-fill:before { content: "\eed7"; }
.ic-logout-box-line:before { content: "\eed8"; }
.ic-logout-box-r-fill:before { content: "\eed9"; }
.ic-logout-box-r-line:before { content: "\eeda"; }
.ic-logout-circle-fill:before { content: "\eedb"; }
.ic-logout-circle-line:before { content: "\eedc"; }
.ic-logout-circle-r-fill:before { content: "\eedd"; }
.ic-logout-circle-r-line:before { content: "\eede"; }
.ic-luggage-cart-fill:before { content: "\eedf"; }
.ic-luggage-cart-line:before { content: "\eee0"; }
.ic-luggage-deposit-fill:before { content: "\eee1"; }
.ic-luggage-deposit-line:before { content: "\eee2"; }
.ic-lungs-fill:before { content: "\eee3"; }
.ic-lungs-line:before { content: "\eee4"; }
.ic-mac-fill:before { content: "\eee5"; }
.ic-mac-line:before { content: "\eee6"; }
.ic-macbook-fill:before { content: "\eee7"; }
.ic-macbook-line:before { content: "\eee8"; }
.ic-magic-fill:before { content: "\eee9"; }
.ic-magic-line:before { content: "\eeea"; }
.ic-mail-add-fill:before { content: "\eeeb"; }
.ic-mail-add-line:before { content: "\eeec"; }
.ic-mail-check-fill:before { content: "\eeed"; }
.ic-mail-check-line:before { content: "\eeee"; }
.ic-mail-close-fill:before { content: "\eeef"; }
.ic-mail-close-line:before { content: "\eef0"; }
.ic-mail-download-fill:before { content: "\eef1"; }
.ic-mail-download-line:before { content: "\eef2"; }
.ic-mail-fill:before { content: "\eef3"; }
.ic-mail-forbid-fill:before { content: "\eef4"; }
.ic-mail-forbid-line:before { content: "\eef5"; }
.ic-mail-line:before { content: "\eef6"; }
.ic-mail-lock-fill:before { content: "\eef7"; }
.ic-mail-lock-line:before { content: "\eef8"; }
.ic-mail-open-fill:before { content: "\eef9"; }
.ic-mail-open-line:before { content: "\eefa"; }
.ic-mail-send-fill:before { content: "\eefb"; }
.ic-mail-send-line:before { content: "\eefc"; }
.ic-mail-settings-fill:before { content: "\eefd"; }
.ic-mail-settings-line:before { content: "\eefe"; }
.ic-mail-star-fill:before { content: "\eeff"; }
.ic-mail-star-line:before { content: "\ef00"; }
.ic-mail-unread-fill:before { content: "\ef01"; }
.ic-mail-unread-line:before { content: "\ef02"; }
.ic-mail-volume-fill:before { content: "\ef03"; }
.ic-mail-volume-line:before { content: "\ef04"; }
.ic-map-2-fill:before { content: "\ef05"; }
.ic-map-2-line:before { content: "\ef06"; }
.ic-map-fill:before { content: "\ef07"; }
.ic-map-line:before { content: "\ef08"; }
.ic-map-pin-2-fill:before { content: "\ef09"; }
.ic-map-pin-2-line:before { content: "\ef0a"; }
.ic-map-pin-3-fill:before { content: "\ef0b"; }
.ic-map-pin-3-line:before { content: "\ef0c"; }
.ic-map-pin-4-fill:before { content: "\ef0d"; }
.ic-map-pin-4-line:before { content: "\ef0e"; }
.ic-map-pin-5-fill:before { content: "\ef0f"; }
.ic-map-pin-5-line:before { content: "\ef10"; }
.ic-map-pin-add-fill:before { content: "\ef11"; }
.ic-map-pin-add-line:before { content: "\ef12"; }
.ic-map-pin-fill:before { content: "\ef13"; }
.ic-map-pin-line:before { content: "\ef14"; }
.ic-map-pin-range-fill:before { content: "\ef15"; }
.ic-map-pin-range-line:before { content: "\ef16"; }
.ic-map-pin-time-fill:before { content: "\ef17"; }
.ic-map-pin-time-line:before { content: "\ef18"; }
.ic-map-pin-user-fill:before { content: "\ef19"; }
.ic-map-pin-user-line:before { content: "\ef1a"; }
.ic-mark-pen-fill:before { content: "\ef1b"; }
.ic-mark-pen-line:before { content: "\ef1c"; }
.ic-markdown-fill:before { content: "\ef1d"; }
.ic-markdown-line:before { content: "\ef1e"; }
.ic-markup-fill:before { content: "\ef1f"; }
.ic-markup-line:before { content: "\ef20"; }
.ic-mastercard-fill:before { content: "\ef21"; }
.ic-mastercard-line:before { content: "\ef22"; }
.ic-mastodon-fill:before { content: "\ef23"; }
.ic-mastodon-line:before { content: "\ef24"; }
.ic-medal-2-fill:before { content: "\ef25"; }
.ic-medal-2-line:before { content: "\ef26"; }
.ic-medal-fill:before { content: "\ef27"; }
.ic-medal-line:before { content: "\ef28"; }
.ic-medicine-bottle-fill:before { content: "\ef29"; }
.ic-medicine-bottle-line:before { content: "\ef2a"; }
.ic-medium-fill:before { content: "\ef2b"; }
.ic-medium-line:before { content: "\ef2c"; }
.ic-men-fill:before { content: "\ef2d"; }
.ic-men-line:before { content: "\ef2e"; }
.ic-mental-health-fill:before { content: "\ef2f"; }
.ic-mental-health-line:before { content: "\ef30"; }
.ic-menu-2-fill:before { content: "\ef31"; }
.ic-menu-2-line:before { content: "\ef32"; }
.ic-menu-3-fill:before { content: "\ef33"; }
.ic-menu-3-line:before { content: "\ef34"; }
.ic-menu-4-fill:before { content: "\ef35"; }
.ic-menu-4-line:before { content: "\ef36"; }
.ic-menu-5-fill:before { content: "\ef37"; }
.ic-menu-5-line:before { content: "\ef38"; }
.ic-menu-add-fill:before { content: "\ef39"; }
.ic-menu-add-line:before { content: "\ef3a"; }
.ic-menu-fill:before { content: "\ef3b"; }
.ic-menu-fold-fill:before { content: "\ef3c"; }
.ic-menu-fold-line:before { content: "\ef3d"; }
.ic-menu-line:before { content: "\ef3e"; }
.ic-menu-unfold-fill:before { content: "\ef3f"; }
.ic-menu-unfold-line:before { content: "\ef40"; }
.ic-merge-cells-horizontal:before { content: "\ef41"; }
.ic-merge-cells-vertical:before { content: "\ef42"; }
.ic-message-2-fill:before { content: "\ef43"; }
.ic-message-2-line:before { content: "\ef44"; }
.ic-message-3-fill:before { content: "\ef45"; }
.ic-message-3-line:before { content: "\ef46"; }
.ic-message-fill:before { content: "\ef47"; }
.ic-message-line:before { content: "\ef48"; }
.ic-messenger-fill:before { content: "\ef49"; }
.ic-messenger-line:before { content: "\ef4a"; }
.ic-meteor-fill:before { content: "\ef4b"; }
.ic-meteor-line:before { content: "\ef4c"; }
.ic-mic-2-fill:before { content: "\ef4d"; }
.ic-mic-2-line:before { content: "\ef4e"; }
.ic-mic-fill:before { content: "\ef4f"; }
.ic-mic-line:before { content: "\ef50"; }
.ic-mic-off-fill:before { content: "\ef51"; }
.ic-mic-off-line:before { content: "\ef52"; }
.ic-mickey-fill:before { content: "\ef53"; }
.ic-mickey-line:before { content: "\ef54"; }
.ic-microscope-fill:before { content: "\ef55"; }
.ic-microscope-line:before { content: "\ef56"; }
.ic-microsoft-fill:before { content: "\ef57"; }
.ic-microsoft-line:before { content: "\ef58"; }
.ic-mind-map:before { content: "\ef59"; }
.ic-mini-program-fill:before { content: "\ef5a"; }
.ic-mini-program-line:before { content: "\ef5b"; }
.ic-mist-fill:before { content: "\ef5c"; }
.ic-mist-line:before { content: "\ef5d"; }
.ic-money-cny-box-fill:before { content: "\ef5e"; }
.ic-money-cny-box-line:before { content: "\ef5f"; }
.ic-money-cny-circle-fill:before { content: "\ef60"; }
.ic-money-cny-circle-line:before { content: "\ef61"; }
.ic-money-dollar-box-fill:before { content: "\ef62"; }
.ic-money-dollar-box-line:before { content: "\ef63"; }
.ic-money-dollar-circle-fill:before { content: "\ef64"; }
.ic-money-dollar-circle-line:before { content: "\ef65"; }
.ic-money-euro-box-fill:before { content: "\ef66"; }
.ic-money-euro-box-line:before { content: "\ef67"; }
.ic-money-euro-circle-fill:before { content: "\ef68"; }
.ic-money-euro-circle-line:before { content: "\ef69"; }
.ic-money-pound-box-fill:before { content: "\ef6a"; }
.ic-money-pound-box-line:before { content: "\ef6b"; }
.ic-money-pound-circle-fill:before { content: "\ef6c"; }
.ic-money-pound-circle-line:before { content: "\ef6d"; }
.ic-moon-clear-fill:before { content: "\ef6e"; }
.ic-moon-clear-line:before { content: "\ef6f"; }
.ic-moon-cloudy-fill:before { content: "\ef70"; }
.ic-moon-cloudy-line:before { content: "\ef71"; }
.ic-moon-fill:before { content: "\ef72"; }
.ic-moon-foggy-fill:before { content: "\ef73"; }
.ic-moon-foggy-line:before { content: "\ef74"; }
.ic-moon-line:before { content: "\ef75"; }
.ic-more-2-fill:before { content: "\ef76"; }
.ic-more-2-line:before { content: "\ef77"; }
.ic-more-fill:before { content: "\ef78"; }
.ic-more-line:before { content: "\ef79"; }
.ic-motorbike-fill:before { content: "\ef7a"; }
.ic-motorbike-line:before { content: "\ef7b"; }
.ic-mouse-fill:before { content: "\ef7c"; }
.ic-mouse-line:before { content: "\ef7d"; }
.ic-movie-2-fill:before { content: "\ef7e"; }
.ic-movie-2-line:before { content: "\ef7f"; }
.ic-movie-fill:before { content: "\ef80"; }
.ic-movie-line:before { content: "\ef81"; }
.ic-music-2-fill:before { content: "\ef82"; }
.ic-music-2-line:before { content: "\ef83"; }
.ic-music-fill:before { content: "\ef84"; }
.ic-music-line:before { content: "\ef85"; }
.ic-mv-fill:before { content: "\ef86"; }
.ic-mv-line:before { content: "\ef87"; }
.ic-navigation-fill:before { content: "\ef88"; }
.ic-navigation-line:before { content: "\ef89"; }
.ic-netease-cloud-music-fill:before { content: "\ef8a"; }
.ic-netease-cloud-music-line:before { content: "\ef8b"; }
.ic-netflix-fill:before { content: "\ef8c"; }
.ic-netflix-line:before { content: "\ef8d"; }
.ic-newspaper-fill:before { content: "\ef8e"; }
.ic-newspaper-line:before { content: "\ef8f"; }
.ic-node-tree:before { content: "\ef90"; }
.ic-notification-2-fill:before { content: "\ef91"; }
.ic-notification-2-line:before { content: "\ef92"; }
.ic-notification-3-fill:before { content: "\ef93"; }
.ic-notification-3-line:before { content: "\ef94"; }
.ic-notification-4-fill:before { content: "\ef95"; }
.ic-notification-4-line:before { content: "\ef96"; }
.ic-notification-badge-fill:before { content: "\ef97"; }
.ic-notification-badge-line:before { content: "\ef98"; }
.ic-notification-fill:before { content: "\ef99"; }
.ic-notification-line:before { content: "\ef9a"; }
.ic-notification-off-fill:before { content: "\ef9b"; }
.ic-notification-off-line:before { content: "\ef9c"; }
.ic-npmjs-fill:before { content: "\ef9d"; }
.ic-npmjs-line:before { content: "\ef9e"; }
.ic-number-0:before { content: "\ef9f"; }
.ic-number-1:before { content: "\efa0"; }
.ic-number-2:before { content: "\efa1"; }
.ic-number-3:before { content: "\efa2"; }
.ic-number-4:before { content: "\efa3"; }
.ic-number-5:before { content: "\efa4"; }
.ic-number-6:before { content: "\efa5"; }
.ic-number-7:before { content: "\efa6"; }
.ic-number-8:before { content: "\efa7"; }
.ic-number-9:before { content: "\efa8"; }
.ic-numbers-fill:before { content: "\efa9"; }
.ic-numbers-line:before { content: "\efaa"; }
.ic-nurse-fill:before { content: "\efab"; }
.ic-nurse-line:before { content: "\efac"; }
.ic-oil-fill:before { content: "\efad"; }
.ic-oil-line:before { content: "\efae"; }
.ic-omega:before { content: "\efaf"; }
.ic-open-arm-fill:before { content: "\efb0"; }
.ic-open-arm-line:before { content: "\efb1"; }
.ic-open-source-fill:before { content: "\efb2"; }
.ic-open-source-line:before { content: "\efb3"; }
.ic-opera-fill:before { content: "\efb4"; }
.ic-opera-line:before { content: "\efb5"; }
.ic-order-play-fill:before { content: "\efb6"; }
.ic-order-play-line:before { content: "\efb7"; }
.ic-organization-chart:before { content: "\efb8"; }
.ic-outlet-2-fill:before { content: "\efb9"; }
.ic-outlet-2-line:before { content: "\efba"; }
.ic-outlet-fill:before { content: "\efbb"; }
.ic-outlet-line:before { content: "\efbc"; }
.ic-page-separator:before { content: "\efbd"; }
.ic-pages-fill:before { content: "\efbe"; }
.ic-pages-line:before { content: "\efbf"; }
.ic-paint-brush-fill:before { content: "\efc0"; }
.ic-paint-brush-line:before { content: "\efc1"; }
.ic-paint-fill:before { content: "\efc2"; }
.ic-paint-line:before { content: "\efc3"; }
.ic-palette-fill:before { content: "\efc4"; }
.ic-palette-line:before { content: "\efc5"; }
.ic-pantone-fill:before { content: "\efc6"; }
.ic-pantone-line:before { content: "\efc7"; }
.ic-paragraph:before { content: "\efc8"; }
.ic-parent-fill:before { content: "\efc9"; }
.ic-parent-line:before { content: "\efca"; }
.ic-parentheses-fill:before { content: "\efcb"; }
.ic-parentheses-line:before { content: "\efcc"; }
.ic-parking-box-fill:before { content: "\efcd"; }
.ic-parking-box-line:before { content: "\efce"; }
.ic-parking-fill:before { content: "\efcf"; }
.ic-parking-line:before { content: "\efd0"; }
.ic-passport-fill:before { content: "\efd1"; }
.ic-passport-line:before { content: "\efd2"; }
.ic-patreon-fill:before { content: "\efd3"; }
.ic-patreon-line:before { content: "\efd4"; }
.ic-pause-circle-fill:before { content: "\efd5"; }
.ic-pause-circle-line:before { content: "\efd6"; }
.ic-pause-fill:before { content: "\efd7"; }
.ic-pause-line:before { content: "\efd8"; }
.ic-pause-mini-fill:before { content: "\efd9"; }
.ic-pause-mini-line:before { content: "\efda"; }
.ic-paypal-fill:before { content: "\efdb"; }
.ic-paypal-line:before { content: "\efdc"; }
.ic-pen-nib-fill:before { content: "\efdd"; }
.ic-pen-nib-line:before { content: "\efde"; }
.ic-pencil-fill:before { content: "\efdf"; }
.ic-pencil-line:before { content: "\efe0"; }
.ic-pencil-ruler-2-fill:before { content: "\efe1"; }
.ic-pencil-ruler-2-line:before { content: "\efe2"; }
.ic-pencil-ruler-fill:before { content: "\efe3"; }
.ic-pencil-ruler-line:before { content: "\efe4"; }
.ic-percent-fill:before { content: "\efe5"; }
.ic-percent-line:before { content: "\efe6"; }
.ic-phone-camera-fill:before { content: "\efe7"; }
.ic-phone-camera-line:before { content: "\efe8"; }
.ic-phone-fill:before { content: "\efe9"; }
.ic-phone-find-fill:before { content: "\efea"; }
.ic-phone-find-line:before { content: "\efeb"; }
.ic-phone-line:before { content: "\efec"; }
.ic-phone-lock-fill:before { content: "\efed"; }
.ic-phone-lock-line:before { content: "\efee"; }
.ic-picture-in-picture-2-fill:before { content: "\efef"; }
.ic-picture-in-picture-2-line:before { content: "\eff0"; }
.ic-picture-in-picture-exit-fill:before { content: "\eff1"; }
.ic-picture-in-picture-exit-line:before { content: "\eff2"; }
.ic-picture-in-picture-fill:before { content: "\eff3"; }
.ic-picture-in-picture-line:before { content: "\eff4"; }
.ic-pie-chart-2-fill:before { content: "\eff5"; }
.ic-pie-chart-2-line:before { content: "\eff6"; }
.ic-pie-chart-box-fill:before { content: "\eff7"; }
.ic-pie-chart-box-line:before { content: "\eff8"; }
.ic-pie-chart-fill:before { content: "\eff9"; }
.ic-pie-chart-line:before { content: "\effa"; }
.ic-pin-distance-fill:before { content: "\effb"; }
.ic-pin-distance-line:before { content: "\effc"; }
.ic-ping-pong-fill:before { content: "\effd"; }
.ic-ping-pong-line:before { content: "\effe"; }
.ic-pinterest-fill:before { content: "\efff"; }
.ic-pinterest-line:before { content: "\f000"; }
.ic-pinyin-input:before { content: "\f001"; }
.ic-pixelfed-fill:before { content: "\f002"; }
.ic-pixelfed-line:before { content: "\f003"; }
.ic-plane-fill:before { content: "\f004"; }
.ic-plane-line:before { content: "\f005"; }
.ic-plant-fill:before { content: "\f006"; }
.ic-plant-line:before { content: "\f007"; }
.ic-play-circle-fill:before { content: "\f008"; }
.ic-play-circle-line:before { content: "\f009"; }
.ic-play-fill:before { content: "\f00a"; }
.ic-play-line:before { content: "\f00b"; }
.ic-play-list-2-fill:before { content: "\f00c"; }
.ic-play-list-2-line:before { content: "\f00d"; }
.ic-play-list-add-fill:before { content: "\f00e"; }
.ic-play-list-add-line:before { content: "\f00f"; }
.ic-play-list-fill:before { content: "\f010"; }
.ic-play-list-line:before { content: "\f011"; }
.ic-play-mini-fill:before { content: "\f012"; }
.ic-play-mini-line:before { content: "\f013"; }
.ic-playstation-fill:before { content: "\f014"; }
.ic-playstation-line:before { content: "\f015"; }
.ic-plug-2-fill:before { content: "\f016"; }
.ic-plug-2-line:before { content: "\f017"; }
.ic-plug-fill:before { content: "\f018"; }
.ic-plug-line:before { content: "\f019"; }
.ic-polaroid-2-fill:before { content: "\f01a"; }
.ic-polaroid-2-line:before { content: "\f01b"; }
.ic-polaroid-fill:before { content: "\f01c"; }
.ic-polaroid-line:before { content: "\f01d"; }
.ic-police-car-fill:before { content: "\f01e"; }
.ic-police-car-line:before { content: "\f01f"; }
.ic-price-tag-2-fill:before { content: "\f020"; }
.ic-price-tag-2-line:before { content: "\f021"; }
.ic-price-tag-3-fill:before { content: "\f022"; }
.ic-price-tag-3-line:before { content: "\f023"; }
.ic-price-tag-fill:before { content: "\f024"; }
.ic-price-tag-line:before { content: "\f025"; }
.ic-printer-cloud-fill:before { content: "\f026"; }
.ic-printer-cloud-line:before { content: "\f027"; }
.ic-printer-fill:before { content: "\f028"; }
.ic-printer-line:before { content: "\f029"; }
.ic-product-hunt-fill:before { content: "\f02a"; }
.ic-product-hunt-line:before { content: "\f02b"; }
.ic-profile-fill:before { content: "\f02c"; }
.ic-profile-line:before { content: "\f02d"; }
.ic-projector-2-fill:before { content: "\f02e"; }
.ic-projector-2-line:before { content: "\f02f"; }
.ic-projector-fill:before { content: "\f030"; }
.ic-projector-line:before { content: "\f031"; }
.ic-psychotherapy-fill:before { content: "\f032"; }
.ic-psychotherapy-line:before { content: "\f033"; }
.ic-pulse-fill:before { content: "\f034"; }
.ic-pulse-line:before { content: "\f035"; }
.ic-pushpin-2-fill:before { content: "\f036"; }
.ic-pushpin-2-line:before { content: "\f037"; }
.ic-pushpin-fill:before { content: "\f038"; }
.ic-pushpin-line:before { content: "\f039"; }
.ic-qq-fill:before { content: "\f03a"; }
.ic-qq-line:before { content: "\f03b"; }
.ic-qr-code-fill:before { content: "\f03c"; }
.ic-qr-code-line:before { content: "\f03d"; }
.ic-qr-scan-2-fill:before { content: "\f03e"; }
.ic-qr-scan-2-line:before { content: "\f03f"; }
.ic-qr-scan-fill:before { content: "\f040"; }
.ic-qr-scan-line:before { content: "\f041"; }
.ic-question-answer-fill:before { content: "\f042"; }
.ic-question-answer-line:before { content: "\f043"; }
.ic-question-fill:before { content: "\f044"; }
.ic-question-line:before { content: "\f045"; }
.ic-question-mark:before { content: "\f046"; }
.ic-questionnaire-fill:before { content: "\f047"; }
.ic-questionnaire-line:before { content: "\f048"; }
.ic-quill-pen-fill:before { content: "\f049"; }
.ic-quill-pen-line:before { content: "\f04a"; }
.ic-radar-fill:before { content: "\f04b"; }
.ic-radar-line:before { content: "\f04c"; }
.ic-radio-2-fill:before { content: "\f04d"; }
.ic-radio-2-line:before { content: "\f04e"; }
.ic-radio-button-fill:before { content: "\f04f"; }
.ic-radio-button-line:before { content: "\f050"; }
.ic-radio-fill:before { content: "\f051"; }
.ic-radio-line:before { content: "\f052"; }
.ic-rainbow-fill:before { content: "\f053"; }
.ic-rainbow-line:before { content: "\f054"; }
.ic-rainy-fill:before { content: "\f055"; }
.ic-rainy-line:before { content: "\f056"; }
.ic-reactjs-fill:before { content: "\f057"; }
.ic-reactjs-line:before { content: "\f058"; }
.ic-record-circle-fill:before { content: "\f059"; }
.ic-record-circle-line:before { content: "\f05a"; }
.ic-record-mail-fill:before { content: "\f05b"; }
.ic-record-mail-line:before { content: "\f05c"; }
.ic-recycle-fill:before { content: "\f05d"; }
.ic-recycle-line:before { content: "\f05e"; }
.ic-red-packet-fill:before { content: "\f05f"; }
.ic-red-packet-line:before { content: "\f060"; }
.ic-reddit-fill:before { content: "\f061"; }
.ic-reddit-line:before { content: "\f062"; }
.ic-refresh-fill:before { content: "\f063"; }
.ic-refresh-line:before { content: "\f064"; }
.ic-refund-2-fill:before { content: "\f065"; }
.ic-refund-2-line:before { content: "\f066"; }
.ic-refund-fill:before { content: "\f067"; }
.ic-refund-line:before { content: "\f068"; }
.ic-registered-fill:before { content: "\f069"; }
.ic-registered-line:before { content: "\f06a"; }
.ic-remixicon-fill:before { content: "\f06b"; }
.ic-remixicon-line:before { content: "\f06c"; }
.ic-remote-control-2-fill:before { content: "\f06d"; }
.ic-remote-control-2-line:before { content: "\f06e"; }
.ic-remote-control-fill:before { content: "\f06f"; }
.ic-remote-control-line:before { content: "\f070"; }
.ic-repeat-2-fill:before { content: "\f071"; }
.ic-repeat-2-line:before { content: "\f072"; }
.ic-repeat-fill:before { content: "\f073"; }
.ic-repeat-line:before { content: "\f074"; }
.ic-repeat-one-fill:before { content: "\f075"; }
.ic-repeat-one-line:before { content: "\f076"; }
.ic-reply-all-fill:before { content: "\f077"; }
.ic-reply-all-line:before { content: "\f078"; }
.ic-reply-fill:before { content: "\f079"; }
.ic-reply-line:before { content: "\f07a"; }
.ic-reserved-fill:before { content: "\f07b"; }
.ic-reserved-line:before { content: "\f07c"; }
.ic-rest-time-fill:before { content: "\f07d"; }
.ic-rest-time-line:before { content: "\f07e"; }
.ic-restart-fill:before { content: "\f07f"; }
.ic-restart-line:before { content: "\f080"; }
.ic-restaurant-2-fill:before { content: "\f081"; }
.ic-restaurant-2-line:before { content: "\f082"; }
.ic-restaurant-fill:before { content: "\f083"; }
.ic-restaurant-line:before { content: "\f084"; }
.ic-rewind-fill:before { content: "\f085"; }
.ic-rewind-line:before { content: "\f086"; }
.ic-rewind-mini-fill:before { content: "\f087"; }
.ic-rewind-mini-line:before { content: "\f088"; }
.ic-rhythm-fill:before { content: "\f089"; }
.ic-rhythm-line:before { content: "\f08a"; }
.ic-riding-fill:before { content: "\f08b"; }
.ic-riding-line:before { content: "\f08c"; }
.ic-road-map-fill:before { content: "\f08d"; }
.ic-road-map-line:before { content: "\f08e"; }
.ic-roadster-fill:before { content: "\f08f"; }
.ic-roadster-line:before { content: "\f090"; }
.ic-robot-fill:before { content: "\f091"; }
.ic-robot-line:before { content: "\f092"; }
.ic-rocket-2-fill:before { content: "\f093"; }
.ic-rocket-2-line:before { content: "\f094"; }
.ic-rocket-fill:before { content: "\f095"; }
.ic-rocket-line:before { content: "\f096"; }
.ic-rotate-lock-fill:before { content: "\f097"; }
.ic-rotate-lock-line:before { content: "\f098"; }
.ic-rounded-corner:before { content: "\f099"; }
.ic-route-fill:before { content: "\f09a"; }
.ic-route-line:before { content: "\f09b"; }
.ic-router-fill:before { content: "\f09c"; }
.ic-router-line:before { content: "\f09d"; }
.ic-rss-fill:before { content: "\f09e"; }
.ic-rss-line:before { content: "\f09f"; }
.ic-ruler-2-fill:before { content: "\f0a0"; }
.ic-ruler-2-line:before { content: "\f0a1"; }
.ic-ruler-fill:before { content: "\f0a2"; }
.ic-ruler-line:before { content: "\f0a3"; }
.ic-run-fill:before { content: "\f0a4"; }
.ic-run-line:before { content: "\f0a5"; }
.ic-safaic-fill:before { content: "\f0a6"; }
.ic-safaic-line:before { content: "\f0a7"; }
.ic-safe-2-fill:before { content: "\f0a8"; }
.ic-safe-2-line:before { content: "\f0a9"; }
.ic-safe-fill:before { content: "\f0aa"; }
.ic-safe-line:before { content: "\f0ab"; }
.ic-sailboat-fill:before { content: "\f0ac"; }
.ic-sailboat-line:before { content: "\f0ad"; }
.ic-save-2-fill:before { content: "\f0ae"; }
.ic-save-2-line:before { content: "\f0af"; }
.ic-save-3-fill:before { content: "\f0b0"; }
.ic-save-3-line:before { content: "\f0b1"; }
.ic-save-fill:before { content: "\f0b2"; }
.ic-save-line:before { content: "\f0b3"; }
.ic-scales-2-fill:before { content: "\f0b4"; }
.ic-scales-2-line:before { content: "\f0b5"; }
.ic-scales-3-fill:before { content: "\f0b6"; }
.ic-scales-3-line:before { content: "\f0b7"; }
.ic-scales-fill:before { content: "\f0b8"; }
.ic-scales-line:before { content: "\f0b9"; }
.ic-scan-2-fill:before { content: "\f0ba"; }
.ic-scan-2-line:before { content: "\f0bb"; }
.ic-scan-fill:before { content: "\f0bc"; }
.ic-scan-line:before { content: "\f0bd"; }
.ic-scissors-2-fill:before { content: "\f0be"; }
.ic-scissors-2-line:before { content: "\f0bf"; }
.ic-scissors-cut-fill:before { content: "\f0c0"; }
.ic-scissors-cut-line:before { content: "\f0c1"; }
.ic-scissors-fill:before { content: "\f0c2"; }
.ic-scissors-line:before { content: "\f0c3"; }
.ic-screenshot-2-fill:before { content: "\f0c4"; }
.ic-screenshot-2-line:before { content: "\f0c5"; }
.ic-screenshot-fill:before { content: "\f0c6"; }
.ic-screenshot-line:before { content: "\f0c7"; }
.ic-sd-card-fill:before { content: "\f0c8"; }
.ic-sd-card-line:before { content: "\f0c9"; }
.ic-sd-card-mini-fill:before { content: "\f0ca"; }
.ic-sd-card-mini-line:before { content: "\f0cb"; }
.ic-search-2-fill:before { content: "\f0cc"; }
.ic-search-2-line:before { content: "\f0cd"; }
.ic-search-eye-fill:before { content: "\f0ce"; }
.ic-search-eye-line:before { content: "\f0cf"; }
.ic-search-fill:before { content: "\f0d0"; }
.ic-search-line:before { content: "\f0d1"; }
.ic-secure-payment-fill:before { content: "\f0d2"; }
.ic-secure-payment-line:before { content: "\f0d3"; }
.ic-seedling-fill:before { content: "\f0d4"; }
.ic-seedling-line:before { content: "\f0d5"; }
.ic-send-backward:before { content: "\f0d6"; }
.ic-send-plane-2-fill:before { content: "\f0d7"; }
.ic-send-plane-2-line:before { content: "\f0d8"; }
.ic-send-plane-fill:before { content: "\f0d9"; }
.ic-send-plane-line:before { content: "\f0da"; }
.ic-send-to-back:before { content: "\f0db"; }
.ic-sensor-fill:before { content: "\f0dc"; }
.ic-sensor-line:before { content: "\f0dd"; }
.ic-separator:before { content: "\f0de"; }
.ic-server-fill:before { content: "\f0df"; }
.ic-server-line:before { content: "\f0e0"; }
.ic-service-fill:before { content: "\f0e1"; }
.ic-service-line:before { content: "\f0e2"; }
.ic-settings-2-fill:before { content: "\f0e3"; }
.ic-settings-2-line:before { content: "\f0e4"; }
.ic-settings-3-fill:before { content: "\f0e5"; }
.ic-settings-3-line:before { content: "\f0e6"; }
.ic-settings-4-fill:before { content: "\f0e7"; }
.ic-settings-4-line:before { content: "\f0e8"; }
.ic-settings-5-fill:before { content: "\f0e9"; }
.ic-settings-5-line:before { content: "\f0ea"; }
.ic-settings-6-fill:before { content: "\f0eb"; }
.ic-settings-6-line:before { content: "\f0ec"; }
.ic-settings-fill:before { content: "\f0ed"; }
.ic-settings-line:before { content: "\f0ee"; }
.ic-shape-2-fill:before { content: "\f0ef"; }
.ic-shape-2-line:before { content: "\f0f0"; }
.ic-shape-fill:before { content: "\f0f1"; }
.ic-shape-line:before { content: "\f0f2"; }
.ic-share-box-fill:before { content: "\f0f3"; }
.ic-share-box-line:before { content: "\f0f4"; }
.ic-share-circle-fill:before { content: "\f0f5"; }
.ic-share-circle-line:before { content: "\f0f6"; }
.ic-share-fill:before { content: "\f0f7"; }
.ic-share-forward-2-fill:before { content: "\f0f8"; }
.ic-share-forward-2-line:before { content: "\f0f9"; }
.ic-share-forward-box-fill:before { content: "\f0fa"; }
.ic-share-forward-box-line:before { content: "\f0fb"; }
.ic-share-forward-fill:before { content: "\f0fc"; }
.ic-share-forward-line:before { content: "\f0fd"; }
.ic-share-line:before { content: "\f0fe"; }
.ic-shield-check-fill:before { content: "\f0ff"; }
.ic-shield-check-line:before { content: "\f100"; }
.ic-shield-cross-fill:before { content: "\f101"; }
.ic-shield-cross-line:before { content: "\f102"; }
.ic-shield-fill:before { content: "\f103"; }
.ic-shield-flash-fill:before { content: "\f104"; }
.ic-shield-flash-line:before { content: "\f105"; }
.ic-shield-keyhole-fill:before { content: "\f106"; }
.ic-shield-keyhole-line:before { content: "\f107"; }
.ic-shield-line:before { content: "\f108"; }
.ic-shield-star-fill:before { content: "\f109"; }
.ic-shield-star-line:before { content: "\f10a"; }
.ic-shield-user-fill:before { content: "\f10b"; }
.ic-shield-user-line:before { content: "\f10c"; }
.ic-ship-2-fill:before { content: "\f10d"; }
.ic-ship-2-line:before { content: "\f10e"; }
.ic-ship-fill:before { content: "\f10f"; }
.ic-ship-line:before { content: "\f110"; }
.ic-shirt-fill:before { content: "\f111"; }
.ic-shirt-line:before { content: "\f112"; }
.ic-shopping-bag-2-fill:before { content: "\f113"; }
.ic-shopping-bag-2-line:before { content: "\f114"; }
.ic-shopping-bag-3-fill:before { content: "\f115"; }
.ic-shopping-bag-3-line:before { content: "\f116"; }
.ic-shopping-bag-fill:before { content: "\f117"; }
.ic-shopping-bag-line:before { content: "\f118"; }
.ic-shopping-basket-2-fill:before { content: "\f119"; }
.ic-shopping-basket-2-line:before { content: "\f11a"; }
.ic-shopping-basket-fill:before { content: "\f11b"; }
.ic-shopping-basket-line:before { content: "\f11c"; }
.ic-shopping-cart-2-fill:before { content: "\f11d"; }
.ic-shopping-cart-2-line:before { content: "\f11e"; }
.ic-shopping-cart-fill:before { content: "\f11f"; }
.ic-shopping-cart-line:before { content: "\f120"; }
.ic-showers-fill:before { content: "\f121"; }
.ic-showers-line:before { content: "\f122"; }
.ic-shuffle-fill:before { content: "\f123"; }
.ic-shuffle-line:before { content: "\f124"; }
.ic-shut-down-fill:before { content: "\f125"; }
.ic-shut-down-line:before { content: "\f126"; }
.ic-side-bar-fill:before { content: "\f127"; }
.ic-side-bar-line:before { content: "\f128"; }
.ic-signal-tower-fill:before { content: "\f129"; }
.ic-signal-tower-line:before { content: "\f12a"; }
.ic-signal-wifi-1-fill:before { content: "\f12b"; }
.ic-signal-wifi-1-line:before { content: "\f12c"; }
.ic-signal-wifi-2-fill:before { content: "\f12d"; }
.ic-signal-wifi-2-line:before { content: "\f12e"; }
.ic-signal-wifi-3-fill:before { content: "\f12f"; }
.ic-signal-wifi-3-line:before { content: "\f130"; }
.ic-signal-wifi-error-fill:before { content: "\f131"; }
.ic-signal-wifi-error-line:before { content: "\f132"; }
.ic-signal-wifi-fill:before { content: "\f133"; }
.ic-signal-wifi-line:before { content: "\f134"; }
.ic-signal-wifi-off-fill:before { content: "\f135"; }
.ic-signal-wifi-off-line:before { content: "\f136"; }
.ic-sim-card-2-fill:before { content: "\f137"; }
.ic-sim-card-2-line:before { content: "\f138"; }
.ic-sim-card-fill:before { content: "\f139"; }
.ic-sim-card-line:before { content: "\f13a"; }
.ic-single-quotes-l:before { content: "\f13b"; }
.ic-single-quotes-r:before { content: "\f13c"; }
.ic-sip-fill:before { content: "\f13d"; }
.ic-sip-line:before { content: "\f13e"; }
.ic-skip-back-fill:before { content: "\f13f"; }
.ic-skip-back-line:before { content: "\f140"; }
.ic-skip-back-mini-fill:before { content: "\f141"; }
.ic-skip-back-mini-line:before { content: "\f142"; }
.ic-skip-forward-fill:before { content: "\f143"; }
.ic-skip-forward-line:before { content: "\f144"; }
.ic-skip-forward-mini-fill:before { content: "\f145"; }
.ic-skip-forward-mini-line:before { content: "\f146"; }
.ic-skull-2-fill:before { content: "\f147"; }
.ic-skull-2-line:before { content: "\f148"; }
.ic-skull-fill:before { content: "\f149"; }
.ic-skull-line:before { content: "\f14a"; }
.ic-skype-fill:before { content: "\f14b"; }
.ic-skype-line:before { content: "\f14c"; }
.ic-slack-fill:before { content: "\f14d"; }
.ic-slack-line:before { content: "\f14e"; }
.ic-slice-fill:before { content: "\f14f"; }
.ic-slice-line:before { content: "\f150"; }
.ic-slideshow-2-fill:before { content: "\f151"; }
.ic-slideshow-2-line:before { content: "\f152"; }
.ic-slideshow-3-fill:before { content: "\f153"; }
.ic-slideshow-3-line:before { content: "\f154"; }
.ic-slideshow-4-fill:before { content: "\f155"; }
.ic-slideshow-4-line:before { content: "\f156"; }
.ic-slideshow-fill:before { content: "\f157"; }
.ic-slideshow-line:before { content: "\f158"; }
.ic-smartphone-fill:before { content: "\f159"; }
.ic-smartphone-line:before { content: "\f15a"; }
.ic-snapchat-fill:before { content: "\f15b"; }
.ic-snapchat-line:before { content: "\f15c"; }
.ic-snowy-fill:before { content: "\f15d"; }
.ic-snowy-line:before { content: "\f15e"; }
.ic-sort-asc:before { content: "\f15f"; }
.ic-sort-desc:before { content: "\f160"; }
.ic-sound-module-fill:before { content: "\f161"; }
.ic-sound-module-line:before { content: "\f162"; }
.ic-soundcloud-fill:before { content: "\f163"; }
.ic-soundcloud-line:before { content: "\f164"; }
.ic-space-ship-fill:before { content: "\f165"; }
.ic-space-ship-line:before { content: "\f166"; }
.ic-space:before { content: "\f167"; }
.ic-spam-2-fill:before { content: "\f168"; }
.ic-spam-2-line:before { content: "\f169"; }
.ic-spam-3-fill:before { content: "\f16a"; }
.ic-spam-3-line:before { content: "\f16b"; }
.ic-spam-fill:before { content: "\f16c"; }
.ic-spam-line:before { content: "\f16d"; }
.ic-speaker-2-fill:before { content: "\f16e"; }
.ic-speaker-2-line:before { content: "\f16f"; }
.ic-speaker-3-fill:before { content: "\f170"; }
.ic-speaker-3-line:before { content: "\f171"; }
.ic-speaker-fill:before { content: "\f172"; }
.ic-speaker-line:before { content: "\f173"; }
.ic-spectrum-fill:before { content: "\f174"; }
.ic-spectrum-line:before { content: "\f175"; }
.ic-speed-fill:before { content: "\f176"; }
.ic-speed-line:before { content: "\f177"; }
.ic-speed-mini-fill:before { content: "\f178"; }
.ic-speed-mini-line:before { content: "\f179"; }
.ic-split-cells-horizontal:before { content: "\f17a"; }
.ic-split-cells-vertical:before { content: "\f17b"; }
.ic-spotify-fill:before { content: "\f17c"; }
.ic-spotify-line:before { content: "\f17d"; }
.ic-spy-fill:before { content: "\f17e"; }
.ic-spy-line:before { content: "\f17f"; }
.ic-stack-fill:before { content: "\f180"; }
.ic-stack-line:before { content: "\f181"; }
.ic-stack-overflow-fill:before { content: "\f182"; }
.ic-stack-overflow-line:before { content: "\f183"; }
.ic-stackshare-fill:before { content: "\f184"; }
.ic-stackshare-line:before { content: "\f185"; }
.ic-star-fill:before { content: "\f186"; }
.ic-star-half-fill:before { content: "\f187"; }
.ic-star-half-line:before { content: "\f188"; }
.ic-star-half-s-fill:before { content: "\f189"; }
.ic-star-half-s-line:before { content: "\f18a"; }
.ic-star-line:before { content: "\f18b"; }
.ic-star-s-fill:before { content: "\f18c"; }
.ic-star-s-line:before { content: "\f18d"; }
.ic-star-smile-fill:before { content: "\f18e"; }
.ic-star-smile-line:before { content: "\f18f"; }
.ic-steam-fill:before { content: "\f190"; }
.ic-steam-line:before { content: "\f191"; }
.ic-steering-2-fill:before { content: "\f192"; }
.ic-steering-2-line:before { content: "\f193"; }
.ic-steering-fill:before { content: "\f194"; }
.ic-steering-line:before { content: "\f195"; }
.ic-stethoscope-fill:before { content: "\f196"; }
.ic-stethoscope-line:before { content: "\f197"; }
.ic-sticky-note-2-fill:before { content: "\f198"; }
.ic-sticky-note-2-line:before { content: "\f199"; }
.ic-sticky-note-fill:before { content: "\f19a"; }
.ic-sticky-note-line:before { content: "\f19b"; }
.ic-stock-fill:before { content: "\f19c"; }
.ic-stock-line:before { content: "\f19d"; }
.ic-stop-circle-fill:before { content: "\f19e"; }
.ic-stop-circle-line:before { content: "\f19f"; }
.ic-stop-fill:before { content: "\f1a0"; }
.ic-stop-line:before { content: "\f1a1"; }
.ic-stop-mini-fill:before { content: "\f1a2"; }
.ic-stop-mini-line:before { content: "\f1a3"; }
.ic-store-2-fill:before { content: "\f1a4"; }
.ic-store-2-line:before { content: "\f1a5"; }
.ic-store-3-fill:before { content: "\f1a6"; }
.ic-store-3-line:before { content: "\f1a7"; }
.ic-store-fill:before { content: "\f1a8"; }
.ic-store-line:before { content: "\f1a9"; }
.ic-strikethrough-2:before { content: "\f1aa"; }
.ic-strikethrough:before { content: "\f1ab"; }
.ic-subscript-2:before { content: "\f1ac"; }
.ic-subscript:before { content: "\f1ad"; }
.ic-subtract-fill:before { content: "\f1ae"; }
.ic-subtract-line:before { content: "\f1af"; }
.ic-subway-fill:before { content: "\f1b0"; }
.ic-subway-line:before { content: "\f1b1"; }
.ic-subway-wifi-fill:before { content: "\f1b2"; }
.ic-subway-wifi-line:before { content: "\f1b3"; }
.ic-suitcase-2-fill:before { content: "\f1b4"; }
.ic-suitcase-2-line:before { content: "\f1b5"; }
.ic-suitcase-3-fill:before { content: "\f1b6"; }
.ic-suitcase-3-line:before { content: "\f1b7"; }
.ic-suitcase-fill:before { content: "\f1b8"; }
.ic-suitcase-line:before { content: "\f1b9"; }
.ic-sun-cloudy-fill:before { content: "\f1ba"; }
.ic-sun-cloudy-line:before { content: "\f1bb"; }
.ic-sun-fill:before { content: "\f1bc"; }
.ic-sun-foggy-fill:before { content: "\f1bd"; }
.ic-sun-foggy-line:before { content: "\f1be"; }
.ic-sun-line:before { content: "\f1bf"; }
.ic-superscript-2:before { content: "\f1c0"; }
.ic-superscript:before { content: "\f1c1"; }
.ic-surgical-mask-fill:before { content: "\f1c2"; }
.ic-surgical-mask-line:before { content: "\f1c3"; }
.ic-surround-sound-fill:before { content: "\f1c4"; }
.ic-surround-sound-line:before { content: "\f1c5"; }
.ic-survey-fill:before { content: "\f1c6"; }
.ic-survey-line:before { content: "\f1c7"; }
.ic-swap-box-fill:before { content: "\f1c8"; }
.ic-swap-box-line:before { content: "\f1c9"; }
.ic-swap-fill:before { content: "\f1ca"; }
.ic-swap-line:before { content: "\f1cb"; }
.ic-switch-fill:before { content: "\f1cc"; }
.ic-switch-line:before { content: "\f1cd"; }
.ic-sword-fill:before { content: "\f1ce"; }
.ic-sword-line:before { content: "\f1cf"; }
.ic-syringe-fill:before { content: "\f1d0"; }
.ic-syringe-line:before { content: "\f1d1"; }
.ic-t-box-fill:before { content: "\f1d2"; }
.ic-t-box-line:before { content: "\f1d3"; }
.ic-t-shirt-2-fill:before { content: "\f1d4"; }
.ic-t-shirt-2-line:before { content: "\f1d5"; }
.ic-t-shirt-air-fill:before { content: "\f1d6"; }
.ic-t-shirt-air-line:before { content: "\f1d7"; }
.ic-t-shirt-fill:before { content: "\f1d8"; }
.ic-t-shirt-line:before { content: "\f1d9"; }
.ic-table-2:before { content: "\f1da"; }
.ic-table-alt-fill:before { content: "\f1db"; }
.ic-table-alt-line:before { content: "\f1dc"; }
.ic-table-fill:before { content: "\f1dd"; }
.ic-table-line:before { content: "\f1de"; }
.ic-tablet-fill:before { content: "\f1df"; }
.ic-tablet-line:before { content: "\f1e0"; }
.ic-takeaway-fill:before { content: "\f1e1"; }
.ic-takeaway-line:before { content: "\f1e2"; }
.ic-taobao-fill:before { content: "\f1e3"; }
.ic-taobao-line:before { content: "\f1e4"; }
.ic-tape-fill:before { content: "\f1e5"; }
.ic-tape-line:before { content: "\f1e6"; }
.ic-task-fill:before { content: "\f1e7"; }
.ic-task-line:before { content: "\f1e8"; }
.ic-taxi-fill:before { content: "\f1e9"; }
.ic-taxi-line:before { content: "\f1ea"; }
.ic-taxi-wifi-fill:before { content: "\f1eb"; }
.ic-taxi-wifi-line:before { content: "\f1ec"; }
.ic-team-fill:before { content: "\f1ed"; }
.ic-team-line:before { content: "\f1ee"; }
.ic-telegram-fill:before { content: "\f1ef"; }
.ic-telegram-line:before { content: "\f1f0"; }
.ic-temp-cold-fill:before { content: "\f1f1"; }
.ic-temp-cold-line:before { content: "\f1f2"; }
.ic-temp-hot-fill:before { content: "\f1f3"; }
.ic-temp-hot-line:before { content: "\f1f4"; }
.ic-terminal-box-fill:before { content: "\f1f5"; }
.ic-terminal-box-line:before { content: "\f1f6"; }
.ic-terminal-fill:before { content: "\f1f7"; }
.ic-terminal-line:before { content: "\f1f8"; }
.ic-terminal-window-fill:before { content: "\f1f9"; }
.ic-terminal-window-line:before { content: "\f1fa"; }
.ic-test-tube-fill:before { content: "\f1fb"; }
.ic-test-tube-line:before { content: "\f1fc"; }
.ic-text-direction-l:before { content: "\f1fd"; }
.ic-text-direction-r:before { content: "\f1fe"; }
.ic-text-spacing:before { content: "\f1ff"; }
.ic-text-wrap:before { content: "\f200"; }
.ic-text:before { content: "\f201"; }
.ic-thermometer-fill:before { content: "\f202"; }
.ic-thermometer-line:before { content: "\f203"; }
.ic-thumb-down-fill:before { content: "\f204"; }
.ic-thumb-down-line:before { content: "\f205"; }
.ic-thumb-up-fill:before { content: "\f206"; }
.ic-thumb-up-line:before { content: "\f207"; }
.ic-thunderstorms-fill:before { content: "\f208"; }
.ic-thunderstorms-line:before { content: "\f209"; }
.ic-ticket-2-fill:before { content: "\f20a"; }
.ic-ticket-2-line:before { content: "\f20b"; }
.ic-ticket-fill:before { content: "\f20c"; }
.ic-ticket-line:before { content: "\f20d"; }
.ic-time-fill:before { content: "\f20e"; }
.ic-time-line:before { content: "\f20f"; }
.ic-timer-2-fill:before { content: "\f210"; }
.ic-timer-2-line:before { content: "\f211"; }
.ic-timer-fill:before { content: "\f212"; }
.ic-timer-flash-fill:before { content: "\f213"; }
.ic-timer-flash-line:before { content: "\f214"; }
.ic-timer-line:before { content: "\f215"; }
.ic-todo-fill:before { content: "\f216"; }
.ic-todo-line:before { content: "\f217"; }
.ic-toggle-fill:before { content: "\f218"; }
.ic-toggle-line:before { content: "\f219"; }
.ic-tools-fill:before { content: "\f21a"; }
.ic-tools-line:before { content: "\f21b"; }
.ic-tornado-fill:before { content: "\f21c"; }
.ic-tornado-line:before { content: "\f21d"; }
.ic-trademark-fill:before { content: "\f21e"; }
.ic-trademark-line:before { content: "\f21f"; }
.ic-traffic-light-fill:before { content: "\f220"; }
.ic-traffic-light-line:before { content: "\f221"; }
.ic-train-fill:before { content: "\f222"; }
.ic-train-line:before { content: "\f223"; }
.ic-train-wifi-fill:before { content: "\f224"; }
.ic-train-wifi-line:before { content: "\f225"; }
.ic-translate-2:before { content: "\f226"; }
.ic-translate:before { content: "\f227"; }
.ic-travesti-fill:before { content: "\f228"; }
.ic-travesti-line:before { content: "\f229"; }
.ic-treasure-map-fill:before { content: "\f22a"; }
.ic-treasure-map-line:before { content: "\f22b"; }
.ic-trello-fill:before { content: "\f22c"; }
.ic-trello-line:before { content: "\f22d"; }
.ic-trophy-fill:before { content: "\f22e"; }
.ic-trophy-line:before { content: "\f22f"; }
.ic-truck-fill:before { content: "\f230"; }
.ic-truck-line:before { content: "\f231"; }
.ic-tumblr-fill:before { content: "\f232"; }
.ic-tumblr-line:before { content: "\f233"; }
.ic-tv-2-fill:before { content: "\f234"; }
.ic-tv-2-line:before { content: "\f235"; }
.ic-tv-fill:before { content: "\f236"; }
.ic-tv-line:before { content: "\f237"; }
.ic-twitch-fill:before { content: "\f238"; }
.ic-twitch-line:before { content: "\f239"; }
.ic-twitter-fill:before { content: "\f23a"; }
.ic-twitter-line:before { content: "\f23b"; }
.ic-typhoon-fill:before { content: "\f23c"; }
.ic-typhoon-line:before { content: "\f23d"; }
.ic-u-disk-fill:before { content: "\f23e"; }
.ic-u-disk-line:before { content: "\f23f"; }
.ic-ubuntu-fill:before { content: "\f240"; }
.ic-ubuntu-line:before { content: "\f241"; }
.ic-umbrella-fill:before { content: "\f242"; }
.ic-umbrella-line:before { content: "\f243"; }
.ic-underline:before { content: "\f244"; }
.ic-uninstall-fill:before { content: "\f245"; }
.ic-uninstall-line:before { content: "\f246"; }
.ic-unsplash-fill:before { content: "\f247"; }
.ic-unsplash-line:before { content: "\f248"; }
.ic-upload-2-fill:before { content: "\f249"; }
.ic-upload-2-line:before { content: "\f24a"; }
.ic-upload-cloud-2-fill:before { content: "\f24b"; }
.ic-upload-cloud-2-line:before { content: "\f24c"; }
.ic-upload-cloud-fill:before { content: "\f24d"; }
.ic-upload-cloud-line:before { content: "\f24e"; }
.ic-upload-fill:before { content: "\f24f"; }
.ic-upload-line:before { content: "\f250"; }
.ic-usb-fill:before { content: "\f251"; }
.ic-usb-line:before { content: "\f252"; }
.ic-user-2-fill:before { content: "\f253"; }
.ic-user-2-line:before { content: "\f254"; }
.ic-user-3-fill:before { content: "\f255"; }
.ic-user-3-line:before { content: "\f256"; }
.ic-user-4-fill:before { content: "\f257"; }
.ic-user-4-line:before { content: "\f258"; }
.ic-user-5-fill:before { content: "\f259"; }
.ic-user-5-line:before { content: "\f25a"; }
.ic-user-6-fill:before { content: "\f25b"; }
.ic-user-6-line:before { content: "\f25c"; }
.ic-user-add-fill:before { content: "\f25d"; }
.ic-user-add-line:before { content: "\f25e"; }
.ic-user-fill:before { content: "\f25f"; }
.ic-user-follow-fill:before { content: "\f260"; }
.ic-user-follow-line:before { content: "\f261"; }
.ic-user-heart-fill:before { content: "\f262"; }
.ic-user-heart-line:before { content: "\f263"; }
.ic-user-line:before { content: "\f264"; }
.ic-user-location-fill:before { content: "\f265"; }
.ic-user-location-line:before { content: "\f266"; }
.ic-user-received-2-fill:before { content: "\f267"; }
.ic-user-received-2-line:before { content: "\f268"; }
.ic-user-received-fill:before { content: "\f269"; }
.ic-user-received-line:before { content: "\f26a"; }
.ic-user-search-fill:before { content: "\f26b"; }
.ic-user-search-line:before { content: "\f26c"; }
.ic-user-settings-fill:before { content: "\f26d"; }
.ic-user-settings-line:before { content: "\f26e"; }
.ic-user-shared-2-fill:before { content: "\f26f"; }
.ic-user-shared-2-line:before { content: "\f270"; }
.ic-user-shared-fill:before { content: "\f271"; }
.ic-user-shared-line:before { content: "\f272"; }
.ic-user-smile-fill:before { content: "\f273"; }
.ic-user-smile-line:before { content: "\f274"; }
.ic-user-star-fill:before { content: "\f275"; }
.ic-user-star-line:before { content: "\f276"; }
.ic-user-unfollow-fill:before { content: "\f277"; }
.ic-user-unfollow-line:before { content: "\f278"; }
.ic-user-voice-fill:before { content: "\f279"; }
.ic-user-voice-line:before { content: "\f27a"; }
.ic-video-add-fill:before { content: "\f27b"; }
.ic-video-add-line:before { content: "\f27c"; }
.ic-video-chat-fill:before { content: "\f27d"; }
.ic-video-chat-line:before { content: "\f27e"; }
.ic-video-download-fill:before { content: "\f27f"; }
.ic-video-download-line:before { content: "\f280"; }
.ic-video-fill:before { content: "\f281"; }
.ic-video-line:before { content: "\f282"; }
.ic-video-upload-fill:before { content: "\f283"; }
.ic-video-upload-line:before { content: "\f284"; }
.ic-vidicon-2-fill:before { content: "\f285"; }
.ic-vidicon-2-line:before { content: "\f286"; }
.ic-vidicon-fill:before { content: "\f287"; }
.ic-vidicon-line:before { content: "\f288"; }
.ic-vimeo-fill:before { content: "\f289"; }
.ic-vimeo-line:before { content: "\f28a"; }
.ic-vip-crown-2-fill:before { content: "\f28b"; }
.ic-vip-crown-2-line:before { content: "\f28c"; }
.ic-vip-crown-fill:before { content: "\f28d"; }
.ic-vip-crown-line:before { content: "\f28e"; }
.ic-vip-diamond-fill:before { content: "\f28f"; }
.ic-vip-diamond-line:before { content: "\f290"; }
.ic-vip-fill:before { content: "\f291"; }
.ic-vip-line:before { content: "\f292"; }
.ic-virus-fill:before { content: "\f293"; }
.ic-virus-line:before { content: "\f294"; }
.ic-visa-fill:before { content: "\f295"; }
.ic-visa-line:before { content: "\f296"; }
.ic-voice-recognition-fill:before { content: "\f297"; }
.ic-voice-recognition-line:before { content: "\f298"; }
.ic-voiceprint-fill:before { content: "\f299"; }
.ic-voiceprint-line:before { content: "\f29a"; }
.ic-volume-down-fill:before { content: "\f29b"; }
.ic-volume-down-line:before { content: "\f29c"; }
.ic-volume-mute-fill:before { content: "\f29d"; }
.ic-volume-mute-line:before { content: "\f29e"; }
.ic-volume-off-vibrate-fill:before { content: "\f29f"; }
.ic-volume-off-vibrate-line:before { content: "\f2a0"; }
.ic-volume-up-fill:before { content: "\f2a1"; }
.ic-volume-up-line:before { content: "\f2a2"; }
.ic-volume-vibrate-fill:before { content: "\f2a3"; }
.ic-volume-vibrate-line:before { content: "\f2a4"; }
.ic-vuejs-fill:before { content: "\f2a5"; }
.ic-vuejs-line:before { content: "\f2a6"; }
.ic-walk-fill:before { content: "\f2a7"; }
.ic-walk-line:before { content: "\f2a8"; }
.ic-wallet-2-fill:before { content: "\f2a9"; }
.ic-wallet-2-line:before { content: "\f2aa"; }
.ic-wallet-3-fill:before { content: "\f2ab"; }
.ic-wallet-3-line:before { content: "\f2ac"; }
.ic-wallet-fill:before { content: "\f2ad"; }
.ic-wallet-line:before { content: "\f2ae"; }
.ic-water-flash-fill:before { content: "\f2af"; }
.ic-water-flash-line:before { content: "\f2b0"; }
.ic-webcam-fill:before { content: "\f2b1"; }
.ic-webcam-line:before { content: "\f2b2"; }
.ic-wechat-2-fill:before { content: "\f2b3"; }
.ic-wechat-2-line:before { content: "\f2b4"; }
.ic-wechat-fill:before { content: "\f2b5"; }
.ic-wechat-line:before { content: "\f2b6"; }
.ic-wechat-pay-fill:before { content: "\f2b7"; }
.ic-wechat-pay-line:before { content: "\f2b8"; }
.ic-weibo-fill:before { content: "\f2b9"; }
.ic-weibo-line:before { content: "\f2ba"; }
.ic-whatsapp-fill:before { content: "\f2bb"; }
.ic-whatsapp-line:before { content: "\f2bc"; }
.ic-wheelchair-fill:before { content: "\f2bd"; }
.ic-wheelchair-line:before { content: "\f2be"; }
.ic-wifi-fill:before { content: "\f2bf"; }
.ic-wifi-line:before { content: "\f2c0"; }
.ic-wifi-off-fill:before { content: "\f2c1"; }
.ic-wifi-off-line:before { content: "\f2c2"; }
.ic-window-2-fill:before { content: "\f2c3"; }
.ic-window-2-line:before { content: "\f2c4"; }
.ic-window-fill:before { content: "\f2c5"; }
.ic-window-line:before { content: "\f2c6"; }
.ic-windows-fill:before { content: "\f2c7"; }
.ic-windows-line:before { content: "\f2c8"; }
.ic-windy-fill:before { content: "\f2c9"; }
.ic-windy-line:before { content: "\f2ca"; }
.ic-wireless-charging-fill:before { content: "\f2cb"; }
.ic-wireless-charging-line:before { content: "\f2cc"; }
.ic-women-fill:before { content: "\f2cd"; }
.ic-women-line:before { content: "\f2ce"; }
.ic-wubi-input:before { content: "\f2cf"; }
.ic-xbox-fill:before { content: "\f2d0"; }
.ic-xbox-line:before { content: "\f2d1"; }
.ic-xing-fill:before { content: "\f2d2"; }
.ic-xing-line:before { content: "\f2d3"; }
.ic-youtube-fill:before { content: "\f2d4"; }
.ic-youtube-line:before { content: "\f2d5"; }
.ic-zcool-fill:before { content: "\f2d6"; }
.ic-zcool-line:before { content: "\f2d7"; }
.ic-zhihu-fill:before { content: "\f2d8"; }
.ic-zhihu-line:before { content: "\f2d9"; }
.ic-zoom-in-fill:before { content: "\f2da"; }
.ic-zoom-in-line:before { content: "\f2db"; }
.ic-zoom-out-fill:before { content: "\f2dc"; }
.ic-zoom-out-line:before { content: "\f2dd"; }
.ic-zzz-fill:before { content: "\f2de"; }
.ic-zzz-line:before { content: "\f2df"; }
.ic-arrow-down-double-fill:before { content: "\f2e0"; }
.ic-arrow-down-double-line:before { content: "\f2e1"; }
.ic-arrow-left-double-fill:before { content: "\f2e2"; }
.ic-arrow-left-double-line:before { content: "\f2e3"; }
.ic-arrow-right-double-fill:before { content: "\f2e4"; }
.ic-arrow-right-double-line:before { content: "\f2e5"; }
.ic-arrow-turn-back-fill:before { content: "\f2e6"; }
.ic-arrow-turn-back-line:before { content: "\f2e7"; }
.ic-arrow-turn-forward-fill:before { content: "\f2e8"; }
.ic-arrow-turn-forward-line:before { content: "\f2e9"; }
.ic-arrow-up-double-fill:before { content: "\f2ea"; }
.ic-arrow-up-double-line:before { content: "\f2eb"; }
.ic-bard-fill:before { content: "\f2ec"; }
.ic-bard-line:before { content: "\f2ed"; }
.ic-bootstrap-fill:before { content: "\f2ee"; }
.ic-bootstrap-line:before { content: "\f2ef"; }
.ic-box-1-fill:before { content: "\f2f0"; }
.ic-box-1-line:before { content: "\f2f1"; }
.ic-box-2-fill:before { content: "\f2f2"; }
.ic-box-2-line:before { content: "\f2f3"; }
.ic-box-3-fill:before { content: "\f2f4"; }
.ic-box-3-line:before { content: "\f2f5"; }
.ic-brain-fill:before { content: "\f2f6"; }
.ic-brain-line:before { content: "\f2f7"; }
.ic-candle-fill:before { content: "\f2f8"; }
.ic-candle-line:before { content: "\f2f9"; }
.ic-cash-fill:before { content: "\f2fa"; }
.ic-cash-line:before { content: "\f2fb"; }
.ic-contract-left-fill:before { content: "\f2fc"; }
.ic-contract-left-line:before { content: "\f2fd"; }
.ic-contract-left-right-fill:before { content: "\f2fe"; }
.ic-contract-left-right-line:before { content: "\f2ff"; }
.ic-contract-right-fill:before { content: "\f300"; }
.ic-contract-right-line:before { content: "\f301"; }
.ic-contract-up-down-fill:before { content: "\f302"; }
.ic-contract-up-down-line:before { content: "\f303"; }
.ic-copilot-fill:before { content: "\f304"; }
.ic-copilot-line:before { content: "\f305"; }
.ic-corner-down-left-fill:before { content: "\f306"; }
.ic-corner-down-left-line:before { content: "\f307"; }
.ic-corner-down-right-fill:before { content: "\f308"; }
.ic-corner-down-right-line:before { content: "\f309"; }
.ic-corner-left-down-fill:before { content: "\f30a"; }
.ic-corner-left-down-line:before { content: "\f30b"; }
.ic-corner-left-up-fill:before { content: "\f30c"; }
.ic-corner-left-up-line:before { content: "\f30d"; }
.ic-corner-right-down-fill:before { content: "\f30e"; }
.ic-corner-right-down-line:before { content: "\f30f"; }
.ic-corner-right-up-fill:before { content: "\f310"; }
.ic-corner-right-up-line:before { content: "\f311"; }
.ic-corner-up-left-double-fill:before { content: "\f312"; }
.ic-corner-up-left-double-line:before { content: "\f313"; }
.ic-corner-up-left-fill:before { content: "\f314"; }
.ic-corner-up-left-line:before { content: "\f315"; }
.ic-corner-up-right-double-fill:before { content: "\f316"; }
.ic-corner-up-right-double-line:before { content: "\f317"; }
.ic-corner-up-right-fill:before { content: "\f318"; }
.ic-corner-up-right-line:before { content: "\f319"; }
.ic-cross-fill:before { content: "\f31a"; }
.ic-cross-line:before { content: "\f31b"; }
.ic-edge-new-fill:before { content: "\f31c"; }
.ic-edge-new-line:before { content: "\f31d"; }
.ic-equal-fill:before { content: "\f31e"; }
.ic-equal-line:before { content: "\f31f"; }
.ic-expand-left-fill:before { content: "\f320"; }
.ic-expand-left-line:before { content: "\f321"; }
.ic-expand-left-right-fill:before { content: "\f322"; }
.ic-expand-left-right-line:before { content: "\f323"; }
.ic-expand-right-fill:before { content: "\f324"; }
.ic-expand-right-line:before { content: "\f325"; }
.ic-expand-up-down-fill:before { content: "\f326"; }
.ic-expand-up-down-line:before { content: "\f327"; }
.ic-flickr-fill:before { content: "\f328"; }
.ic-flickr-line:before { content: "\f329"; }
.ic-forward-10-fill:before { content: "\f32a"; }
.ic-forward-10-line:before { content: "\f32b"; }
.ic-forward-15-fill:before { content: "\f32c"; }
.ic-forward-15-line:before { content: "\f32d"; }
.ic-forward-30-fill:before { content: "\f32e"; }
.ic-forward-30-line:before { content: "\f32f"; }
.ic-forward-5-fill:before { content: "\f330"; }
.ic-forward-5-line:before { content: "\f331"; }
.ic-graduation-cap-fill:before { content: "\f332"; }
.ic-graduation-cap-line:before { content: "\f333"; }
.ic-home-office-fill:before { content: "\f334"; }
.ic-home-office-line:before { content: "\f335"; }
.ic-hourglass-2-fill:before { content: "\f336"; }
.ic-hourglass-2-line:before { content: "\f337"; }
.ic-hourglass-fill:before { content: "\f338"; }
.ic-hourglass-line:before { content: "\f339"; }
.ic-javascript-fill:before { content: "\f33a"; }
.ic-javascript-line:before { content: "\f33b"; }
.ic-loop-left-fill:before { content: "\f33c"; }
.ic-loop-left-line:before { content: "\f33d"; }
.ic-loop-right-fill:before { content: "\f33e"; }
.ic-loop-right-line:before { content: "\f33f"; }
.ic-memories-fill:before { content: "\f340"; }
.ic-memories-line:before { content: "\f341"; }
.ic-meta-fill:before { content: "\f342"; }
.ic-meta-line:before { content: "\f343"; }
.ic-microsoft-loop-fill:before { content: "\f344"; }
.ic-microsoft-loop-line:before { content: "\f345"; }
.ic-nft-fill:before { content: "\f346"; }
.ic-nft-line:before { content: "\f347"; }
.ic-notion-fill:before { content: "\f348"; }
.ic-notion-line:before { content: "\f349"; }
.ic-openai-fill:before { content: "\f34a"; }
.ic-openai-line:before { content: "\f34b"; }
.ic-overline:before { content: "\f34c"; }
.ic-p2p-fill:before { content: "\f34d"; }
.ic-p2p-line:before { content: "\f34e"; }
.ic-presentation-fill:before { content: "\f34f"; }
.ic-presentation-line:before { content: "\f350"; }
.ic-replay-10-fill:before { content: "\f351"; }
.ic-replay-10-line:before { content: "\f352"; }
.ic-replay-15-fill:before { content: "\f353"; }
.ic-replay-15-line:before { content: "\f354"; }
.ic-replay-30-fill:before { content: "\f355"; }
.ic-replay-30-line:before { content: "\f356"; }
.ic-replay-5-fill:before { content: "\f357"; }
.ic-replay-5-line:before { content: "\f358"; }
.ic-school-fill:before { content: "\f359"; }
.ic-school-line:before { content: "\f35a"; }
.ic-shining-2-fill:before { content: "\f35b"; }
.ic-shining-2-line:before { content: "\f35c"; }
.ic-shining-fill:before { content: "\f35d"; }
.ic-shining-line:before { content: "\f35e"; }
.ic-sketching:before { content: "\f35f"; }
.ic-skip-down-fill:before { content: "\f360"; }
.ic-skip-down-line:before { content: "\f361"; }
.ic-skip-left-fill:before { content: "\f362"; }
.ic-skip-left-line:before { content: "\f363"; }
.ic-skip-right-fill:before { content: "\f364"; }
.ic-skip-right-line:before { content: "\f365"; }
.ic-skip-up-fill:before { content: "\f366"; }
.ic-skip-up-line:before { content: "\f367"; }
.ic-slow-down-fill:before { content: "\f368"; }
.ic-slow-down-line:before { content: "\f369"; }
.ic-sparkling-2-fill:before { content: "\f36a"; }
.ic-sparkling-2-line:before { content: "\f36b"; }
.ic-sparkling-fill:before { content: "\f36c"; }
.ic-sparkling-line:before { content: "\f36d"; }
.ic-speak-fill:before { content: "\f36e"; }
.ic-speak-line:before { content: "\f36f"; }
.ic-speed-up-fill:before { content: "\f370"; }
.ic-speed-up-line:before { content: "\f371"; }
.ic-tiktok-fill:before { content: "\f372"; }
.ic-tiktok-line:before { content: "\f373"; }
.ic-token-swap-fill:before { content: "\f374"; }
.ic-token-swap-line:before { content: "\f375"; }
.ic-unpin-fill:before { content: "\f376"; }
.ic-unpin-line:before { content: "\f377"; }
.ic-wechat-channels-fill:before { content: "\f378"; }
.ic-wechat-channels-line:before { content: "\f379"; }
.ic-wordpress-fill:before { content: "\f37a"; }
.ic-wordpress-line:before { content: "\f37b"; }
.ic-blender-fill:before { content: "\f37c"; }
.ic-blender-line:before { content: "\f37d"; }
.ic-emoji-sticker-fill:before { content: "\f37e"; }
.ic-emoji-sticker-line:before { content: "\f37f"; }
.ic-git-close-pull-request-fill:before { content: "\f380"; }
.ic-git-close-pull-request-line:before { content: "\f381"; }
.ic-instance-fill:before { content: "\f382"; }
.ic-instance-line:before { content: "\f383"; }
.ic-megaphone-fill:before { content: "\f384"; }
.ic-megaphone-line:before { content: "\f385"; }
.ic-pass-expired-fill:before { content: "\f386"; }
.ic-pass-expired-line:before { content: "\f387"; }
.ic-pass-pending-fill:before { content: "\f388"; }
.ic-pass-pending-line:before { content: "\f389"; }
.ic-pass-valid-fill:before { content: "\f38a"; }
.ic-pass-valid-line:before { content: "\f38b"; }
.ic-ai-generate:before { content: "\f38c"; }
.ic-calendar-close-fill:before { content: "\f38d"; }
.ic-calendar-close-line:before { content: "\f38e"; }
.ic-draggable:before { content: "\f38f"; }
.ic-font-family:before { content: "\f390"; }
.ic-font-mono:before { content: "\f391"; }
.ic-font-sans-serif:before { content: "\f392"; }
.ic-font-sans:before { content: "\f393"; }
.ic-hard-drive-3-fill:before { content: "\f394"; }
.ic-hard-drive-3-line:before { content: "\f395"; }
.ic-kick-fill:before { content: "\f396"; }
.ic-kick-line:before { content: "\f397"; }
.ic-list-check-3:before { content: "\f398"; }
.ic-list-indefinite:before { content: "\f399"; }
.ic-list-ordered-2:before { content: "\f39a"; }
.ic-list-radio:before { content: "\f39b"; }
.ic-openbase-fill:before { content: "\f39c"; }
.ic-openbase-line:before { content: "\f39d"; }
.ic-planet-fill:before { content: "\f39e"; }
.ic-planet-line:before { content: "\f39f"; }
.ic-prohibited-fill:before { content: "\f3a0"; }
.ic-prohibited-line:before { content: "\f3a1"; }
.ic-quote-text:before { content: "\f3a2"; }
.ic-seo-fill:before { content: "\f3a3"; }
.ic-seo-line:before { content: "\f3a4"; }
.ic-slash-commands:before { content: "\f3a5"; }
.ic-archive-2-fill:before { content: "\f3a6"; }
.ic-archive-2-line:before { content: "\f3a7"; }
.ic-inbox-2-fill:before { content: "\f3a8"; }
.ic-inbox-2-line:before { content: "\f3a9"; }
.ic-shake-hands-fill:before { content: "\f3aa"; }
.ic-shake-hands-line:before { content: "\f3ab"; }
.ic-supabase-fill:before { content: "\f3ac"; }
.ic-supabase-line:before { content: "\f3ad"; }
.ic-water-percent-fill:before { content: "\f3ae"; }
.ic-water-percent-line:before { content: "\f3af"; }
.ic-yuque-fill:before { content: "\f3b0"; }
.ic-yuque-line:before { content: "\f3b1"; }
.ic-crosshair-2-fill:before { content: "\f3b2"; }
.ic-crosshair-2-line:before { content: "\f3b3"; }
.ic-crosshair-fill:before { content: "\f3b4"; }
.ic-crosshair-line:before { content: "\f3b5"; }
.ic-file-close-fill:before { content: "\f3b6"; }
.ic-file-close-line:before { content: "\f3b7"; }
.ic-infinity-fill:before { content: "\f3b8"; }
.ic-infinity-line:before { content: "\f3b9"; }
.ic-rfid-fill:before { content: "\f3ba"; }
.ic-rfid-line:before { content: "\f3bb"; }
.ic-slash-commands-2:before { content: "\f3bc"; }
.ic-user-forbid-fill:before { content: "\f3bd"; }
.ic-user-forbid-line:before { content: "\f3be"; }
.ic-beer-fill:before { content: "\f3bf"; }
.ic-beer-line:before { content: "\f3c0"; }
.ic-circle-fill:before { content: "\f3c1"; }
.ic-circle-line:before { content: "\f3c2"; }
.ic-dropdown-list:before { content: "\f3c3"; }
.ic-file-image-fill:before { content: "\f3c4"; }
.ic-file-image-line:before { content: "\f3c5"; }
.ic-file-pdf-2-fill:before { content: "\f3c6"; }
.ic-file-pdf-2-line:before { content: "\f3c7"; }
.ic-file-video-fill:before { content: "\f3c8"; }
.ic-file-video-line:before { content: "\f3c9"; }
.ic-folder-image-fill:before { content: "\f3ca"; }
.ic-folder-image-line:before { content: "\f3cb"; }
.ic-folder-video-fill:before { content: "\f3cc"; }
.ic-folder-video-line:before { content: "\f3cd"; }
.ic-hexagon-fill:before { content: "\f3ce"; }
.ic-hexagon-line:before { content: "\f3cf"; }
.ic-menu-search-fill:before { content: "\f3d0"; }
.ic-menu-search-line:before { content: "\f3d1"; }
.ic-octagon-fill:before { content: "\f3d2"; }
.ic-octagon-line:before { content: "\f3d3"; }
.ic-pentagon-fill:before { content: "\f3d4"; }
.ic-pentagon-line:before { content: "\f3d5"; }
.ic-rectangle-fill:before { content: "\f3d6"; }
.ic-rectangle-line:before { content: "\f3d7"; }
.ic-robot-2-fill:before { content: "\f3d8"; }
.ic-robot-2-line:before { content: "\f3d9"; }
.ic-shapes-fill:before { content: "\f3da"; }
.ic-shapes-line:before { content: "\f3db"; }
.ic-square-fill:before { content: "\f3dc"; }
.ic-square-line:before { content: "\f3dd"; }
.ic-tent-fill:before { content: "\f3de"; }
.ic-tent-line:before { content: "\f3df"; }
.ic-threads-fill:before { content: "\f3e0"; }
.ic-threads-line:before { content: "\f3e1"; }
.ic-tree-fill:before { content: "\f3e2"; }
.ic-tree-line:before { content: "\f3e3"; }
.ic-triangle-fill:before { content: "\f3e4"; }
.ic-triangle-line:before { content: "\f3e5"; }
.ic-twitter-x-fill:before { content: "\f3e6"; }
.ic-twitter-x-line:before { content: "\f3e7"; }
.ic-verified-badge-fill:before { content: "\f3e8"; }
.ic-verified-badge-line:before { content: "\f3e9"; }
.ic-armchair-fill:before { content: "\f3ea"; }
.ic-armchair-line:before { content: "\f3eb"; }
.ic-bnb-fill:before { content: "\f3ec"; }
.ic-bnb-line:before { content: "\f3ed"; }
.ic-bread-fill:before { content: "\f3ee"; }
.ic-bread-line:before { content: "\f3ef"; }
.ic-btc-fill:before { content: "\f3f0"; }
.ic-btc-line:before { content: "\f3f1"; }
.ic-calendar-schedule-fill:before { content: "\f3f2"; }
.ic-calendar-schedule-line:before { content: "\f3f3"; }
.ic-dice-1-fill:before { content: "\f3f4"; }
.ic-dice-1-line:before { content: "\f3f5"; }
.ic-dice-2-fill:before { content: "\f3f6"; }
.ic-dice-2-line:before { content: "\f3f7"; }
.ic-dice-3-fill:before { content: "\f3f8"; }
.ic-dice-3-line:before { content: "\f3f9"; }
.ic-dice-4-fill:before { content: "\f3fa"; }
.ic-dice-4-line:before { content: "\f3fb"; }
.ic-dice-5-fill:before { content: "\f3fc"; }
.ic-dice-5-line:before { content: "\f3fd"; }
.ic-dice-6-fill:before { content: "\f3fe"; }
.ic-dice-6-line:before { content: "\f3ff"; }
.ic-dice-fill:before { content: "\f400"; }
.ic-dice-line:before { content: "\f401"; }
.ic-drinks-fill:before { content: "\f402"; }
.ic-drinks-line:before { content: "\f403"; }
.ic-equalizer-2-fill:before { content: "\f404"; }
.ic-equalizer-2-line:before { content: "\f405"; }
.ic-equalizer-3-fill:before { content: "\f406"; }
.ic-equalizer-3-line:before { content: "\f407"; }
.ic-eth-fill:before { content: "\f408"; }
.ic-eth-line:before { content: "\f409"; }
.ic-flower-fill:before { content: "\f40a"; }
.ic-flower-line:before { content: "\f40b"; }
.ic-glasses-2-fill:before { content: "\f40c"; }
.ic-glasses-2-line:before { content: "\f40d"; }
.ic-glasses-fill:before { content: "\f40e"; }
.ic-glasses-line:before { content: "\f40f"; }
.ic-goggles-fill:before { content: "\f410"; }
.ic-goggles-line:before { content: "\f411"; }
.ic-image-circle-fill:before { content: "\f412"; }
.ic-image-circle-line:before { content: "\f413"; }
.ic-info-i:before { content: "\f414"; }
.ic-money-rupee-circle-fill:before { content: "\f415"; }
.ic-money-rupee-circle-line:before { content: "\f416"; }
.ic-news-fill:before { content: "\f417"; }
.ic-news-line:before { content: "\f418"; }
.ic-robot-3-fill:before { content: "\f419"; }
.ic-robot-3-line:before { content: "\f41a"; }
.ic-share-2-fill:before { content: "\f41b"; }
.ic-share-2-line:before { content: "\f41c"; }
.ic-sofa-fill:before { content: "\f41d"; }
.ic-sofa-line:before { content: "\f41e"; }
.ic-svelte-fill:before { content: "\f41f"; }
.ic-svelte-line:before { content: "\f420"; }
.ic-vk-fill:before { content: "\f421"; }
.ic-vk-line:before { content: "\f422"; }
.ic-xrp-fill:before { content: "\f423"; }
.ic-xrp-line:before { content: "\f424"; }
.ic-xtz-fill:before { content: "\f425"; }
.ic-xtz-line:before { content: "\f426"; }
.ic-archive-stack-fill:before { content: "\f427"; }
.ic-archive-stack-line:before { content: "\f428"; }
.ic-bowl-fill:before { content: "\f429"; }
.ic-bowl-line:before { content: "\f42a"; }
.ic-calendar-view:before { content: "\f42b"; }
.ic-carousel-view:before { content: "\f42c"; }
.ic-code-block:before { content: "\f42d"; }
.ic-color-filter-fill:before { content: "\f42e"; }
.ic-color-filter-line:before { content: "\f42f"; }
.ic-contacts-book-3-fill:before { content: "\f430"; }
.ic-contacts-book-3-line:before { content: "\f431"; }
.ic-contract-fill:before { content: "\f432"; }
.ic-contract-line:before { content: "\f433"; }
.ic-drinks-2-fill:before { content: "\f434"; }
.ic-drinks-2-line:before { content: "\f435"; }
.ic-export-fill:before { content: "\f436"; }
.ic-export-line:before { content: "\f437"; }
.ic-file-check-fill:before { content: "\f438"; }
.ic-file-check-line:before { content: "\f439"; }
.ic-focus-mode:before { content: "\f43a"; }
.ic-folder-6-fill:before { content: "\f43b"; }
.ic-folder-6-line:before { content: "\f43c"; }
.ic-folder-check-fill:before { content: "\f43d"; }
.ic-folder-check-line:before { content: "\f43e"; }
.ic-folder-close-fill:before { content: "\f43f"; }
.ic-folder-close-line:before { content: "\f440"; }
.ic-folder-cloud-fill:before { content: "\f441"; }
.ic-folder-cloud-line:before { content: "\f442"; }
.ic-gallery-view-2:before { content: "\f443"; }
.ic-gallery-view:before { content: "\f444"; }
.ic-hand:before { content: "\f445"; }
.ic-import-fill:before { content: "\f446"; }
.ic-import-line:before { content: "\f447"; }
.ic-information-2-fill:before { content: "\f448"; }
.ic-information-2-line:before { content: "\f449"; }
.ic-kanban-view-2:before { content: "\f44a"; }
.ic-kanban-view:before { content: "\f44b"; }
.ic-list-view:before { content: "\f44c"; }
.ic-lock-star-fill:before { content: "\f44d"; }
.ic-lock-star-line:before { content: "\f44e"; }
.ic-puzzle-2-fill:before { content: "\f44f"; }
.ic-puzzle-2-line:before { content: "\f450"; }
.ic-puzzle-fill:before { content: "\f451"; }
.ic-puzzle-line:before { content: "\f452"; }
.ic-ram-2-fill:before { content: "\f453"; }
.ic-ram-2-line:before { content: "\f454"; }
.ic-ram-fill:before { content: "\f455"; }
.ic-ram-line:before { content: "\f456"; }
.ic-receipt-fill:before { content: "\f457"; }
.ic-receipt-line:before { content: "\f458"; }
.ic-shadow-fill:before { content: "\f459"; }
.ic-shadow-line:before { content: "\f45a"; }
.ic-sidebar-fold-fill:before { content: "\f45b"; }
.ic-sidebar-fold-line:before { content: "\f45c"; }
.ic-sidebar-unfold-fill:before { content: "\f45d"; }
.ic-sidebar-unfold-line:before { content: "\f45e"; }
.ic-slideshow-view:before { content: "\f45f"; }
.ic-sort-alphabet-asc:before { content: "\f460"; }
.ic-sort-alphabet-desc:before { content: "\f461"; }
.ic-sort-number-asc:before { content: "\f462"; }
.ic-sort-number-desc:before { content: "\f463"; }
.ic-stacked-view:before { content: "\f464"; }
.ic-sticky-note-add-fill:before { content: "\f465"; }
.ic-sticky-note-add-line:before { content: "\f466"; }
.ic-swap-2-fill:before { content: "\f467"; }
.ic-swap-2-line:before { content: "\f468"; }
.ic-swap-3-fill:before { content: "\f469"; }
.ic-swap-3-line:before { content: "\f46a"; }
.ic-table-3:before { content: "\f46b"; }
.ic-table-view:before { content: "\f46c"; }
.ic-text-block:before { content: "\f46d"; }
.ic-text-snippet:before { content: "\f46e"; }
.ic-timeline-view:before { content: "\f46f"; }
.ic-blogger-fill:before { content: "\f470"; }
.ic-blogger-line:before { content: "\f471"; }
.ic-chat-thread-fill:before { content: "\f472"; }
.ic-chat-thread-line:before { content: "\f473"; }
.ic-discount-percent-fill:before { content: "\f474"; }
.ic-discount-percent-line:before { content: "\f475"; }
.ic-exchange-2-fill:before { content: "\f476"; }
.ic-exchange-2-line:before { content: "\f477"; }
.ic-git-fork-fill:before { content: "\f478"; }
.ic-git-fork-line:before { content: "\f479"; }
.ic-input-field:before { content: "\f47a"; }
.ic-progress-1-fill:before { content: "\f47b"; }
.ic-progress-1-line:before { content: "\f47c"; }
.ic-progress-2-fill:before { content: "\f47d"; }
.ic-progress-2-line:before { content: "\f47e"; }
.ic-progress-3-fill:before { content: "\f47f"; }
.ic-progress-3-line:before { content: "\f480"; }
.ic-progress-4-fill:before { content: "\f481"; }
.ic-progress-4-line:before { content: "\f482"; }
.ic-progress-5-fill:before { content: "\f483"; }
.ic-progress-5-line:before { content: "\f484"; }
.ic-progress-6-fill:before { content: "\f485"; }
.ic-progress-6-line:before { content: "\f486"; }
.ic-progress-7-fill:before { content: "\f487"; }
.ic-progress-7-line:before { content: "\f488"; }
.ic-progress-8-fill:before { content: "\f489"; }
.ic-progress-8-line:before { content: "\f48a"; }
.ic-remix-run-fill:before { content: "\f48b"; }
.ic-remix-run-line:before { content: "\f48c"; }
.ic-signpost-fill:before { content: "\f48d"; }
.ic-signpost-line:before { content: "\f48e"; }
.ic-time-zone-fill:before { content: "\f48f"; }
.ic-time-zone-line:before { content: "\f490"; }

/* Modal */
#modal-wrapper {
	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	z-index: 1050;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
}

#modal-wrapper.popup .modal-body {
	padding: 1.875rem 2.5rem;
}

#modal-overlay {
	display: none;
	position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	background-color: rgba(0, 0, 0, .7);
    z-index: 1040;
}

#modal-tempoverlay {
	position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	background-color: transparent;
}

body.enable-modal {
	position: absolute;
	overflow: hidden !important;
    height: 100%;
}

body.enable-modal #modal-wrapper {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	padding-top: 3.25rem;
	padding-bottom: 3.25rem;
}

body.enable-modal #modal-tempoverlay {
	cursor: pointer;
}

.modal {
	width: 600px;
	left: 0;
	top: 0;
	color: #333333;
	position: relative;
	margin: 0;
	font-weight: inherit;
	background-color: #ffffff;
	border: none;
	display: none;
	border-radius: 0;
    animation-duration: .3s;
    animation-fill-mode: both;
	z-index: 99999;
}

.modal .modal-header {
	margin: 0;
	padding: 0.938rem;
	border-bottom: 1px solid #e6e6e6;
}

.modal .modal-header h1 {
	margin: 0;
	color: #333333;
	font-size: 1.063rem;
	font-weight: 500;
	line-height: 1;
}

.modal a.modal-close {
	position: absolute;
	left: 0;
	top: 0;
	height: 2rem;
	width: 100%;
}

.modal a.modal-close::before {
	content: '';
    background-color: #f1f1f1;
    opacity: .15;
    border-radius: 0.25rem;
    height: 0.25rem;
    width: 2.5rem;
    margin-top: 0.95rem;
    top: 0;
    right: 50%;
    margin-right: -1.25rem;
    position: absolute;
}

.modal a.modal-close:hover::before {
    opacity: .35;
}

.modal .modal-body {
	padding: 0.938rem;
}

.modal .modal-body div.modal-contents {
	overflow: hidden;
}

.modal .modal-body div.modal-contents a,
.modal .modal-body div.modal-contents div,
.modal .modal-body div.modal-contents img,
.modal .modal-body div.modal-contents label,
.modal .modal-body div.modal-contents li,
.modal .modal-body div.modal-contents span,
.modal .modal-body div.modal-contents table,
.modal .modal-body div.modal-contents iframe,
.modal .modal-body div.modal-contents ul:not(.iti__country-list) {
	max-width: 100% !important;
}

.modal .modal-body div.modal-contents table {
	width: 100% !important;
}

.modal .modal-body div.modal-contents ul:not(.iti__country-list) {
	list-style-type: disc;
}

.modal .modal-body div.modal-contents ol {
	list-style-type: decimal;
}

.modal .modal-body div.modal-contents ul:not(.iti__country-list),
.modal .modal-body div.modal-contents ol {
	margin: 0;
}

.modal .modal-body div.modal-contents ul:not(.iti__country-list),
.modal .modal-body div.modal-contents ol {
	margin: 0 1.5em 1.5em 0;
	padding-left: 2em;
}

.modal .modal-body div.modal-contents > img {
	display: block;
	margin: 0 auto;
}

.modal .modal-body p {
	font-size: 0.875rem;
	font-weight: normal;
	color: #606060;
	line-height: 1.6;
}

.modal .modal-body p img {
	display: block;
	margin: 0 auto 0.625rem auto;
}

/* Hide header */
.modal.hide-header .modal-header {
	display: none;
}

:root{--f-spinner-width: 36px;--f-spinner-height: 36px;--f-spinner-color-1: rgba(0, 0, 0, 0.1);--f-spinner-color-2: rgba(17, 24, 28, 0.8);--f-spinner-stroke: 2.75}.f-spinner{margin:auto;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height)}.f-spinner svg{width:100%;height:100%;vertical-align:top;animation:f-spinner-rotate 2s linear infinite}.f-spinner svg *{stroke-width:var(--f-spinner-stroke);fill:none}.f-spinner svg *:first-child{stroke:var(--f-spinner-color-1)}.f-spinner svg *:last-child{stroke:var(--f-spinner-color-2);animation:f-spinner-dash 2s ease-in-out infinite}@keyframes f-spinner-rotate{100%{transform:rotate(360deg)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}.f-throwOutUp{animation:.175s ease-out both f-throwOutUp}.f-throwOutDown{animation:.175s ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0, -150px, 0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0, 150px, 0);opacity:0}}.f-zoomInUp{animation:var(--f-transition-duration, 0.2s) ease-out .1s both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration, 0.2s) ease-out both f-zoomOutDown}@keyframes f-zoomInUp{from{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}}.f-fadeIn{animation:var(--f-transition-duration, 0.2s) ease both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration, 0.2s) ease both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeOut{100%{opacity:0}}.f-fadeSlowIn{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeSlowOut{100%{opacity:0}}.f-fadeFastIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:var(--f-transition-duration, 0.2s) ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}100%{opacity:1}}@keyframes f-fadeFastOut{100%{opacity:0}}.f-crossfadeIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:calc(var(--f-transition-duration, 0.2s)*.5) linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-crossfadeOut{100%{opacity:0}}.f-slideIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext}.f-slideIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev}.f-slideOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext}.f-slideOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev}@keyframes f-slideInPrev{0%{transform:translateX(100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideInNext{0%{transform:translateX(-100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideOutNext{100%{transform:translateX(-100%)}}@keyframes f-slideOutPrev{100%{transform:translateX(100%)}}.f-classicIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;z-index:1}@keyframes f-classicInNext{0%{transform:translateX(-75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translateX(75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicOutNext{100%{transform:translateX(-75px);opacity:0}}@keyframes f-classicOutPrev{100%{transform:translateX(75px);opacity:0}}:root{--f-button-width: 40px;--f-button-height: 40px;--f-button-border: 0;--f-button-border-radius: 0;--f-button-color: #374151;--f-button-bg: #f8f8f8;--f-button-hover-bg: #e0e0e0;--f-button-active-bg: #d0d0d0;--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 20px;--f-button-svg-height: 20px;--f-button-svg-stroke-width: 1.5;--f-button-svg-fill: none;--f-button-svg-filter: none;--f-button-svg-disabled-opacity: 0.65}.f-button{display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);pointer-events:all;cursor:pointer;transition:var(--f-button-transition)}@media(hover: hover){.f-button:hover:not([disabled]){color:var(--f-button-hover-color);background-color:var(--f-button-hover-bg)}}.f-button:active:not([disabled]){background-color:var(--f-button-active-bg)}.f-button:focus:not(:focus-visible){outline:none}.f-button:focus-visible{outline:none;box-shadow:inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);fill:var(--f-button-svg-fill);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;transition:opacity .15s ease;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-prev,.f-carousel__nav .f-button.is-next,.fancybox__nav .f-button.is-prev,.fancybox__nav .f-button.is-next{position:absolute;z-index:1}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next{top:50%;transform:translateY(-50%)}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev{left:var(--f-button-prev-pos)}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next{right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev{left:auto;right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next{right:auto;left:var(--f-button-prev-pos)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next{top:auto;left:50%;transform:translateX(-50%)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev{top:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next{bottom:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg{transform:rotate(90deg)}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body{touch-action:none}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));overflow:hidden !important;overscroll-behavior-y:none}.fancybox__container{--fancybox-color: #dbdbdb;--fancybox-hover-color: #fff;--fancybox-bg: rgba(24, 24, 27, 0.98);--fancybox-slide-gap: 10px;--f-spinner-width: 50px;--f-spinner-height: 50px;--f-spinner-color-1: rgba(255, 255, 255, 0.1);--f-spinner-color-2: #bbb;--f-spinner-stroke: 3.65;position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;display:flex;flex-direction:column;box-sizing:border-box;margin:0;padding:0;color:#f8f8f8;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:visible;z-index:var(--fancybox-zIndex, 1050);outline:none;transform-origin:top left;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;-ms-text-size-adjust:100%;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity, 1);will-change:opacity}.fancybox__carousel{position:relative;box-sizing:border-box;flex:1;min-height:0;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__viewport{width:100%;height:100%}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__track{display:flex;margin:0 auto;height:100%}.fancybox__slide{flex:0 0 auto;position:relative;display:flex;flex-direction:column;align-items:center;width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;padding:4px;overflow:auto;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-iframe,.fancybox__slide.has-video,.fancybox__slide.has-html5video{overflow:hidden}.fancybox__slide.has-image{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto}.fancybox__content{align-self:center;display:flex;flex-direction:column;position:relative;margin:0;padding:2rem;max-width:100%;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);cursor:default;border-radius:0;z-index:20}.is-loading .fancybox__content{opacity:0}.is-draggable .fancybox__content{cursor:move;cursor:grab}.can-zoom_in .fancybox__content{cursor:zoom-in}.can-zoom_out .fancybox__content{cursor:zoom-out}.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__content [data-selectable],.fancybox__content [contenteditable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:center center;transition:none;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content{visibility:hidden}.is-animating .fancybox__content,.is-dragging .fancybox__content{filter:blur(0px);will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;object-fit:contain;user-select:none}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px 0;overflow-wrap:anywhere;line-height:1.375;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);cursor:auto;visibility:visible}.is-loading .fancybox__caption,.is-closing .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width: 2;position:absolute;top:0;right:8px;z-index:40}.fancybox__content>.f-button.is-close-btn{--f-button-width: 34px;--f-button-height: 34px;--f-button-border-radius: 4px;--f-button-color: var(--fancybox-color, #fff);--f-button-hover-color: var(--fancybox-color, #fff);--f-button-bg: transparent;--f-button-hover-bg: transparent;--f-button-active-bg: transparent;--f-button-svg-width: 22px;--f-button-svg-height: 22px;position:absolute;top:-38px;right:0;opacity:.75}.is-loading .fancybox__content>.f-button.is-close-btn{visibility:hidden}.is-zooming-out .fancybox__content>.f-button.is-close-btn{visibility:hidden}.fancybox__content>.f-button.is-close-btn:hover{opacity:1}.fancybox__footer{padding:0;margin:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;padding:24px;opacity:var(--fancybox-opacity, 1);transition:all .25s ease}.is-compact .fancybox__footer{position:absolute;bottom:0;left:0;right:0;z-index:20;background:rgba(24,24,27,.5)}.is-compact .fancybox__footer .fancybox__caption{padding:12px}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-border-radius: 50%;--f-button-color: #fff;--f-button-hover-color: #fff;--f-button-outline-color: #000;--f-button-bg: rgba(0, 0, 0, 0.6);--f-button-active-bg: rgba(0, 0, 0, 0.6);--f-button-hover-bg: rgba(0, 0, 0, 0.6);--f-button-svg-width: 18px;--f-button-svg-height: 18px;--f-button-svg-filter: none;top:5px;right:5px}.fancybox__nav{--f-button-width: 50px;--f-button-height: 50px;--f-button-border: 0;--f-button-border-radius: 50%;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: transparent;--f-button-hover-bg: rgba(24, 24, 27, 0.3);--f-button-active-bg: rgba(24, 24, 27, 0.5);--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 26px;--f-button-svg-height: 26px;--f-button-svg-stroke-width: 2.5;--f-button-svg-fill: none;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));--f-button-svg-disabled-opacity: 0.65;--f-button-next-pos: 1rem;--f-button-prev-pos: 1rem;opacity:var(--fancybox-opacity, 1)}.fancybox__nav .f-button:before{position:absolute;content:"";top:-30px;right:-20px;left:-20px;bottom:-30px;z-index:1}.is-idle .fancybox__nav{animation:.15s ease-out both f-fadeOut}.is-idle.is-compact .fancybox__footer{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));z-index:30;cursor:pointer}.fancybox-protected{position:absolute;top:0;left:0;right:0;bottom:0;z-index:40;user-select:none}.fancybox-ghost{position:absolute;top:0;left:0;width:100%;height:100%;min-height:0;object-fit:contain;z-index:40;user-select:none;pointer-events:none}.fancybox-focus-guard{outline:none;opacity:0;position:fixed;pointer-events:none}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content){animation:.25s ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:.35s ease backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content){animation:.15s ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:.35s ease forwards f-fadeOut}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:100%;height:100%}.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,.fancybox__container:not(.is-compact) .has-map .fancybox__content,.fancybox__container:not(.is-compact) .has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{border:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.f-carousel__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-outline: 0;--f-thumb-outline-color: #5eb0ef;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1;--f-thumb-border-radius: 2px;--f-thumb-offset: 0px;--f-button-next-pos: 0;--f-button-prev-pos: 0}.f-carousel__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1}.f-carousel__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 20px;--f-thumb-clip-width: 46px}.f-thumbs{position:relative;flex:0 0 auto;margin:0;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);user-select:none;perspective:1000px;transform:translateZ(0)}.f-thumbs .f-spinner{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:2px;background-image:linear-gradient(#ebeff2, #e2e8f0);z-index:-1}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden}.f-thumbs__track{display:flex;will-change:transform}.f-thumbs__slide{position:relative;flex:0 0 auto;box-sizing:content-box;display:flex;align-items:center;justify-content:center;padding:0;margin:0;width:var(--f-thumb-width);min-width:var(--f-thumb-width);height:var(--f-thumb-height);overflow:visible;cursor:pointer}.f-thumbs__slide.is-loading img{opacity:0}.is-classic .f-thumbs__viewport{height:100%}.is-modern .f-thumbs__track{width:max-content}.is-modern .f-thumbs__track::before{content:"";position:absolute;top:0;bottom:0;left:calc(var(--left, 0)*1px);width:calc(100% - var(--width, 0)*1px);cursor:pointer}.is-modern .f-thumbs__slide{--clip-path: inset( 0 calc( (var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0)) ) round var(--f-thumb-border-radius, 0) );transform:translate3d(calc(var(--shift, 0) * -1px), 0, 0);transition:none;pointer-events:none}.is-modern .f-thumbs__slide>*{clip-path:var(--clip-path)}.is-modern:not(.is-using-mouse) .f-thumbs__slide:focus-within{filter:drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))}.is-modern.in-touch .f-thumbs__slide{filter:none}.is-modern.is-resting .f-thumbs__slide{transition:all .33s ease}.is-modern.is-resting .f-thumbs__slide>*{transition:all .33s ease}.f-thumbs__slide__button{appearance:none;width:100%;height:100%;margin:0;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:rgba(0,0,0,0);outline:none;cursor:pointer;pointer-events:auto;touch-action:manipulation;opacity:var(--f-thumb-opacity);transition:opacity .2s ease}.f-thumbs__slide__button:hover{opacity:var(--f-thumb-hover-opacity)}.f-thumbs__slide__button:focus:not(:focus-visible){outline:none}.f-thumbs__slide__button:focus-visible{outline:none;opacity:var(--f-thumb-selected-opacity)}.is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-nav-selected .f-thumbs__slide__button::after{content:"";position:absolute;top:0;left:0;right:0;height:auto;bottom:0;border:var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);border-radius:var(--f-thumb-border-radius);animation:f-fadeIn .2s ease-out;z-index:10}.f-thumbs__slide__img{position:absolute;overflow:hidden;top:0;right:0;bottom:0;left:0;width:100%;height:100%;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover}.f-thumbs.is-horizontal .f-thumbs__track{margin:0 auto;padding:8px 0 12px 0}.f-thumbs.is-horizontal .f-thumbs__slide{margin:0 var(--f-thumb-gap) 0 0}.f-thumbs.is-vertical .f-thumbs__track{flex-wrap:wrap;margin:auto 0;padding:0 8px}.f-thumbs.is-vertical .f-thumbs__slide{margin:0 0 var(--f-thumb-gap) 0}.fancybox__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-border-radius: 2px;--f-thumb-outline: 2px;--f-thumb-outline-color: #ededed;position:relative;opacity:var(--fancybox-opacity, 1);transition:max-height .35s cubic-bezier(0.23, 1, 0.32, 1)}.fancybox__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 20px;--f-thumb-clip-width: 46px;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-horizontal{padding:0 var(--f-thumb-gap)}.fancybox__thumbs.is-vertical{padding:var(--f-thumb-gap) 0}.is-compact .fancybox__thumbs{--f-thumb-width: 64px;--f-thumb-clip-width: 32px;--f-thumb-height: 48px;--f-thumb-extra-gap: 10px}.fancybox__thumbs.is-masked{max-height:0px !important}.is-closing .fancybox__thumbs{transition:none !important}.fancybox__toolbar{--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));--f-button-width: 46px;--f-button-height: 46px;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: rgba(24, 24, 27, 0.65);--f-button-hover-bg: rgba(70, 70, 73, 0.65);--f-button-active-bg: rgba(90, 90, 93, 0.65);--f-button-border-radius: 0;--f-button-svg-width: 24px;--f-button-svg-height: 24px;--f-button-svg-stroke-width: 1.5;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));--f-button-svg-fill: none;--f-button-svg-disabled-opacity: 0.65;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI Adjusted","Segoe UI","Liberation Sans",sans-serif;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));pointer-events:none;z-index:20}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{display:flex;justify-content:flex-end;flex-wrap:nowrap}.fancybox__infobar{padding:0 5px;line-height:var(--f-button-height);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;user-select:none}.fancybox__infobar span{padding:0 5px}.fancybox__infobar:not(:first-child):not(:last-child){background:var(--f-button-bg)}[data-fancybox-toggle-slideshow]{position:relative}[data-fancybox-toggle-slideshow] .f-progress{height:100%;opacity:.3}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;background:var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));z-index:30;user-select:none;pointer-events:none}

/* Header Sticky  */
.header-sticky {
    position: sticky;
    top: 0;
    margin-left: -0.313rem;
    margin-right: -0.313rem;
    padding-left: 0.313rem;
    padding-right: 0.313rem;
    background-color: #0f0f0f;
    contain: paint;
    z-index: 4;
}

.logo {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
    width: auto;
	height: 1.85rem;
	display: block;
}

@media screen and (max-width: 992px) {
	.logo {
		padding: .55rem .85rem;
	}
    .logo img {
        height: 1.65rem;
    }
	.logo > div:first-child {
		display: flex;
        justify-content: flex-start;
	}
}

section[page="container"] {
    overflow-x: clip;
    overflow-y: initial;
}

section[router="root"],
section[router="page"] {
	position: relative;
}

section[router="page"] {
    background-color: #0F0F0F;
}

section[router="root"] {
	transition: transform 0.10s ease;
}

@media screen and (max-width: 992px) {
    section[router="root"] {
        margin-top: -0.52rem;
    }
}

section[router="root"].slide-left {
    transform: translateX(-0.3rem);
}

/* Content */
#content {
	min-height: 12.5rem;
}

.section-default-content p,
.section-default-content ul,
.section-default-content ol {
	font-size: 1.05rem;
    line-height: 1.75rem;
}

@media screen and (max-width: 992px) {
	.section-default-content p,
	.section-default-content ul,
	.section-default-content ol {
		font-size: 1.125rem;
		line-height: 1.625rem;
	}
}

.section-default-content p:nth-of-type(n+2) {
	margin-bottom: 0.938rem !important;
}

.no-less .section-default-content p:last-child {
	margin-bottom: 0 !important;
}

.section-default-content ol {
	margin: 0 0 0.938rem 1.125rem;
}

.section-default-content ol li {
    margin: 0 0 0.625rem 0;
}

.section-default-content h1,
.section-default-content h2,
.section-default-content h3,
.section-default-content h4 {
	margin-bottom: 0.938rem;
}

.section-default-content h1,
.section-default-content .h1 {
	font-size: 3rem;
	line-height: 3.75rem;
}

.section-default-content h2,
.section-default-content .h2 {
	font-size: 2rem;
	line-height: 2.75rem;
}

.section-default-content h3,
.section-default-content .h3 {
	font-size: 1.5rem;
	line-height: 2.25rem;
}

.section-default-content h4,
.section-default-content .h4 {
	font-size: 1.2rem;
	line-height: 1.938rem;
}

@media screen and (min-width: 992px) {
	.section-default-content a {
		text-decoration: underline;
	}
}

.section-default-content.less > p:not(:nth-child(-n + 1)) {
	display: none;
}

/* Dream */
.section-dream,
.section-dream > div,
.section-dream > div > div {
    height: 100vh;
}

.section-dream [router="page"] {
    padding: 1rem 0;
}

.section-dream .section-page-content {
    border-top-left-radius: .75rem;
    border-top-right-radius: .75rem;
}

.section-dream p:not([class^="font-size"]) {
    font-size: .95rem;
    line-height: 1.5rem;
}

.section-dream textarea.form-control {
    padding: .75rem;
    font-size: .95rem;
}

.section-dream .button {
    font-size: 1rem !important;
}

.section-dream .dream-response {
    padding: 1rem;
    background-color: #1e1e1e;
    border-radius: .75rem;
}

/* Links */
.section-links,
.section-links > div,
.section-links > div > div {
    height: 100vh;
}

.section-links .logo {
    padding: 0;
}

.section-links .logo img {
    height: 8rem;
}

.section-links [router="page"] {
    padding: 1rem 0;
}

.section-links .section-page-content {
    border-top-left-radius: .75rem;
    border-top-right-radius: .75rem;
}

.section-links p:not([class^="font-size"]) {
    font-size: .95rem;
    line-height: 1.5rem;
}

.section-links textarea.form-control {
    padding: .75rem;
    font-size: .95rem;
}

.section-links .button {
    min-width: 10rem;
}

/* Earthquakes */
.section-sidebar-earthquakes {
	display: flex;
	gap: .55rem;
	flex-direction: column;
}

.section-sidebar-earthquakes-item {
	display: flex;
    align-items: center;
	gap: .55rem;
}

.section-sidebar-earthquakes-item-depth {
	width: 3rem;
}

.section-sidebar-earthquakes-item-depth > div {
	font-size: 1.1rem;
    font-weight: 600;
	width: 100%;
	height: 3rem;
	display: flex;
    justify-content: center;
    align-items: center;
	border-radius: .75rem;
	background-color: #28282A;
}

.section-sidebar-earthquakes-item-meta {
	width: 80%;
	font-size: 0.875rem;
}

.section-sidebar-earthquakes-item-date {
	font-size: 0.75rem;
}

.section-sidebar-earthquakes-item-date > span {
	color: #afafaf;
}

/* Currencies */
.section-market-data {

}

.section-market-data-items {
	overflow: hidden;
	/* height: 0; */
	padding-top: 0.60rem;
	/* padding-bottom: 3.15rem; */
}

@media screen and (max-width: 992px) {
	.section-market-data-items {
	    padding: .85rem;
		padding-bottom: 0;
	}
	.section-market-data-items .scroll {
	    gap: 1.05rem;
	}
}

.section-market-data-items .item {
    color: #d9d9d9;
    position: relative;
}

@media screen and (max-width: 992px) {
	.section-market-data-items .item {
	    min-width: 6rem;
	}
}

.section-market-data-items .item .name {
    display: block;
    font-size: 0.688rem;
    text-transform: uppercase;
    color: #afafaf;
    font-weight: 600;
}

.section-market-data-items .item .value {
    font-size: 1.25rem;
    line-height: 1.375rem;
    font-weight: 600;
    display: block;
}

.section-market-data-items .item .change-rate {
    font-size: 0.688rem;
    font-weight: 600;
    float: left;
}

.section-market-data-items .item .change-rate.down {
    color: #FA757B;
    background-color: rgba(247, 67, 67, .2);
    margin-right: 0.25rem;
    padding: 0 0.125rem;
    border-radius: 0.313rem;
}

.section-market-data-items .item .change-rate.up {
    color: #2db432;
    background-color: rgba(67, 208, 72, .2);
    margin-right: 0.25rem;
    padding: 0 0.125rem;
    border-radius: 0.313rem;
}

/* Section Mobile Categories */
.section-mobile-categories {
	height: auto;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.section-mobile-categories {
		padding: 0 .85rem .85rem .85rem;
		border-bottom: 0.063rem solid #333333;
	}
}

.section-mobile-categories .button {
	margin-right: 0;
}

@media screen and (max-width: 992px) {
	.section-mobile-categories .button {
		font-size: 1.1875rem;
	}
}

/* Section Main */
.section-main-title {
	width: 100%;
	height: 3.15rem;
	padding: 0 .25rem;
	overflow: hidden;
    border: 0.063rem solid #333333;
    border-bottom: 0;
	border-top-left-radius: .75rem;
	border-top-right-radius: .75rem;
}

@media screen and (max-width: 992px) {
	.section-main-title {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-left: 0;
		border-right: 0;
	}
}

.section-main-title .scroll {
	gap: 0;
	align-items: center;
    justify-content: space-around;
	white-space: nowrap;
}

.section-main-title > div > a {
	width: 100%;
	height: 3.15rem;
	padding: 0 1rem;
	display: flex;
    align-items: center;
	justify-content: center;
    gap: .35rem;
	position: relative;
}

.section-main-title > div > a,
.section-main-title > div > a:hover {
	color: #afafaf;
}

@media screen and (min-width: 992px) {
    .section-main-title > div > a,
    .section-main-title > div > a:hover {
    	color: #d9d9d9;
    }
}

@media screen and (max-width: 992px) {
	.section-main-title > div > a {
		font-size: 1.1875rem;
	}
}

.section-main-title > div > a.active {
	color: #d9d9d9;
}

.section-main-title > div > a.active::before {
	content: '';
    width: 80%;
    height: 0.063rem;
    position: absolute;
    left: 50%;
    margin-left: -40%;
    bottom: 0.063rem;
    background-color: #e50914;
}

.section-main-title > div > a:first-child {
	border-top-left-radius: .75rem;
}

.section-main-title > div > a:last-child {
	border-top-right-radius: .75rem;
}

/* Section Default Title */
.section-default-title {
	width: 100%;
    border: 0.063rem solid #333333;
    border-bottom: 0;
	padding: 1rem;
	display: flex;
    justify-content: flex-start;
	border-top-left-radius: .75rem;
	border-top-right-radius: .75rem;
}

@media screen and (max-width: 992px) {
	.section-default-title {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-top: 0;
		border-left: 0;
		border-right: 0;
	}
}

.section-default-title h1,
.section-default-title h2 {
	font-size: 1.25rem;
}

/* Section - News */
.section-news {

}

.section-news-list-head {
	padding: 1rem;
	border: 0.063rem solid #333333;
	border-bottom: 0;
}

@media screen and (max-width: 992px) {
	.section-news-list-head {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-left: 0;
		border-right: 0;
		border-top: 0;
		padding: 1rem .85rem;
	}
}

.section-news-list-head-message {
	color: #e7e9ea;
    font-weight: 600;
}

.section-news-list-head-info a {
	text-decoration: underline;
}

.section-news-follow-recommendations {
	padding: 1rem;
	border: 0.063rem solid #333333;
	border-bottom-left-radius: .75rem;
	border-bottom-right-radius: .75rem;
}

@media screen and (max-width: 992px) {
	.section-news-follow-recommendations {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		border-left: 0;
		border-right: 0;
	}
}

.section-news-follow-recommendations-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 1rem;
}

@media screen and (max-width: 992px) {
	.section-news-follow-recommendations-inner {
		grid-template-columns: 1fr 1fr;
	}
}

.section-news-follow-recommendation-item {
	padding: 1rem 0;
	border: 0.063rem solid #333333;
	border-radius: .75rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: .85rem;
	box-sizing: border-box;
}

.section-news-follow-recommendation-item-image {
	display: flex;
	justify-content: center;
}

.section-news-follow-recommendation-item-image img {
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 100%;
	display: block;
	object-fit: cover;
}

.section-news-follow-recommendation-item-title a {
	font-weight: 600;
}

@media screen and (min-width: 992px) {
	.section-news-follow-recommendation-item-title a:hover {
		text-decoration: underline;
	}
}

.section-news-not-found {
	padding: 1rem;
	border: 0.063rem solid #333333;
	border-bottom-left-radius: .75rem;
	border-bottom-right-radius: .75rem;
}

@media screen and (max-width: 992px) {
	.section-news-not-found {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		border-left: 0;
		border-right: 0;
	}
}

.section-news-items {
	display: flex;
    flex-direction: column;
    border: 0.063rem solid #333333;
	border-bottom-left-radius: .75rem;
	border-bottom-right-radius: .75rem;
	position: relative;
	overflow: clip;
}

@media screen and (min-width: 992px) {
	.section-news-items {
		overflow: unset;
	}
}

@media screen and (max-width: 992px) {
	.section-news-items {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		border-left: 0;
		border-right: 0;
	}
}

.single-news.section-news-items {
	border-top-left-radius: .75rem;
	border-top-right-radius: .75rem;
}

@media screen and (max-width: 992px) {
	.single-news.section-news-items {
		border-top: none;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

.single-news.section-news-items .section-news-item {
	border-top: none;
}

.section-news-checker-message {
	position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: .65rem 0;
    text-align: center;
	display: flex;
    justify-content: center;
	z-index: 3;
}

@media screen and (max-width: 992px) {
	.section-news-checker-message {
	    top: 6.5rem;
	}
}

.section-news-checker-message a {
	padding: .45rem 1rem;
	border-radius: 2.75rem;
	background-color: #e50914;
	display: flex;
    align-items: center;
}

.section-news-checker-message a,
.section-news-checker-message a:hover {
    color: #ffffff;
}

.section-news-checker-message a > span.category-image {
	width: 1.75rem;
	height: 1.75rem;
	display: flex;
    position: relative;
	border-radius: 9999px;
	margin-left: -.35rem;
	margin-right: -.35rem;
	border: 0.063rem solid #ffffff;
	overflow: hidden;
}

.section-news-checker-message a > span.category-image img {
	width: 100%;
	height: 100%;
	display: block;
    aspect-ratio: 1 / 1;
}

.section-news-checker-message .text {
	margin-left: .75rem;
}

.section-news-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	border-top: 0.063rem solid #333333;
	border-bottom: 0.063rem solid #333333;
	margin-top: -0.063rem;
}

@media screen and (max-width: 992px) {
	.section-news-item {
		gap: .85rem;
		padding: .85rem;
	}
}

.section-news-item:last-child {
	border-bottom: none;
	border-bottom-left-radius: .75rem;
    border-bottom-right-radius: .75rem;
}

.section-news-item-details {
	width: 92%;
	display: flex;
    flex-direction: column;
    justify-content: center;
	gap: .45rem;
}

@media screen and (max-width: 992px) {
	.section-news-item-details {
		width: 100%;
	}
}

.section-news-item-description {
	position: relative;
}

.section-news-item-show-more {
	margin-top: -0.15rem;
    margin-bottom: 0.5rem;
	position: relative;
	z-index: 2;
}

.section-news-item-show-more,
.section-news-item-show-more a {
	color: #9e9e9e;
}

.section-news-item-show-more a:hover {
    color: #c1c1c1;
}

.section-news-item-image {
	width: 100%;
	height: auto;
	border-radius: .75rem;
    margin-bottom: .25rem;
    margin-top: .25rem;
	overflow: clip;
	position: relative;
}

.section-news-item-image figure,
.section-news-item-image picture {
	height: 100%;
}

body.single .single-news .section-news-item-image {

}

@media screen and (min-width: 768px) {
	.section-news-item-image {
		height: auto;
	}
}

@media screen and (max-width: 992px) {
	.ripple-effect-clicked {
	    -webkit-transition: .5s ease-in-out;
	}
	.ripple {
	    display: block;
	    position: absolute;
	    pointer-events: none;
	    border-radius: 50%;
	    transform: scale(0);
	    background-color: #ffffff;
	    opacity: .5;
	}
	.ripple.animate {
	    animation: ripple-effect 0.6s linear;
	}
}

@keyframes ripple-effect {
    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
        transform: scale(2.5);
    }
}

.section-news-item-image-source {
	position: absolute;
    left: .5rem;
    bottom: .5rem;
    padding: .5rem .75rem;
    min-width: 3.125rem;
    background-color: rgb(0 0 0 / 50%);
    border-radius: .75rem;
    color: #ffffff;
    font-size: 0.875rem;
    text-align: center;
	z-index: 2;
}

.section-news-item-image img {
	width: 100%;
	height: 100%;
    max-height: 40rem;
	display: block;
	object-fit: cover;
}

@media screen and (max-width: 992px) {
    .section-news-item-image img {
        max-height: 30rem;
    }
}

.section-news-item-video {
	width: 100%;
	border-radius: .75rem;
	overflow: clip;
	position: relative;
}

.section-news-item-video video {
	width: 100%;
	height: 100%;
    max-height: 100vh;
	background-color: #000000;
	transform: rotate(0deg) scale(1.005);
}

.section-news-item-category-image-box {
	border-radius: 100%;
	background-color: #0f0f0f;
    position: relative;
    gap: .75rem;
    display: flex;
    flex-direction: column;
}

.section-news-item-category-image-box a,
.section-news-item-category-image-box img {
	display: block;
	border-radius: 100%;
	width: 2.75rem;
	height: 2.75rem;
}

.section-news-item-category-image-box img {
	object-fit: cover;
}

.section-news-item-breaking {

}

.section-news-item-breaking img {
	width: 1.25rem;
	height: 1.25rem;
}

.section-news-item-category-data {
	display: flex;
	align-items: center;
    justify-content: space-between;
	gap: .35rem;
	font-size: .9375rem;
	font-weight: 600;
}

@media screen and (max-width: 992px) {
	.section-news-item-category-data {
		font-size: 1.1rem;
	}
}

.section-news-item-category-title {
	display: flex;
	align-items: center;
	gap: .35rem;
}

.section-news-item-category-title > i {
	margin-left: -0.25rem;
}

.section-news-item-category-title > span {
	color: #afafaf;
	position: relative;
	font-size: .875rem;
	font-weight: 400;
}

.section-news-item-category-title > span::before {
	content: '•';
	margin-right: .25rem;
}

.section-news-item-report {
    font-size: 1.125rem;
    font-weight: 400;
}

.section-news-item-actions {
    color: #afafaf;
	display: flex;
	justify-content: space-between;
}

.section-news-item-actions > div {
	font-size: 1.15rem;
	display: flex;
	align-items: center;
	gap: .75rem;
    margin-top: .25rem;
}

.section-news-item-actions > div > div.reaction {
	display: flex;
    border-radius: 2.25rem;
    background-color: #262626;
}

.section-news-item-actions > div > div.reaction > a {
	border-radius: 0;
	height: 2.25rem;
}

.section-news-item-actions > div > div.reaction > a:first-child {
    padding-left: .85rem;
}

.section-news-item-actions > div > div.reaction > a:last-child {
    padding-right: .65rem;
    border-left: 1px solid #474747;
}


.section-news-item-actions [data-action="share"] {
	display: none;
}

.section-news-item-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: 0 .65rem;
    border-radius: 2.25rem;
    height: 2.25rem;
}

.section-news-item-actions a,
.section-news-item-actions a:hover {
	color: #c7c7c7;
}

@media screen and (min-width: 992px) {
    .section-news-item-actions a:hover {
    	color: #d9d9d9;
    }
}

.section-news-item-actions a > * {
    z-index: 1;
}

.section-news-item-actions a:not(.flexibly) {
	width: 2.25rem;
    background-color: #262626;
}

.section-news-item-actions i.ic-bookmark-fill {
	color: #e50914;
}

.section-news-item-actions .reaction-icon {
	width: 1.125rem;
	height: 1.125rem;
	fill: #fff;
	stroke: #fff;
	background-image: url(/wp-content/themes/starter/shared/assets/css/../images/positive-reaction.svg);
	background-repeat: no-repeat;
    background-size: contain;
}

.section-news-item-actions .reaction-icon.negative {
	background-image: url(/wp-content/themes/starter/shared/assets/css/../images/negative-reaction.svg);
}

@media screen and (min-width: 992px) {
    a[data-action="positive-reaction"]:hover .reaction-icon,
    a[data-action="negative-reaction"]:hover .reaction-icon {
    	filter: brightness(0) saturate(100%) invert(100%) sepia(62%) saturate(0%) hue-rotate(90deg) brightness(114%) contrast(101%);
    }
}

a[data-action="positive-reaction"] .reaction-icon.active {
	filter: brightness(0) saturate(100%) invert(44%) sepia(95%) saturate(1105%) hue-rotate(179deg) brightness(97%) contrast(93%);
}

a[data-action="negative-reaction"] .reaction-icon.active {
	filter: brightness(0) saturate(100%) invert(25%) sepia(92%) saturate(7294%) hue-rotate(346deg) brightness(83%) contrast(120%);
}

a[data-action="positive-reaction"] .reaction-icon.active + span {
	color: #1d9bf0;
}

a[data-action="negative-reaction"] .reaction-icon.active + span {
	color: #e50914;
}

.section-news-item-actions span:not(.reaction-icon) {
	font-size: .95rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	min-width: 0.75rem;
}

.section-news-item-actions span:not(.reaction-icon) > i {
    margin-right: .35rem;
}

.section-news-item-actions span:not(.reaction-icon) > b {
    margin-right: .25rem;
}

.section-news-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
	line-height: 1;
	margin: .25rem 0;
}

.section-news-item-tags a,
.section-news-item-tags a:hover {
	color: #c1c1c1;
}

@media screen and (max-width: 992px) {
	.section-news-item-tags a {
		font-size: 1.05rem;
	}
}

.section-news-item-recommendation-categories {
	padding: 1rem 0;
}

@media screen and (max-width: 992px) {
	.section-news-item-recommendation-categories {
		padding: .85rem;
		border-bottom: 0.063rem solid #333333;
	}
}

.section-news-item-recommendation-categories-title {
	margin-bottom: .85rem;
}

.section-news-item-recommendation-categories-items {
	overflow: hidden;
}

.section-news-item-recommendation-categories-items .scroll {
	gap: 1rem;
    justify-content: flex-start;
}

.section-news-item-recommendation-categories-items .scroll > div {
	min-width: 10.5rem;
}

/* Section - Sidebar */
.section-sidebar-wrapper {
	border: 0.063rem solid #333333;
	border-radius: .75rem;
	padding: 1.25rem;
}

.section-sidebar-categories li:not(:last-child) {
	margin-bottom: .5rem;
}

.section-sidebar-categories a {
	font-size: 1.225rem;
	line-height: 1.75rem;
}

.section-sidebar-categories a:hover,
.section-sidebar-categories a.active {
	color: #ffffff;
}

.section-sidebar-popular-items {
	display: flex;
	flex-direction: column;
    gap: 1rem;
}

.section-sidebar-popular-item {
	display: flex;
    flex-direction: column;
    gap: .55rem;
}

.section-sidebar-popular-item:not(:last-child) {
    border-bottom: 1px solid #333333;
    padding-bottom: 1rem;
}

.section-sidebar-popular-items-category-data {
	display: flex;
	align-items: center;
    justify-content: space-between;
	gap: .35rem;
	font-size: .9375rem;
	font-weight: 600;
}

.section-sidebar-popular-items-category-title {
	display: flex;
	align-items: center;
	gap: .35rem;
}

.section-sidebar-popular-items-category-title > i {
	margin-left: -0.25rem;
}

.section-sidebar-popular-items-category-follow {
    display: none !important;
}

.section-sidebar-popular-items-category-title > span {
	color: #afafaf;
	position: relative;
	font-size: .875rem;
	font-weight: 400;
}

.section-sidebar-popular-items-category-title > span::before {
	content: '·';
	margin-right: .25rem;
}

.section-sidebar-popular-items a:hover {
	color: #ffffff;
}

.section-sidebar-popular-items-image {
	width: 100%;
	border-radius: .75rem;
	overflow: clip;
	position: relative;
}

.section-sidebar-popular-items-image,
.section-sidebar-popular-items-image a,
.section-sidebar-popular-items-image a img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: .75rem;
}

.section-sidebar-popular-items-image a img {
	object-fit: cover;
    height: auto;
}

/* Section - Category */
.section-category-profile {
	border: 0.063rem solid #333333;
	border-bottom: none;
	border-top-left-radius: .75rem;
	border-top-right-radius: .75rem;
	position: relative;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.section-category-profile  {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-left: 0;
		border-right: 0;
	}
}

.section-category-profile-top {
	position: relative;
}

.section-category-profile-cover-image {
	width: 100%;
	height: 12.5rem;
}

@media screen and (max-width: 992px) {
	.section-category-profile-cover-image {
		width: 100%;
		height: 9.15rem;
	}
}

.section-category-profile-cover-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
    display: block;
}

.section-category-profile-image {
	width: 7.25rem;
	height: 7.25rem;
	border-radius: 100%;
	position: absolute;
	left: 0.687rem;
	top: 8.438rem;
	overflow: hidden;
	border: 0.313rem solid #0F0F0F;
}

@media screen and (max-width: 992px) {
	.section-category-profile-image {
		width: 6rem;
		height: 6rem;
		top: 7rem;
	}
}

.section-category-profile-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-category-profile-actions {
	display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

@media screen and (min-width: 992px) {
    .section-category-profile-actions {
		padding: 1rem 1rem 0;
	}
}

.section-category-profile-bottom {
	min-height: 5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

@media screen and (max-width: 992px) {
    .section-category-profile-bottom {
        padding-top: 0;
    }
}

.section-category-profile-title {
	display: flex;
	align-items: center;
	gap: .35rem;
}

.section-category-profile-follow-count {
	color: #afafaf;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.section-category-profile-follow-count b {
	color: #d9d9d9;
}

/* Section - User Login */
.section-user-login {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 1rem 0;
	background-color: #1A1A1A;
	z-index: 10;
}

/* Section - Sidebar User */
.section-sidebar-user {

}

.section-sidebar-user-meta {
	display: flex;
	align-items: center;
}

.section-sidebar-user-meta-profile-image,
.section-sidebar-user-meta-profile-image img {
	width: 2.5rem;
	height: 2.5rem;
}

.section-sidebar-user-meta-profile-image img {
	display: block;
	object-fit: cover;
	border-radius: 2.5rem;
}

.section-sidebar-user-meta-profile-name {
	display: flex;
    gap: .35rem;
	padding: 0 .75rem;
	font-weight: 600;
}

.section-sidebar-user-links {

}

.section-sidebar-user-links ul {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.section-sidebar-user-links a {
	font-size: 1.1rem;
    line-height: 1.625rem;
}

.section-sidebar-user-logout {

}

.section-sidebar-user-logout a {
	font-size: 1.1rem;
    line-height: 1.6rem;
}

/* Section - Page */
.section-page {

}

.section-page-content {
	padding: 1rem;
    border: 0.063rem solid #333333;
    border-bottom-left-radius: .75rem;
    border-bottom-right-radius: .75rem;
    position: relative;
}

.section-page-content h1,
.section-page-content h2,
.section-page-content h3 {
    margin-bottom: 0.5rem !important;
}

/* Section - Profile */
.section-profile {

}

.section-profile-content {
	padding: 1rem;
    border: 0.063rem solid #333333;
    border-bottom-left-radius: .75rem;
    border-bottom-right-radius: .75rem;
    position: relative;
}

@media screen and (max-width: 992px) {
	.section-profile-content {
		padding: .85rem;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		border-left: 0;
		border-right: 0;
	}
}

.section-profile-details hr {
	margin-top: .75rem !important;
	margin-bottom: 1rem !important;
}

/* Footer */
#footer {
	color: #ffffff;
	background-color: #0F0F0F;
}

#footer .logo img {
	display: block;
	height: 1.85rem;
	filter: brightness(0) invert(1);
}

#footer .footer-logo {
	width: 1.625rem;
	height: 1.625rem;
}

#footer .menu {
	width: 100%;
    height: 100%;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

@media screen and (max-width: 992px) {
	#footer .menu {
		gap: .85rem;
		flex-direction: column;
	    align-items: flex-start;
	}
}

#footer .menu a {
	font-size: 0.938rem;
    font-style: normal;
}

@media screen and (max-width: 992px) {
	#footer .menu a {
		font-size: 1.1rem;
	}
}

#footer .footer-top {
	padding: 2rem 0;
}

@media screen and (max-width: 992px) {
	#footer .footer-top {
		padding: 1rem .85rem;
	}
}

:root{
    --size: 275;
}

@media screen and (min-width: 768px) {
    :root{
        --size: 425;
    }
}

@media screen and (min-width: 992px) {
    :root{
        --size: 1000;
    }
}

@media screen and (min-width: 1760px) {
    :root{
        --size: 1200;
    }
}

html {
    font-size: calc(10 * (100vw / var(--size)));
    /* scroll-behavior: smooth; */
    color-scheme: dark;
}

body {
	color: #e7e9ea;
	font-size: 1rem;
    font-weight: 400;
    font-optical-sizing: auto;
	font-style: normal;
    background-color: #0f0f0f;
}

@media screen and (max-width: 992px) {
    body {
        font-size: 1.125rem;
    }
}

body {
    font-family: "Noto Sans", sans-serif;
}

a,
a:hover {
	color: #d9d9d9;
}

@media screen and (min-width: 992px) {
    a:hover {
    	color: #ffffff;
    }
}

p {
    font-size: 1rem;
    line-height: 1.5rem;
	margin-bottom: .75rem !important;
}

@media screen and (max-width: 992px) {
    p {
        font-size: 1.1rem;
		line-height: 1.625rem;
    }
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin: 0;
    font-weight: 600;
    font-family: "Noto Sans", sans-serif;
}

.text-gray {
    color: #afafaf;
}

/* Icons */
.ic-checkbox-circle-fill,
.ic-checkbox-circle-line {
    font-size: 1.125rem;
}

.ic-checkbox-circle-fill {
    color: #1d9bf0;
}

/* Selection */
::selection {
	background-color: #e50914;
}

/* Section */
.section:not(.no-overflow) {
    overflow: hidden;
}

.section.section-lg {
    padding: 1rem 0;
}

.section hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border-top: .063rem solid #333333;
}

@media screen and (max-width: 992px) {
    .section.section-lg {
        padding: 0.375rem 0;
    }
}

@media screen and (min-width: 1200px) {
	.section-md {
		padding-top: 3.25rem;
	    padding-bottom: 3.25rem;
	}
}

/* Make Sticky */
.make-sticky {
    position: sticky;
    left: 0;
    top: 1rem;
}

/* Scroll */
.scroll {
	display: flex;
    justify-content: space-between;
	gap: .85rem;
	overflow-x: auto;
    scroll-snap-type: x mandatory;
    overflow-y: hidden;
}

.scroll::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
}

/* Scroll Top */
.scroll-top {
    width: 3.125rem;
    height: 3.125rem;
    right: 1.193rem;
    bottom: 1.193rem;
    border-radius: 3.5rem;
    background-color: #e50914;
}

.scroll-top.not-login {
    bottom: 5.875rem;
}

.scroll-top:hover {
    opacity: 1;
}

@media screen and (max-width: 992px) {
    .scroll-top {
        bottom: 2.386rem;
        display: flex;
    }
}

/* Back Button */
.back-button {
	position: fixed;
    left: 1.193rem;
    bottom: 1.193rem;
    background-color: #e50914;
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border-radius: 3.5rem;
    transition: 0.4s;
    transform: scale(0);
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .back-button {
        bottom: 5.2rem;
    	display: none !important;
    }
}

.back-button.changed {
    transform: scale(1);
}

.back-button:before {
	color: #ffffff;
	font-family: 'Icon' !important;
	content: '\EA64';
	font-size: 1.875rem;
}

/* Grid */
.container,
.container-sm,
.container-wide,
.container-fluid {
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.container-wide {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 992px) {
    .container,
    .container-sm,
    .container-wide,
    .container-fluid {
    	padding-left: 0;
    	padding-right: 0;
    }
}

@media screen and (min-width: 1600px) {
	.container-wide {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 576px) {
    .container-wide {
        max-width: 33.75rem;
    }
}

@media (max-width: 992px) {
    .container-wide {
        max-width: 60rem;
    }
}

@media (min-width: 992px) {
    .container-wide {
        max-width: 96.875rem;
    }
}

@media (min-width: 992px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 82.5rem !important;
    }
}

.row [class^="col"],
.row [class^="col-"] {
	position: relative;
}

.mb-3 {
    margin-bottom: .75rem !important;
}

/* Tooltips */
/* https://github.com/ghosh/microtip/ */
[data-role~="tooltip"] {
    position: relative;
}

[data-role~="tooltip"]::before,
[data-role~="tooltip"]::after {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
    opacity: 0;
    pointer-events: none;
    transition: all .18s ease-in-out;
    position: absolute;
    transform-origin: top;
    z-index: 10;
}

[data-role~="tooltip"]::before {
    content: '';
    background-size: 100% auto !important;
}

[data-role~="tooltip"]::after {
    background-color: #e50914;
    border-radius: 0.25rem;
    color: #ffffff;
    content: attr(data-label);
    font-size: 0.813rem;
    font-weight: normal;
    text-transform: none;
    padding: .5em .75em;
    white-space: nowrap;
    box-sizing: content-box;
}

[data-role~="tooltip"]:hover::before,
[data-role~="tooltip"]:hover::after {
    opacity: 1;
    pointer-events: auto;
}

[data-role~="tooltip"][data-microtip-position|="top"]::before {
    background-image: url("data:image/svg+xml,%3Csvg width='36' height='12' viewBox='0 0 36 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(/wp-content/themes/starter/shared/assets/css/%23clip0_289_12)'%3E%3Cpath d='M2.65799 0C-13.615 0 50.938 0 34.662 0C28.662 0 23.035 12.002 18.66 12.002C14.285 12.002 8.59399 0 2.65799 0Z' fill='%23E50914'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_289_12'%3E%3Crect width='36' height='12' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    height: 0.375rem;
    width: 1.125rem;
    margin-bottom: 0.313rem;
}

[data-role~="tooltip"][data-microtip-position|="top"]::after {
    margin-bottom: 0.688rem;
}

[data-role~="tooltip"][data-microtip-position|="top"]::before {
    transform: translate3d(-50%, 0, 0);
    bottom: 100%;
    left: 50%;
}

[data-role~="tooltip"][data-microtip-position|="top"]:hover::before {
    transform: translate3d(-50%, -0.313rem, 0);
}

[data-role~="tooltip"][data-microtip-position|="top"]::after {
    transform: translate3d(-50%, 0, 0);
    bottom: 100%;
    left: 50%;
}

[data-role~="tooltip"][data-microtip-position="top"]:hover::after {
    transform: translate3d(-50%, -0.313rem, 0);
}

[data-role~="tooltip"][data-microtip-position|="bottom"]::before {
    background-image: url("data:image/svg+xml,%3Csvg width='36' height='12' viewBox='0 0 36 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(/wp-content/themes/starter/shared/assets/css/%23clip0_289_14)'%3E%3Cpath d='M33.342 12C49.615 12 -14.938 12 1.33801 12C7.33801 12 12.965 -0.00199986 17.34 -0.00199986C21.715 -0.00199986 27.406 12 33.342 12Z' fill='%23E50914'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_289_14'%3E%3Crect width='36' height='12' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    height: 0.375rem;
    width: 1.125rem;
    margin-top: 0.313rem;
    margin-bottom: 0;
}

[data-role~="tooltip"][data-microtip-position|="bottom"]::after {
    margin-top: 0.688rem;
}

[data-role~="tooltip"][data-microtip-position|="bottom"]::before {
    transform: translate3d(-50%, -0.625rem, 0);
    bottom: auto;
    left: 50%;
    top: 100%;
}

[data-role~="tooltip"][data-microtip-position|="bottom"]:hover::before {
    transform: translate3d(-50%, 0, 0);
}

[data-role~="tooltip"][data-microtip-position|="bottom"]::after {
    transform: translate3d(-50%, -0.625rem, 0);
    top: 100%;
    left: 50%;
}

[data-role~="tooltip"][data-microtip-position="bottom"]:hover::after {
    transform: translate3d(-50%, 0, 0);
}

[data-role~="tooltip"][data-microtip-position="left"]::before,
[data-role~="tooltip"][data-microtip-position="left"]::after {
    bottom: auto;
    left: auto;
    right: 100%;
    top: 50%;
    transform: translate3d(10px, -50%, 0);
}

[data-role~="tooltip"][data-microtip-position="left"]::before {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='36' viewBox='0 0 12 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(/wp-content/themes/starter/shared/assets/css/%23clip0_290_16)'%3E%3Cpath d='M0 33.342C0 49.615 0 -14.938 0 1.33801C0 7.33801 12.002 12.965 12.002 17.34C12.002 21.715 0 27.406 0 33.342Z' fill='%23E50914'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_290_16'%3E%3Crect width='12' height='36' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    height: 1.125rem;
    width: 0.375rem;
    margin-right: 0.313rem;
    margin-bottom: 0;
}

[data-role~="tooltip"][data-microtip-position="left"]::after {
    margin-right: 0.688rem;
}

[data-role~="tooltip"][data-microtip-position="left"]:hover::before,
[data-role~="tooltip"][data-microtip-position="left"]:hover::after {
    transform: translate3d(0, -50%, 0);
}

[data-role~="tooltip"][data-microtip-position="right"]::before,
[data-role~="tooltip"][data-microtip-position="right"]::after {
    bottom: auto;
    left: 100%;
    top: 50%;
    transform: translate3d(-10px, -50%, 0);
}

[data-role~="tooltip"][data-microtip-position="right"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12px' height='36px'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' transform='rotate(90 6 6)' d='M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    height: 1.125rem;
    width: 0.375rem;
    margin-bottom: 0;
    margin-left: 0.313rem;
}

[data-role~="tooltip"][data-microtip-position="right"]::after {
    margin-left: 0.688rem;
}

[data-role~="tooltip"][data-microtip-position="right"]:hover::before,
[data-role~="tooltip"][data-microtip-position="right"]:hover::after {
    transform: translate3d(0, -50%, 0);
}

@media screen and (max-width: 992px) {
    [data-role~="tooltip"]::before,
    [data-role~="tooltip"]::after,
    [data-role~="tooltip"]:hover::before,
    [data-role~="tooltip"]:hover::after {
        display: none;
    }
}

/* Form */
.form-control {
    color: #d9d9d9;
    background-color: #0f0f0f;
    border-color: #333333;
    padding: 0 1.25rem;
    height: 3.25rem;
}

.form-control,
.security-code {
	border-radius: .75rem;
}

.security-code {
    border-color: #333333;
}

.form-control:focus,
.selectbox > select:focus {
    background-color: #0f0f0f;
    border-color: #e50914;
}

.radio-custom > input[type=radio]:checked + label:before {
	border-color: #e50914;
	background-color: #e50914;
}

.checkbox-custom > input[type=checkbox]:checked + label:before {
	border-color: #e50914;
	background-color: #e50914;
}

.radio label,
.checkbox label {
	color: #919191;
	font-size: 0.875rem;
	line-height: initial;
}

.radio label a,
.checkbox label a {
	text-decoration: underline;
	text-decoration-style: dotted;
}

.radio-custom > label:before,
.checkbox-custom > label:before {
    top: -0.25rem;
    border-color: #e50914;
}

textarea.form-control {
    padding: 1rem 1.25rem;
	min-height: 4.25rem;
}

@media screen and (min-width: 40em) {
    .form-group {
        margin-bottom: 1rem;
    }
}

.form-group .label-filled {
    left: 1.125rem;
    top: .9rem;
    font-size: .938rem;
}

.form-group [data-filled]:focus + label.label-filled,
.form-group [data-filled].input-filled + label.label-filled {
    left: 0.938rem;
    top: 0.875rem;
    font-size: 0.938rem;
    color: #d9d9d9;
    background-color: #0f0f0f;
}

.form-group-text-divider {
    width: 100%;
    position: relative;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
}

.form-group-text-divider::before {
    content: " ";
    height: 1px;
    background-color: #727272;
    display: block;
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
}

.form-group-text-divider > span {
    padding: 0px 12px;
    position: relative;
    display: inline-block;
    background-color: #0f0f0f;
}

input.validate-error,
input.validate-error:focus,
select.validate-error,
select.validate-error:focus,
textarea.validate-error,
textarea.validate-error:focus {
    background-color: transparent;
}

/* Button */
.button {
    color: #0f0f0f;
	font-size: 1rem;
    height: 1.919rem;
    line-height: normal;
    font-weight: 500;
    font-style: normal;
	white-space: nowrap;
	cursor: pointer;
	padding: 0 0.85rem;
    gap: .35rem;
    margin-right: 0.5rem;
	border-radius: 1.919rem;
	background-color: rgba(255, 255, 255, 0.1);
    transition: .2s;
}

@media screen and (max-width: 992px) {
    .button {
        height: 2.35rem;
        font-size: 1.125rem;
    	border-radius: 2.25rem;
    }
}

.button.button-left-icon i,
.button.button-right-icon i {
	vertical-align: text-top;
}

.button.button-left-icon i::before,
.button.button-right-icon i::before {
	font-size: 1.25rem;
}

.input-group-append .button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.input-group-prepend .button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

/* Button Size */
.button-small {
    font-size: .95rem;
    padding: 0 .75rem;
    height: 1.85rem;
}

/* Button Text */
.button.button-text {
    background-color: transparent !important;
}

/* Button Primary */
.button.button-primary,
.button.button-primary:hover {
    color: #090909;
    background-color: #f1f1f1;
    border-color: #f1f1f1;
}

@media (hover: hover) and (pointer: fine) {
    .button.button-primary:hover {
        color: #0f0f0f;
        background-color: #efefef;
        border-color: #efefef;
    }
}

.button.button-primary.active {
    color: #f1f1f1;
    background-color: #e50914;
    border-color: #e50914;
}

.button.button-primary-outline {
    color: #f1f1f1;
    border-color: #f1f1f1;
    background-color: transparent;
}

.button.button-primary-outline:hover {
    color: #090909;
    border-color: #f1f1f1;
    background-color: #f1f1f1;
}

.button.button-primary > i:before,
.button.button-primary:hover > i:before {
    color: #090909;
}

/* Button Secondary */
.button.button-secondary,
.button.button-secondary:hover {
    color: #ececec;
    background-color: #272727;
    border-color: #272727;
}

@media (hover: hover) and (pointer: fine) {
    .button.button-secondary:hover {
        color: #0f0f0f;
        background-color: #ffffff;
        border-color: #ffffff;
    }
}

.button.button-secondary.active {
    color: #0f0f0f;
    background-color: #ffffff;
    border-color: #ffffff;
}

.button.button-secondary.active i::before {
    color: #0f0f0f;
}

/* Button Tertiary */
.button.button-tertiary,
.button.button-tertiary:hover {
    color: #0f0f0f;
    background-color: #ffffff;
    border-color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
    .button.button-tertiary:hover {
        color: #ececec;
        background-color: #272727;
        border-color: #272727;
    }
}

.button.button-tertiary.active {
    color: #ececec;
    background-color: #272727;
    border-color: #272727;
}

/* Button Default */
.button.button-default,
.button.button-default:hover {
    color: #ececec;
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

@media (hover: hover) and (pointer: fine) {
    .button.button-default:hover {
        color: #ececec;
        background-color: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

/* Button - Google Login */
.button-google-login {
    display: flex;
}

.button-google-login img {
    width: 1.5rem;
}

/* Button Socials */
.button.button-socials {
    width: 3rem;
    height: 3rem;
    padding: 0;
    line-height: inherit;
    background-color: transparent;
    border: 1px solid #333333;
}

.button.button-socials:hover {
    background-color: #272727;
    border-color: #272727;
}

.button.button-socials i {
    color: #d9d9d9;
}

/* Modal */
.modal {
    border-radius: .75rem;
    background-color: #1a1a1a;
}

.modal .mb-5 {
    margin-bottom: 2.25rem !important;
}

.modal a:not(.button),
.modal a:not(.button):hover {
    color: #e50914;
}

@media screen and (min-width: 992px) {
    .modal a:not(.button):hover {
        text-decoration: underline;
    }
}

.modal .modal-header {
    border-bottom: 0.063rem solid #333333;
}

.modal .modal-logo img {
    height: 1.65rem;
}

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

.modal .modal-body div.modal-contents {
    color: #d9d9d9;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 4rem 3rem 4rem 3rem;
}

@media screen and (max-width: 992px) {
    .modal .modal-body div.modal-contents {
        font-size: 1.1rem;
		line-height: 1.65rem;
        padding: 2rem 1.5rem 2rem 1.5rem;
    }
}

.modal .modal-body p {
    color: #d9d9d9;
    font-size: inherit;
}

.modal-row-link {
    display: flex;
    gap: .35rem;
    line-height: 1.45rem;
}

.modal-row-link a:not(.button),
.modal-row-link a:not(.button):hover {
    color: #d9d9d9 !important;
}

.modal-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.modal-button-row .button {
    margin-right: 0;
}

.modal .form-group {
    margin-bottom: 1rem;
}

.modal .form-control {
    color: #d9d9d9;
    border-color: #545454;
    background-color: #1a1a1a;
}

.modal .form-group [data-filled]:focus + label.label-filled,
.modal .form-group [data-filled].input-filled + label.label-filled {
    color: #d9d9d9;
    background-color: #1a1a1a;
}

.modal .form-group-text-divider > span {
    background-color: #1a1a1a;
}

.modal .modal-footer {
    padding: 0 3rem 1.5rem 3rem;
    border-top: none;
    background-color: #1a1a1a;
    border-bottom-left-radius: .75rem;
	border-bottom-right-radius: .75rem;
}

#modal-overlay {
    background-color: rgb(0 0 0 / 50%);
    /* backdrop-filter: blur(2px); */
}

/* Modal Dialog */
#modal-wrapper.modal-dialog .modal .modal-body div.modal-contents {
    color: #d9d9d9;
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
}

#modal-wrapper.modal-dialog .modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

/* Sticky */
.sticky-queue {
    z-index: 9999;
}

/* Search */
.search {
    padding: 4.25rem .313rem;
    background-color: #0f0f0f;
}

@media screen and (max-width: 992px) {
	.search {
        padding: 4.25rem .85rem;
        background-color: #0f0f0f;
    }
}

.search .close {
    color: #afafaf;
}

.search .form-group {
    margin-bottom: 1rem;
}

.search .search-results {
    max-height: 60vh;
}

.search .search-results .search-results-item {
    margin-bottom: 1rem;
    background-color: #161616;
}

.search .search-results .search-results-item,
.search .search-results .search-results-item img {
    border-radius: .75rem;
}

.search .search-results .search-results-item .search-results-text {
    margin: 0 !important;
}

.search .search-results .search-results-item .search-results-text h3 {
    color: #e7e9ea;
}

.search .search-results .search-results-item .search-results-text div {
    color: #afafaf;
    line-height: 1.438rem;
}

.search .search-results .search-no-results {
    font-size: 1.25rem;
}

/* Google Badge */
.grecaptcha-badge {
    visibility: hidden;
}

/* Marquee */
.marquee {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem;
    border: 0.063rem solid #333;
    border-radius: .75rem;
    margin-bottom: .55rem;
    overflow: clip;
}

.marquee .icon {
    white-space: nowrap;
}

.marquee .icon > span {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    display: block;
    animation: MarqueeChangeBackgroundColor .65s infinite alternate;
}

.marquee .track {
    overflow: hidden;
    white-space: nowrap;
    will-change: transform;
}

.marquee .track span:not(:last-child):after {
    content: ' — ';
}

@keyframes MarqueeChangeBackgroundColor {
    from { background-color: #e50914; }
    to { background-color: #0f0f0f; }
}

/* Greeting Message */
.section-greeting-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1rem;
    border: 0.063rem solid #333333;
    border-bottom: none;
    overflow: clip;
}

@media screen and (max-width: 992px) {
    .section-greeting-message {
        gap: .85rem;
        padding: .65rem .85rem;
        margin-left: 0.313rem;
        margin-right: 0.313rem;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10;
        border-top-left-radius: .75rem;
        border-top-right-radius: .75rem;
        background-color: rgb(15 15 15 / 85%);
        backdrop-filter: blur(8px);
        /* background-color: #0f0f0f; */
    }
}

.section-greeting-message-icon {
    width: 3.584rem;
    height: 3.125rem;
    font-size: 1.5rem;
    background-color: #272727;
    border-radius: 100%;
    overflow: clip;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 992px) {
    .section-greeting-message-icon {
        width: 3.7rem;
        height: 3.114rem;
    }
}

.section-greeting-message-text {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
}

/* Quete */
blockquote.quote {
    position: relative;
    overflow: hidden;
}

blockquote.quote {
    position: relative;
    overflow: hidden;
    padding-left: 4.15rem;
}

@media screen and (max-width: 992px) {
    blockquote.quote {
        padding-left: 4rem;
    }
}

blockquote.quote:before {
    font-family: Georgia, serif;
    content: "“";
    position: absolute;
    top: -1rem;
    left: 0;
    font-size: 8em;
    color: rgba(238, 238, 238, 0.3);
    font-weight: normal;
}

@media screen and (max-width: 992px) {
    blockquote.quote:before {
        top: -0.725rem;
        font-size: 6.5em;
    }
}

blockquote.quote:after {
    font-family: Georgia, serif;
    content: "”";
    position: absolute;
    bottom: -6.875rem;
    line-height: 6.25rem;
    right: -1.25rem;
    font-size: 25em;
    color: rgba(238, 238, 238, 0.1);
    font-weight: normal;
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
    display: inline-flex;
    border-radius: 2rem;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.dropdown-toggle:hover i::before {
    color: #ffffff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 11rem;
    background-color: #262626;
    border-radius: .75rem;
    display: none;
    list-style: none;
    padding: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin: 0.25rem 0 0;
    z-index: 2;
}

.dropdown-menu li a {
    color: #c7c7c7;
    font-size: .875rem;
    display: flex;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    gap: 0.5rem;
    align-items: center;
}

.dropdown-menu li:hover a {
    color: #ffffff;
}

.dropdown-menu li a i {
    font-size: .975rem;
    margin-top: 0.188rem;
}

/* Fancybox */
.fancybox__container {
    --fancybox-bg: rgb(15 15 15 / 85%);
}

