:root {
	--color-primary: #0094ff;
	--color-primary-100: #20b8fe;
	--color-dark: #090f16;
	--color-dark-100: #1f252e;
	--border: 1px solid #1f252e;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*::after,
*::before {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}
p,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}
a {
	display: inline-block;
	text-decoration: none;
}
li {
	list-style-type: none;
}
button,
textarea,
input {
	outline: none;
	width: 100%;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	line-height: 1.4;
	min-width: 100vh;
	background: var(--color-dark);
}
/* Global Css here */
.btn__random {
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	color: #0094ff;
	-webkit-transition: 0.2s all ease;
	-o-transition: 0.2s all ease;
	transition: 0.2s all ease;
}
.btn__random:hover {
	color: var(--color-primary-100);
	border-color: var(--color-primary-100);
}
.btn__primary {
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
	border: 2px solid transparent;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
	padding: 10px 30px;
	background: var(--color-primary-100);
	border-radius: 6px;
}
.btn__primary i {
	font-size: 14px;
	margin-right: 5px;
}
.btn__primary:hover {
	border-color: var(--color-primary-100);
	color: var(--color-primary-100);
}
.btn__secondary {
	background: #1f252e;
	border-radius: 6px;
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	padding: 12px 20px;
	color: #ffffff;
	outline: none;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
	border: 1px solid #1f252e;
}
.btn__secondary:hover {
	opacity: 0.7;
}
/* Section header */
.section__header {
	padding: 30px 0;
}
.section__header h2 {
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	color: #ffffff;
	padding-bottom: 6px;
}
.section__header p {
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #3f4b5e;
}
/* Section Css here */
header {
	background: var(--color-dark);
	border-bottom: var(--border);
}
.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.header__navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 60px;
	-moz-column-gap: 60px;
	column-gap: 60px;
}
.main__menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
}
.main__menu ul li a {
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	color: #fff;
	display: inline-block;
	padding: 25px 20px;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}
