:root {
	--c-primary: 170, 0, 0;
	--c-secondary: 255, 0, 120;
	--c-tertiary: 0, 0, 255;
	--c-light: 245, 245, 245;
	--c-dark: 0, 0, 0;
	--c-text: 20, 23, 40;
	--c-background: 255, 255, 255;
	--swiper-navigation-color: rgb(var(--c-primary));
	--swiper-pagination-bullet-inactive-color: rgb(var(--c-light));
	--swiper-theme-color: rgb(var(--c-primary));

	--bs-body-color: rgb(var(--c-text));
	--bs-body-bg: rgb(var(--c-background));
	--bs-body-font-family: 'Open Sans' !important;

	--bs-primary: rgb(var(--c-primary));
	--bs-secondary: rgb(var(--c-secondary));
}
* {
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

[x-cloak] { display: none !important; }

body {
	background: rgb(var(--c-background));
/*	height: 100vh !important;*/
	overflow-x: hidden;
	overflow-y: auto;
}
[data-bs-theme=dark] {
	--c-text: 245, 245, 245;
	--c-background: 20, 20, 20;
}
body.modal-fullscreen {
	overflow: hidden;
}

html.sr .sr-elm , .sr-elm {
	visibility: hidden;
}

a {
	--bs-link-color-rgb: var(--c-primary);
	--bs-link-opacity: 1;
	transition: all 0.3s ease 0s;
}
a:hover {
	--bs-link-hover-color-rgb: var(--c-primary);
	--bs-link-opacity: .75;
}
/*********************** SCROLLBAR ***********************/

::-webkit-scrollbar {
	width: .5rem;
	height: .5rem;
	background-color: var(--c-background);
}
::-webkit-scrollbar-thumb {
	border-radius: .5rem;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
	background-color: rgb(var(--c-primary));
}
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}
::-webkit-scrollbar-corner {
	background-color: var(--c-background);
}

