@import url(https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap);

* {
	margin: 0;
	padding: 0
}

body {
	background-color: #121314;
	overflow: hidden
}

div,
p,
span {
	color: #fafafa;
	font-family: Inter, sans-serif;
	font-weight: 400
}

.wrapper {
	display: flex;
	height: 100vh;
	width: 100%
}

.wrapper .menuBlock {
	align-items: center;
	background-color: #1b1c1e;
	display: flex;
	flex-direction: column;
	height: 100vh;
	min-height: 650px;
	width: 285px
}

.wrapper .menuBlock svg {
	fill: #ece9f3;
	cursor: pointer;
	margin-bottom: 30px;
	margin-top: 50px;
	width: 230px
}

.wrapper .menuBlock ul {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-top: 40px;
	width: 100%
}

.wrapper .menuBlock ul li {
	align-items: center;
	border-radius: 8px;
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	height: 50px;
	list-style: none;
	margin-top: 10px;
	padding-left: 12px;
	width: 260px
}

.wrapper .menuBlock ul li.active {
	background-color: #323335
}

.wrapper .menuBlock ul li.active p {
	color: #fafafa
}

.wrapper .menuBlock ul li.active svg {
	fill: #fe5400;
	stroke: #fe5400;
	height: 22px;
	width: 22px
}

.wrapper .menuBlock ul li svg {
	fill: #a3a4a4;
	stroke: #a3a4a4;
	height: 16px;
	margin: 0;
	width: 16px
}

.wrapper .menuBlock ul li p {
	color: #b1b1b1;
	font-size: 1rem;
	font-weight: 500;
	padding-left: 20px
}

.wrapper .menuBlock ul li:hover p {
	color: #fafafa
}

.wrapper .menuBlock ul li:hover svg {
	fill: #fe5400;
	stroke: #fe5400;
}

.wrapper .menuBlock ul span {
	font-size: .8rem;
	font-weight: 700;
	margin-bottom: 20px;
	padding-left: 20px;
	text-transform: uppercase;
	width: 100%;
	box-sizing: border-box;
}

.wrapper .contentBlock {
	background-color: #121314;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	height: 100vh;
	overflow-y: scroll;
	padding: 50px;
	position: relative;
	width: calc(100% - 285px)
}

.wrapper .contentBlock .infoHeader {
	display: flex;
	flex-direction: column;
	width: 100%
}

.wrapper .contentBlock .infoHeader h1 {
	color: #fafafa;
	font-size: 1.75rem
}

.wrapper .contentBlock .infoHeader p {
	color: #6f6f6f;
	font-size: 1rem;
	padding-top: 10px
}

.wrapper .contentBlock .mainContent {
	align-items: center;
	background-color: #1b1c1e;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	margin-top: 20px;
	width: 100%
}

.timeline {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-top: 50px;
	width: 70%
}

.timeline .element {
	align-items: center;
	display: flex;
	flex-direction: column
}

.timeline .element .content {
	align-self: stretch;
	display: flex;
	margin-bottom: 12px
}

.timeline .element .content .line-left,
.timeline .element .content .line-right {
	background-color: #393939;
	flex: 1 1;
	height: 1px;
	overflow-x: hidden;
	position: relative;
	top: 12px
}

.timeline .element .content .dotbox {
	align-items: center;
	background-color: #1b1c1e;
	border-radius: 8px;
	display: flex;
	height: 24px;
	justify-content: center;
	margin-left: 8px;
	margin-right: 8px;
	width: 24px
}

.timeline .element .content .dotbox svg {
	fill: #1b1c1e
}

.timeline .element .content .dot {
	background-color: #fe5400;
	border-radius: 6px;
	height: 6px;
	width: 6px
}

.timeline .element span {
	color: #b1b1b1;
	font-size: .75rem;
	font-weight: 500;
	white-space: normal
}

.timeline .line {
	background-color: #393939;
	flex: 1 1;
	height: 1px;
	overflow-x: hidden;
	position: relative;
	top: 12px
}

.timeline .element.active .content .line-left,
.timeline .element.active .content .line-right,
.timeline .line.active {
	background-color: #fe5400;
}

.timeline .element.active span {
	color: #fe5400;
}

.timeline .element.active .dotbox {
	background-color: #fe5400;
}

.timeline .element.active .dotbox .dot {
	background-color: #1b1c1e
}

.animationInfo {
	font-size: 1.25rem;
	font-weight: 500;
	margin-top: 15px;
	display: block;
	width: 100%;
}

.animationWrapper > div {
	align-items: center;
	align-self: center;
	display: flex;
	justify-content: center;
	padding-bottom: 20px;
	width: 40%;
	margin: 75px auto 0;
}
.animation1,.animation2 {
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}
.animationWrapper.blue {
	width: 350px
}

.loaderSpin {
	margin-top: 20px
}

.loaderSpin svg {
	stroke: #fe5400;
	-webkit-animation: cilQsd 1s linear 0s infinite normal none running;
	animation: cilQsd 1s linear 0s infinite normal none running;
	height: 38px;
	width: 38px
}

