@font-face {
	font-family: 'TT Satoshi';
	src: url('../fonts/TTSatoshi-Medium.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'TT Satoshi';
	src: url('../fonts/TTSatoshi-DemiBold.woff2') format('woff2');
	font-weight: bold;
	font-style: normal;
}

*,
::before,
::after {
	box-sizing: border-box;
	font-family: 'TT Satoshi', -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body,
html {
	background: #F6F6F6;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: -0.4px;
	color: #1F1F1F;
	height: 100%;
	overflow: hidden;
}

h2, h3, p {
	margin: 0;
	padding: 0;

}

::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-thumb {
	background-color: #CAD4DB;
	border-radius: 6px;
}

::-webkit-scrollbar-track {
	background-color: #ffffff;
}

body {
	scrollbar-width: thin;
	scrollbar-color: #CAD4DB #ffffff;
}


.cabel-png {
	animation: moveAndRotate 2.5s infinite;
}

@keyframes moveAndRotate {
	0% {
		transform: matrix(
			0.7780664563179016,
			-0.7780664563179016,
			0.7780664563179016,
			0.7780664563179016,
			431.41790771484375,
			515.8929443359375
		);
	}
	30% {
		transform: matrix(
			0.7780664563179016,
			-0.7780664563179016,
			0.7780664563179016,
			0.7780664563179016,
			431.41790771484375,
			515.8929443359375
		);
	}
	50% {
		transform: matrix(
			0.7780664563179016,
			-0.7780664563179016,
			0.7780664563179016,
			0.7780664563179016,
			431.41790771484375,
			515.8929443359375
		);
	}
	70% {
		transform: matrix(
			0.7780664563179016,
			-0.7780664563179016,
			0.7780664563179016,
			0.7780664563179016,
			304.3578796386719,
			388.8329162597656
		);
	}
	100% {
		transform: matrix(
			0.7780664563179016,
			-0.7780664563179016,
			0.7780664563179016,
			0.7780664563179016,
			304.3578796386719,
			388.8329162597656
		);
	}
}

.rotated {
	transform: rotate(180deg);
}

.main {
	position: relative;
	padding-top: 12px;
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100%;
}


.content {
	display: flex;
	width: 100%;
	height: 100%;
}

.left {
	background-color: #EEEEEE;
	width: 40vw;
	min-width: 380px;
	height: 100%;
	overflow: hidden;
	display: flex;
	flex-flow: column;
	flex: initial;
	gap: 0px;
	justify-content: center;
	align-items: center;
	max-width: 660px;
}

.logo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 1 1 0%;
	margin-top: 96px;
}

.logo img {
	width: 57px;
	height: auto;
}

.links {
	display: flex;
	margin: 24px;
	align-items: center;
	flex-flow: wrap;
	gap: 16px;
}

.links {
	font-size: 15px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: -0.4px;
	text-decoration: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 16px;
}
.links a {
	letter-spacing: -0.4px;
	text-decoration: none;
}

.button {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row-reverse;
	gap: 10px;
	padding: 16px 22px;
	width: fit-content;
	border-radius: 100px;
	transition: box-shadow 0.1s ease-out 0s, border-color 0.1s ease-out 0s,
		background 0.1s ease-out 0s;
	outline: none;
	cursor: pointer;
	border: 1px solid transparent;
	background: #f6f6f6;
	color: #333333;
}

.button:hover {
	background: none;
}

.button-icon {
	display: flex;
}

.button-icon img {
	width: 14px;
	height: 14px;
}

.right {
	display: flex;
	position: relative;
	flex-direction: column;
	flex: 3 1 0%;
	padding: 20px;
	background-color: #f6f6f6;
	background-image: url(../img/onboarding-welcome-bg.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: local;
	background-size: 570px 570px;
	align-items: center;
	overflow-y: auto;
}

.connect {
	display: flex;
	flex: 1 1 0%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1020px;
}

.connect-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.connect-welcome {
	display: flex;
	height: 122px;
	min-height: 122px;
	width: 360px;
	border-radius: 61px;
	padding: 10px;
	background: #ffffff;
	border: 1px solid #eeeeee;
	align-items: center;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 16px 32px -16px;
	margin-bottom: 60px;
	flex: 1 1 auto;
	opacity: 0;
	transform: translateY(-100px);
	transition: all 0.7s ease-in-out;
}

.connect-welcome-img {
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #f6f6f6;
	flex-shrink: 0;
}

.connect-welcome-text {
	display: flex;
	flex-direction: column;
	margin: 0 32px;
	text-align: center;
	color: #1f1f1f;
	font-size: 20px;
	font-weight: 500;
	flex-grow: 1;
}

.connect-menu {
	transform: scale(1.25);
	background: #ffffff;
	border: 1px solid #eeeeee;
	transition: background 0.3s ease 0s, opacity 0.3s ease 0s;
	border-radius: 16px;
	box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
	opacity: 0;
	flex-direction: column;
}

.shownslide {
	display: flex;
	opacity: 1;
	transform: translateY(0px);
}

.show {
	display: flex;
	opacity: 1;
}

.connect-collapse {

	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 16px 24px;
	cursor: pointer;
	flex: 1 1 0%;
}

.connect-collapse:hover .connect-toggle {
	opacity: 0.5;
}

.connect-find {
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
}

.connect-find-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 2px 8px;
	width: fit-content;
	border-radius: 100px;
	transition: box-shadow 0.1s ease-out 0s, border-color 0.1s ease-out 0s, background 0.1s ease-out 0s;
	outline: none;
	cursor: pointer;
	border: 1px solid transparent;
	background: #0f6148;
	color: rgb(255, 255, 255);
}

.connect-find-button:hover {
	background: #0c4b38;
}

.connect-toggle {
	display: flex;
	align-items: center;
	margin-left: auto;
	overflow: hidden;
	transition: opacity 0.15s ease 0s;
}

.connect-toggle span {
	margin-right: 12px;
	color: #505050;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.connect-find-button span{
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.connect-help {
	display: flex;
	flex-direction: column;
	padding: 24px 16px;
	border-top: 1px solid #eeeeee;

}

.collapsable {
	display: none;
}

.troubleshooting {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.troubleshooting-item {
	display: flex;
}

.troubleshooting-item+.troubleshooting-item {
	margin-top: 16px;
}

.troubleshooting-text{
	display: flex;
	flex-direction: column;
	width: 100%;
}

.troubleshooting-bullet{
	margin-right: 8px;
	font-size: 16px;
	color: rgb(31, 31, 31);;
}

.troubleshooting-text--heading{
	color: rgb(31, 31, 31);;
	font-size: 14px;
	font-weight: 500;
}
.troubleshooting-text--note {
	color: rgb(128, 128, 128);;
	font-size: 12px;
	font-weight: 500;
	margin-top: 2px;
}

.troubleshooting-text--note a{
	font-size: 14px;
	color: rgb(23, 23, 23);;
	letter-spacing: -0.3px;
}

.connect-contact {
	display: flex;
	justify-content: space-between;
	margin: 24px -16px 0px;
	padding: 20px 20px 0px;
	border-top: 1px solid #eeeeee;
	align-items: center;
}

.connect-contact span{
	color: rgb(128, 128, 128);
	font-size: 12px;
	font-weight: 500;
}

.connect-contact a{
	text-decoration: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: inherit;
}

.connect-contact a button{
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	letter-spacing: -0.3px;
	padding: 8px 16px;
	width: fit-content;
	border-radius: 100px;
	transition: box-shadow 0.1s ease-out 0s, border-color 0.1s ease-out 0s, background 0.1s ease-out 0s;
	outline: none;
	cursor: pointer;
	border: 1px solid transparent;
	background: #f6f6f6;
	color: rgb(51, 51, 51);
}
.connect-contact a button:hover{
	background: #eeeeee;
}

.settings-reveal {
	position: absolute;
	align-self: flex-end;
}

.settings-reveal button{
	position: relative;
	padding: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	border-radius: 100px;
	transition: box-shadow 0.1s ease-out 0s, border-color 0.1s ease-out 0s, background 0.1s ease-out 0s;
	outline: none;
	cursor: pointer;
	border: 1px solid transparent;
	background: #e2e2e2;
	color: rgb(225, 225, 225);
}

.settings-reveal button:hover {
	background: #d6d6d6;
}

.help-reveal {
	position: fixed;
	z-index: 39;
	bottom: 18px;
	right: 18px;
}

.help-reveal button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	border: 1px solid rgb(226, 226, 226);
	background: none;
	transition: opacity 0.3s ease 0.3s;
}

.side {
	max-width: 100vw;
	min-width: 0;
	width: 0;
	height: 100%;
	border-left: 1px solid #e8e8e8;
	display: flex;
	overflow: hidden scroll;
	flex-direction: column;
}

.side-head{
	display: flex;
	align-items: center;
	padding: 12px 21px;
	position: sticky;
	top: 0px;
	background: #f6f6f6;
	box-shadow: none;
	border-bottom: 1px solid transparent;
	transition: all 0.5s ease 0s;
	white-space: nowrap;
	z-index: 1;
}

.shadow {
	/*box-shadow: rgba(58, 59, 60, 0.5) 0px 9px 27px 0px;*/
	border-bottom: 1px solid #eeeeee;
	box-shadow: rgba(232, 232, 232, 0.5) 0px 9px 27px 0px;
}

.side-head--title {
	font-size: 22px;
	line-height: 32px;
	font-weight: 500;
	flex: 1 1 0%;
}
.close {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
	width: fit-content;
	border-radius: 100px;
	transition: box-shadow 0.1s ease-out 0s, border-color 0.1s ease-out 0s, background 0.1s ease-out 0s;
	outline: none;
	cursor: pointer;
	border: 1px solid transparent;
	background: #e2e2e2;
	color: rgb(225, 225, 225);
}

.close:hover {
	background: #d6d6d6;
}

.side-content{
	position: relative;
	height: 100%;
	padding: 15px 21px 0px;
}

.side-content--search{
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: -0.4px;
	color: rgb(255, 255, 255);
	display: flex;
	position: relative;
	width: 100%;
	margin-bottom: 8px;
}

.side-content--search .search-icon {
	position: absolute;
	inset: 0px auto 0px 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.side-content--search input{
	padding: 0px 16px 0px 48px;
	height: 56px;
	width: 100%;
	background-color: rgb(246, 246, 246);
	border-radius: 12px;
	border: 2px solid transparent;
	color: rgb(23, 23, 23);
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: -0.4px;
	transition: border-color 0.1s ease 0s;
	outline: none;
	font-variant-numeric: slashed-zero tabular-nums;
}

.side-content--search input:focus {
	border: 2px solid rgb(238, 238, 238);
}

.side-content--categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.side-content--categories button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 140px;
	text-align: center;
	height: 150px;
	flex: 1 1 0%;
	align-items: center;
	border-radius: 8px;
	border: 0px;
	width: 100%;
	background: #ffffff;
	padding: 10px;
	cursor: pointer;
	line-height: 1.57;
	transition: background 150ms ease-out 0s;
}

.side-content--categories button img {
	width: 64px;
}

.side-content--categories button span {
	width: 100%;
	font-size: 14px;
	font-weight: 600;
	color: #1f1f1f;
	overflow: hidden;
	line-height: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.side-content--categories button:hover {
	background: #eeeeee;
}

.side-content--feedback{
	width: 90%;
	border-top: 1px solid #eeeeee;
	margin-top: 50px;
	padding-top: 16px;
	padding-bottom: 26px;
	position: absolute;
	bottom: 0px;
	background:#f6f6f6;
}

.side-content--feedback button{
	display: flex;
	align-items: center;
	width: 100%;
	border: 0px;
	border-radius: 4px;
	cursor: pointer;
	text-align: left;
	padding: 11px;
	background: none;
	transition: background 150ms ease-out 0s;
	position: relative;
	z-index: 50;
}

.side-content--feedback button:last-child{
	left: auto;
}

.side-content--feedback button:hover{
	background: #eeeeee;
}

.side-content--feedback span{
	padding: 0px 9px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	width: 100%;
	white-space: nowrap;
	color: #333333;
}

.settings {
	position: relative;
	display: flex;
	flex: 1 1 0%;
	flex-direction: column;
	height: 100dvh;
	overflow: hidden scroll;
	background: #f6f6f6;
	width: 100%;
	align-items: center;
}

.settings-head {
	position: sticky;
	top: 0px;
	display: flex;
	gap: 16px;
	width: 100%;
	height: 64px;
	min-height: 64px;
	padding: 8px 16px;
	background: #f6f6f6;
	border-bottom: 1px solid #eeeeee;
	overflow: hidden;
	z-index: 11;
	align-items: center;
}

.settings-exit {
	position: relative;
	padding: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	border-radius: 100px;
	transition: box-shadow 0.1s ease-out 0s, border-color 0.1s ease-out 0s, background 0.1s ease-out 0s;
	outline: none;
	cursor: pointer;
	border: 1px solid transparent;
	background: #e2e2e2;
}

.settings-exit:hover {
	background: #d6d6d6;
}


.settings-head h2 {
	font-size: 34px;
	line-height: 37px;
	font-weight: 500;
	letter-spacing: -1.4px;
	text-align: left;
}

.settings-navigation{
	position: sticky;
	top: 64px;
	display: flex;
	justify-content: flex-start;
	gap: 12px;
	min-height: 60px;
	background: #f6f6f6;
	padding: 8px 16px 12px;
	border-bottom: 1px solid #eeeeee;
	overflow: auto hidden;
	z-index: 11;
	width: 100%;
}

.nav-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgb(51, 51, 51);
	white-space: nowrap;
	padding: 8px 12px;
	cursor: pointer;
	border-radius: 12px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	transition: all 150ms ease-out 0s;
}

.nav-item:hover {
	background: #eeeeee;
}

.active {
	color: rgb(23, 23, 23);
}

.active:hover {
	background: none;
}

.active::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 0px;
	right: 0px;
	height: 2px;
	background: #171717;
}


.settings-content {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1 1 0%;
	width: 100%;
	max-width: 1200px;
	padding: 20px 15px 134px 17px;
}

.settings-application--banner {
	position: relative;
	height: auto;
	display: flex;
	align-items: center;

	width: 100%;
	margin-bottom: 40px;
	padding: 12px 20px;
	border-radius: 12px;
	background: rgb(0, 133, 77);
	overflow: hidden;
}

.banner-cross{
	position: absolute;
	right: 16px;
	top: 16px;

	padding: 8px;
	border-radius: 4px;
	transition: opacity 0.15s ease 0s, background 0.15s ease 0s;
	cursor: pointer;
}
.banner-cross img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
}
.banner-cross:hover{
	background:#007C3E;
}