/*********************** SWIPER ***********************/
.swiper {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
/*	background-color: rgb(var(--c-dark), .5);*/
	background-image: var(--bg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	color: rgb(var(--c-primary));
	box-sizing: border-box;
}
.swiper-slide>picture.float {
	position: absolute;
	z-index: -1;
}
@media (max-width: 768px) {
	.swiper-slide {
		background-size: contain;
	}
	.swiper-slide>.overlay>.caption {
		text-align: center;
		padding: 0 3rem !important;
	}
	.swiper-slide>.overlay>.caption>p {
		width: 100%;
	}
	.swiper-pagination {
		top: unset !important;
		bottom: 1.5rem !important;
	}
}

/***********************************************************************/

.avatar {
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	border-radius: .75rem;
	height: 48px;
	width: 48px;
	transition: all .2s ease-in-out;
}
.avatar img {
	width: 100%
}
.avatar+.avatar-content {
	display: inline-block;
	margin-left: .75rem
}
.avatar.avatar-raised {
	margin-top: -24px
}
.active .avatar.avatar-scale-up, .avatar.avatar-scale-up:hover {
	transform: scale(1.2)
}
.avatar-xxl {
	width: 110px!important;
	height: 110px!important
}
.avatar-xxl.avatar-raised {
	margin-top: -55px
}
.avatar-xl {
	width: 74px!important;
	height: 74px!important
}
.avatar-xl.avatar-raised {
	margin-top: -37px
}
.avatar-lg {
	width: 58px!important;
	height: 58px!important;
	font-size: .875rem
}
.avatar-lg.avatar-raised {
	margin-top: -29px
}
.avatar-sm {
	width: 36px!important;
	height: 36px!important;
	font-size: .875rem
}
.avatar-sm.avatar-raised {
	margin-top: -18px
}
.avatar-xs {
	width: 24px!important;
	height: 24px!important;
	font-size: .75rem
}
.avatar-xs.avatar-raised {
	margin-top: -12px
}
.avatar-group .avatar {
	position: relative;
	z-index: 2;
	border: 2px solid #fff
}
.avatar-group .avatar:hover {
	z-index: 3
}
.avatar-group .avatar+.avatar {
	margin-left: -1rem
}
.avatar.rounded-circle img, .rounded-circle {
	border-radius: 50%!important
}

.rounded {
/*	display: inline-flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	border-radius: 50%!important;
	background: #3a416f;
	width: 3rem;
	height: 3rem;
	padding: 1rem*/
}


.stepper {
	display: flex;
	justify-content: center;
	width: 100%;
}
.step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.step>p {
	text-align: center;
	font-size: .75rem !important;
	text-transform: uppercase;
	margin: 0;
}
.circle {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}


p {
	color: rgb(var(--c-text));
}






.author {
	display: flex
}
.author .name>span {
	line-height: 1.571;
	font-weight: 600;
	font-size: .875rem;
	color: #3a416f
}
.author .stats {
	font-size: .875rem;
	font-weight: 400
}

.border-radius-xs {
	border-radius: .125rem
}
.border-radius-sm {
	border-radius: .25rem
}
.border-radius-md {
	border-radius: .5rem
}
.border-radius-lg {
	border-radius: .75rem
}
.border-radius-xl {
	border-radius: 1rem
}
.border-radius-2xl {
	border-radius: 1.5rem
}
.border-radius-section {
	border-radius: 10rem
}

.color-primary {
	color: rgb(var(--c-primary)) !important;
}


.h1, .h2, .h3, h1, h2, h3 {
	--bs-heading-color: rgb(var(--c-text));
	font-weight: 700
}
.h4, .h5, .h6, h4, h5, h6 {
	--bs-heading-color: rgb(var(--c-text));
	font-weight: 600
}
.h1, .h2, .h3, .h4, h1, h2, h3, h4 {
	letter-spacing: -.05rem
}
.text-gradient {
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	z-index: 1
}
/*.text-gradient::after {
	content: '';
	text-shadow: 3px 9px 4px black;
	z-index: 0;
}*/
.text-gradient.text-primary {
	background-image: linear-gradient(310deg, rgb(var(--c-secondary)), rgb(var(--c-primary)));
}
.text-gradient.text-info {
	background-image: linear-gradient(310deg, #2152ff, #21d4fd)
}
.text-gradient.text-success {
	background-image: linear-gradient(310deg, #17ad37, #c1e823)
}
.text-gradient.text-warning {
	background-image: linear-gradient(310deg, #f53939, #fbcf33)
}
.text-gradient.text-danger {
	background-image: linear-gradient(310deg, #d60808, #ff6690)
}
.text-gradient.text-dark {
	background-image: linear-gradient(310deg, #141727, #3a416f)
}

.bg-gradient-primary, .bg-gradient-secondary, .bg-gradient-success, .bg-gradient-info, .bg-gradient-warning, .bg-gradient-danger, .bg-gradient-dark {
	--bs-btn-color: rgb(var(--c-light),.85) !important;
	--bs-btn-hover-color: rgb(var(--c-light)) !important;
/*  --bs-btn-hover-bg: rgb(var(--c-light)) !important;*/
/*  --bs-btn-hover-border-color: rgb(var(--c-light)) !important;*/
}
/*.btn:hover {
	color: var(--bs-btn-hover-color);
	background-color: var(--bs-btn-hover-bg);
	border-color: var(--bs-btn-hover-border-color);
}*/


.bg-gradient-primary {
	background-image: linear-gradient(310deg, rgb(var(--c-secondary)), rgb(var(--c-primary)));
}
.bg-gradient-secondary {
	background-image: linear-gradient(310deg, rgb(var(--c-tertiary)), rgb(var(--c-secondary)));
}
.bg-gradient-success {
	background-image: linear-gradient(310deg, #17ad37, #98ec2d)
}
.bg-gradient-info {
	background-image: linear-gradient(310deg, #2152ff, #21d4fd)
}
.bg-gradient-warning {
	background-image: linear-gradient(310deg, #f53939, #fbcf33)
}
.bg-gradient-danger {
	background-image: linear-gradient(310deg, #ea0606, #ff667c)
}
.bg-gradient-light {
	background-image: linear-gradient(310deg, #ced4da, #ebeff4)
}
.bg-gradient-dark {
	background-image: linear-gradient(310deg, #141727, #3a416f)
}
.bg-none {
	background: unset !important;
}





.accordion .accordion-body {
	color: #CCC;
}
.btn {
	--bs-btn-color: rgb(var(--c-light));
	--bs-border-width: 1px;
	--bs-btn-padding-x: 1rem;
	--bs-btn-padding-y: 0.75rem;
	--bs-btn-font-size: 1rem;
	--bs-btn-font-weight: 600;

	--bs-btn-border-width: 1px;
	--bs-btn-disabled-border-color: rgb(var(--c-light), 0);
	--bs-btn-disabled-color: rgb(var(--c-light), .75);
	--bs-border-width: 0;
	--bs-btn-border-width: 0;

	--bs-btn-active-color: rgb(var(--c-light), .75);
	--bs-btn-active-bg: rgb(var(--c-primary), 1);
	color: var(--bs-btn-color) !important;
/*  letter-spacing: .025rem;*/
/*	text-transform: capitalize;*/
	background-size: 100%;
	background-origin: border-box;
/*  --bs-btn-border-width: 1px !important;*/
	transition: all 0.3s ease 0s;
}
.btn:hover {
	background-size: 150%;
}

.btn.btn-primary {
	--bs-btn-color: rgb(var(--c-light));
	--bs-btn-hover-color: rgb(var(--c-light), .85);
	--bs-btn-bg: rgb(var(--c-primary));
	--bs-btn-hover-bg: rgb(var(--c-primary),.85);
	--bs-btn-disabled-bg: rgb(var(--c-primary));
/*	--bg-color: var(--c-primary);*/
	--bs-btn-border-color: rgb(var(--color-p), .5);
	--bs-btn-hover-border-color: rgb(var(--color-p), .15);
}
.btn.btn-outline-primary {
	--bs-border-width: 1px;
	--bs-btn-border-width: 1px;
	--bs-btn-color: rgb(var(--c-primary));
	--bs-btn-border-color: rgb(var(--c-primary));
	--bs-btn-hover-color: rgb(var(--c-light)) !important;
	--bs-btn-hover-border-color: rgb(var(--c-primary), .5);
	--bs-btn-hover-bg: rgb(var(--c-primary), 1);
	--bs-btn-disabled-color: rgb(var(--c-primary));
	--bs-btn-disabled-border-color: rgb(var(--c-primary));
}
.btn.btn-outline-primary:hover {
	--bs-border-width: 1px;
	--bs-btn-border-width: 1px;
}


.btn.vertical {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 0.25rem;
}
.btn.vertical>.tki {
	font-size: 1rem;
}
.btn.vertical>.title {
	font-size: .6rem;
	line-height: 1;
}
.btn.vertical>img {
	width: 1rem;
	height: 1rem;
}

.btn-glow {
	width: 100%;
	box-shadow: 0 -0.25rem 0.5rem 0 rgba(var(--c-primary), 1);
}
.btn-glow>* {
	width: 100%;
}
.btn-glass {
	background: rgb(var(--c-dark), .25);
	backdrop-filter: blur(1rem);
}

.card {
	--bs-card-border-width: 0;
	box-shadow: 0 1.5rem 2rem -0.5rem rgb(var(--c-dark), .35);
	overflow: hidden;
}
.card.card-blog .card-image .img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
}
.card>.card-header {
	padding: 1.5rem 2rem 0 2rem;
	background-color: unset !important;
}
.card>.card-body {
	padding: 0 2rem;
}
.card>.card-footer {
	padding: 0 2rem 1.5rem 2rem;
	background-color: unset !important;
}

.dropdown-item.active, .dropdown-item:active {
	background: rgb(var(--c-primary));
}

.form-floating>small {
	display: none;
}
.form-floating>small.is-valid {
	display: none;
}
.form-floating>small.is-invalid {
	display: block;
	position: absolute;
	top: calc(100% + .5rem);
	left: 15%;
	width: 70%;
	padding: .5rem 1rem;
	font-size: .75rem;
	background: rgb(var(--c-background));
	border-radius: .5rem;
	border: 1px solid #ea868f;
	box-shadow: 0 1.5rem 2rem -0.5rem rgb(var(--c-dark), .35) !important;
	z-index: 10;
}
@media (max-width: 768px) {
	.form-floating>small.is-invalid {
/*		width: 100%;*/
/*		top: -100%;*/
/*		left: 0;*/
	}
}

.form-group {
	margin-bottom: 1rem
}
.form-label, label {
/*	font-size: .75rem;*/
	font-weight: 600;
	margin-bottom: .5rem;
	opacity: .75;
	margin-left: .25rem
}

.form-label {
	margin-bottom: .5rem;
	font-size: .75rem
}
.col-form-label, .form-label {
	font-weight: 700;
	color: #344767
}
.col-form-label {
	padding-top: calc(.5rem + 1px);
	padding-bottom: calc(.5rem + 1px);
	margin-bottom: 0;
	font-size: inherit;
	line-height: 1.4rem
}
.col-form-label-lg {
	padding-top: calc(.75rem + 1px);
	padding-bottom: calc(.75rem + 1px);
	font-size: .875rem
}
.col-form-label-sm {
	padding-top: calc(.25rem + 1px);
	padding-bottom: calc(.25rem + 1px);
	font-size: .75rem
}
.col-form-label, .form-label {
	font-weight: 700;
	color: rgb(var(--c-text), .5);
}

.fs-1 {
	font-size: 2rem !important;
}
.fs-2 {
	font-size: 1.75rem !important;
}
.fs-3 {
	font-size: 1.5rem !important;
}
.fs-4 {
	font-size: 1.25rem !important;
}
.fs-5 {
	font-size: 1.125rem !important;
}
.fs-6 {
	font-size: 1rem !important;
}
.fs-7 {
	font-size: .875rem !important;
}
.fs-8 {
	font-size: .75rem !important;
}
.fs-9 {
	font-size: .625rem !important;
}

.form-control-color {
	width: 100%;
}
.form-text {
	color: #6c757d
}

.form-help {
	font-size: .7rem;
	margin: .25rem .5rem 0;
	color: #6c757d;
	line-height: .9rem;
}
.form-control {
	--bs-body-color: rgb(var(--c-text),.8);
	--bs-body-bg: rgb(var(--c-background),.5);
	--bs-border-color: rgb(var(--c-primary), .3);
}
@media (prefers-reduced-motion:reduce) {
	.form-control {
		transition: none
	}
}
.form-control[type=file] {
	overflow: hidden
}
.form-control[type=file]:not(:disabled):not([readonly]) {
	cursor: pointer
}
.form-control:focus, .form-select:focus {
	--bs-body-color: rgb(var(--c-text),.8);
/*	color: #495057;*/
/*	background-color: #fff;*/
	border-color: rgb(var(--c-primary), .75);
	outline: 0;
	box-shadow: 0 0 0 3px rgb(var(--c-primary), .35);
}
.form-select {
	--bs-body-color: rgb(var(--c-text), .65);
	--bs-body-bg: rgb(var(--c-background), .5);
	--bs-border-color: rgb(var(--c-primary), .3);
}


.form-switch .form-check-input {
	background-color: rgb(var(--c-primary), .2);
	border: unset;
	 --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); 
	transition: all .15s ease-in-out;
}
.form-switch .form-check-input:checked {
	background-color: rgb(var(--c-primary), .65);
	background-position: right center;
}
.form-switch .form-check-input:focus {
	 --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); 
	border-color: unset;
	box-shadow: unset;
	border-width: 0;
}

.form-check-input:checked {
	background-color: rgb(var(--c-primary));
	border-color: rgb(var(--c-primary));
}
.form-check-input:focus {
	box-shadow: 0 0 0 .25rem rgb(var(--c-primary), .25);
}


.icon-move-right i {
	transition: all .2s cubic-bezier(.34, 1.61, .7, 1.3)
}
.icon-move-right:focus i, .icon-move-right:hover i {
	transform: translateX(5px)
}
.icon-move-left i {
	transition: all .2s cubic-bezier(.34, 1.61, .7, 1.3)
}
.icon-move-left:focus i, .icon-move-left:hover i {
	transform: translateX(-5px)
}

.icon-shape {
	width: 48px;
	height: 48px;
	background-position: 50%;
	border-radius: .75rem
}
.icon-shape i {
	color: #fff;
	opacity: .8;
	top: 11px;
	position: relative
}
.icon-shape .ni {
	top: 14px
}
.icon-xxs {
	width: 20px;
	height: 20px
}
.icon-xxs i {
	top: -4px;
	font-size: .5rem
}
.icon-xs {
	width: 24px;
	height: 24px
}
.icon-xs i {
	top: -4px;
	font-size: .5rem
}
.icon-sm {
	width: 32px;
	height: 32px
}
.icon-sm i {
	top: 2px;
	font-size: .65rem
}
.icon-md {
	width: 48px;
	height: 48px
}
.icon-md i {
	top: 22%;
	font-size: .875rem
}
.icon-md.icon-striped {
	background-position-x: 85px;
	background-position-y: 85px
}
.icon-md.icon-striped i {
	top: 11%;
	margin-left: -10px;
	font-size: .875rem
}
.icon-lg {
	width: 64px;
	height: 64px
}
.icon-lg i {
	top: 31%;
	font-size: 1.25rem
}
.icon-lg.icon-striped {
	background-position-x: 111px;
	background-position-y: 111px
}
.icon-lg.icon-striped i {
	top: 21%;
	margin-left: -15px
}
.icon-xl {
	width: 100px;
	height: 100px;
	border-radius: .75rem
}
.icon-xl i {
	top: 37%;
	font-size: 1.6rem
}
.icon-xl.icon-striped {
	background-position-x: 80px;
	background-position-y: 80px
}
.icon-xl.icon-striped i {
	top: 30%;
	margin-left: -15px
}



.toast {
	--bs-toast-color: rgb(var(--c-text));
	--bs-toast-bg: rgb(var(--c-background));
	--bs-border-width: 0;
	--bs-toast-border-radius: .5rem;
	--bs-toast-header-bg: unset;
	--bs-toast-box-shadow: 0 0.3125rem 0.625rem 0 rgba(0, 0, 0, .5);
	--bs-toast-padding-x: .5rem;
	--bs-toast-padding-y: .5rem;
/*	border-top: 3px solid;*/
/*	border-top-color: var(--n-color);*/
/*	--n-color: rgb(var(--c-primary));*/
	margin: .5rem;
	overflow: hidden;
	height: 0;
	opacity: 0;
	transition: all 0.3s ease;
}
.toast.show {
	height: auto;
	opacity: 1;
}
.toast.animated {
	-webkit-animation-duration: .25s;
	animation-duration: .25s;
}

.toast .toast-header {
	gap: .5rem;
}
.toast .icon {
	color: var(--n-color);
	font-size: 1.25rem;
	line-height: 0;
}
.toast.danger {
	--n-color: #CC0000;
}
.toast.warning {
	--n-color: #FF8800;
}
.toast.success {
	--n-color: #007E33;
}
.toast.info {
	--n-color: #0099CC;
}



.vh-50 {
	height: 50vh !important;
}
.vh-60 {
	height: 60vh !important;
}
.vh-70 {
	height: 70vh !important;
}
.vh-80 {
	height: 80vh !important;
}
.vh-90 {
	height: 90vh !important;
}



.opacity-0 {
	opacity: 0!important
}
.opacity-1 {
	opacity: .1!important
}
.opacity-2 {
	opacity: .2!important
}
.opacity-3 {
	opacity: .3!important
}
.opacity-4 {
	opacity: .4!important
}
.opacity-5 {
	opacity: .5!important
}
.opacity-6 {
	opacity: .6!important
}
.opacity-7 {
	opacity: .7!important
}
.opacity-8 {
	opacity: .8!important
}
.opacity-9 {
	opacity: .9!important
}
.opacity-10 {
	opacity: 1!important
}

hr {
	height: 1px;
	color: rgb(var(--c-primary));
}
hr.vertical {
	position: absolute;
	background-color: transparent;
	height: 100%;
	right: 0;
	top: 0;
	width: 1px
}
hr.vertical.light {
	background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #fff, hsla(0, 0%, 100%, 0))
}
hr.vertical.dark {
	background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, .4), transparent)
}
hr.vertical.gray-light {
	background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, .1), transparent)
}
hr.horizontal {
	background-color: transparent
}
hr.horizontal.light {
	background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff, hsla(0, 0%, 100%, 0))
}
hr.horizontal.dark {
	background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, .4), transparent)
}
hr.horizontal.gray-light {
	background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, .1), transparent)
}

