/* ------------------
:: 1.0 Import All CSS
------------------ */
@charset "utf-8";

/*=============== GOOGLE FONTS ===============*/
@font-face {
   font-family: 'Poppins', sans-serif;
   src: url(../fonts/Poppins/Poppins-Black.ttf)format('truetype');
}
/* Reboot CSS */

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;
  /*========== Colors ==========*/
    /* HSL color mode */
  --hue: 250;
  --sat: 50%;
  --first-color:
  hsl(var(--hue), var(--sat), 57%);
  --first-color-alt:
  hsl(var(--hue), var(--sat), 35%);
  --title-color:
  hsl(var(--hue), 40%, 70%);
  --text-color:
  hsl(var(--hue), 8%, 35%);
  --body-color: #171622;
  --container-color: #212130;

  --white:
  hsl(0, 0%, 100%);
  --dark:
  hsl(0, 0%, 0%);
  --gray:
  hsl(var(--hue), 40%, 96%);
  --red: #de0611;
  --darker-blue:hsla(var(--hue), 52%, 83%);

  --color-text-gray:
  hsl(var(--hue), 20%, 75%);
  --input-background:
  hsl(var(--hue), 5%, 95%);
  --input-color: #80868B;

  /*========== shadow ==========*/
  --shadow:
  hsl(218, 25%, 90%);
  --shadow2:
  hsl(214, 55%, 90%);
  --shadow-dropdown:
  hsl(218, 15%, 90%);
 
 /*========== border color ==========*/

  --color-border-default: #f9fafa;
  --color-border-green:
  hsl(var(--hue), 40%, 80%);
  --border-color:
  hsl(var(--hue), 30%, 90%);
 /*========== button color ==========*/

  --button-link:
  hsl(var(--hue), 30%, 95%);
  --button-disabled:
  hsl(var(--hue), 40%, 96%);
  --icon-circle-bg:
  linear-gradient(0deg, rgb(36 143 125) 0%, rgb(41 163 143) 60%);
  
  /*========== Font and typography ==========*/
  --body-font:
  'Poppins', sans-serif;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.3rem;
  --biggest-font-size: 2.375rem;
  --normal-font-size: .938rem;
  --small-font-size: .75rem;
  --tiny-font-size: .625rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi: 600;
  --font-semi-bold: 700;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --gutter10: 10px;
  --gutter: 20px;
  
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mt-0-5: .5rem;
    --mt-0-75: .75rem;
    --mt-1: 1rem;
}


@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
	--h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  padding: 0;
  margin: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
}
*:focus{
  outline: none;
}

html {
 /* scroll-behavior: smooth;*/
 margin: 0;
 overscroll-behavior-y: none;
 -moz-overscroll-behavior-y:: none;  /* Firefox */
 -webkit-overscroll-behavior-y:: none; /* Chrome/Safari */  
 -ms-overscroll-behavior-y:: none; /* IE10+ */
}

body {
  /*margin: var(--header-height) 0 0 0;*/
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.34;
  overflow-x: hidden;
}
div {
	box-sizing: border-box;
}

li {
    list-style: none;
}
a {
  text-decoration: none;
}

h1, h2, h3 {
  color: var(--title-color);
}

button,
input {
  border: none;
  outline: none;
  overflow: visible;
}

button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
}

hr {
    opacity: 0.2;
    margin-bottom: 1rem;
}

/*=============== SCROLL BAR ===============*/

/*mixin*/
/*scrolls*/
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0);
}

:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0);
}

.bootbox-close-button{
	display: none!important;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 2rem 0 2rem;
}

.section__title {
  font-size: var(--bigger-font-size);
  text-align: center;
}

/*=============== LAYOUT ===============*/
.main {
  overflow: hidden;
}

.container {
  max-width: 968px;
  margin: 0 0.75rem;
}

.grid {
  display: grid;
}
.flex{
  display: flex;
}

.error-message{
	border-radius: 0.25rem;
	padding: 0.5rem;
	border-left: 5px solid #f72c2c;
	background-color: #fee1e1;
	box-shadow: 0 0 1px rgb(0 0 0 / 20%);
	position: relative;
	font-size: var(--small-font-size);
	color: var(--red);
	line-height: 1.5;
	margin-bottom: 0.5rem;
	font-weight: 600;
	text-align: center;
}
/*=============== BUTTONS ===============*/

