@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

:root {
	--bg: #1a202c;
	--theme: #70eeff;
	--theme-hover: #00e1ff;
	--theme-active: #00bdd7;
	--muted: #282b34;
	--muted-hover: #3b3e47;
	--muted-active: #242730;
	--card-bg: #283040;
	--content: #171923;
	--nav: #efefef;
	--text: #efefef;
	--text-grayed: #cbd5e0;
	--shadow: #000000 0px 4px 6px;
	--shadow-hover: #000000 0px 15px 30px;
	--shadow-active: #000000 0px 0px 0px;
}

* {
	font-family: 'Nunito', sans-serif;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
}

body {
	background-color: var(--bg);
}

nav {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 75px;
	background-color: var(--bg);
	z-index: 1000;
	box-shadow: 0 0 26px 0 #000000;
}

.nav-logo-container-responsive {
	display: block;
}

.nav-logo-container-mobile {
	display: none;
}

.nav-logo {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translate(0, -50%);
	width: 50px;
	height: 50px;
}

.nav-links-container, .nav-links-container * {
	z-index: 10;
}

.nav-links-container {
	position: absolute;
	left: 80px;
	top: 50%;
	transform: translate(0, -50%);
	width: max-content;
}

.nav-links-container > .nav-link {
	color: var(--nav);
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1em;
	margin-left: 20px;
	cursor: pointer;
}

.nav-links-container > .nav-link-active {
	position: relative;
}

.nav-links-container > .nav-link::after {
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.nav-links-container > .nav-link-active::after {
	content: " ";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 5px);
	width: calc(100% - 10px);
	height: 4px;
	opacity: 1;
	background-color: var(--nav);
	border-radius: 5px;
}

.nav-link-mobile {
	display: none;
}

.btn {
	background-color: var(--theme);
	box-shadow: var(--shadow);
	color: var(--content);
	width: fit-content;
	height: fit-content;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 17px;
	padding-right: 17px;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	font-size: 1.1rem;
	cursor: pointer;
	outline: 0;
	text-decoration: none;
	transition: background-color 0.2s ease-in-out,
				box-shadow 0.2s ease-in-out,
				color 0.2s ease-in-out,
				border 0.2s ease-in-out;
}

.btn:hover {
	background-color: var(--theme-hover);
	box-shadow: var(--shadow-hover);
}

.btn:active {
	background-color: var(--theme-active);
	box-shadow: var(--shadow-active);
}

.btn:focus {
	outline: 0;
}

.btn > i {
	margin-right: 5px;
}

.top-right-button {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
}

.center-btn {
	margin-top: 55px;
	margin-left: 50%;
	transform: translate(-50%, 0);
}

.large-btn {
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 30px;
	padding-right: 30px;
}

main {
	margin-top: 192px;
}

main.main-lower {
	margin-top: 125px;
}

.main-home {
	animation: main-fade 2s;
}

.create-container, .edit-container {
	width: calc(100% - 50px);
	max-width: 400px;
	margin-left: 50%;
	margin-top: 10px;
	transform: translate(-50%, 0);
}

.main-about {
	animation: main-fade 2s;
}

.lst-list {
	width: 400px;
	max-width: calc(100% - 50px);
	margin-top: 20px;
	margin-left: 50%;
	transform: translate(-50%, 0);
}

.lst-container {
	border: 3px solid var(--theme);
	border-radius: 10px;
	margin-bottom: 10px;
	padding: 10px;
	padding-bottom: 20px;
	box-sizing: border-box;
}

.lst-name {
	color: var(--text);
	font-size: 1.4rem;
	margin: 0;
	text-align: center;
}

.lst-name > span {
	display: inline-block;
	vertical-align: middle;
}

.verified-badge {
	font-size: 0.8rem;
	background-color: var(--theme);
	border-radius: 50%;
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	position: relative;
}

.verified-badge > i {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	color: var(--bg);
}