.shadow {
/*	box-shadow: 0 .3125rem .625rem 0 rgba(0, 0, 0, .12)!important;*/
	box-shadow: 0 1.5rem 2rem -0.5rem rgb(var(--c-dark), .35) !important;
}
.shadow-xs {
	box-shadow: 0 2px 9px -5px rgba(0, 0, 0, .15)!important
}
.shadow-sm {
	box-shadow: 0 .25rem .375rem -.0625rem hsla(0, 0%, 8%, .12), 0 .125rem .25rem -.0625rem hsla(0, 0%, 8%, .07)!important
}
.shadow-md {
	box-shadow: 0 .3125rem .625rem 0 rgba(0, 0, 0, .12)!important;
	box-shadow: 0 .5rem 1rem -0.5rem rgb(var(--c-dark), .35) !important;
}
.shadow-lg {
	box-shadow: 0 8px 26px -4px hsla(0, 0%, 8%, .15), 0 8px 9px -5px hsla(0, 0%, 8%, .06)!important
}
.shadow-xl {
	box-shadow: 0 23px 45px -11px hsla(0, 0%, 8%, .25)!important
}
.shadow-none {
	box-shadow: none!important
}
.switch {
	display: block;
	--width-of-switch: 2.2em;
	--height-of-switch: 1.4em;
	--size-of-icon: 1.2em;
	--slider-offset: 0.3em;
	position: relative;
	width: var(--width-of-switch);
	height: var(--height-of-switch);
	margin: 0 auto;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.offcanvas.sm {
	--bs-offcanvas-width: 20rem;
}

/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #4DA6FF;
	border: 1px solid rgb(var(--c-light), .5);
	transition: .4s;
	border-radius: 30px;
}
.slider:before {
	position: absolute;
	content: "";
	height: var(--size-of-icon, 1.4em);
	width: var(--size-of-icon, 1.4em);
	border-radius: 20px;
	left: var(--slider-offset, 0.3em);
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, #fff, #ff8c00 70%);
	transition: .4s;
}
input:checked+.slider {
	background-color: #303136;
}
input:checked+.slider:before {
	left: calc(100% - (var(--size-of-icon, 1.4em) + var(--slider-offset, 0.3em)));
	background: #303136;
	/* change the value of second inset in box-shadow to change the angle and direction of the moon  */
	box-shadow: inset -3px -2px 5px -2px #8983f7, inset -10px -4px 0 0 #a3dafb;
}