.button {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 0.75rem 0.65rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi);
    border-radius: 0.5rem;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: none;
    letter-spacing: 1.1px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.button:hover {
  background: linear-gradient(111.02deg,#6e6cee,#991fe9);
  box-shadow: 0 3px 10px hsl(247deg 79% 66% / 16%);
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: 0.75rem;
}

.button--primary {
  display: flex!important;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.875rem 1.25rem;
  color: var(--white);
  background-color: var(--first-color);
  border-color: var(--first-color);
  cursor: pointer;
}
.btn-white {
    color: var(--first-color);
    border: none;
    background-color: #fff;
    padding: 0.875rem 1.25rem;
}

.btn-white:hover {
    color: var(--white);
}


.button__icon {
	font-size: 1.1rem;
    margin-top: -0.1rem;
    padding-left: 0.3rem;
    padding-right: 0.03rem;
}
.btns{
	width: 100%;
	display: inline-flex;
    flex-direction: column;
    row-gap: 1rem;
	margin-top: 0.5rem;
}
/*==== GENERAL ====*/

.news-icon {
	height: 30px;
    width: 30px;
    background: var(--rgba-primary-7);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
	padding: 2px 0;
}
/*===== HOME =====*/
.home{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
	margin-left: var(--mb-0-75);
    margin-right: var(--mb-0-75);
}
.home__img{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	width: 300px;
    margin-bottom: 0.5rem;
}
.text-btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	row-gap: 1rem;
}
.text-btns p{
	color: var(--color-text-gray);
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi);
	text-align: center;
}

.info-text {
	position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
}
.info-text__label {
  background-color: #12111a;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  height: 48px;
  margin: 0;
  position: relative;
  text-indent: -999em;
  width: 48px;
}
.info-text__label::before, .info-text__label::after {
  background-color: white;
  border-radius: 2px;
  content: "";
  height: 26px;
  position: absolute;
  right: 22px;
  transition: all 300ms ease;
  width: 4px;
}
.info-text__label::before {
  height: 4px;
  text-indent: -999em;
  top: 15px;
  width: 4px;
}
.info-text__label::after {
  height: 11px;
  top: 21px;
  width: 4px;
}
.info-text__label:hover::before, .info-text__label:hover::after, .info-text__label:focus::before, .info-text__label:focus::after {
  height: 26px;
  top: 11px;
  transition-delay: 500ms;
  width: 4px;
}
.info-text__label:hover::before, .info-text__label:focus::before {
  transform: rotate(45deg);
}
.info-text__label:hover::after, .info-text__label:focus::after {
  transform: rotate(-45deg);
}
.info-text__label:hover + .info-text__content, .info-text__label:focus + .info-text__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 500ms;
  visibility: visible;
}
.info-text__content {
    background-color: #12111a;
    border-radius: 4px;
    color: white;
    width: 400px;
    max-width: 350px;
    opacity: 0;
    padding: 1.25rem;
    position: absolute;
    top: 56px;
    right: 0;
    transform: translateY(5px);
    transition: all 300ms;
    visibility: hidden;
}
.info-text__content::before {
  border-bottom: 10px solid #12111a;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  content: "";
  height: 0;
  right: 14px;
  position: absolute;
  top: -7px;
  width: 0;
}
/*===== FORM =====*/
[direction="rtl"] .iconcaptcha-holder.iconcaptcha-init .iconcaptcha-modal__body-title, .iconcaptcha-holder.iconcaptcha-success .iconcaptcha-modal__body-title{
	text-align: right!important;
	padding-left: 20px!important;
    padding-right: 60px!important;
}
[direction="rtl"] .iconcaptcha-holder.iconcaptcha-init .iconcaptcha-modal__body-circle{
	left: 0;
	right: 15px;
}
[direction="rtl"] .iconcaptcha-holder .iconcaptcha-modal__body-checkmark{
	left: 0;
	right: 15px;
}
[direction="rtl"] .iconcaptcha-holder .iconcaptcha-modal__body-info{
	right: auto;
	left: 6px;
}

[data-theme-version="dark"] .authincation{
	background: var(--body-color)!important;
    color: var(--text-color);	
}
[data-theme-version="dark"] .authincation-content {
    background: #2f363e;
    box-shadow: none;
    border-radius: 0.5rem 0.5rem 0.5rem 0px;
}
[data-theme-version="dark"] .auth-form{
    position: relative;
    z-index: 3;
	overflow: hidden;
    border-radius: 0.5rem 0.5rem 0.5rem 0px;
    background: #212130!important;
    box-shadow: 2px 2px 7px rgb(0 0 0 / 10%);
}

[data-theme-version="dark"] .form-control {
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    border-radius: 0.5rem;
    outline: none;
    z-index: 1;
    transition: all 0.375s;
    font-family: 'Poppins', sans-serif;
}
[direction="rtl"] .form-check-input {
    margin-left: -0.95rem!important;
    margin-right: inherit!important;
}
[direction="rtl"] .form-check .form-check-input{
	float: right!important;
}

