
/* Basic Setup */
html, body {
	padding: 0;
	margin: 0;
	color: #000000;
	background-color: #F0F1F5;
	letter-spacing: 0.4px;
	-webkit-font-smoothing: antialiased;
}
body > .container.safe-area-inset,
body > .container-fluid.safe-area-inset {
	padding-left: calc(15px + env(safe-area-inset-left));
	padding-right: calc(15px + env(safe-area-inset-right));
}
.invisible {
	visibility: hidden;
}
@media (min-width: 1200px) {
	.container-fluid > .container {
		width: 1140px;
	}
}

/* Font Setup */
h3, h4, h5, h6, p, ul, ol, li {
	line-height: 1.5em !important;
}
h1, h2, h3, h4, h5, h6, strong, em, p, span, a, button, label, tr, td, ul, ol, li, input, textarea, select, option {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
p {
	font-size: 1.2em;
}
.lead {
	font-weight: 400;
	font-size: 20px;
	opacity: 0.8;
}
.jumbotron {
	margin: 0;
	padding: 0;
	margin-left: auto;
	margin-right: auto;
	background: transparent;
}
@media (max-width: 767px) {
	.jumbotron {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.jumbotron {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.jumbotron {
		padding-left: 30px !important;
		padding-right: 30px !important;
	}
}
@media (min-width: 1200px) {
	.jumbotron {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}
.jumbotron p {
	font-weight: 400;
	font-size: 24px;
	margin-top: 15px;
	margin-bottom: 35px;
}
@media (max-width: 767px) {
	.jumbotron p {
		font-size: 19px;
	}
}
.uppercase {
	text-transform: uppercase;
}
.lowercase {
	text-transform: lowercase;
}
.capitalize {
	text-transform: capitalize; 
}
.bold {
	font-weight: bold;
}
.light {
	font-weight: lighter;
}
.no-hover-decoration:hover {
	text-decoration: none;
}
span.avoidwrap {
	display: inline-block;
}
.nav-container a {
	text-decoration: none;
}
.nav-container a:hover {
	text-decoration: none;
}
html, body, .para-font { 
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-weight: 400;
}
.header-font, h1, h2, h3, h4, h5, h6 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-weight: 600;
}

/* User-specific color scheme */
.color-red { color: #FF4747; }
.color-orange { color: #FF9500; }
.color-yellow { color: #FFCC00; }
.color-green { color: #08ba7d; }
.color-teal { color: #00C2D9; }
.color-blue { color: #007AFF; }
.color-purple { color: #BF5AF2; }
.color-pink { color: #FF7193; }
.color-indigo { color: #885AFF; }

.bg-color-red, .bg-color-red:hover, .bg-color-red:active { background: linear-gradient(to bottom right, #FF4747 0%, #D90A6F 100%); }
.bg-color-orange, .bg-color-orange:hover, .bg-color-orange:active { background: linear-gradient(to bottom right, #FF9500 0%, #E27B13 100%); }
.bg-color-yellow, .bg-color-yellow:hover, .bg-color-yellow:active { background: linear-gradient(to bottom right, #FFCC00 0%, #ED9E00 100%); }
.bg-color-green, .bg-color-green:hover, .bg-color-green:active { background: linear-gradient(to bottom right, #00CD86 0%, #3AB52A 100%); }
.bg-color-teal, .bg-color-teal:hover, .bg-color-teal:active { background: linear-gradient(to bottom right, #00C2D9 0%, #1991EA 100%); }
.bg-color-blue, .bg-color-blue:hover, .bg-color-blue:active { background: linear-gradient(to bottom right, #007AFF 0%, #1D62F0 100%); }
.bg-color-purple, .bg-color-purple:hover, .bg-color-purple:active { background: linear-gradient(to bottom right, #BF5AF2 0%, #AD44AB 100%); }
.bg-color-pink, .bg-color-pink:hover, .bg-color-pink:active { background: linear-gradient(to bottom right, #FF7193 0%, #D12C9F 100%); }
.bg-color-indigo, .bg-color-indigo:hover, .bg-color-indigo:active { background: linear-gradient(to bottom right, #885AFF 0%, #1749E5 100%); }

a { color: #007AFF; }
a:hover, a:focus { color: #007AFF; text-decoration: none; }
a.hover-underline:hover {
	text-decoration: underline;
}

.hover-transition {
	transition: all 0.1s ease-out 0s;
	-webkit-transition: all 0.1s ease-out 0s;
	-moz-transition: all 0.1s ease-out 0s;
	-o-transition: all 0.1s ease-out 0s;
}
.hover-opacity-full {
	opacity: 0.8;
}
.hover-opacity-full:hover {
	opacity: 1;
}

.hover-color-red:hover { color: #FF4747; }
.hover-color-orange:hover { color: #FF9500; }
.hover-color-yellow:hover { color: #FFCC00; }
.hover-color-green:hover { color: #08ba7d; }
.hover-color-teal:hover { color: #00C2D9; }
.hover-color-blue:hover { color: #007AFF; }
.hover-color-purple:hover { color: #BF5AF2; }
.hover-color-pink:hover { color: #FF7193; }
.hover-color-indigo:hover { color: #885AFF; }

.hover-bg-color-red:hover { background: linear-gradient(to bottom right, #FF4747 0%, #D90A6F 100%); }
.hover-bg-color-orange:hover { background: linear-gradient(to bottom right, #FF9500 0%, #E27B13 100%); }
.hover-bg-color-yellow:hover { background: linear-gradient(to bottom right, #FFCC00 0%, #ED9E00 100%); }
.hover-bg-color-green:hover { background: linear-gradient(to bottom right, #00CD86 0%, #3AB52A 100%); }
.hover-bg-color-teal:hover { background: linear-gradient(to bottom right, #00C2D9 0%, #1991EA 100%); }
.hover-bg-color-blue:hover { background: linear-gradient(to bottom right, #007AFF 0%, #1D62F0 100%); }
.hover-bg-color-purple:hover { background: linear-gradient(to bottom right, #BF5AF2 0%, #AD44AB 100%); }
.hover-bg-color-pink:hover { background: linear-gradient(to bottom right, #FF7193 0%, #D12C9F 100%); }
.hover-bg-color-indigo:hover { background: linear-gradient(to bottom right, #885AFF 0%, #1749E5 100%); }

/* Background image defaults */
.bg-img {
	background-repeat: no-repeat;
	background-position: center; 
}

/* General Color Scheme Setup */
.color-transparent, .color-transparent:focus { color: transparent; }
.color-white, .color-white:focus { color: white; }
.color-gray-light, .color-gray-light:focus { color: #F0F1F5; }
.color-gray-normal, .color-gray-normal:focus { color: #E7E9EE; }
.color-gray-dark, .color-gray-dark:focus { color: #797E88; }
.color-gray-ultra-dark, .color-gray-ultra-dark:focus { color: rgba(0,0,0,0.5); }
.color-gray-almost-black, .color-gray-almost-black:focus { color: rgba(0,0,0,0.75); }
.color-black, .color-black:focus { color: #111111; }

.bg-color-white { background-color: white; }
.bg-color-transparent { background-color: transparent; }
.bg-color-gray-light { background-color: #F0F1F5; }
.bg-color-gray-normal { background-color: #E7E9EE; }
.bg-color-gray-dark { background-color: #797E88; }
.bg-color-gray-ultra-dark { background-color: rgba(0,0,0,0.5); }
.bg-color-gray-almost-black { background-color: rgba(0,0,0,0.75); }
.bg-color-black { background-color: #111111; }

.hover-color-transparent:hover { color: transparent; }
.hover-color-white:hover { color: white; }
.hover-color-gray-light:hover { color: #F0F1F5; }
.hover-color-gray-normal:hover { color: #E7E9EE; }
.hover-color-gray-dark:hover { color: #797E88; }
.hover-color-gray-ultra-dark:hover { color: rgba(0,0,0,0.5); }
.hover-color-gray-almost-black:hover { color: rgba(0,0,0,0.75); }
.hover-color-black:hover { color: #111111; }

.hover-bg-color-white:hover { background-color: white; }
.hover-bg-color-transparent:hover { background-color: transparent; }
.hover-bg-color-gray-light:hover { background-color: #F0F1F5; }
.hover-bg-color-gray-normal:hover { background-color: #E7E9EE; }
.hover-bg-color-gray-dark:hover { background-color: #797E88; }
.hover-bg-color-gray-ultra-dark:hover { background-color: rgba(0,0,0,0.5); }
.hover-bg-color-gray-almost-black:hover { background-color: rgba(0,0,0,0.75); }
.hover-bg-color-black:hover { background-color: #111111; }


/* Widget modifications */
.card {
	box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15);
}

/* Text alignment styles */
.text-left-not-xs, .text-left-not-sm, .text-left-not-md, .text-left-not-lg {
	text-align: left;
}
.text-center-not-xs, .text-center-not-sm, .text-center-not-md, .text-center-not-lg {
	text-align: center;
}
.text-right-not-xs, .text-right-not-sm, .text-right-not-md, .text-right-not-lg {
	text-align: right;
}
.text-justify-not-xs, .text-justify-not-sm, .text-justify-not-md, .text-justify-not-lg {
	text-align: justify;
}

@media (max-width: 767px) {
	.text-left-not-xs, .text-center-not-xs, .text-right-not-xs, .text-justify-not-xs {
		text-align: inherit;
	}
	.text-left-xs {
		text-align: left;
	}
	.text-center-xs {
		text-align: center;
	}
	.text-right-xs {
		text-align: right;
	}
	.text-justify-xs {
		text-align: justify;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.text-left-not-sm, .text-center-not-sm, .text-right-not-sm, .text-justify-not-sm {
		text-align: inherit;
	}
	.text-left-sm {
		text-align: left;
	}
	.text-center-sm {
		text-align: center;
	}
	.text-right-sm {
		text-align: right;
	}
	.text-justify-sm {
		text-align: justify;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.text-left-not-md, .text-center-not-md, .text-right-not-md, .text-justify-not-md {
		text-align: inherit;
	}
	.text-left-md {
		text-align: left;
	}
	.text-center-md {
		text-align: center;
	}
	.text-right-md {
		text-align: right;
	}
	.text-justify-md {
		text-align: justify;
	}
}
@media (min-width: 1200px) {
	.text-left-not-lg, .text-center-not-lg, .text-right-not-lg, .text-justify-not-lg {
		text-align: inherit;
	}
	.text-left-lg {
		text-align: left;
	}
	.text-center-lg {
		text-align: center;
	}
	.text-right-lg {
		text-align: right;
	}
	.text-justify-lg {
		text-align: justify;
	}
}

/* Equal height columns */
.row-eq-height-all {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 767px) {
	.row-eq-height-xs {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.row-eq-height-sm {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.row-eq-height-md {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}
@media (min-width: 1200px) {
	.row-eq-height-lg {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}
.clear-both {
	clear: both;
}

/* Spacing settings */
.padding-sides-none {
	padding-left: 0;
	padding-right: 0;
}
.padding-sides-normal {
	padding-left: 15px;
	padding-right: 15px;
}
.padding-sides {
	padding-left: 30px;
	padding-right: 30px;
}
@media (max-width: 767px) {
	.padding-sides-none-xs {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.padding-sides-none-sm {
		padding-left: 0;
		padding-right: 0;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.padding-sides-none-md {
		padding-left: 0;
		padding-right: 0;
	}
}
@media (min-width: 1200px) {
	.padding-sides-none-lg {
		padding-left: 0;
		padding-right: 0;
	}
}
.margin-sides-none {
	margin-left: 0;
	margin-right: 0;
}
.margin-sides-small {
	margin-left: 7.5px;
	margin-right: 7.5px;
}
.margin-sides-normal {
	margin-left: 15px;
	margin-right: 15px;
}
.margin-sides {
	margin-left: 30px;
	margin-right: 30px;
}
.margin-big {
	margin: 60px;
}
.margin-mid {
	margin: 30px;
}
.margin-small {
	margin: 10px;
}
.margin-top-big {
	margin-top: 60px;
}
.margin-top-mid {
	margin-top: 30px;
}
.margin-top-small {
	margin-top: 10px;
}
.margin-bottom-big {
	margin-bottom: 60px;
}
.margin-bottom-mid {
	margin-bottom: 30px;
}
.margin-bottom-small {
	margin-bottom: 10px;
}
.margin-top-bottom-big {
	margin-bottom: 60px;
	margin-top: 60px;
}
.margin-top-bottom-mid {
	margin-bottom: 30px;
	margin-top: 30px;
}
.margin-top-bottom-small {
	margin-bottom: 10px;
	margin-top: 10px;
}
.padding-big {
	padding: 60px;
}
.padding-mid {
	padding: 30px;
}
.padding-small {
	padding: 10px;
}
.padding-top-big {
	padding-top: 60px;
}
.padding-top-mid {
	padding-top: 30px;
}
.padding-top-small {
	padding-top: 10px;
}
.padding-bottom-big {
	padding-bottom: 60px;
}
.padding-bottom-mid {
	padding-bottom: 30px;
}
.padding-bottom-small {
	padding-bottom: 10px;
}
.padding-top-bottom-big {
	padding-bottom: 60px;
	padding-top: 60px;
}
.padding-top-bottom-mid {
	padding-bottom: 30px;
	padding-top: 30px;
}
.padding-top-bottom-small {
	padding-bottom: 10px;
	padding-top: 10px;
}
.no-margin-no-padding {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	padding: 0;
}
.no-margin {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	margin: 0;
}
.no-padding {
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	padding: 0;
}
.no-border {
	border: none;
}
.no-box-shadow {
	box-shadow: none;
}

.fit-content {
	width: auto;
}
.container-full {
	width: 100%;
}

.rounded-border {
	border-radius: 3px;
}
.more-rounded-border {
	border-radius: 10px;
}

/* Positioning Settings */
.v-h-center {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform:translate(-50%, -50%);
	-moz-transform:translate(-50%, -50%);
	-ms-transform:translate(-50%, -50%);
	-o-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
}
.v-center {
	position: absolute;
	top: 50%;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}
.h-center {
	position: absolute;
	left: 50%;
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	-o-transform:translateX(-50%);
	transform:translateX(-50%);
}
.abs-bottom {
	position: absolute;
	bottom: 0;
}
.abs-left {
	position: absolute;
	left: 0;
}
.abs-top {
	position: absolute;
	top: 0;
}
.abs-right {
	position: absolute;
	right: 0;
}
.img-center {
	margin-left: auto;
	margin-right: auto;
}

/* Button styles */
.btn {
	border-size: 2px;
	border-radius: 10px;
	font-weight: 600;
	box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15);
	text-decoration: none;
	text-shadow: none;
	transition: all 0.1s ease-out 0s;
	-webkit-transition: all 0.1s ease-out 0s;
	-moz-transition: all 0.1s ease-out 0s;
	-o-transition: all 0.1s ease-out 0s;
	word-wrap: break-word;
	white-space: normal;
	border: none;
}
.btn:hover {
	box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.25);
}
.btn:active {
	box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15);
}
.btn-no-shadow {
	box-shadow: none;
}
.btn-no-shadow-all:hover, .btn-no-shadow-all:focus, .btn-no-shadow-all:active {
	box-shadow: none;
}
.btn-xl {
	font-size: 26px;
	padding: 11px 30px 12px 30px;
	border-radius: 21px;
}
.btn-lg {
	padding: 5px 18px 5px 18px;
}
.btn-md {
	padding: 3px 14px 3px 14px;
	border-radius: 8px;
}
.btn-sm {
	padding: 2px 12px 2px 12px;
	border-radius: 7px;
}
.btn-no-click {
	pointer-events: none;
}

/* Modal styling fix */
.modal .modal-header, .modal .modal-footer {
	border: none;
}
.modal button.close {
	padding-left: 5px;
	padding-right: 5px;
}
.modal .modal-footer {
	text-align: center;
}

/* Input styles */
.form-control {
	box-shadow: none;
	-webkit-box-shadow: none;
	padding: 10px 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: auto;
	border: 2px solid #DCDEE0;
	background-color: white;
	border-radius: 6px;
}
.form-control:focus {
	box-shadow: none;
	-webkit-box-shadow: none;
	border-color: #4CD964;
}
.input-group {
	border-radius: 3px;
}
.input-group>.input-group-addon {
	border-width: 2px;
	border-color: #DCDEE0;
	padding-left: 20px;
	padding-right: 15px;
}
.input-group>.input-group-addon:first-child {
	border-radius: 3px 0 0 3px;
}
.input-group>.input-group-addon:last-child {
	border-radius: 0 3px 3px 0;
}
.input-group-addon.btn {
	padding: 9px 22px 3px 17px;
	border: 2px solid #DCDEE0;
}
.form-control[readonly] {
	background-color: white;
}
.form-control::-webkit-input-placeholder {
	color: #BDC3C7;
}
.form-control:-moz-placeholder { /* Firefox 18- */
	color: #BDC3C7;  
}
.form-control::-moz-placeholder {  /* Firefox 19+ */
	color: #BDC3C7;  
}
.form-control:-ms-input-placeholder {  
	color: #BDC3C7;  
}
.form-control.search-bar {
	color: white;
	outline: none;
	border: none;
	text-align: center;
	background: #C7C7CC;
	padding: 12px;
	font-size: 17px;
	font-family: -apple-system, Ionicons, bootstrap-icons, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-weight: 500;
}
.form-control::-webkit-input-placeholder {
	color: white;
	opacity: 0.7;
}
.form-control:-moz-placeholder { /* Firefox 18- */
	color: white;
	opacity: 0.7;
}
.form-control::-moz-placeholder {  /* Firefox 19+ */
	color: white;
	opacity: 0.7;
}
.form-control:-ms-input-placeholder {  
	color: white;
	opacity: 0.7;
}
.search-bar-container {
	position: relative;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 699px) {
	.search-bar-container {
		max-width: calc(100vw - 30px);
		margin-left: 15px;
		margin-right: 15px;
	}
}
.search-bar-focus-icon {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform:translate(100%, -50%);
	-moz-transform:translate(100%, -50%);
	-ms-transform:translate(100%, -50%);
	-o-transform:translate(100%, -50%);
	transform:translate(100%, -50%);
	font-size: 1.7em;
	color: white;
	display: none;
}
.search-bar-focus-icon.right {
	left: initial;
	width: 34px;
	border-radius: 50%;
	text-align: center;
	right: calc(34px + 7px);
	cursor: pointer;
}
.form-control.search-bar:hover::-webkit-input-placeholder {
	opacity: 1;
}
.form-control.search-bar:hover:-moz-placeholder { /* Firefox 18- */
	opacity: 1;
}
.form-control.search-bar:hover::-moz-placeholder {  /* Firefox 19+ */
	opacity: 1;
}
.form-control.search-bar:hover:-ms-input-placeholder {  
	opacity: 1;
}
.form-control.search-bar:focus::-webkit-input-placeholder {
	opacity: 0;
}
.form-control.search-bar:focus:-moz-placeholder { /* Firefox 18- */
	opacity: 0;
}
.form-control.search-bar:focus::-moz-placeholder {  /* Firefox 19+ */
	opacity: 0;
}
.form-control.search-bar:focus:-ms-input-placeholder {  
	opacity: 0;
}
.form-control.search-bar:focus + .search-bar-focus-icon {
	display: inherit;
}
.form-control.search-bar:focus + .search-bar-focus-icon + .search-bar-focus-icon.right {
	display: inherit;
}

/* Cursor styles */
.cursor-pointer {
	cursor: pointer;
}

/* Alert styles */
.alert {
	padding: 10px;
	border-radius: 6px;
	background: rgba(0, 205, 134, 0.1);
	border: none;
	color: #00CD86;
	margin-bottom: 10px; 
}

/* List group styles */
.list-group-item {
	border-width: 2px;
	border-color: #DCDEE0;
	margin-bottom: -2px;
}

/* Table styles */
.table-bordered {
	border: 1px solid #F0F1F5;
}
.table>thead>tr>th {
	border-bottom: 1px solid #F0F1F5;
	vertical-align: top;
}
.table-bordered>thead>tr>th {
	border: 1px solid #F0F1F5;
}
.table-bordered>tbody>tr>td {
	border: 1px solid #F0F1F5;
}
.table>tbody>tr>td {
	border-top: 1px solid #F0F1F5;
}
.table-bordered>tbody>tr>th {
	border: 1px solid #F0F1F5;
}
.table-hover>tbody>tr:hover {
	background-color: #F0F1F5;
}
.table>tbody>tr>td {
	vertical-align: middle;
}

/* Nav pills */
.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
	background-color: #4CD964;
	border-radius: 3px;
	border: 2px solid #4CD964;
}
.nav>li>a {
	padding: 10px 25px;
}
.nav-pills>li:not(.active)>a {
	border: 2px solid transparent;
}
.nav-pills>li:not(.active)>a:focus, .nav-pills>li:not(.active)>a:hover {
	background-color: transparent;
	border-radius: 3px;
	color: #4CD964;
	border: 2px solid #4CD964;
}

/* Header styles */
.header-container {
	max-width: 830px;
}
.header-border-bottom {
	border-bottom: 1px solid rgba(121,126,136,0.4);
	padding-top: 30px;
	padding-bottom: 15px;
}
.header-container a,
.header-container button {
	font-size: 15px;
}
.header-logo-small {
	height: 25px;
}
.header-logo-link>img {
	width: 25px; 
	opacity: 0.8;
	vertical-align: bottom;
}
.header-logo:hover>img {
	opacity: 1;
}
.header-link {
	margin-left: 30px;
	opacity: 0.8;
	font-weight: 500;
	padding: 0;
}
.header-link:hover {
	opacity: 1;
}
#mobile-menu-btn {
	display: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
#mobile-menu-btn>i {
	font-size: 2.4rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
	.header-link {
		margin-left: 15px;
	}
}
@media (max-width: 450px) {
	.header-link:not(#mobile-menu-btn) {
		display: none;
	}
	#mobile-menu-btn {
		display: inline;
		float: right;
		width: 24px;
		height: 24px;
		position: relative;
	}
}
/*@media (min-width: 321px) and (max-width: 343px) {
	.header-link {
		margin-left: 9px;
	}
}
@media (max-width: 320px) {
	.header-link {
		margin-left: 8px;
	}
}*/
.mobile-menu-option {
	display: block;
	color: white !important;
	cursor: pointer;
	opacity: 1;
	padding: 6px 10px;
	margin: 3px 2px;
	border-radius: 8px;
	font-size: 24px !important;
	font-weight: 500;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.mobile-menu-option.dark-mode-switch {
	font-weight: 400;
}
.mobile-menu-option:active {
	color: white !important;
	background: #007AFF;
	opacity: 1;
}
[data-tippy-root] {
	width: calc(100% - 10px);
}
.tippy-box {
	max-width: 450px !important;
	width: 100%;
	border-radius: 10px;
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}
.tippy-content {
	padding: 12px;
}
.tippy-content>hr {
	margin: 10px 8px;
	border-color: rgba(255,255,255,0.15);
}
body.dark-mode .tippy-box {
	background: #525252;
}
body.dark-mode .mobile-menu-option {
	color: rgb(10,132,255);
}

/* Footer styles */
.footer-link {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	margin: 10px 25px;
}

/* Hero styles */
.hero.hero-main {
	background: #885aff;
	background: -moz-linear-gradient(-45deg, #885aff 0%, #007aff 59%, #00c2d9 100%);
	background: -webkit-linear-gradient(-45deg, #885aff 0%,#007aff 59%,#00c2d9 100%);
	background: linear-gradient(135deg, #885aff 0%,#007aff 59%,#00c2d9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#885aff', endColorstr='#00c2d9',GradientType=1 );
}
.hero {
	padding-top: 60px;
	padding-bottom: 30px;
}

/* Narrow container */
.container.container-narrow {
	max-width: 700px;
}

/* Landing page styles */
.errorlist {
	list-style-type: none;
	padding-left: 0;
	margin-top: 10px;
	opacity: 0.8;
	color: white;
}

/* As seen on */
.as-seen-on-container img {
	height: 20px;
	margin: 15px;
}
@media (max-width: 767px) {
	.as-seen-on-container img {
		margin: 13px;
	}
}

/* Quotes */
.quotes-container {
	position: relative;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}
.quotes-container::before {
	content: "";
	height: 100%;
	width: 30px;
	position: absolute;
	left: -1px;
	top: 0;
	opacity: 1;
	z-index: 2;
	pointer-events: none;
	background: -moz-linear-gradient(left, rgba(231,233,238,1) 0%, rgba(231,233,238,1) 22%, rgba(231,233,238,0) 100%);
	background: -webkit-linear-gradient(left, rgba(231,233,238,1) 0%,rgba(231,233,238,1) 22%,rgba(231,233,238,0) 100%);
	background: linear-gradient(to right, rgba(231,233,238,1) 0%,rgba(231,233,238,1) 22%,rgba(231,233,238,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e9ee', endColorstr='#00e7e9ee',GradientType=1 );
}
.quotes-container::after {
	content: "";
	height: 100%;
	width: 30px;
	position: absolute;
	right: -1px;
	top: 0;
	opacity: 1;
	z-index: 2;
	pointer-events: none;
	background: -moz-linear-gradient(left, rgba(231,233,238,0) 0%, rgba(231,233,238,1) 78%, rgba(231,233,238,1) 100%);
	background: -webkit-linear-gradient(left, rgba(231,233,238,0) 0%,rgba(231,233,238,1) 78%,rgba(231,233,238,1) 100%);
	background: linear-gradient(to right, rgba(231,233,238,0) 0%,rgba(231,233,238,1) 78%,rgba(231,233,238,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00e7e9ee', endColorstr='#e7e9ee',GradientType=1 );
}
.quotes-container.light-bg::before {
	background: -moz-linear-gradient(left, rgba(240,241,245,1) 0%, rgba(240,241,245,1) 22%, rgba(240,241,245,0) 100%);
	background: -webkit-linear-gradient(left, rgba(240,241,245,1) 0%,rgba(240,241,245,1) 22%,rgba(240,241,245,0) 100%);
	background: linear-gradient(to right, rgba(240,241,245,1) 0%,rgba(240,241,245,1) 22%,rgba(240,241,245,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F0F1F5', endColorstr='#00F0F1F5',GradientType=1 );
}
.quotes-container.light-bg::after {
	background: -moz-linear-gradient(left, rgba(240,241,245,0) 0%, rgba(240,241,245,1) 78%, rgba(240,241,245,1) 100%);
	background: -webkit-linear-gradient(left, rgba(240,241,245,0) 0%,rgba(240,241,245,1) 78%,rgba(240,241,245,1) 100%);
	background: linear-gradient(to right, rgba(240,241,245,0) 0%,rgba(240,241,245,1) 78%,rgba(240,241,245,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00F0F1F5', endColorstr='#F0F1F5',GradientType=1 );
}
.quotes-container>button.quotes-nav-next, .quotes-container>button.quotes-nav-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	border-radius: 50%;
	background: transparent;
	opacity: 0.3;
	height: 50px;
	width: 50px;
}
.quotes-container>button.quotes-nav-next {
	right: 15px;
} 
.quotes-container>button.quotes-nav-prev {
	left: 15px;
}
.quotes-container>button.quotes-nav-next:hover, .quotes-container>button.quotes-nav-prev:hover {
	opacity: 1;
	background: #fff;
}
.quote-para {
	font-size: 2.2em;
	opacity: 0.6;
	width: 66%;
	max-width: 660px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	padding-left: 15px;
	padding-right: 15px;
}
.quote-text {
	position: relative;
}
.quote-text::before {
	content: "“";
	font-family: Georgia;
	opacity: 0.15;
	position: absolute;
	top: 15px;
	left: -12px;
	font-size: 100px;
	padding-right: 10px;
	pointer-events: none;
}
.quote-source {
	display: block;
	margin-top: 10px;
}
.quote-source>a {
	color: inherit !important;
	opacity: 0.4;
	transition: opacity .1s ease;
}
.quote-source>a:hover {
	color: #000;
	opacity: 1;
}
.owl-theme .owl-nav {
	position: absolute;
	width: 100%;
	margin: 0 !important;
	top: 50%;
	z-index: 0;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
}
.owl-stage-outer {
	z-index: 1;
}
@media (max-width: 767px) {
	.quote-para {
		min-width: 100%;
		font-size: 1.75em;
	}
	.quote-text::before {
		font-size: 90px;
	}
	.quotes-container::before {
		/*display: none;*/
		content: "\f3cf";
		font-family: Ionicons;
		background: none;
		height: initial;
		top: 50%;
		transform: translateY(-50%);
		opacity: 0.3;
		left: -5px;
	}
	.quotes-container::after {
		/*display: none;*/
		content: "\f3d1";
		font-family: Ionicons;
		background: none;
		height: initial;
		top: 50%;
		transform: translateY(-50%);
		opacity: 0.3;
		right: -5px;
	}
}

/* Feature Switcher */
.feature-switcher-container {
	margin-top: 30px;
	margin-bottom: 15px;
	display: inline-flex;
	margin-left: auto;
	margin-right: auto;
	border-bottom: 1px solid #d6d6d6;
}
.feature-switch+i.bi {
	padding-bottom: 5px;
}
.feature-switch {
	display: inline-block;
	padding-bottom: 5px;
	transform: translateY(1px);
	color: #666666;
}
.feature-switch.selected {
	border-bottom: 1px solid #666666;
	color: #333333;
}
.feature-switcher-start {
	margin-right: 15px;
}
.feature-switcher-outline,
.feature-switcher-refine {
	margin-left: 15px;
	margin-right: 15px;
}
.feature-switcher-finish {
	margin-left: 15px;
}
.feature-switcher-container > span:not(.selected):hover {
	color: #007AFF;
}
body.dark-mode .feature-switcher-container {
	border-color: #666666;
}
body.dark-mode .feature-switch.selected {
	border-color: #d6d6d6;
}
body.dark-mode .feature-switcher-container > span:not(.selected):hover {
	color: #6bf;
}
@media (max-width: 355px) {
	.feature-switcher-start {
		margin-right: 10px;
	}
	.feature-switcher-outline,
	.feature-switcher-refine {
		margin-left: 10px;
		margin-right: 10px;
	}
	.feature-switcher-finish {
		margin-left: 10px;
	}
}

/* Dark Mode Colors */
body.dark-mode {
	color: rgba(255,255,255,.9);
	background: #292929;
}
body.dark-mode a:not(.color-white):not(.color-gray-dark):not(.btn) {
	color: #6bf;
}
body.dark-mode .img-switcher-container > span:not(.selected):hover {
	color: #6bf;
}
body.dark-mode .dark-mode-link-color {
	color: #6bf;
}
body.dark-mode .dark-mode-btn-bg-color {
	background: linear-gradient(to bottom right, #00C2D9 0%, #1991EA 100%);
}

body.dark-mode .color-white:not(.ignore-dark-mode) { color: #000; }
body.dark-mode .color-black:not(.ignore-dark-mode) { color: #fff; }
body.dark-mode .color-gray-light:not(.ignore-dark-mode) { color: #292929; }
body.dark-mode .color-gray-normal:not(.ignore-dark-mode) { color: #222; }
body.dark-mode .color-gray-dark:not(.ignore-dark-mode) { color: rgba(255, 255, 255, 0.66); }
body.dark-mode .color-gray-ultra-dark:not(.ignore-dark-mode) { color: rgba(255, 255, 255, 0.75); }
body.dark-mode .color-gray-almost-black:not(.ignore-dark-mode) { color: rgba(255, 255, 255, 0.85);  }

body.dark-mode .dark-mode-color-white { color: #fff; }
body.dark-mode .dark-mode-color-black { color: #000; }
body.dark-mode .dark-mode-color-gray-light { color: #F0F1F5; }
body.dark-mode .dark-mode-color-gray-normal { color: #E7E9EE; }
body.dark-mode .dark-mode-color-gray-dark { color: rgba(255, 255, 255, 0.66); }
body.dark-mode .dark-mode-color-gray-ultra-dark { color: #222; }
body.dark-mode .dark-mode-color-gray-almost-black { color: #292929;  }

body.dark-mode .bg-color-white:not(.ignore-dark-mode) { background: #000; }
body.dark-mode .bg-color-black:not(.ignore-dark-mode) { background: #fff; }
body.dark-mode .bg-color-gray-light:not(.ignore-dark-mode) { background: #292929; }
body.dark-mode .bg-color-gray-normal:not(.ignore-dark-mode) { background: #222; }
body.dark-mode .bg-color-gray-dark:not(.ignore-dark-mode) { background: rgba(255, 255, 255, 0.66); }
body.dark-mode .bg-color-gray-ultra-dark:not(.ignore-dark-mode) { background: rgba(255, 255, 255, 0.75); }
body.dark-mode .bg-color-gray-almost-black:not(.ignore-dark-mode) { background: rgba(255, 255, 255, 0.85);  }

body.dark-mode .dark-mode-bg-color-white { background: #fff; }
body.dark-mode .dark-mode-bg-color-black { background: #000; }
body.dark-mode .dark-mode-bg-color-gray-light { background: #F0F1F5; }
body.dark-mode .dark-mode-bg-color-gray-normal { background: #E7E9EE; }
body.dark-mode .dark-mode-bg-color-gray-dark { background: rgba(255, 255, 255, 0.66); }
body.dark-mode .dark-mode-bg-color-gray-ultra-dark { background: #222; }
body.dark-mode .dark-mode-bg-color-gray-almost-black { background: #292929;  }

body.dark-mode .hover-color-white:hover:not(.ignore-dark-mode) { color: #000; }
body.dark-mode .hover-color-black:hover:not(.ignore-dark-mode) { color: #fff; }
body.dark-mode .hover-color-gray-light:hover:not(.ignore-dark-mode) { color: #292929; }
body.dark-mode .hover-color-gray-normal:hover:not(.ignore-dark-mode) { color: #222; }
body.dark-mode .hover-color-gray-dark:hover:not(.ignore-dark-mode) { color: rgba(255, 255, 255, 0.66); }
body.dark-mode .hover-color-gray-ultra-dark:hover:not(.ignore-dark-mode) { color: rgba(255, 255, 255, 0.75); }
body.dark-mode .hover-color-gray-almost-black:hover:not(.ignore-dark-mode) { color: rgba(255, 255, 255, 0.85);  }

body.dark-mode .hover-bg-color-white:hover:not(.ignore-dark-mode) { background: #000; }
body.dark-mode .hover-bg-color-black:hover:not(.ignore-dark-mode) { background: #fff; }
body.dark-mode .hover-bg-color-gray-light:hover:not(.ignore-dark-mode) { background: #292929; }
body.dark-mode .hover-bg-color-gray-normal:hover:not(.ignore-dark-mode) { background: #222; }
body.dark-mode .hover-bg-color-gray-dark:hover:not(.ignore-dark-mode) { background: rgba(255, 255, 255, 0.66); }
body.dark-mode .hover-bg-color-gray-ultra-dark:hover:not(.ignore-dark-mode) { background: rgba(255, 255, 255, 0.75); }
body.dark-mode .hover-bg-color-gray-almost-black:hover:not(.ignore-dark-mode) { background: rgba(255, 255, 255, 0.85);  }

/* Dark Mode Additional Classes */
body.dark-mode .blog-post:not(.bg-color-blue):not(.bg-color-teal):not(.bg-color-green):not(.bg-color-yellow):not(.bg-color-orange):not(.bg-color-red):not(.bg-color-pink):not(.bg-color-purple) {
	background: #3f3f3f;
}
body.dark-mode .feature-item>img {
	-webkit-filter: invert(1);
	filter: invert(1);
}
body.dark-mode .quote-para {
	color: #fff;
	opacity: 1;
}
body.dark-mode .quotes-container::before {
	background: -moz-linear-gradient(left, rgba(41,41,41,1) 0%, rgba(41,41,41,1) 22%, rgba(41,41,41,0) 100%);
	background: -webkit-linear-gradient(left, rgba(41,41,41,1) 0%,rgba(41,41,41,1) 22%,rgba(41,41,41,0) 100%);
	background: linear-gradient(to right, rgba(41,41,41,1) 0%,rgba(41,41,41,1) 22%,rgba(41,41,41,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292929', endColorstr='#00292929',GradientType=1 );
}
body.dark-mode .quotes-container::after {
	background: -moz-linear-gradient(left, rgba(41,41,41,0) 0%, rgba(41,41,41,1) 78%, rgba(41,41,41,1) 100%);
	background: -webkit-linear-gradient(left, rgba(41,41,41,0) 0%,rgba(41,41,41,1) 78%,rgba(41,41,41,1) 100%);
	background: linear-gradient(to right, rgba(41,41,41,0) 0%,rgba(41,41,41,1) 78%,rgba(41,41,41,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00292929', endColorstr='#292929',GradientType=1 );
}
body.dark-mode .table-hover>tbody>tr:hover {
	background: #3f3f3f;
}
body.dark-mode .table-bordered {
	border-color: #565656;
}
body.dark-mode .table>thead>tr>th {
	border-color: #565656;
}
body.dark-mode .table-bordered>thead>tr>th {
	border-color: #565656;
}
body.dark-mode .table-bordered>tbody>tr>td {
	border-color: #565656;
}
body.dark-mode .table>tbody>tr>td {
	border-color: #565656;
}
body.dark-mode .table-bordered>tbody>tr>th {
	border-color: #565656;
}
body.dark-mode .form-control.search-bar {
	background: #1F1F21;
}
body.dark-mode #gift-license-modal .modal-content {
	background: #000;
}
body.dark-mode .card {
	box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15);
}
body.dark-mode .btn {
	box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15);
}
body.dark-mode .btn:hover {
	box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.25);
}
body.dark-mode .btn:active {
	box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15);
}
body.dark-mode .btn-no-shadow {
	box-shadow: none;
}
body.dark-mode .store-option-container {
	background: #3f3f3f !important;
}
body.dark-mode .guide-btn-body {
	background: #3f3f3f !important;
}
body.dark-mode .press-content {
	background: #3f3f3f;
}



