.accordion {
	--bs-accordion-bg: transparent;
	--bs-accordion-border-color: transparent;
	--bs-accordion-active-bg: transparent;
	--bs-accordion-btn-icon: unset;
	--bs-accordion-btn-active-icon: unset;
	--bs-accordion-body-padding-x: 1.5rem;
	--bs-accordion-body-padding-y: 1rem;
	--bs-accordion-btn-focus-box-shadow: unset;
}
.accordion .accordion-button {
	font-size: 1.5rem !important;
	font-weight: 600;
	border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.accordion .accordion-body {
	color: var(--bs-body-color) !important;
}
.accordion-button:not(.collapsed) {
	color: var(--bs-body-color) !important;
}
.accordion div button[aria-expanded=true] .collapse-close {
	display: none;
}
.accordion div button[aria-expanded=true] .collapse-open {
	display: block;
}
.accordion div button[aria-expanded=false] .collapse-open {
	display: none;
}
.accordion div button[aria-expanded=false] .collapse-close {
	display: block;
}

.text-lg {
	font-size: 1.125rem!important;
}
.text-sm {
	font-size: .875rem!important;
	line-height: 1.5;
}
.text-xs {
	font-size: .75rem!important;
	line-height: 1.25;
}
.text-xxs {
	font-size: .65rem!important;
}

.text-primary {
	color: rgb(var(--c-primary)) !important;
}
.text-secondary {
	color: rgb(var(--c-secondary)) !important;
}
.text-tertiary {
	color: rgb(var(--c-tertiary)) !important;
}
.text-light {
	--bs-light-rgb: var(--c-light);
}
.text-dark {
	--bs-light-rgb: var(--c-dark);
}

.z-index-0 {
	z-index: 0!important
}
.z-index-1 {
	z-index: 1!important
}
.z-index-2 {
	z-index: 2!important
}
.z-index-3 {
	z-index: 3!important
}

.otp-fake-input {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
}

.otp-fake-input .otp-content {
	font-size: 1.5rem;
	font-weight: 600;
}

.otp-fake-input.otpdesigner__focus__ {
	border: 2px solid rgb(var(--c-primary), 1) !important;
}

.realInput{
	position: absolute!important;
	z-index: -2000!important;
	opacity: 0;
}

/******************************************************************************/

.mask {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
}
.mask.circle {
	border-radius: 50%;
}


.profile-pic {
	color: transparent;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: all 0.3s ease;
}
.profile-pic input {
	display: none;
}
.profile-pic img {
	position: absolute;
	object-fit: cover;
	width: 10rem;
	height: 10rem;
	box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
	border-radius: 100px;
	z-index: 0;
}
.profile-pic .-label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10rem;
	height: 10rem;
	cursor: pointer;
	margin: 0;
}
.profile-pic:hover .-label {
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 10000;
	color: #fafafa;
	transition: background-color 0.2s ease-in-out;
	border-radius: 100px;
/*  margin-bottom: 0;*/
}
.profile-pic span {
	display: inline-flex;
	padding: 0.2em;
	height: 2em;
}