.main__menu ul li a.active,
.main__menu ul li a:hover {
	color: var(--color-primary-100);
	border-color: var(--color-primary-100);
}
.logo {
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: #ffffff;
	display: inline-block;
	text-transform: capitalize;
}
.header__actions .btn__random {
	margin-right: 30px;
}
/* Filter search */
.feed__filter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 30px;
}
.filter__input {
	max-width: 350px;
	width: 300%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
}
.filter__search {
	position: relative;
	width: 100%;
}
.filter__search input {
	background: transparent;
	padding: 10px;
	color: #fff;
	width: 100%;
	border: 1px solid #1f252e;
	border-radius: 6px;
	outline: none;
	padding-left: 40px;
}
.filter__search input:focus,
.filter__search input:hover {
	border-color: #fff;
}
.btn__filter {
	width: 50px;
	padding: 10px;
	border-radius: 6px;
	background: #1f252e;
	outline: none;
	border: none;
	border: 1px solid #1f252e;
	color: #fff;
}
.btn__filter:hover {
	opacity: 0.7;
}
.filter__search span {
	position: absolute;
	padding: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	opacity: 0.7;
	left: 5px;
	top: 3px;
}
.filter__select select {
	border: 1px solid #1f252e;
	border-radius: 6px;
	padding: 12px 15px;
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	color: #fff;
	outline: none;
	background: transparent;
}
.filter__select select option:checked {
	color: #fff;
}
/* feed body */
.feed__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	grid-gap: 15px;
	padding-bottom: 60px;
}
.feed__card {
	max-width: 145px;
	width: 100%;
}
.card__thumb {
	position: relative;
}
.card__thumb img {
	border-radius: 2px;
}
.card__action {
	position: absolute;
	bottom: 10px;
	right: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 5px;
	-moz-column-gap: 5px;
	column-gap: 5px;
}
.card__action button {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 12px;
	color: #fff;
	outline: none;
	border: none;
}
button.btn__heart {
	background: rgba(255, 255, 255, 0.2);
}
button.btn__heart.active i {
	color: red;
}
button.btn__flag {
	background: rgba(31, 37, 46, 0.51);
}
.card__text {
	padding-top: 6px;
}
.card__text h3 {
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	padding-bottom: 4px;
	color: #ffffff;
}
.card__text p {
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	color: #3f4b5e;
}
.card__text p span {
	color: var(--color-primary);
	cursor: pointer;
}
/* About page */
.about__area {
	height: calc(100vh - 150px);
}
.about__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.our__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-column-gap: 0px;
	-moz-column-gap: 0px;
	column-gap: 0px;
}
.our__social li {
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
}
.our__social li:nth-child(1) {
	padding-right: 15px;
}
.our__social li a {
	font-size: 28px;
	padding: 8px;
	display: block;
}
.our__social li:nth-child(2) a {
	color: #1d9bf0;
}
.our__social li:nth-child(3) a {
	color: #e94700;
}
.our__social li:nth-child(4) a {
	color: #5865f2;
}
.our__social li a:hover {
	opacity: 0.7;
}
.about__content {
	padding-top: 15px;
}
.about__content p a.mail,
.about__content p {
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
	padding-bottom: 35px;
}
.about__content p a.mail:hover {
	color: var(--color-primary-100);
	text-decoration: underline;
}
/* Footer area */
.footer__wrapper ul {
	padding: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.footer__wrapper ul li a {
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
}
.footer__wrapper ul li a:hover {
	color: var(--color-primary-100);
	text-decoration: underline;
}
/* Get Pro page */
.pro__wrapper {
	max-width: 610px;
	margin: 0 auto;
	padding-top: 100px;
	padding-bottom: 100px;
}
.pro__illustration {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.pro__illustration img {
	height: 170px;
	width: auto;
	-o-object-fit: contain;
	object-fit: contain;
}
.pro__header {
	text-align: center;
	padding-bottom: 30px;
}
.pro__header h2 {
	font-weight: 700;
	font-size: 40px;
	line-height: 52px;
	color: #ffffff;
	padding-bottom: 30px;
}
.pro__header p {
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
}
.pro__header p a {
	color: var(--color-primary);
	text-decoration: underline;
}
.pro__body ul {
	padding-bottom: 30px;
}
.pro__button {
	text-align: center;
}
.pro__body ul li {
	padding: 15px;
	padding-left: 40px;
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
	position: relative;
}
.pro__body ul li::before {
	position: absolute;
	content: '\f058';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #20fe79;
	left: 5px;
	top: 15px;
}
.pro__button .btn__primary i {
	margin-left: 10px;
}
/* Signin Page */
.signin__wrapper {
	max-width: 430px;
	margin: 0 auto;
	padding: 120px 0;
}
.signin__header h3 {
	font-weight: 700;
	font-size: 24px;
	line-height: 31px;
	color: #ffffff;
	padding-bottom: 30px;
	text-align: center;
}
.signin__header p {
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	padding-bottom: 25px;
	color: #fff;
}
/* form design */
.single__input input {
	border: 1px solid #1f252e;
	border-radius: 6px;
	padding: 10px 15px;
	background: transparent;
	color: #fff;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.single__input input:focus,
.single__input input:hover {
	border-color: #fff;
}
.single__input input::-webkit-input-placeholder {
	color: #1f252e;
}
.single__input input::-moz-placeholder {
	color: #1f252e;
}
.single__input input:-ms-input-placeholder {
	color: #1f252e;
}
.single__input input::-ms-input-placeholder {
	color: #1f252e;
}
.single__input input::placeholder {
	color: #1f252e;
}
.forgot__pass {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.form__braker {
	position: relative;
	padding: 30px 0;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.form__braker span {
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	color: #22222c;
	height: 35px;
	width: 35px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: var(--color-dark);
}
.form__braker::after {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: #22222c;
	content: '';
	z-index: -1;
}
.signin__potions {
	display: -ms-grid;
	display: grid;
	grid-gap: 15px;
}
.btn__light {
	padding: 10px 15px;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
	border: 1px solid #fff;
	background: #fff;
	border-radius: 6px;
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	color: #0d0c0f;
}
.btn__light img {
	margin-right: 5px;
	height: 20px;
	width: 20px;
	-o-object-fit: contain;
	object-fit: contain;
}
.btn__light:hover {
	opacity: 0.7;
}
.from__suggesion {
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
}
/* Create Page */
.tab-button {
	display: inline-block;
	padding: 15px;
	background: #1f252e;
	border-radius: 6px;
	cursor: pointer;
}
.tab-button svg path {
	fill: #3f4b5e;
}
.tab-button.active svg path {
	fill: #20b8fe;
}
.tab-content {
	display: none;
	padding-bottom: 30px;
	background: transparent;
}
.tab-content.active {
	display: block;
}
.btn-container {
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.btn-container button {
	max-width: 125px;
	width: 100%;
	padding: 10px 15px;
	outline: none;
	border: 1px solid #20b8fe;
	border-radius: 6px;
	background: transparent;
	color: #20b8fe;
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.btn-container button:hover {
	color: #0094ff;
	border-color: #0094ff;
}
.btn-container button:nth-child(1) i {
	margin-right: 10px;
}
.btn-container button:nth-child(2) i {
	margin-left: 10px;
}
.btn-container button:nth-child(1) {
	border: 1px solid #1f252e;
	color: #fff;
}
.btn-container button:nth-child(1):hover {
	border-color: #0094ff;
	color: #0094ff;
}
.btn-container button:disabled {
	opacity: 0;
	visibility: hidden;
}
.create__options .tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 256px;
	width: 100%;
	margin: 0 auto;
	background: #1f252e;
	border-radius: 6px;
}
/* generate__options */
.create__content {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1.3fr 100px 1fr;
	grid-template-columns: 1.3fr 1fr;
	-webkit-column-gap: 100px;
	-moz-column-gap: 100px;
	column-gap: 100px;
	padding-bottom: 30px;
}
.generate__tags {
	border: 1px solid #1f252e;
	border-radius: 6px;
	max-width: 545px;
	width: 100%;
	height: 414px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.generate__tags .generate__tags_label {
	max-width: 178px;
	margin: 0 auto;
	display: block;
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
}
.generate__actions {
	padding-top: 30px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 40px 15px 40px 15px auto;
	grid-template-columns: 40px 40px auto;
	grid-gap: 15px;
}
.tab__inputs {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 15px 1fr;
	grid-template-columns: 1fr 1fr;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
}
.tab__input {
	padding-top: 30px;
}
.tab__input label {
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
	padding-bottom: 15px;
	display: inline-block;
}
.tab__input select {
	border: 1px solid #1f252e;
	border-radius: 6px;
	background: transparent;
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
	padding: 10px 15px;
}
option,
.form-select option {
	background-color: #1f252e !important;
	color: #fff;
}
.form-select {
	--bs-form-select-bg-img: none !important;
	position: relative;
}
.tab__input label {
	position: relative;
	display: block;
}
.tab__input label::before {
	position: absolute;
	content: '\f078';
	height: 20px;
	width: 20px;
	font-size: 12px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #fff;
	z-index: -1;
	top: 45px;
	right: 5px;
}
.form-select:hover,
.form-select:focus {
	border-color: #fff;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.form-select:hover ~ .tab__select::before {
	color: red;
}

/* Modal */
.modal-content {
	background: #090f16;
}
.modal-title {
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	color: #ffffff;
}
.modal-header {
	border-bottom: 1px solid #1f252e;
}
.modal-footer {
	border-top: 1px solid #1f252e;
}
.filter__item:not(:first-child) {
	padding-top: 20px;
}
.filter__item h3 {
	font-weight: 700;
	font-size: 16px;
	line-height: 21px;
	padding-bottom: 8px;
	color: #ffffff;
}
.filter__item p {
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: #3f4b5e;
	padding-bottom: 20px;
}
.filter__item .tab__input {
	padding-top: 0px;
}
.filter__btns .btn-group,
.filter__btns .btn-group-vertical {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
}
.btn-outline-primary {
	border-color: #1f252e;
	border-radius: 6px !important;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	padding: 10px;
	color: #ffffff !important;
	font-family: 'DM Sans', sans-serif;
}
.modal .btn-check:checked + .btn,
.modal .btn.active,
.modal .btn.show,
.modal .btn:first-child:active,
:not(.btn-check) + .btn:active {
	color: #fff !important;
	background-color: #20b8fe !important;
	border-color: #20b8fe !important;
}
.modal .btn:hover,
.modal .btn-outline-primary:hover {
	border-color: #20b8fe !important;
}
.modal-footer .btn-primary {
	background: #20b8fe;
	max-width: 150px;
	border-color: #0094ff;
}
.modal-footer .btn {
	max-width: 150px;
}
.btn.btn-danger:hover {
	border-color: transparent !important;
}
/* Modal */
/* demo */
/* demo */

/* demo */
/* demo */
/* Multiple select 2 css  */
.select2-container {
	min-width: 400px;
	width: 100% !important;
}

.select2-results__option {
	padding-right: 20px;
	vertical-align: middle;
}
.select2-results__option:before {
	content: '';
	display: inline-block;
	position: relative;
	height: 20px;
	width: 20px;
	border: 2px solid #e9e9e9;
	border-radius: 4px;
	background-color: #fff;
	margin-right: 20px;
	vertical-align: middle;
}
.select2-results__option[aria-selected='true']:before {
	font-family: fontAwesome;
	content: '\f00c';
	color: #fff;
	background-color: #f77750;
	border: 0;
	display: inline-block;
	padding-left: 3px;
}
.select2-container--default .select2-results__option[aria-selected='true'] {
	background-color: #fff;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: transparent;
	color: #eee;
}
.select2-container--default .select2-selection--multiple {
	margin-bottom: 10px;
}
.select2-container--default.select2-container--open.select2-container--below
	.select2-selection--multiple {
	border-radius: 4px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
	border-color: #f77750;
	border-width: 2px;
}
.select2-container--default .select2-selection--multiple {
	border-width: 2px;
}
.select2-container--open .select2-dropdown--below {
	border-radius: 6px;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.select2-selection .select2-selection--multiple:after {
	content: 'hhghgh';
}
/* select with icons badges single*/
.select-icon .select2-selection__placeholder .badge {
	display: none;
}
.select-icon .placeholder {
	display: none;
}
.select-icon .select2-results__option:before,
.select-icon .select2-results__option[aria-selected='true']:before {
	display: none !important;
	/* content: "" !important; */
}
.select-icon .select2-search--dropdown {
	display: none;
}

.select2-container--default .select2-results > .select2-results__options {
	max-height: unset;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.select2-results__option {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	color: #fff;
}
.select2-container--default .select2-selection--multiple {
	cursor: text;
	border: 1px solid #1f252e;
	border-radius: 6px;
	background: transparent;
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
	padding: 10px 15px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
	border-color: #fff;
	border-width: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background: #1f252e;
	border-radius: 10px;
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 16px;
	color: #ffffff;
	padding: 5px 14px;
	border: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	margin-right: 7px;
	font-size: 24px;
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
}
.select2-dropdown {
	background-color: #1f252e;
	border-radius: 6px;
	border: none;
}
.select2-container--default .select2-results__option[aria-selected='true'] {
	background-color: transparent;
}
.select2-results__option::before {
	border: 2px solid #3f4b5e;
	background-color: transparent;
}
.select2-results__option[aria-selected='true']::before {
	background-color: #0094ff;
}
/* switch button css  */

.custom-switch .knobs,
.custom-switch .layer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.custom-switch .button.b2 {
	border-radius: 2px;
}
.custom-switch .button {
	position: relative;
	width: 46px;
	height: 26px;
	overflow: hidden;
}
.custom-switch .checkbox {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 3;
}
.custom-switch .knobs {
	z-index: 2;
}
.custom-switch .knobs::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 20px;
	height: 10px;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	padding: 9px 4px;
	background-color: gray;
	border-radius: 5px;
	-webkit-transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
	-o-transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
	transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
	-webkit-box-shadow: -1px 0px 2px -1px rgba(0, 0, 0, 0.1);
	box-shadow: -1px 0px 2px -1px rgba(0, 0, 0, 0.1);
}

.custom-switch .checkbox:checked + .knobs::before {
	left: 22px;
	background-color: #20b8fe;
}
.custom-switch .layer {
	width: 100%;
	background-color: #22222c;
	-webkit-transition: 0.3s ease all;
	-o-transition: 0.3s ease all;
	transition: 0.3s ease all;
	z-index: 1;
	border-radius: 7px;
}
.custom-switch {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}
.custom-switch small {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: #3f4b5e;
}
.searchModal select {
	width: 100%;
}
