:root {
	--btn-color: #111827;
	--btn-color-s: #F3F4F6;
	--btn-color-r: #F90F2A;
	--btn-color-r-s: #FEE6E9;
	--btn-color-g: #669C34;
	--btn-color-g-s: #EFF5EA;
	--btn-color-b: #004990;
	--btn-color-b-s: #E5ECF4;
	--btn-color-o: #553a99;
	--btn-color-o-s: #FEF5EB;
	--btn-color-w: #FFFFFF;
	--btn-color-d: #121212;

	--color-r: #F90F2A;
	--color-g: #669C34;
	--color-b: #004990;
	--color-o: #FF7B00;


	--color-1: #F90F2A;
	--color-2: #525FE1;

	--color-btn: #111827;
	--color-btn-hover: #FFFFFF;

	--color-title: #111827;
	--color-body: #6B7280;

	--bg-color-1: #FFFFFF;
	--bg-color-2: #F1F3F8;

	--border-color: #E5E7EB;
	--border-radius:  4px;

	--canvas-bg: #F1F3F8;

	--shadow: 0 1px 3px 0 rgba(0, 0, 0, .1),0 1px 2px -1px rgba(0, 0, 0, .1);
	--shadow-table:  0px 5px 5px -5px rgba(0,0,0,0.25);
}
.dark-mode {
	--btn-color: #F3F4F6;
	--btn-color-s: #121212;
	--btn-color-r: #F90F2A;
	--btn-color-r-s: #250206;
	--btn-color-g: #669C34;
	--btn-color-g-s: #0f1708;
	--btn-color-b: #004990;
	--btn-color-b-s: #000b15;
	--btn-color-o: #553a99;
	--btn-color-o-s: #261200;
	--btn-color-w: #FFFFFF;
	--btn-color-d: #414141;

	--color-r: #F90F2A;
	--color-g: #669C34;
	--color-b: #004990;
	--color-o: #FF7B00;



	--color-1: #F90F2A;
	--color-2: #525FE1;

	--color-btn: rgba(255, 255, 255, .7);
	--color-btn-hover: #FFFFFF;

	--color-title: #FFFFFF;
	--color-body: rgba(255, 255, 255, .6);

	--bg-color-1: #0F172A;
	--bg-color-2: #060e1b;

	--border-color: rgba(255, 255, 255, .1);
	--border-radius:  4px;

	--canvas-bg: #06090F;

	--shadow: 0 1px 3px 0 rgba(0, 0, 0, .1),0 1px 2px -1px rgba(0, 0, 0, .75);
	--shadow-table:  0px 5px 5px -5px rgba(0,0,0,0.75);
}

html,
body{
	font-family: "Poppins", sans-serif;
	font-style: normal;
	background-color: var(--bg-color-2);
	color: var(--color-body);
	-webkit-text-size-adjust: 100%;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}



a{
	color: var(--color-body);
	text-decoration: none;
	cursor: pointer;
	transition: all .2s ease;
}
a:hover{
	color: var(--color-r);
	text-decoration: none;
}
a.link{
	color: var(--color-r);
}
a.link:hover{
	text-decoration: underline;
}
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
b, strong {
    font-weight: 600;
}
hr {
    width: 100%;
    height: 1px;
    border: none;
    background-color: var(--border-color);
    margin: 15px 0;
}
i.fa{
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
}

.text-center{
	text-align: center;
}
.text-left{
	text-align: left;
}
.text-right{
	text-align: right;
}

input,
textarea,
select{
	width: 100%;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	background-color: var(--bg-color-1);
	color: var(--color-body);
	padding: 10px 15px;
	transition: all .1s ease;
}
input:hover,
textarea:hover,
select:hover{
	border-color: #6a737b;
	box-shadow:0 0 0 .2rem rgba(106, 115, 123, .25);
	outline:0;
	transition: box-shadow .2s ease;
}
input:focus,
textarea:focus,
select:focus{
	border-color: #6a737b;
	box-shadow:0 0 0 .2rem rgba(106, 115, 123, .5);
	outline:0;
	transition: box-shadow .2s ease;
	background-color: var(--bg-color-2);
	color: var(--color-title);
}
select{       
   -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px;
}