.link-sm {
	font-size: .75rem;
	font-weight: 600;
	opacity: .75;
}
/*****************************************************************************/
.password-toggle {
	position: relative;
}
.password-toggle input[type="password"] {
	padding-right: 3rem;
}
.password-toggle .toggle-password {
	position: absolute;
	top: 1.8rem;
	right: 2.5rem;
	padding: .5rem;
	cursor: pointer;
	opacity: .5;
	transform: translateY(-50%);
	transition: all 0.3s ease 0s;
	background: rgb(var(--c-text), .1);
	border-radius: 50%;
}
/*.password-toggle input[type="password"].is-invalid, .password-toggle input[type="password"].is-valid {
	background-image: unset;
}*/
.password-toggle .toggle-password.active {
	background: rgb(var(--c-primary), .5);
	opacity: 1;
}


.flip-clock-divider {
	text-transform: uppercase;
	font-size: .8rem;
	text-align: center;
}
.flip-clock-divider>.flip-clock-label {
	color: rgb(var(--c-text));
	width: 130px;
	left: 0;
	margin: 0 5px;
	opacity: .5;
}
.flip-clock-divider.days>.flip-clock-label {
}
.flip-clock-divider.hours>.flip-clock-label {
	left: 20px;
}
.flip-clock-divider.minutes>.flip-clock-label {
	left: 20px;
}
.flip-clock-divider.seconds>.flip-clock-label {
	left: 20px;
}
.flip-clock-wrapper ul {
/*	width: 3.5rem;
	height: 6rem;
	margin: .25rem;*/
}
.flip-clock-wrapper ul li a {
	pointer-events: none;
}
.flip-clock-dot {
	background: rgb(var(--c-primary));
}
.flip-clock-wrapper ul li a div div.inn {
	color: rgb(var(--c-primary));
}
@media (max-width: 768px) {
	.flip-clock-divider .flip-clock-label {
		font-size: 1rem;
/*		width: 80px;*/
/*		margin: 0 5px;*/
	}
}