.iti {
    width: 85.85%!important;
}
.iti__country-list{
z-index: 20!important;
}

.country-select{
	width: 85.85%!important;
}

.country-list{
	z-index: 20!important;
}

[direction="rtl"] .flag-dropdown{
right: 0!important;
left: auto!important;
}

[direction="rtl"] .country-select.inside input, .country-select.inside input[type=text] {
    padding-right: 40px!important;
    padding-left: 45px!important;
    margin-right: 0;
}
[direction="rtl"] .country-select .country-list{
	text-align: right;
}
[direction="rtl"] .country-select .selected-flag{
	padding: 0 8px 0 0!important;
}
[direction="rtl"] .country-select .country-list .flag {
    margin-left: 6px!important;
}
[data-theme-version="dark"] .country-list{
background-color: #282a37!important;
border-color: #2b2440!important;
color: #fff;
}
[data-theme-version="dark"] .country-list {
	width: 360px!important;
    white-space: pre-line!important;
}

[data-theme-version="dark"] .iti__country-list{
background-color: #282a37;
border-color: #2b2440;
color: #fff;
}
[data-theme-version="dark"] .iti__country-list {
	width: 360px!important;

    white-space: pre-line;
}
input.parsley-success,
select.parsley-success,
textarea.parsley-success {
	color: #468847;
	background-color: #F2F9F0;
	border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
	color: #B94A48!important;
	background-color: #F9F0F0 !important;
	border: 1px solid #ff0000;
}

.parsley-errors-list {
	list-style-type: none;
	opacity: 0;
	color: #d16e6c;
	margin-top: 5px;
	margin-bottom: 0;
	padding-left: 0;
    transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
}
[data-theme-version="dark"] .parsley-required{
	color: #b03636; 
 }
.parsley-errors-list.filled {
	opacity: 1;
	margin: 8px 0 0;
}

.form-container{
	display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.form__card{
    overflow: hidden;
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 1.55rem;
    border-radius: 0.5rem 0.5rem 0.5rem 0px;
    background: #212130;
    box-shadow: 2px 2px 7px rgb(0 0 0 / 10%);
}

.form{
	display: grid;
    gap: 10px;
}

.form__header{
	display: flex;
    align-items: center;
    justify-content: center;
}

.form__title{
  font-size: var(--h2-font-size);
  font-weight: 400;
  margin: 0 0 0.5rem;
  text-align: center;
}

.input__frame{
  position: relative;
}
.form__input{
	height: 50px!important;
    outline: none;
    transition: all 0.375s;
    font-family: 'Poppins', sans-serif;
	padding: 0.5rem 2.25rem 0.5rem 2.5rem!important;
	z-index: 1;
}

.icon__box {
  color: var(--first-color);
}
.form__input:hover{
  border: 1.5px solid var(--first-color);
	transition: all 0.1s ease;
}
.form__input::placeholder{
    color: #cac8c8;
}

.form__input:focus{
 border: 2px solid var(--color-border-green);
  transition: all 0.1s ease;
}
.input__frame:focus-within > .form__icon {
  color: var(--first-color);
}
.form__icon {
  font-size: 1.65rem;
  position: absolute;
  top: 3.385rem;
  transform: translateY(-50%);
  padding: 0.5rem 0.5rem;
  z-index: 10;
}
.form__icon__r {
  display: block;
  right: 1.55rem;
  cursor: pointer;
  z-index: 1000;
}

[direction="rtl"] .psswrd{
	left: 0.55rem;
    right: inherit;
}

.psswrd{
  right: 0.55rem;
}
.psswrd_strength {
    position: absolute;
    top: 2.03rem;
    z-index: 10;
}
.psswrd_strength > div {
  width: .3rem;
  height: .3rem;
  background: var(--darker-blue);
  margin-bottom: 1px;
  border-radius: 50%;
}

.circle{
    position: fixed;
    top: -50vmin;
    left: -50vmin;
    width: 90vmin;
    height: 100vmin;
    border-radius: 45% 53% 61% 39% / 45% 51% 49% 55%;
    background: var(--first-color);
    /* box-shadow: 0px 1px 10px hsl(247deg 79% 66% / 40%); */
    box-shadow: 0px 1px 5px hsl(247deg 79% 66% / 40%);
    display: none;
}

.circle::after{
    content: "";
    position: inherit;
    right: -50vmin;
    bottom: -55vmin;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    background: var(--first-color);
    box-shadow: 0px 1px 10px hsl(231deg 81% 67% / 44%);
}


.forgot{
	font-size: var(--normal-font-size);
    text-align: center;
}

.clicking{
    color: var(--first-color);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.375s;
}
.clicking:hover{
    color: var(--first-color-alt);
}
.form__card .form__footer{
	font-size: var(--normal-font-size);
    text-align: center;
}

#blob {
    position: fixed;
    margin-top: 80px;
    width: 20vw;
	left: 3px;
    height: 20vw;
    border-radius: 50%;
    background-image: linear-gradient(111.02deg,#6e6cee,#991fe9);
    filter: blur(60px);
}
#blob2 {
    position: fixed;
    width: 40vw;
    height: 40vw;
    left: 3px;
    margin-left: 100px;
    margin-top: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: linear-gradient( 90deg, rgb(22, 22, 22), rgb(115 100 237), rgb(125 26 190) );
    filter: blur(55px);
    border-radius: 50%;
    overflow: hidden;
}
#blob3 {
	position: fixed;
	margin-top: 200px;
	right: 30px;
	width: 25vw;
	height: 20vw;
	rotate: -25deg;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: linear-gradient(111.02deg,#901ada,#7462ed);
	filter: blur(60px);
	border-radius: 50%;
}
.select__lang {
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	align-items: center;
	color: #d7dae3;
	justify-content: space-between;
	background-color: rgb(255 255 255 / 2%);
	border-radius: 8px;
	border: 1px solid rgb(255 255 255 / 1%);
	z-index: 9999;
	box-shadow: 0 0px 4px rgb(0 0 0 / 5%);
}
.select__lang select {
	font-weight: var(--font-semi);
    background-color: transparent;
    color: #828693;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-right: 8px;
}