.select-cover{
	position: relative;
}
.select-cover > select{
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
.select-cover::after {
	content: "\f107";
	font-family: FontAwesome;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 16px;
	color: var(--color-body);
}


.input-block{
	margin-bottom: 15px;
}
.input-block:last-child{
	margin-bottom: 0px;
}
.input-block.min {
	width: 50%;
}
.input-block label{
	font-weight: bold;
	display: block;
}
.input-block textarea{
	min-height: 150px;
	max-height: 500px;
}

.btn{
	display: inline-flex;
    align-items: center;
    gap: 7.5px;
	border: none;
	border-radius: var(--border-radius);
	margin: 0;
	padding: 10px;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
    background-color: var(--btn-color-s);
    position: relative;
}
.btn.small{
	font-size: 0.8rem;
	padding: 5px 7.55px;
}
.btn.small.icon{
	padding: 7.5px;
}
.btn.small i.fa{
	width: 16px;
	height: 16px;
	font-size: 16px;
}
.btn.iconr{
	padding-left: 20px;
}
.btn.iconl{
	padding-right: 20px;
}
.btn.u{
	text-transform: uppercase;
}
.btn.round{
	border-radius: 50px;
}
.btn.block {
    display: flex;
    justify-content: center;
}
.btn.r{
	color: var(--btn-color-r);
	background-color: var(--btn-color-r-s);
}
.btn.g{
	color: var(--btn-color-g);
	background-color: var(--btn-color-g-s);
}
.btn.b{
	color: var(--btn-color-b);
	background-color: var(--btn-color-b-s);
}
.btn.o{
	color: var(--btn-color-o);
	background-color: var(--btn-color-o-s);
}
.btn.solid.r{
	background-color: var(--btn-color-r);
}
.btn.solid.g{
	background-color: var(--btn-color-g);
}
.btn.solid.b{
	background-color: var(--btn-color-b);
}
.btn.solid.o{
	background-color: var(--btn-color-o);
}
.btn.solid.r,
.btn.solid.g,
.btn.solid.b,
.btn.solid.o{
	color: var(--btn-color-w);
}

.btn:not(.nothover):hover{
	color: var(--color-btn-hover);
	background-color: var(--color-1);
}
.btn.r:not(.nothover):hover{
	background-color: var(--btn-color-r);
}
.btn.g:not(.nothover):hover{
	background-color: var(--btn-color-g);
}
.btn.b:not(.nothover):hover{
	background-color: var(--btn-color-b);
}
.btn.o:not(.nothover):hover{
	background-color: var(--btn-color-o);
}
.btn.r.solid:not(.nothover):hover,
.btn.g.solid:not(.nothover):hover,
.btn.b.solid:not(.nothover):hover,
.btn.o.solid:not(.nothover):hover{
	background-color: var(--btn-color-d);
}
.btn.link,
.btn.link:hover{
	background-color: transparent!important;
}
.btn.link{
	color: var(--btn-color) !important;
}
.btn.link:hover{
	color: var(--btn-color-r) !important;
}
.btn.link.r{
	color: var(--btn-color-r) !important;
}
.btn.link.g{
	color: var(--btn-color-g) !important;
}
.btn.link.b{
	color: var(--btn-color-b) !important;
}
.btn.link.o{
	color: var(--btn-color-o) !important;
}
.btn.link.r:hover,
.btn.link.g:hover,
.btn.link.b:hover,
.btn.link.o:hover{
	color: var(--btn-color) !important;
}

.btn.passive{
	opacity: 50%;
}
.btn.nothover{
	cursor: auto;
}


.form-checkbox,
.form-radio,
.form-switch {
  display: block;
  line-height: 1.2rem;
  margin: .2rem 0;
  min-height: 1.4rem;
  padding: .1rem .4rem .1rem 1.2rem;
  position: relative;
}

.form-checkbox input,
.form-radio input,
.form-switch input {
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.form-checkbox input:focus + .form-icon,
.form-radio input:focus + .form-icon,
.form-switch input:focus + .form-icon {
  border-color: #5755d9; 
  box-shadow: 0 0 0 .1rem rgba(87, 85, 217, .2);
}

.form-checkbox input:checked + .form-icon,
.form-radio input:checked + .form-icon,
.form-switch input:checked + .form-icon {
  background: #5755d9;
  border-color: #5755d9;
}

.form-checkbox .form-icon,
.form-radio .form-icon,
.form-switch .form-icon {
  border: .05rem solid #bcc3ce;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  transition: background .2s, border .2s, box-shadow .2s, color .2s;
}

.form-checkbox.input-sm,
.form-radio.input-sm,
.form-switch.input-sm {
  font-size: .7rem;
  margin: 0;
}

.form-checkbox.input-lg,
.form-radio.input-lg,
.form-switch.input-lg {
  font-size: .9rem;
  margin: .3rem 0;
}

.form-checkbox .form-icon,
.form-radio .form-icon {
  background: #fff;
  height: .8rem;
  left: 0;
  top: .3rem;
  width: .8rem;
}

.form-checkbox input:active + .form-icon,
.form-radio input:active + .form-icon {
  background: #eef0f3;
}

.form-checkbox .form-icon {
  border-radius: .1rem;
}

.form-checkbox input:checked + .form-icon::before {
  background-clip: padding-box;
  border: .1rem solid #fff;
  border-left-width: 0;
  border-top-width: 0;
  content: "";
  height: 9px;
  left: 50%;
  margin-left: -3px;
  margin-top: -6px;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 6px;
}

.form-checkbox input:indeterminate + .form-icon {
  background: #5755d9;
  border-color: #5755d9;
}

.form-checkbox input:indeterminate + .form-icon::before {
  background: #fff;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 10px;
}

.form-radio .form-icon {
  border-radius: 50%;
}

.form-radio input:checked + .form-icon::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
}

.form-switch {
  padding-left: 2rem;
}

.form-switch .form-icon {
  background: #bcc3ce;
  background-clip: padding-box;
  border-radius: .45rem;
  height: .9rem;
  left: 0;
  top: .25rem;
  width: 1.6rem;
}

.form-switch .form-icon::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  height: .8rem;
  left: 0;
  position: absolute;
  top: 0;
  transition: background .2s, border .2s, box-shadow .2s, color .2s, left .2s;
  width: .8rem;
}