@-webkit-keyframes cilQsd {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

@keyframes cilQsd {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

.errorBlock {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-top: 100px;
	width: 40%
}

.errorBlock svg {
	fill: #f05154
}

.errorBlock span {
	color: #f05154;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 75px;
	margin-top: 30px;
	text-align: center
}

.stageContent {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-bottom: 100px;
	margin-top: 50px;
	width: 100%
}

.stageContent h1 {
	font-size: 1.75rem;
	font-weight: 400
}

.stageContent .selectWrapper {
	display: flex;
	flex-direction: row;
	margin-top: 75px
}

.stageContent .selectWrapper .device:first-child {
	margin-left: 0
}

.stageContent .selectWrapper .device {
	align-items: center;
	background-color: rgba(47, 47, 47, .37);
	border: none;
	border-radius: 4px;
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-left: 20px;
	min-width: 160px;
	outline: none;
	overflow: hidden;
	padding: 20px 20px 40px;
	position: relative;
	transition: background .2s ease-out, -webkit-transform .1s ease-out;
	transition: transform .1s ease-out, background .2s ease-out;
	transition: transform .1s ease-out, background .2s ease-out, -webkit-transform .1s ease-out;
	width: 100%
}

.stageContent .selectWrapper .device:hover {
	background-color: rgba(66, 66, 66, .37)
}

.stageContent .selectWrapper .device:hover .illustration {
	-webkit-transform: scale(1.05);
	transform: scale(1.05)
}

.stageContent .selectWrapper .device .illustration {
	background-position: 50%;
	background-size: cover;
	height: 180px;
	transition: -webkit-transform .1s ease-out;
	transition: transform .1s ease-out;
	transition: transform .1s ease-out, -webkit-transform .1s ease-out;
	will-change: transform
}

.stageContent .selectWrapper p {
	font-size: 20px;
	margin-bottom: 25px
}

.errorButtton {
	align-items: center;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	font-size: 1rem;
	font-weight: 600;
	height: 60px;
	margin-top: 10px;
	width: 90%
}

.errorButtton svg {
	height: 24px;
	padding-left: 15px;
	padding-right: 25px;
	width: 24px
}

.errorButtton.purple {
	background-color: #fe5400;
	color: #fafafa;
	transition: background-color .2s ease-out
}

.errorButtton.purple:hover {
	background-color: #fe5400;
}

.errorButtton.purple svg {
	fill: #fafafa
}

.errorButtton.grey {
	background-color: hsla(0, 0%, 87%, .19);
	color: #fafafa;
	transition: background-color .2s ease-out
}

.errorButtton.grey:hover {
	background-color: hsla(0, 0%, 87%, .15);
}

.errorButtton.grey svg {
	fill: #fafafa
}

.seedTextArea {
	background-clip: padding-box;
	background-color: #1b1c1e;
	border: 1px solid #323335;
	border-radius: .25rem;
	box-sizing: border-box;
	color: #fafafa;
	font-size: 1rem;
	font-weight: 400;
	height: calc(3em + 2rem + 4px);
	line-height: 1.5;
	margin-top: 75px;
	outline: 0;
	overflow: auto;
	padding: .375rem .75rem;
	resize: vertical;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	width: 50%
}

.seedTextArea:focus {
	background-color: rgba(27, 28, 30, .8);
	border-color: #bbb0fd5c;
	box-shadow: 0 0 0 .2rem rgba(187, 176, 253, .11);
	color: #fafafa;
	outline: 0
}

.seedTextArea.error {
	border-color: #f05154
}

.sendButton {
	align-items: center;
	background-color: #fe5400;
	border-radius: 8px;
	color: #fafafa;
	cursor: pointer;
	display: flex;
	font-size: 1rem;
	font-weight: 600;
	height: 60px;
	justify-content: center;
	margin-top: 20px;
	transition: background-color, .2s ease-out;
	width: 100%;
}

.sendButton:hover {
	background-color: rgb(254 84 0 / 70%);
}

.importRecovery {
	margin-top: 40px;
	width: 300px
}

.seedError {
	color: #f05154;
	font-size: .8rem;
	font-weight: 400;
	margin-bottom: 10px;
	margin-top: 10px;
	opacity: 0;
	text-align: center;
	transition: opacity .3s ease-out;
	width: 50%
}

.seedError.show {
	opacity: 1
}

@media only screen and (max-height:800px) {
	.wrapper .menuBlock svg {
		margin-bottom: 0;
		margin-top: 20px
	}

	.stageContent {
		margin-top: 20px
	}

	.stageContent .selectWrapper {
		margin-top: 30px
	}

	.stageContent .selectWrapper .device .illustration {
		height: 100px
	}

	.errorBlock span {
		margin-bottom: 15px;
		margin-top: 15px
	}

	.errorBlock {
		margin-top: 45px
	}

	.importRecovery {
		margin-top: 15px;
		width: 140px
	}

	.seedTextArea {
		margin-top: 30px
	}
}