.banner-pattern {
	width: 140px;
	margin-right: 24px;
	max-width: 100%;
	filter: brightness(0.9) contrast(1.2) saturate(1.2);
}

.banner-content {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 16px 28px;
}

.banner-content--head {
	grid-column: 1 / 3;
}

.banner-content--head h2 {
	font-size: 34px;
	line-height: 37px;
	font-weight: 500;
	letter-spacing: -1.4px;
	text-align: left;
	color: #ffffff;
}

.banner-content--head p {
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: -0.4px;
	color: #ffffff;
}

.banner-content--link {
	text-decoration: none;
	color: rgb(0, 133, 77);
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.4px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 21px;
	width: fit-content;
	border-radius: 100px;
	background: #ffffff;
	transition: all 0.2s ease 0s;
}

.banner-content--link:hover {
	background: #cce7db;
}

.banner-content--icons {
	display: flex;
	align-self: center;
	align-items: center;
	gap: 6px;
}

.settings-section {
	margin-bottom: 40px;
	display: flex;
	width: 100%;
}

.settings-section--head {
	min-width: 250px;
	max-width: 270px;
	margin-right: 40px;
	margin-bottom: 8px;
	display: flex;
	align-items: flex-start;
}
.settings-section--head .head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.settings-section--head .head h3{
	font-size: 22px;
	line-height: 32px;
	font-weight: 500;
	letter-spacing: -0.3px;
	text-align: left;
}