.form-switch input:checked + .form-icon::before {
  left: 14px;
}

.form-switch input:active + .form-icon::before {
  background: #f7f8f9;
}

span.message{
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:  10px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}
span.message > i.fa{
    width: 20px;
    height: 20px;
    font-size: 20px;
}
span.message.err{
    background-color: var(--btn-color-o-s);
    color: var(--color-o);
}
span.message.success{
    background-color: var(--btn-color-g-s);
    color: var(--color-g);
}

.row.border > *:last-child{
	border-left: 1px solid var(--border-color);
}
.sidebar{
	position: sticky;
	top: 93px;
}


.divider{
	width: 100%;
	display: block;
	height: 0px;
	border-bottom: 1px solid var(--border-color);
}


#header {
	position: sticky;
	top: 0;
	z-index: 10;
	background-color: var(--bg-color-1);
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}
.dark-mode #header {
	position: sticky;
	top: 0;
	z-index: 10;
	background-color: var(--bg-color-2);
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}
#header.shadow{
    box-shadow: var(--shadow);
}
#header-search {
    position: absolute;
    background-color: var(--bg-color-1);
    width: 100%;
    top: 100%;
    padding: 15px 0px;
    border-top: 1px solid var(--border-color);
    display: none;
}
#header-search form{
	width: 100%;
}
#header.shadow #header-search{
	box-shadow: var(--shadow);
}
#header .row{
	align-items: center;
	position: relative;
}
#header .logo{
	height: auto;
	width: 100%;
}
#header .header-menu-block{
	display: flex;
    align-items: center;
    justify-content: flex-end;
    position: static;
}
#navigation{
	flex: 1;
}
#header-button-group {
    gap: 7.5px;
    display: inline-flex;
    align-items: center;
}
#main-menu{
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
}
#main-menu.right{
	justify-content: flex-end;
}
#main-menu.center {
    justify-content: center;
}
#main-menu > li {
}
#main-menu > li > a{
	height: 48px;
	padding: 0px 10px;
	outline: none;
	display: flex;
	align-items: center;
}
#main-menu > li:hover > a,
#main-menu > li.active > a{
	color: var(--color-1);
}
#main-menu > li > .sub-menu {
    position: absolute;
    background-color: var(--bg-color-1);
    padding: 5px;
    box-shadow: var(--shadow);
    display: none;
}
#main-menu > li:hover > .sub-menu{
	display: block;
}
#main-menu > li > .sub-menu > li:not(:first-child) {
	border-top: 1px dashed var(--border-color);
}
#main-menu > li > .sub-menu > li > a {
    padding: 7.5px 15px;
    display: block;
}
#menu-toggle{
	display: none;
}
.navigation-links {
    align-items: flex-start !important;
}