.lst-image {
	width: 75px;
	height: 75px;
	background-size: cover;
    background-position: center center;
	border-radius: 50%;
	margin-top: 10px;
	margin-bottom: 20px;
	margin-left: 50%;
	transform: translate(-50%, 0);
}

.lst-description {
	color: var(--text);
	font-size: 0.95rem;
	margin: 0;
	margin-bottom: 10px;
}

.lst-stats {
	color: var(--text);
	font-size: 0.6rem;
	margin: 0;
}

.lst-button {
	text-align: right;
	margin-top: 10px;
}

.lst-button-container {
	margin-top: 5px;
	width: max-content;
	margin-left: 50%;
	transform: translate(-50%, 0);
}

.lst-button-option {
	display: inline-block;
	vertical-align: middle;
	margin-right: 3px;
	margin-left: 3px;
}

.list-create-button {
	text-align: right;
	margin-bottom: 20px;
}

@keyframes main-fade {
	0% {
		opacity: 0;
		transform: translate(0, 75px);
	}
	20% {
		opacity: 0;
		transform: translate(0, 75px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0px);
	}
}

/*.main-about {
	animation: main-about-fade 4s;
}

@keyframes main-about-fade {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}*/

main, main * {
	z-index: 5;
}

.title {
	color: var(--text);
	text-align: center;
	font-size: 4.5rem;
	margin: 0;
	line-height: 1.1em;
	width: calc(100% - 100px);
	max-width: 1000px;
	margin-left: 50%;
	transform: translate(-50%, 0);
	/*animation: title-fade 2s;*/
}

.input-title {
	color: var(--text);
	text-align: left;
	font-size: 1rem;
	margin: 0;
	margin-top: 15px;
	margin-bottom: 2px;
}

.create-input, .create-select {
	background-color: var(--bg);
	border: 3px solid var(--theme);
	border-radius: 10px;
	color: var(--text);
	padding: 5px;
	font-size: 1rem;
	width: 100%;
	box-sizing: border-box;
}

.create-input:focus, .create-select:focus {
	outline: 0;
}

.create-input::-webkit-outer-spin-button, .create-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.description {
	color: var(--text);
	width: 600px;
	max-width: calc(100% - 40px);
	margin-left: 50%;
	transform: translate(-50%, 0);
	font-size: 1rem;
}

.small-description {
	color: var(--text);
	font-size: 0.8rem;
	margin: 0;
	margin-top: 3px;
}

.small-description a {
	color: var(--text);
}

.description > * {
	color: var(--text);
}

.create-btn, .stake-btn, .save-btn, .add-btn {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 50%;
	transform: translate(-50%, 0);
}

.queue-message {
	color: var(--text);
	font-size: 1.1rem;
	text-align: center;
}

@keyframes title-fade {
	0% {
		opacity: 0;
		transform: translate(-50%, 75);
	}
	20% {
		opacity: 0;
		transform: translate(-50%, 75px);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, 0px);
	}
}

.features {
	margin-top: 45px;
	text-align: center;
}

.features > .feature {
	display: inline-block;
	font-size: 1.3rem;
	color: var(--text-grayed);
	margin: 10px;
	font-weight: 600;
}

.features > .feature > i {
	color: var(--theme-active);
}

