  .modal-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.7);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.35s ease, visibility 0.35s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
  }

  .modal-content {
	font-family: 'Chakra Petch', sans-serif;
	border: 1px solid #7A3BFFAD;
	background: #0a0618;
	color: #ffffff;
	min-width: 400px;
	max-width: 420px;
	padding: 15px 25px;
	border-radius: 14px;
	-webkit-box-shadow: 0 8px 24px rgba(0,0,0,0.2);
	box-shadow: 0 8px 24px rgba(0,0,0,0.2);
	transform: scale(0.7);
	opacity: 0;
	transition:
	  transform 0.35s cubic-bezier(0.4,0,0.2,1),
	  opacity 0.35s cubic-bezier(0.4,0,0.2,1);
	text-align: center;
  }

  .modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
  }

  .modal-title {
	font-weight: 700;
	color: #ffffff;
  }

  .modal-body {
	margin-top: 10px;
  }

  .modal-background.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
  }

  .modal-background.active .modal-content {
	transform: scale(1);
	opacity: 1;
  }

  .modal-close svg {
	width: 24px;
	height: 24px;
	color: #ffffff;
	cursor: pointer;
  }

  .search-token {
	width: 100%;
	padding: 10px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #D9D9D908;
	color: #ffffff;
	border-radius: 10px;
	gap: 10px;
  }

  .search-token svg {
	width: 20px; height: 20px; color: #ffffff;
  }

  .search-token input {
  	flex: 2;
  }

  .search-token .network-select {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
  }

  .search-token .reset-input {
  	color: rgb(0, 0, 0);
  	cursor: pointer;
  	background: #FFFFFFB5;
  	border-radius: 50%;
  	padding: 3px;
  }

  .list-tokens {
  	margin-top: 10px;
  	height: 100%;
	max-height: 450px;
	min-height: 450px;
  	overflow-y: auto;
  }

  .token-item {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	text-align: left;
  	gap: 10px;
  	padding: 5px;
  	border-radius: 5px;
  }

  .token-item:hover {
  	cursor: pointer;
  	background: #D9D9D908;
  }

  .token-item .icon {
  	width: 35px;
  	height: 35px;
  	background: #7A3BFF3B;
  	border-radius: 50%;
  	padding: 3px;
  	text-align: center;
  }

  .token-item .icon img {
  	height: 29px;
  }

  .token-item .info {
  	flex: 2;
  	font-weight: 600;
  }

  .token-item .info .ticker {
  	text-transform: uppercase;
  }

  .token-item .info .name {
  	color: #FFFFFF70;
  	font-size: 12.5px;
  	max-width: 200px;
  }

  .token-item .network {
  	text-transform: uppercase;
  	background: #7A3BFF78;
  	color: #ffffff;
  	font-size: 12px;
  	font-weight: 600;
  	border-radius: 3px;
  	padding: 1px 5px;
  }


@media(max-width: 450px) {
    .modal-content {
        min-width: 95%;
        max-width: 100%;
    }
}

.cookie-modal {
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 36px;
	border: 1px solid #7A3BFFAD;
	max-width: 485px;
	border-radius: 30px;
	background: #0a0618;
	transition: opacity 0.5s;
}
.cookie-modal .title {
	font-size: 20px;
	font-weight: 700;
	width: max-content;
}
.cookie-modal .body {
	margin-top: 17px;
}
.cookie-modal .buttons {
	margin-top: 17px;
	float: right;
}
.cookie-modal .buttons a {
	border: 1px solid #7A3BFFAD;
	padding: 8px 25px;
	border-radius: 15px;
	color: #fff;
	font-size: 15px;
	font-family: "Poppins";
		font-weight: 500;
}

.gradient-blue {
	background: linear-gradient(to right, #33176F, #7A3BFF, #33176F);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gradient-gray {
	background: linear-gradient(to right, #999999, #D9D9D9, #999999);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media(max-width: 450px) {
	.cookie-modal {
		max-width: 95%;
	}
}

@media(max-width: 535px) {
	.cookie-modal {
		right: 10px;
		width: 100%;
		padding: 20px;
		max-width: 95%;
	}

	.cookie-modal .title {
		font-size: 16px;
	}
	.cookie-modal .body {
		margin-top: 12px;
	}
	.cookie-modal .buttons {
		margin-top: 12px;
	}
	.cookie-modal .buttons a {
		padding: 5px 20px;
		border-radius: 12px;
		font-size: 13px;
	}
}