.settings-section--content {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 20px;
	background: #ffffff;
	color: rgb(23, 23, 23);
	border-radius: 16px;
	box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
	transition: background 0.3s ease 0s, box-shadow 0.2s ease 0s;
	flex: 1 1 0%;
	gap: 32px;
	justify-content: flex-start;
	align-items: normal;
}

.settings-section--item{
	display: flex;
	position: relative;
}

.settings-section--item .item-text{
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: left;
	margin-right: 16px;
	max-width: 500px;
}
.settings-section--item .item-text p{
	color: rgb(149, 149, 150);
	margin-bottom: 12px;
	margin-top: 12px;
	font-size: 14px;
	font-weight: 500;
}
.settings-section--item .item-text button{
	background: #f6f6f6;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	gap: 8px;
	padding: 2px 8px;
	width: fit-content;
	border-radius: 100px;
	transition: box-shadow 0.1s ease-out 0s, border-color 0.1s ease-out 0s, background 0.1s ease-out 0s;
	outline: none;
	border: 1px solid transparent;
	cursor: pointer;
	color: rgb(51, 51, 51);
}

.settings-section--item .item-text button img{
	width: 8px;
}

.settings-section--item .item-text button:hover{
	background: #eeeeee;
}
.settings-section--item:last-child .item-text p {
	margin-bottom: 0;
}