#footer{
	background-color: var(--bg-color-1);
	border-top: 1px solid var(--border-color);
}
#footer strong {
    color: var(--color-title);
    font-size: 1.2rem;
    font-weight: 500;
}
#footer .alignright {
    text-align: right;
}
#footer .subfooter {
    font-size: 0.9rem;
}


.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pagination > li:not(:first-child) {
    margin-left: 5px;
}
.pagination > li > a,
.pagination > li > span {
    display: flex;
    color: var(--color-title);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.pagination > li > a:hover{
	background-color: var(--bg-color-2);
}
.pagination i {
    font-size: 20px;
    width: 20px;
    height: 20px;
}
.pagination > li > span{
	color: var(--color-body);
}
.pagination > li > span.current {
    background-color: var(--color-r);
    color: #FFF;
}



#cookie-banner{
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(8px);
	color: #fff;
	padding: 15px;
	text-align: center;
	z-index: 9999;
}
#cookie-banner p,
#cookie-banner a {
	color: #FFFFFF;
}
#cookie-banner a:hover{
	color: var(--color-r);
}
#cookie-banner button{
	border: none;
	padding: 10px 20px;
	margin: 10px;
	border-radius: var(--border-radius);
	color: #FFFFFF;
	background-color: #444444;
	transition: all .2s ease;
}
#cookie-banner button#accept-cookies{
	background-color: #004990;
}
#cookie-banner button#decline-cookies{
	background-color: #444444;
}
#cookie-banner button:hover{
	background-color: #000 !important;
}



#hero{
	position: relative;
	padding: 100px 0px !important;
	background: var(--bg-color-2);
	background: url("../img/hero_bg.png");
	background-repeat: no-repeat;
    background-size: cover;
}

#hero:before,
#hero:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100px;
	left: 0px;
	right: 0px;
	background: rgb(6, 14, 27);
	z-index: 1;  
}
#hero:before {
    top: 0;
    background: linear-gradient(180deg, var(--bg-color-2) 0%, rgba(6,14,27,0) 100%);
}
#hero:after {
    bottom: 0;
    background: linear-gradient(0deg, var(--bg-color-2) 0%, transparent 100%);
}
.dark-mode #hero{
	background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}
.dark-mode #hero:before {
    background: linear-gradient(180deg, rgba(6, 14,27,1) 0%, rgba(6,14,27,0) 100%);
}
.dark-mode #hero:after {
    background: linear-gradient(0deg, rgba(6, 14, 27, 1) 0%, rgba(6, 14, 27, 0) 100%);
}
#hero h1 {
    font-size: 3rem;
    font-weight: 200;
    color: #FFF;
    background: -webkit-linear-gradient(var(--color-title), #6534ac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
#hero h1 strong {
    font-weight: 400;
}
#hero p {
    font-size: 1.2rem;
    font-weight: 300;
}
canvas#hero-canvas {
	opacity: 0;
	position:absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: var(--canvas-bg);
}
.dark-mode canvas#hero-canvas {
	opacity: 0.75;
	position:absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: var(--canvas-bg);
}

#hero textarea {
    max-width: 100%;
    min-width: 100%;
    min-height: 150px;
    max-height: 150px;
    resize: none;
}
#hero textarea::-webkit-scrollbar {
    width: 8px;
}

#hero textarea::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
}

#hero textarea::-webkit-scrollbar-thumb {
    background: var(--btn-color-o);
    border-radius: 4px;
}