.count-down {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 3rem 0 0;
}
.count-launch {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 0;
	height: 6rem;
}
@media (max-width: 768px) {
	.count-launch {
		zoom: .5;
	}
}

.modal {
	--bs-modal-border-color: rgb(var(--c-primary), .25);
	--bs-modal-header-padding: 1rem;
	--bs-modal-footer-padding: 1rem;
	--bs-modal-header-border-color: unset;
	--bs-modal-footer-border-color: unset;
	--bs-modal-padding: 1rem;
}
.modal-header>.modal-title {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.modal-header>.btn-close {
	text-indent: -9999px;
}



.card-tinny {
	position: relative;
	display: flex;
	flex-direction: column;
/*	max-width: 10rem;*/
	height: min-content;
/*	margin: 0 .5rem;*/
	padding: .5rem;
	background: rgb(var(--c-dark), .1);
	border-radius: .5rem;
	box-shadow: 0 .5rem .5rem 0 rgb(var(--c-dark), .35);
	line-height: 1.25;
}
.card-tinny>.icon {
	position: absolute;
	left: 0;
	top: 0;
/*	background: red;*/
	background-image: linear-gradient(135deg, rgb(var(--cb), 1), rgb(var(--cb), .5));
	padding: .5rem;
	width: 3rem;
	height: 3rem;
	border-radius: .5rem;
}
.card-tinny>.icon>.tki {
	font-size: 2rem;
	vertical-align: top;
}
.card-tinny>.title {
	margin: 0 0 0 3rem;
	font-size: .65rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.card-tinny>.content {
	margin: 0 0 0 3rem;
}
.card-tinny>.content>.counter {
	font-size: 1.75rem;
	font-weight: 700;
}
.card-tinny>.progress {
	--bs-progress-height: .25rem;
	--bs-progress-bar-bg: rgb(var(--cb));
	--bs-progress-bg: rgb(var(--c-light), .1);
}

@media (max-width: 1240px) {
/*	.card-tinny {
		margin: .5rem 0 0;
		text-align: center;
	}
	.card-tinny>.icon {
		position: relative;
		width: 2.5rem;
		height: 2.5rem;
		margin: -1rem auto .5rem;
	}
	.card-tinny>.icon>.tki {
		font-size: 1.5rem;
		vertical-align: top;
	}
	.card-tinny>.title {
		margin: 0;
		font-size: .5rem;
		letter-spacing: 0;
	}
	.card-tinny>.content {
		margin: .25rem 0;
	}
	.card-tinny>.content>.counter {
		font-size: 1.1rem;
		font-weight: 600;
	}
	.card-tinny>.content>.total {
		font-size: .6rem;
	}*/
}








.tki.mazzima {
	color: rgb(215, 0, 0, 1.0);
}
.tki.facebook {
	color: rgb(66, 103, 178, 1.0);
}
.tki.tiktok {
	color: rgb(0, 0, 0, 1.0);
}
[data-bs-theme=dark] .tki.tiktok {
	color: rgb(255, 255, 255, 1.0);
}
.tki.whatsapp {
	color: rgb(37, 211, 102, 1.0);
}
.tki.twitter {
	color: rgb(29, 161, 242, 1.0);
}
.tki.instagram {
	color: rgb(66, 103, 178, 1.0);
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
	-webkit-background-clip: text;
	/* Also define standard property for compatibility */
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.powered {
	margin: 0 0 0.5rem;
	color: rgb(var(--c-text), .6) !important;
	text-decoration: none;
	width: fit-content;
}
.powered:hover {
	color: rgb(var(--c-light), 1) !important;
}
.powered>.tridkay {
	font-size: .7rem;
	padding: .2rem;
}
.powered>.mazzima {
	font-size: 1rem;
	padding: .25rem;
}
.powered>.title {
	padding: 0.2rem;
	font-size: .75rem;
	font-weight: 600;
}
.page-header {
	margin: 0;
}
.page-header h1 {
	margin: 0;
}


.social {
	display: flex;
	text-align: center;
	justify-content: center;
	gap: 2rem;
	margin: 1rem;
}
.social a {
	color: rgb(var(--c-text), .6);
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}
.social a:hover {
	color: rgb(var(--c-text), 1);
}
.social a:hover>i.tki {
	opacity: .75;
	transition: all 0.3s ease 0s;
}
.social a:hover>i.tki {
	opacity: 1;
}
.social a>span {
	display: none;
}
.social a>i.tki{
	font-size: 1.2rem;
}


/*********************** THEME MODE ***********************/
/*.switch.theme-mode {
	position: fixed;
	top: 5rem;
	right: 5rem;
	z-index: 100;
}
@media (max-width: 768px) {
	.switch.theme-mode {
		top: 1rem;
		right: 1.5rem;
	}
}*/

/*********************** THEME MODE ***********************/
/*html:not([data-bs-theme=dark]) .logo-auth {
	content: url("/static/logo/brand-w-v-b.png");
}*/

[data-bs-theme=dark] .accordion-button::after {
	--bs-accordion-btn-icon: unset;
	--bs-accordion-btn-active-icon: unset;
}

/* Cuando data-bs-theme es "dark" */
html[data-bs-theme="dark"] {
		/* Cambiar el color del tema a uno oscuro */
		/* Por ejemplo, cambiar el color de fondo */
		meta[name="theme-color"] {
				content: #000; /* Cambia el color de fondo a negro */
		}
}

/* Cuando data-bs-theme no es "dark" */
html:not([data-bs-theme="dark"]) {
		/* Cambiar el color del tema a uno claro */
		/* Por ejemplo, cambiar el color de fondo */
		meta[name="theme-color"] {
				content: #fff; /* Cambia el color de fondo a blanco */
		}
}

.brand {
	width: auto;
	max-width: 15rem;
	margin: auto;
}
.brand.brand-h {
	aspect-ratio: 3 / 1;
}
.brand.brand-v {
	aspect-ratio: 1 / 1;
}

[data-bs-theme=dark] {
	--bs-link-color: rgb(var(--c-primary), .9);
	--bs-link-hover-color: rgb(var(--c-primary), 1);
}
[data-bs-theme=dark] .brand-h-p {
	content: url("/static/logo/brand-h-s.png");
}
[data-bs-theme=dark] .brand-h-s {
	content: url("/static/logo/brand-h-p.png");
}
[data-bs-theme=dark] .brand-h-w {
	content: url("/static/logo/brand-h-b.png");
}
[data-bs-theme=dark] .brand-h-b {
	content: url("/static/logo/brand-h-w.png");
}

[data-bs-theme=dark] .brand-v-p {
	content: url("/static/logo/brand-v-s.png");
}
[data-bs-theme=dark] .brand-v-s {
	content: url("/static/logo/brand-v-s.png");
}
[data-bs-theme=dark] .brand-v-w {
	content: url("/static/logo/brand-v-b.png");
}
[data-bs-theme=dark] .brand-v-b {
	content: url("/static/logo/brand-v-w.png");
}


#otp_captcha, #otp_numbers {
	height: 4rem;
}



.countdown {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.countdown>.countdown-segment {
	text-align: center;
	font-size: 1.5rem;
}
.countdown>.countdown-segment>span {
	display: block;
	font-weight: bold;
	font-size: 2rem;
}
.countdown>.countdown-segment>small {
	display: block;
	font-size: 0.75rem;
	color: #666;
}

fieldset {
	border: 1px solid rgb(var(--c-primary), .5);
	border-radius: .5rem;
	padding: .4rem 1rem;
}
fieldset>legend {
	color: rgba(var(--bs-body-color-rgb), .75);
	font-size: .9rem;
	font-weight: 600;
	width: auto;
	padding: 0 .5rem;
	margin: 0;
}

#qrcode-container {
	width: 18rem;
	height: 18rem;
	line-height: 0;
	border-radius: 1rem;
	overflow: hidden;
}

.qr-scanner {
	max-width: 20rem;
	margin: 0 auto;
	text-align: center;
}
.qr-scanner>.activate{
	width: 100%;
	aspect-ratio: 1 / 1;
}
.qr-scanner>.scanner-container>video{
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border: 1px solid red;
}
.qr-scanner>.scanner-container {
	position: relative;
}

.qr-scanner>.scanner-container>.qr-overlay {
	position: absolute;
	border: 2px solid green;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
	height: 70%;
	border-radius: 10px;
	box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.3);
}

#widget-container {
	background: black;
	color: white;
	line-height: 0;
}

.card.map>.card-body {
	padding: 0;
	line-height: 0;
	height: 20rem;
}


.steps {
	display: flex;
	gap: .5rem;
	height: 1rem;
/*	margin: .5rem 0;*/
	padding: .5rem 0;
}
.steps>.box {
	flex: 1;
	height: .25rem;
	background: rgb(var(--c-primary), .5);
	transition: all 0.4s ease-in-out;
	transform: scaleY(.5);
}
.steps>.box.active {
	background: rgb(var(--c-primary));
	transform: scaleY(1);
}

.loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(var(--c-background));
	z-index: 1000;
}