.settings-section--item:not(:last-child)::after {
	content: "";
	position: absolute;
	bottom: -17px;
	display: block;
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #eeeeee;
}

.settings-section--item .item-action {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 0%;
	flex-wrap: wrap;

}

.item-action--select{
	width: 170px;
	margin: 4px 0px 4px 4px;
	position: relative;
	padding: 7px 18px;
	display: flex;
	border-radius: 11px;
	justify-content: space-between;
	background: #f6f6f6;
	cursor: pointer;
}

.item-action--switch {
	display: flex;
	align-items: center;
	height: 24px;
	width: 44px;
	flex-shrink: 0;
	margin: 0px;
	padding: 3px;
	position: relative;
	background: rgb(238, 238, 238);
	border-radius: 12px;
	transition: background 0.2s ease 0s, box-shadow 0.1s ease-out 0s, border-color 0.1s ease-out 0s;
	border: 1px solid transparent;
	cursor: pointer;
}

.item-action--switch .switcher{
	position: absolute;
	display: inline-block;
	height: 20px;
	width: 20px;
	left: 1px;
	border-radius: 100px;
	background: #ffffff;
	transition: transform 0.25s ease 0s;
	cursor: pointer;
	border: 1px solid transparent;
}

.item-action--switch .switcher:hover {
	background: rgb(214, 214, 214);
}