#hero textarea::-webkit-scrollbar-thumb:hover {
    background: var(--btn-color-b);
}
#hero small {
    font-weight: 300;
    opacity: .5;
    display: block;
}

#hero-breadcrumb {
    background-color: var(--bg-color-1);
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}
#hero-breadcrumb .row:not(.noborder) {
    border-top: 1px solid var(--border-color);
    align-items: center;
}


.section{
	background-color: var(--bg-color-1);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 15px;
}

.box{
}
.box > .body {
    padding-top: 15px;
}

.title{
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 15px;
}
.title > .title-inner{
	flex: 1;
    padding-left: 7.5px;
    margin-left: 7.5px;
    line-height: 1.4;
    border-left: 1px solid var(--border-color);
}
.title.sub > .title-inner{
	line-height: 1.2;
}
.title > i.fa{
	color: var(--color-title);
}
.title.r > i.fa{
	color: var(--color-r);
}
.title.g > i.fa{
	color: var(--color-g);
}
.title.b > i.fa{
	color: var(--color-b);
}
.title.o > i.fa{
	color: var(--color-o);
}
.title h1,
.title h2,
.title h3,
.title h4,
.title h5,
.title h6{
	color: var(--color-title);
    margin: 0;
    font-weight: 400;
}
.title.sub span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    gap: 10px;
}
.title.sub span small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}
.title.sub span i.fa{
	width: 14px;
	height: 14px;
	font-size: 14px;
}

.title > .title-inner > small i{
	font-size: 14px;
	height: 14px;
	width: 14px;
}
.title > .title-inner > small.r{
	color: var(--color-r);
}
.title > .title-inner > small.g{
	color: var(--color-g);
}
.title > .title-inner > small.b{
	color: var(--color-b);
}
.title > .title-inner > small.o{
	color: var(--color-o);
}


span.err-message {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--border-radius);
    background-color: var(--btn-color-o-s);
    color: var(--color-o);
    font-size: 1.1rem;
}
span.err-message > i.fa {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.content {
	font-weight: 300;
}
.content h3,
.content h4,
.content h5,
.content strong {
	color: var(--color-title);
}
.content strong{
	font-weight: 400;
}
.content ul {
    list-style: disc;
    list-style-type:  disc;
    padding-inline-start: 40px;
    margin-bottom: 15px;
}
.content ol {
    list-style: decimal;
    list-style-type: decimal;
    padding-inline-start: 40px;
    margin-bottom: 15px;
}
.content img {
    width: 100%;
    border-radius: var(--border-radius);
}
.content img.notfound{
	max-width: 80%;
	margin-left: 10%;
}


.faq-box {
}
.faq-box .faq-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-title);
}
.faq-box > ul.faq {
    list-style: none;
    padding-inline-start: 0;
}
.faq-box > ul.faq > li {
    padding: 7.5px 0;
    border-color: var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-radius: 0px;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}
.faq-box > ul.faq > li:last-child{
	border-bottom: none;
}
.faq-box > ul.faq > li.active{
	padding: 15px;
	margin: 15px 0;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
}
.faq-box > ul.faq > li > .q {
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease;
}
.faq-box > ul.faq > li > .q > .fa {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    margin-right: 7.5px;
}
.faq-box > ul.faq > li:hover > .q,
.faq-box > ul.faq > li.active > .q{
	color: var(--color-r);
}
.faq-box > ul.faq > li > .a {
    height: 0px;
    overflow: hidden;
    padding: 0px 15px;
    margin: 0;
    transition: all 0.2s ease;
}

.faq-box > ul.faq > li.active > .a {
    height: auto;
    padding: 15px;
    padding-left: 24px;
}


.breadcrumb{
	display: inline-flex;
    align-items: center;
    width: 100%;
    overflow-y: auto;
}
.breadcrumb > li{
	padding: 0px 3px;
	display: inline-flex;
	white-space: nowrap;
}
.breadcrumb > li:first-child{
	padding-left: 0;
}
.breadcrumb > li:last-child{
	padding-right: 0;
}
.breadcrumb > li i.fa{
	height: 20px;
	width: 20px;
	font-size: 20px;
}
.breadcrumb > li > a i.fa{
	height: 22px;
	width: 22px;
	font-size: 22px;
}