.solana-logos, .solana-logos * {
	z-index: -1;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.solana-logos > .solana-logo {
	position: fixed;
	width: 60px;
	animation: logo-fade 4s;
	opacity: 0.35;
}

.main-about {
	margin-top: 170px;
	padding-top: 130px;
}

.how-it-works {
	color: var(--text);
	text-align: center;
	font-size: 4.5rem;
	margin: 0;
	margin-top: 200px;
	line-height: 1.1em;
	width: calc(100% - 100px);
	max-width: 1000px;
	margin-left: 50%;
	transform: translate(-50%, 0);
}

.cards {
	width: calc(100% - 40px);
	margin-left: 50%;
	transform: translate(-50%, 0);
	overflow: hidden;
}

.cards > .card {
	display: inline-block;
	margin: 20px;
	width: calc(33% - 41px);
	border-radius: 10px;
	background-color: var(--card-bg);
	padding: 20px;
	box-sizing: border-box;
}

.cards > .card > .icon {
	font-size: 3.5rem;
	color: var(--theme-active);
}

.cards > .card > .number {
	font-size: 2rem;
	margin: 0;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	background-color: var(--theme-active);
	color: var(--card-bg);
	position: relative;
}

.cards > .card > .number > span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.cards > .card > h3 {
	font-size: 1.4rem;
	color: var(--text);
	margin: 0;
	margin-top: 10px;
}

.cards > .card > p {
	font-size: 1.2rem;
	color: var(--text);
	margin: 0;
	margin-top: 10px;
}

.cards > .card > p * {
	color: var(--text);
}

.disclaimer {
	color: var(--text);
	width: 600px;
	max-width: calc(100% - 40px);
	margin-left: 50%;
	transform: translate(-50%, 0);
	font-size: 0.6rem;
}

.disclaimer > * {
	color: var(--text);
}

.combined-container {
	margin-left: 50%;
    transform: translate(-50%, 0);
    width: 500px;
    max-width: calc(100% - 40px);
    margin-top: 25px;
}

.priority-fee-container {
	width: max-content;
    padding: 10px;
    box-shadow: 0 0 26px 0 #000000;
    border-radius: 15px;
    margin-left: 100%;
    transform: translate(-100%, 0);
    cursor: pointer;
}

.priority-fee {
	color: var(--text);
	font-size: 0.9rem;
	text-align: center;
    cursor: pointer;
}

.staking-container {
	margin-top: 15px;
    border-radius: 20px;
    box-shadow: 0 0 26px 0 #000000;
    padding: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.stake-input-container {
	display: inline-block;
	width: 100%;
	height: 60px;
	background-color: var(--content);
	border-radius: 10px;
	position: relative;
}

.input-currency {
	display: inline-block;
	margin-top: 10px;
	margin-left: 10px;
	padding: 5px;
	width: fit-content;
	height: calc(100% - 20px);
	background-color: var(--muted);
	border-radius: 10px;
	box-sizing: border-box;
	display: inline-block;
}

.input-currency-container {
	width: 100%;
	height: 100%;
}

.input-currency-container > .input-currency-image {
	height: 100%;
	aspect-ratio: 1;
	background-size: cover;
    background-position: center center;
	display: inline-block;
	vertical-align: middle;
	border-radius: 50%;
}

.input-currency-container > p {
	color: var(--text);
	margin-left: 5px;
	margin-right: 5px;
	display: inline-block;
	vertical-align: middle;
	margin-top: 0;
	margin-bottom: 0;
}

.stake-input {
	display: inline-block;
	vertical-align: middle;
	/*margin-left: 20px;
	margin-right: 20px;*/
/*	width: calc(100% - 240px);*/
	width: calc(100% - 300px);
	min-width: 100px;
	font-size: 1.1rem;
	color: var(--text);
	text-align: right;
	background: none;
	border: none;
	outline: none !important;
	position: absolute;
	top: 50%;
	right: 95px;
	transform: translate(0, -50%);
	margin-right: 0;
}

.stake-input {
	-moz-appearance: textfield;
}

.max-stake {
	height: calc(100% - 20px);
	background-color: var(--muted);
	border-radius: 10px;
	width: max-content;
	padding: 5px;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
}

.max-stake > p {
	color: var(--text);
	margin-left: 10px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: sub;
	margin-top: 0;
	margin-bottom: 0;
}

.small-info {
	color: var(--text);
	font-size: 0.9rem;
}

.small-info a {
	color: var(--text);
	font-size: 0.9rem;
}

.info {
	text-align: center;
	color: var(--text);
	font-size: 1.3rem;
}

.info a {
	color: var(--text);
	font-size: 1.3rem;
}

.defi-pro-tip {
	max-width: 500px;
	margin-left: 50%;
	transform: translate(-50%, 0);
	width: calc(100% - 40px);
}

.modal-overlay {
	z-index: 10;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	transition: background-color 0.7s ease-in-out;
}

.modal-overlay-invisible {
	background-color: rgba(0, 0, 0, 0) !important;
}

.connect-modal {
	position: fixed;
	left: 50%;
    top: calc(50% + 35px);
	transform: translate(-50%, -50%);
	z-index: 15;
	width: 400px;
	max-width: calc(100% - 60px);
	padding: 20px;
	padding-bottom: 10px;
	box-sizing: border-box;
	background-color: var(--card-bg);
	border-radius: 20px;
	box-shadow: 0 0 26px 0 #000000;
}

.priority-fee-modal {
	position: fixed;
	left: 50%;
    top: calc(50% + 35px);
	transform: translate(-50%, -50%);
	z-index: 15;
	width: 400px;
	max-width: calc(100% - 60px);
	padding: 20px;
	padding-bottom: 10px;
	box-sizing: border-box;
	background-color: var(--card-bg);
	border-radius: 20px;
	box-shadow: 0 0 26px 0 #000000;
}

div > .priority-fee-row:nth-child(odd) {
	margin-right: 6px;
}

.priority-fee-row {
	width: calc(50% - 6px);
	height: 40px;
	padding: 7px;
	box-sizing: border-box;
	background-color: var(--bg);
	margin-bottom: 10px;
	border-radius: 10px;
	cursor: pointer;
	display: inline-block;
}

.priority-fee-row > p {
	display: inline-block;
	vertical-align: middle;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 10px;
	color: var(--text);
}

.priority-fee-row:active {
	background-color: var(--content);
}

.priority-fee-row-active, .priority-fee-row-active:active {
	background-color: var(--theme);
}

.priority-fee-row-active > p {
	color: var(--bg);
	font-weight: bold;
}

.modal-window {
	position: fixed;
	left: 50%;
	top: 0%;
	transform: translate(-50%, -100%);
	z-index: 15;
	width: 675px;
	max-width: calc(100% - 40px);
	padding: 40px;
	box-sizing: border-box;
	background-color: var(--card-bg);
	border-radius: 20px;
	box-shadow: 0 0 26px 0 #000000;
	transition: top 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.modal-window-visible {
	top: 50%;
	transform: translate(-50%, -50%);
}

.modal-window > .modal-title {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	color: var(--text);
	margin-bottom: 20px;
}

.modal-window > .modal-description {
	font-size: 1.2rem;
	color: var(--text);
	margin-bottom: 40px;
}

.modal-window > .modal-description a {
	font-size: 1.2rem;
	color: var(--text);
}

.modal-window > .modal-buttons {
	text-align: center;
}

.modal-buttons > .modal-btn {
	margin: 5px;
}

.modal-buttons > .modal-btn-secondary {
	color: var(--text);
	background-color: var(--muted);
}

.modal-buttons > .modal-btn-secondary:hover {
	background-color: var(--muted-hover);
}

.modal-buttons > .modal-btn-secondary:active {
	background-color: var(--muted-active);
}

div > .wallet-row:nth-child(odd) {
	margin-right: 6px;
}

.wallet-row {
	width: calc(50% - 6px);
	height: 40px;
	padding: 7px;
	box-sizing: border-box;
	background-color: var(--bg);
	margin-bottom: 10px;
	border-radius: 10px;
	cursor: pointer;
	display: inline-block;
}

.wallet-row > img {
	height: 100%;
	width: auto;
	display: inline-block;
	vertical-align: middle;
}

.wallet-row > p {
	display: inline-block;
	vertical-align: middle;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 10px;
	color: var(--text);
}

.wallet-row:active {
	background-color: var(--content);
}

.progress-bar {
	width: 500px;
	max-width: calc(100% - 40px);
	height: 50px;
	margin-top: 30px;
	margin-left: 50%;
	transform: translate(-50%, 0);
	border-radius: 20px;
	box-shadow: 0 0 26px 0 #000000;
	border: var(--theme-active);
	box-sizing: border-box;
}

.progress-bar-description {
	color: var(--text);
	margin-left: 50%;
	transform: translate(-50%, 0);
	text-align: center;
	font-size: 1rem;
	margin-bottom: 0;
	margin-top: 10px;
}

.stats-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	min-height: 120px;
	width: calc(100% - 100px);
	margin-left: 50px;
}

.stat {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 200px;
	height: 100%;
	display: inline-block;
	vertical-align: middle;
	margin: 15px;
	border-radius: 10px;
	padding: 20px;
	box-sizing: border-box;
	background-color: var(--card-bg);
	box-shadow: 0 0 26px 0 #000000;
}

.stat > .stat-title {
	color: var(--text-grayed);
	font-size: 0.95rem;
	font-weight: 300;
}

.stat > .stat-body {
	color: var(--theme);
	font-size: 1.1rem;
	font-weight: bold;
}

.stat > .stat-footer {
	color: var(--text-grayed);
	font-size: 0.85rem;
	font-weight: 300;
}

.stat > .stat-footer a {
	color: var(--text-grayed);
}

.stats-container-mobile {
	display: none;
	width: calc(100% - 100px);
	height: 100%;
	vertical-align: middle;
	border-radius: 10px;
	margin-top: 15px;
	margin-bottom: 50px;
	margin-left: 50px;
	margin-right: 50px;
	padding: 20px;
	box-sizing: border-box;
	background-color: var(--card-bg);
	box-shadow: 0 0 26px 0 #000000;
}

.stat-mobile {
	margin-top: 5px;
	margin-bottom: 5px;
}

.stat-mobile > .stat-title {
	color: var(--text-grayed);
	font-size: 0.8rem;
	font-weight: 300;
	display: inline-block;
}

.stat-mobile > .stat-body {
	color: var(--theme);
	font-size: 0.8rem;
	font-weight: bold;
	display: inline-block;
	float: right;
}

.reward-amount-container {
	color: var(--text);
	font-size: 0.9rem;
	text-align: center;
}

.reward-amount {
	color: var(--text);
	font-size: 1.65rem;
	text-align: center;
	font-weight: bold;
	margin: 0;
}

.stake-toggle-container {
	width: max-content;
	margin-top: 20px;
	margin-left: 50%;
	transform: translate(-50%, 0);
	border-radius: 25px;
	background-color: var(--card-bg);
	box-shadow: 0 0 26px 0 #000000;
	color: var(--text);
}

.stake-toggle {
	display: inline-block;
	vertical-align: middle;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 25px;
	padding-right: 25px;
	border-radius: 25px;
	cursor: pointer;
	font-weight: bold;
	user-select: none;
}

.stake-toggle-active {
	background-color: var(--theme);
	color: var(--content);
}

@keyframes logo-fade {
	0% {
		opacity: 0;
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: 0.35;
	}
}

.defi-integrations-container {
	margin-top: 50px;
	margin-left: 50%;
	transform: translate(-50%, 0);
	width: max-content;
	max-width: 100%;
	text-align: center;
}

.defi-integration {
	width: 450px;
	max-width: calc(100% - 100px);
	height: 475px;
	max-height: calc(100vw - 50px);
	border: 5px solid var(--theme);
	border-radius: 20px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 20px;
	/*padding: 10px;*/
	position: relative;
	box-shadow: 0 0 26px 0 #000000;
	transition: transform 0.2s ease-in-out;
}

.defi-integration:hover {
	transform: scale(1.02);
}

.defi-integration > .defi-platform {
	color: var(--text);
	font-size: 1.8rem;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 0px;
}

.defi-integration > .defi-yield {
	color: var(--text);
	font-size: 1.2rem;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0px;
}

.defi-integration > .defi-logo {
	width: calc(100% - 200px);
	height: auto;
	/*margin-left: 100px;*/
	margin-top: 25px;
	margin-bottom: 25px;
}

.defi-options-container {
	position: absolute;
	bottom: 10px;
	/*margin-left: 10px;*/
	/*margin-right: 10px;*/
	left: 50%;
	transform: translate(-50%, 0);
	width: max-content;
	max-width: calc(100% - 20px);
}

.defi-option {
	display: inline-block;
	margin-left: 2px;
	margin-right: 2px;
	margin-top: 4px;
	margin-bottom: 4px;
	text-decoration: none;
}

.defi-option-secondary {
	background-color: var(--bg);
	color: var(--text);
	border: 3px solid var(--theme);
	border-radius: 8px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 14px;
	padding-right: 14px;
}

.defi-option-secondary:hover {
	background-color: var(--theme-hover);
	border: 3px solid var(--theme-hover);
	color: var(--content);
	box-shadow: var(--shadow-hover);
}

.defi-option-secondary:active {
	background-color: var(--theme-active);
	border: 3px solid var(--theme-active);
	color: var(--content);
	box-shadow: var(--shadow-active);
}

/*.defi-option-secondary {
	color: var(--text);
	background-color: var(--muted);
}

.defi-option-secondary:hover {
	background-color: var(--muted-hover);
}

.defi-option-secondary:active {
	background-color: var(--muted-active);
}*/

.search-input {
	width: calc(100% - 40px);
	max-width: calc(100% - 110px);
	margin-left: 50%;
	transform: translate(-50%, 0px);
	border: 5px solid var(--theme);
	border-radius: 10px;
	box-shadow: 0 0 26px 0 #000000;
	background: var(--bg);
	padding: 5px;
	font-size: 1.1rem;
	color: var(--text);
	margin-top: 30px;
}

.search-input:focus {
	outline: 0;
}

.validators-container {
	margin-top: 20px;
	margin-left: 50%;
	transform: translate(-50%, 0);
	width: max-content;
	max-width: 100%;
	text-align: center;
	/*padding-top: 20px;
	overflow-x: hidden;*/
}

.validator {
	width: 375px;
	max-width: calc(100% - 100px);
	height: 365px;
	max-height: calc(100vw - 100px);
	border: 5px solid var(--theme);
	border-radius: 20px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 20px;
	/*padding: 10px;*/
	position: relative;
	box-shadow: 0 0 26px 0 #000000;
	transition: transform 0.2s ease-in-out;
}

.validator:hover {
	transform: scale(1.02);
}

.validator > .validator-name {
	color: var(--text);
	font-size: 1.3rem;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 0px;
	word-wrap: break-word;
}

.validator > .validator-name * {
	color: var(--text);
}

.validator > .validator-logo {
	width: calc(100% - 200px);
	height: auto;
	/*margin-left: 100px;*/
	margin-top: 25px;
	margin-bottom: 25px;
}

.validator-options-container {
	position: absolute;
	bottom: 10px;
	/*margin-left: 10px;*/
	/*margin-right: 10px;*/
	left: 50%;
	transform: translate(-50%, 0);
	width: max-content;
	max-width: calc(100% - 20px);
}

.validator-option {
	display: inline-block;
	margin-left: 2px;
	margin-right: 2px;
	margin-top: 4px;
	margin-bottom: 4px;
	text-decoration: none;
}

.validator-option-secondary {
	background-color: var(--bg);
	color: var(--text);
	border: 3px solid var(--theme);
	border-radius: 8px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 14px;
	padding-right: 14px;
}

.validator-option-secondary:hover {
	background-color: var(--theme-hover);
	border: 3px solid var(--theme-hover);
	color: var(--content);
	box-shadow: var(--shadow-hover);
}

.validator-option-secodary:active {
	background-color: var(--theme-active);
	border: 3px solid var(--theme-active);
	color: var(--content);
	box-shadow: var(--shadow-active);
}

@media screen and (max-width: 1100px) {
	.cards > .card {
		width: 100%;
		max-width: 500px;
		margin-left: 50%;
		transform: translate(-50%, 0);
	}
}

@media screen and (max-width: 1025px) {
	.nav-links-container > .nav-link {
		font-size: 1rem;
	}

	.nav-links-container > .nav-link-active::after {
		transform: translate(-50%, 4px);
		height: 3px;
	}
	.title {
		font-size: 4rem;
	}
	.how-it-works {
		font-size: 4rem;
		margin-top: 175px;
	}
}

@media screen and (max-width: 950px) {
	.nav-links-container > .nav-link {
		font-size: 0.9rem;
	}

	.nav-links-container > .nav-link-active::after {
		transform: translate(-50%, 4px);
		height: 3px;
	}
	.title {
		font-size: 3.5rem;
	}
	.how-it-works {
		font-size: 3.5rem;
		margin-top: 150px;
	}
}

@media screen and (max-width: 900px) {
	.nav-links-container > .nav-link {
		font-size: 0.8rem;
	}

	.nav-links-container > .nav-link-active::after {
		transform: translate(-50%, 3px);
		height: 3px;
	}
	.title {
		font-size: 3.5rem;
	}
	.how-it-works {
		font-size: 3.5rem;
		margin-top: 150px;
	}
}

@media screen and (max-width: 750px) {
	.title {
		font-size: 3rem;
	}
	.how-it-works {
		font-size: 3rem;
		margin-top: 125px;
	}
}

@media screen and (max-width: 750px) {
	.nav-links-container-responsive {
		position: fixed;
		left: 0;
		top: 74px;
		height: calc(100% - 74px);
		background-color: var(--bg);
		box-shadow: #000000 5px 15px 15px;
		transform: translate(calc(-100% - 20px), 0);
		transition: transform 0.2s ease-in-out;
	}
	.nav-links-container-active {
		transform: translate(0, 0);
	}
	.nav-links-container-responsive > .nav-link {
		display: block;
		margin: 0;
		padding: 20px;
		font-size: 1.1rem;
		width: 200px;
		max-width: 100%;
	}
	.nav-links-container > .nav-link-active {
		color: var(--theme);
	}
	.nav-links-container > .nav-link-active::after {
		content: "";
		display: none;
	}
	.nav-logo-container-responsive {
		display: none;
	}
	.nav-logo-container-mobile {
		display: block;
	}
	.nav-link-mobile {
		display: block;
	}
	.stake-input {
/*		width: calc(100% - 225px);*/
		margin-left: 5px;
		margin-right: 5px;
	}
	.modal-window {
		padding: 30px;
	}
	.modal-window > .modal-title {
		font-size: 1.5rem;
		font-weight: bold;
		margin-bottom: 10px;
	}
	.modal-window > .modal-description {
		font-size: 0.85rem;
		margin-bottom: 15px;
	}

	.modal-window > .modal-description a {
		font-size: 0.85rem;
	}
}

@media screen and (max-width: 575px) {
	.stats-container {
		display: none;
	}
	.stats-container-mobile {
		display: block;
	}
	.stake-toggle {
		display: block;
	}
}

@media screen and (max-width: 500px) {
	.title {
		font-size: 2.5rem;
	}
	.how-it-works {
		font-size: 2.5rem;
		margin-top: 100px;
	}
	.wallet-row > p {
		font-size: 0.75rem;
		margin-left: 5px;
	}
}

@media screen and (max-width: 450px) {
	.nav-logo-home {
		display: none;
	}
	.nav-links-container {
		left: 0px;
	}
	.wallet-row > p {
		font-size: 0.7rem;
		margin-left: 5px;
	}
}

@media screen and (max-width: 375px) {
	.wallet-row > p {
		font-size: 0.6rem;
		margin-left: 3px;
	}
}

@media screen and (max-width: 350px) {
	.wallet-row > p {
		font-size: 0.5rem;
		margin-left: 2px;
	}
}

/*@media screen and (max-width: 850px) {
	.nav-links-container {
		display: none;
	}

	.nav-links-container > .nav-link-active::after {
		display: none;
	}
}*/