.switched .switcher{
	transform: translateX(20px);
	background: #ffffff !important;
	border: 1px solid transparent !important;
}
.switched .switcher:hover{
	background: #0c4b38!important;
}
.switched {
	background: rgb(15, 97, 72); !important;
}
.item-action--switch input{
	border: 0px;
	clip: rect(0px, 0px, 0px, 0px);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0px;
	position: absolute;
	width: 1px;
}

.item-action--parameter {
	position: relative;
	display: grid;
	grid-auto-columns: minmax(calc(50% - 6px), 1fr);
	grid-auto-flow: column;
	gap: 4px;
	padding: 4px;
	background: #f6f6f6;
	border-radius: 100px;
	width: auto;
}

.item-action--parameter span{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 36px;
	padding: 4px 24px;
	color: #616161;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: -0.4px;
	text-transform: capitalize;
	white-space: nowrap;
	transition: color 0.175s ease 0s;
	cursor: pointer;
}

.item-action--parameter span:hover{
	color: #171717;
}

.focused {
	color: #0f6148 !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	border-radius: 100px !important;
	background: #ffffff;
	box-shadow: rgba(255, 255, 255, 0.16) 0px 0px 0px 0.5px !important;
}


.item-action--button button{
	min-width: 140px;
	margin: 4px 0px 4px 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	width: fit-content;
	border-radius: 100px;
	transition: box-shadow 0.1s ease-out 0s, border-color 0.1s ease-out 0s, background 0.1s ease-out 0s;
	outline: none;
	cursor: pointer;
	border: 1px solid transparent;
	background: #0f6148;
	color: #ffffff;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.item-action--button button:hover{
	background: #0c4b38;
}

.item-text p .inside-link {
	display: inline-flex !important;
}


.item-text-warning{
	align-items: center;
	background: #fae9bd;
	border-radius: 8px;
	color: #8a6300 !important;
	display: flex;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	letter-spacing: -0.3px;
	gap: 12px;
	padding: 12px 20px;
	margin-bottom: 12px !important;
}

.settings-device{
	display: flex;
	width: 100%;
	flex-direction: column;
	padding: 20px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
	transition: background 0.3s ease 0s, box-shadow 0.2s ease 0s;
	margin-bottom: 20px;
}

.settings-connect{
	display: flex;
	flex-flow: row;
	flex: initial;
	gap: 0px;
	justify-content: flex-start;
	align-items: center;
}

.settings-device .connect-welcome-img{
	background: #f4f4f4;
	width: 64px;
	height: 64px;
	margin: 8px 16px 8px 0px;
}

.settings-connect--content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.settings-connect--content .connect-welcome-text {
	font-size: 16px;
	text-align: left;
	line-height: 24px;
	font-weight: 600;
	margin: 0;
	letter-spacing: -0.4px;
}

.settings-coins--choose {
	width: 100%;
	display: flex;
	flex-flow: wrap;
	gap: 16px 12px;
}

.settings-coins--choose .choose-coin {
	display: flex;
	place-items: center flex-start;
	border: 1.5px solid #eeeeee;
	background: #ffffff;
	border-radius: 9999px;
	height: 47px;
	font-weight: 600;
	color: #1f1f1f;
	cursor: pointer;
	transition: all 0.2s ease-in-out 0s;
	overflow: hidden;
	padding-right: 14px;
}