.blog-grid > li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	padding: 15px;
	position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}
.blog-grid > li:hover{
	background-color: var(--bg-color-2);
}
.blog-grid > li > img{
	border-radius: var(--border-radius);
	width: 100%;
}
.blog-grid > li > a{
	display: inline-flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	gap: 7.5px;
}
.blog-grid > li > a > * {
	color: var(--color-body);
}
.blog-grid > li > a > span:not(.btn){
	flex: 1;
}
.blog-grid > li > a > .btn{
	justify-content: center;
    align-self: flex-end;
}
.blog-grid > li > a > strong{
	font-size: 1.2rem;
	color: var(--color-title);
}



.dream-grid > li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	padding: 15px;
	position: relative;
	overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.3s ease-in-out;
}
.dream-grid > li:hover{
	background-color: var(--bg-color-2);
}
.dream-grid > li > a{
	display: inline-flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	gap: 7.5px;
	z-index: 2;
}
.dream-grid > li > a > * {
	color: var(--color-body);
}
.dream-grid > li > a > span:not(.btn){
	flex: 1;
}
.dream-grid > li > a > .btn{
	justify-content: center;
    align-self: flex-end;
}
.dream-grid > li > a > strong{
	font-size: 1.2rem;
	color: var(--color-title);
}
.dark-mode .dream-grid > li:before,
.dark-mode .dream-grid > li:after{
	content: '';
	position: absolute;
	width: 0px;
	height: 0px;
	background-color: transparent;
	z-index: 1;
	opacity: .5;
	transition: box-shadow 0.3s ease-in-out;
}
.dark-mode .dream-grid > li:before {
    left: 0px;
    top: 0px;
    box-shadow: 0px 0px 0px 0px #511378;
}
.dark-mode .dream-grid > li:after {
    right: 0px;
    bottom: 0px;
    box-shadow: 0px 0px 75px 75px #511378;
}

.dark-mode .dream-grid > li:hover:before{
	box-shadow: 0px 0px 100px 175px #371777
}
.dark-mode .dream-grid > li:hover:after{
	box-shadow: 0px 0px 100px 175px #511378;
}

.tags > a{
	margin-right: 15px;
	margin-bottom: 15px;
	font-size: 1.1rem;
}
.tags > a > span {
    border-left: 1px solid var(--border-color);
    padding-left: 5px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.chars > a {
    display: inline-flex;
    line-height: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin: 7.5px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background-color: var(--canvas-bg);
}
.chars > a.active {
    color: var(--color-title);
    background-color: #511378;
}


table.infotable {
    color: var(--color-title);
    font-size: 1rem;
}
table.infotable td:last-child {
	width: 100%;
}
table.infotable td:not(first-child):not(:last-child) {
    border-right: 1px solid var(--border-color);
}
table.infotable tr:not(:last-child) {
	border-bottom: 1px solid var(--border-color);
}
table.infotable th,
table.infotable td{
	padding: 5px;
	white-space: nowrap;
}
table.infotable th{
	white-space: nowrap;
}


.fa.fa-twitter{
	font-family:sans-serif;
}
.fa.fa-twitter::before{
	content:"𝕏";
	font-size:1.2em;
}
ul.social-share {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    gap: 7.5px;
}
ul.social-share > li {
    width: 100%;
}
ul.social-share > li > a {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--bg-color-2);
    border-radius: var(--border-radius);
    padding: 7.5px 0;
    color: #FFF;
}
ul.social-share > li > a.facebook{
	background-color: #1877f2;
}
ul.social-share > li > a.twitterx{
	background-color: #14171a;
}
ul.social-share > li > a.whatsapp{
	background-color: #128c7e;
}
ul.social-share > li > a.email{
	background-color: #52565e;
}
ul.social-share > li > a:hover{
	opacity: .9;
}


.table-board{
	/*overflow-x: auto;*/
	box-shadow: var(--shadow);
	border-radius: var(--border-radius);
}