.select__lang:focus-visible, 
select:focus-visible {
	padding: 10px;
  border-radius: 8px;
  outline: 2px solid var(--primary);
  background-color: rgba(0,0,0,0.05)
}

/* Footer */

.footer-distributed {
    position: absolute;
    left: 0;
    bottom: 0;
    height: auto;
    width: 100%;
	padding: 5px 10px 5px;
	text-align: center;
}
/* Footer links */

.footer-distributed p.footer-links {
	font-size: 13px;
    font-weight: var(--font-semi);
    color: #b9bcc4;
    padding: 0;
    transition: ease .25s;
}

.footer-distributed p.footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  transition: ease .25s;
}

.footer-distributed .footer-links a:before {
  content: ".";
  font-size: 20px;
  color: hsl(255deg 55% 90% / 50%);
  display: inline-block;
  padding: 0 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

.footer-distributed p.footer-links a:hover{text-decoration:underline;}
/* End Footer */

@media (width >=500px) {
    body{
        padding: 0;
    }
    .form__card{
        margin: 0;
        width: 360px;
    }
}

 .MobileContent {
     display:inline-block;
 }
 .filterBox{
	max-width: 85%;
    width: auto;
    padding: 1rem;
    margin: 0.5rem auto 1.5rem auto!important;
    border-radius: 0.75rem;
    border: 1px solid #1c1a28ab;
    box-shadow: 1px 1px 15px 5px rgb(23 22 34);
    transition: all 0.5s;
 }
 
.qrCodeBox{
	    margin: 0 auto 0 auto;
    box-shadow: 1px 1px 20px 1px rgb(255 255 255 / 18%);
    transition: all 0.5s;
 }
 

@media screen and (max-width: 768px) {

 .MobileContent {
     display: none;
 }
  .filterBox{
	max-width: 100%;
	box-shadow: none;
 }
 .qrCodeBox{
	width: max-content;
	margin: 0.5rem auto 1.5rem auto!important;
 }
 
 }
/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  .section {
    padding: 2.5rem 0 0 0;
	}
  .section__title {
    font-size: var(--big-font-size);
  }
  .main__img {
    width: 60%;
  }
  .footer-distributed {
    position: fixed;
}
  .footer-distributed {
	padding: 0;
  }
	.footer-distributed p.footer-links a {
		line-height: 1;
		font-size: 12px;
	}
	.footer-distributed .footer-links a:before {
		content: ".";
		padding: 0 2.5px;
	}
}
/* For small devices */
@media screen and (max-width: 360px) {
  .footer-distributed {
	padding: 0;
  }
  .footer-distributed p.footer-links {
    margin: 0;
  }
  .footer-distributed p.footer-links a {
    line-height: 1.2;
  }

}

/* For medium devices */
@media screen and (min-width: 576px) {

}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }
  .section {
    padding: 3rem 0 2rem;
  }
  .circle{
	display: block;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}