.settings-coins--choose .choose-coin:hover {
	background: #f4f4f4;
	border:	1.5px solid #bdbdbd;
}

.settings-coins--choose .choose-coin img{
	display: flex;
	justify-items: flex-start;
	margin-right: 12px;
	margin-left: 6px;
	position: relative;
	transition: all 0.2s ease-in-out 0s;
}

.choose-wrapper{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.settings-coins--choose .choose-coin .choose-name{
	font-size: 16px;
	margin-top: 1px;
}

.settings-coins--choose .choose-coin .choose-text{
	font-size: 12px;
	line-height: 18px;
	font-weight: 500;
	letter-spacing: -0.1px;
	color: rgb(163, 163, 163);
	margin-right: 12px;
}

.overlay {
	display: flex;
	position: absolute;
	z-index: 40;
	inset: 0px;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(5px);
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	overflow: auto;
}

.modal {
	margin-top: auto;
	margin-bottom: auto;
	display: flex;
	position: relative;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s ease 0s;
	max-width: 95%;
	min-width: 305px;
	flex-direction: column;
	z-index: 41;
	border: 1px solid #eeeeee;
	background: #ffffff;
	box-shadow: rgba(77, 77, 77, 0.1) 0px 10px 80px 0px;
}

.modal-head {
	display: flex;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	word-break: break-word;
	padding: 24px 32px;
	border-bottom: 1px solid #eeeeee;
	color: #ffffff;
}

.modal-head h2{
	font-weight: 800;
	color: #222222;
	margin-bottom: 4px;
}

.modal-head span{
	font-size: 14px;
	color: black;
	font-weight: bold;
	margin-top: 15px;
}

.modal-subhead h2{
	margin: 10px 0 40px 0;
	color: #222222;
	font-weight: bold;
}
.modal-subhead span{
	display: flex;
	max-width: 460px;
	font-size: 15px;
  color: #222222;
	margin-bottom: 40px;
}

.connect-words form,
.connect-passphrase form{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 32px 32px;
}

.connect-words-buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px 14px;
	max-width: 400px;
	margin-bottom: 40px;
}

.connect-words-buttons button{
	font-size: 15px;
	border: 1px solid #eeeeee;
	border-radius: 4px;
	background: #ffffff;
	outline: none;
	cursor: pointer;
	padding: 8px 55px;
	margin: 7px 0 0 0;
	transition: 0.3s;
	color: #222222;
}

.connect-words-buttons button:hover {
	background: #dddddd;
}

.connect-words-inputs {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 14px;
	max-width: 500px;
	margin-bottom: 30px;
}

.connect-words-input{
	border: 1px solid #eeeeee;
	color: #565656;
	background: #ffffff;
	outline: none;
	font-size: 16px;
	line-height: 24px;
	height: 28px;
	width: 140px;
	padding: 10px;
	border-radius: 4px;
}

.connect-button-big{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 100px;
	transition: box-shadow 0.1s ease-out 0s, border-color 0.1s ease-out 0s, background 0.1s ease-out 0s;
	outline: none;
	cursor: pointer;
	border: 1px solid transparent;
	background: #0f6148;
	font-size: 18px;
	font-weight: 500;
	color: #ffffff;
	width: 100%;

}
.connect-button-big:hover {
	background: #0c4b38;
}

.active-button-word {
	background: #0f6148 !important;
	color: #fff !important;
}

.connect-passphrase-inputs{
	width: 100%;
}
.connect-passphrase-input {
	border-radius: 10px;
	border: 1px solid #eeeeee;
	color: #565656;
	background: #ffffff;
	outline: none;
	font-size: 16px;
	text-align: center;
	line-height: 24px;
	width: 100%;
	padding: 8px 16px;
	margin-bottom: 10px;
}

.connect-button-skip {
	background: none;
	border: none;
	outline: none;
	color: #565656;
	font-size: 16px;
	margin-top: 40px;
	cursor: pointer;
}

.connect-words-alert,
.connect-passphrase-alert{
	font-weight: 600;
	color: #e53333;
	margin-bottom: 20px;
}

.inactive {
	cursor: not-allowed !important;
	opacity: 0.8;
}
.inactive button{
	background: rgb(238, 238, 238);
	color: rgb(140, 140, 140);
}
.inactive button:hover{
	cursor: not-allowed !important;
	background: rgb(238, 238, 238);
	color: rgb(140, 140, 140);
}

.hide {
	display: none;
}