.price-table{
	width: 100%;
	font-size: 1.1rem;
}
.price-table thead {
	position: sticky;
	top: 78px;
	z-index: 2;
}
.price-table thead > tr > th{
	text-align: center;
	background-color: var(--bg-color-1);
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 5px;
    position: relative;
    font-weight: 500;
}
.price-table thead > tr > th:first-child{
	border-left: none;
}
.price-table thead > tr > th:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	box-shadow: var(--shadow-table);
}
.price-table tbody > tr{
	position: relative;
}
.price-table tbody > tr:not(:first-child){
	border-top: 1px solid var(--border-color);
}
.price-table tbody > tr > td{
	padding: 7.5px;
    text-align: center;
	cursor: pointer;
	border-left: 1px solid var(--border-color);
}
.price-table tbody > tr > td i.fa {
    width: 16px;
    height: 16px;
    font-size: 16px;
}
.price-table tbody > tr > td i.fa.r{
	color: var(--color-r);
}
.price-table tbody > tr > td i.fa.g{
	color: var(--color-g);
}
.price-table tbody > tr > td i.fa.b{
	color: var(--color-b);
}
.price-table tbody > tr > td i.fa.o{
	color: var(--color-o);
}
.price-table tbody > tr > td:first-child{
	border-left: none;
	text-align: left;
}
.price-table tbody > tr:hover > td{
	background-color: var(--bg-color-2);
	color: var(--color-title);
}



.price-table tbody > tr > td > a:not(.btn) {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.price-table tbody > tr > td > a:not(.btn):after{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0);
}
.price-table tbody > tr > td > a:not(.btn) > strong{
	color: var(--color-title);
	font-size: 1.6rem;
}
.price-table tbody > tr > td em{
	font-size: 0.9rem;
	font-weight: normal;
    font-style: normal;
}

.price-table.normal tbody > tr > td{
	cursor: auto;
}
.price-table.normal thead > tr > th:first-child{
	text-align: left;
}
.price-table.normal tbody > tr > td:last-child {
    width: 0%;
}
.price-table.normal tbody > tr > td:last-child {
    padding: 5px;
    white-space: nowrap;
}
.price-table form{
	display: inline-flex;
}
.price-table tbody > tr > td small.r{
	color: var(--color-r);
}
.price-table tbody > tr > td small.g{
	color: var(--color-g);
}
.price-table tbody > tr > td small.b{
	color: var(--color-b);
}
.price-table tbody > tr > td small.o{
	color: var(--color-o);
}

.price-table i.lang-icon.fa-globe{
	color: var(--color-b);
}
.price-table i.lang-icon.fa-star{
	color: var(--color-o);
}

#search-dreams {
    width: 100%;
    background-color: var(--bg-color-1);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    position: relative;
}
#search-dreams input[type=text] {
    font-size: 1.1rem;
    padding: 15px;
    padding-right: 70px;
    background-color: transparent;
    border: none;
}

#search-dreams button {
    position: absolute;
    right: 0;
    background-color: transparent;
    color: var(--color-title);
    padding: 10px 15px;
    height: 100%;
    border: none;
    border-left: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}


#like-box {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    gap: 7.5px;
}
#like-box > div {
    display: flex;
    align-items: center;
    gap: 7.5px;
}
#like-box > .divider {
    width: 15px;
}
#like-box > div > small {
    font-size: .75rem;
}

#dream-main {
    background-color: var(--bg-color-2);
    border-radius: var(--border-radius);
    padding: 15px;
    border: 2px dashed var(--border-color);
}


#dream {
    width: 50%;
    margin: auto;
    text-align: center;
    transition: width .5s linear;
}
#dream.wide{
	width: 75%;
}
#dream.uwide{
	width: 100%;
}


#dream .request{
	opacity: 1;
	transition: opacity .5s linear;
}
#dream .request.hide{
	opacity: 0;
}
#dream .request > .dream-info{
	text-align: left;
}
#dream .request > .dream-info.alert{
    color: var(--color-o);
    opacity: 1;
}
#dream .request > .approval {
    display: block;
    text-align: left;
}
#dream .request > .approval label {
    margin: 0;
    font-weight: 300;
    opacity: 0.7;
    transition: all .2s ease;
}
#dream .request > .approval em {
	font-size: 0.75rem;
	opacity: 0.75;
}
#dream .request > .approval a{
	text-decoration: underline;
}
#dream .request > .approval.active label{
	opacity: 1;
}
#dream-submit.passive{
	opacity: .25;
	cursor: not-allowed;
}



#dream .response{
	
}
#dream .response > .response-content{
	background-color: var(--bg-color-1);
    text-align: left;
    backdrop-filter: blur(3px);
    border-radius: var(--border-radius);
    padding: 15px 15px;
    max-height: 100%;
    display: none;
}
.dark-mode #dream .response > .response-content {
    background-color: rgba(0, 0, 0, .5);
}
#dream .response > .response-content > * {
    z-index: 2;
    position: relative;
}
#dream .response > .response-content.inner-shadow{
	overflow: hidden;
	position: relative;
}
.dark-mode #dream .response > .response-content.inner-shadow:before,
.dark-mode #dream .response > .response-content.inner-shadow:after{
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    background-color: transparent;
    z-index: 1;
    opacity: .25;
    transition: box-shadow 3s ease-in-out;
	box-shadow: 0px 0px 0px 0px #511378;
}
.dark-mode #dream .response > .response-content.inner-shadow:before {
    top: 0%;
    left: 0%;
    box-shadow: 0px 0px 100px 175px #371777;
    animation: shadow-before 10s;
}
.dark-mode #dream .response > .response-content.inner-shadow:after {
    top: 100%;
    left: 100%;
    box-shadow: 0px 0px 100px 175px #511378;
    animation: shadow-after 10s;
}

#dream .response > .response-content > h3 {
    color: var(--color-title);
    font-weight: 400;
    margin: 0;
}
#dream .response > .response-content > h3:not(:first-child) {
    margin-top: 15px;
}
#dream .response > .response-content  p {
    font-size: 1rem !important;
    margin-bottom: 10px;
}
#dream .response > .response-content p:last-child {
    margin: 0;
}

#dream .response > .response-content small.blink {
    opacity: 1;
    animation: blink 1.5s infinite;
}
#dream .response > .response-content small.user-link{
	display: none;
	opacity: 1;
}
#dream-ai.alert {
    color: var(--color-o);
}
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
@keyframes shadow-after {
    0% {
	    top: 100%;
	    left: 100%;
    	opacity: .5;
    	box-shadow: 0px 0px 0px 0px #511378;
    }
    50% {
	    top: 0%;
	    left: 100%;
    	opacity: 1;
    }
    100% {
	    top: 100%;
	    left: 100%;
    	opacity: .25;
    }
}
@keyframes shadow-before {
    0% {
	    top: 0%;
	    left: 0%;
    	opacity: .5;
    		box-shadow: 0px 0px 0px 0px #371777;
    }
    50% {
	    top: 100%;
	    left: 0%;
    	opacity: 1;
    }
    100% {
	    top: 0%;
	    left: 0%;
    	opacity: .25;
    }
}

.rate-limit-alert {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-o);
}
.rate-limit-alert > small {
    opacity: 1 !important;
    color: var(--color-body);
}
.rate-limit-alert > small > strong{
	color: var(--color-r);
}
.rate-limit-alert > i {
    width: 20px;
    height: 20px;
    font-size: 20px;
}






.loading {
	position: relative;
    width: 120px;
    height: 120px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 30px;
    opacity: 1;
    transition: all .5s ease;
}
.loading.hide {
    width: 0px;
    height: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    opacity: 0;
}
.loading > .inner {
	position: absolute;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border-radius: 50%;
}
.loading > .inner.one {
	left: 0%;
	top: 0%;
	animation: loading-rotate-one 1.1s linear infinite;
	border-bottom: 3px solid #b1d4e5;
}
.loading > .inner.two {
	right: 0%;
	top: 0%;
	animation: loading-rotate-two 1.1s linear infinite;
	border-right: 3px solid #decba5;
}
.loading > .inner.three {
	right: 0%;
	bottom: 0%;
	animation: loading-rotate-three 1.1s linear infinite;
	border-top: 3px solid #e9908a;
}

@keyframes loading-rotate-one {
	0% {
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}
@keyframes loading-rotate-two {
	0% {
		transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@keyframes loading-rotate-three {
	0% {
		transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

.b2bb {
    font-size: 3rem; /* Masaüstü için varsayılan büyük yazı boyutu */
}

/* Mobil cihazlar için stil */



