* {
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
	margin: 0;
	padding: 0;
}

body {
	background-color: #121212;
	padding: 24px;
	color: #ffffff;
}

h2 {
	/*
	font-size: 20px;
	color: #d7d8df;
	*/
	display: none;
}

.header-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    min-width: 260px;
    padding: 30px 0 60px;
	color: #a2a6b4;
}

.container {
	display: flex;
	align-items: center;
	flex-direction: column;
}

footer {
	margin-top: 50px;
}

footer a {
	color: #a2a6b4;
}

.container p {
	text-align: center;
}

.card-wrapper-container {
	max-width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 50px;
	row-gap: 30px;
}

.card-wrapper {
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 30px;
	column-gap: 20px;
	margin: 10px;
}

.wrapper {
	max-width: 440px;
	width: 100%;
	padding: 10px 15px 10px 0px;
	border-radius: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: #191a1c;
	transition: background-color 0.2s, box-shadow 0.2s;
}

.wrapper.clickable:hover {
	box-shadow: 0 0 10px 10px rgba(0,0,0,.2);
	cursor: pointer;
}

.wrapper.progress:hover {
	background-color: #333333;
	cursor: progress;
}

.svg {
	margin-left: -10px;
	margin-right: 24px;
	width: 40px;
	height: 40px;
}

.title {
	font-size: 14px;
	color: #aaaebc;
	margin-bottom: 1px;
}

.ip {
	text-wrap: nowrap;
	font-size: 18px;
	color: #ffffff;
	overflow: auto;
	transition: background-color 0.2s, color 0.2s;
}

.ip.not-revealed {
	width: 100%;
	background: #323232;
	color: #323232;
	overflow: hidden;
	border-radius: 10px;
}

button:hover {
	cursor: pointer; 
}

.flex.flex-col.items-start {
	overflow: auto;
}

/* iframe {
	height: 37px;
	background-color: gray;
	border: none;
} */

a {
	color: #8C9EFF;
}

.ip-manual>* {
	color: #ffffff;
	margin: 15px 0px;
	font-size: 14px;
}

.codeblock {
	background-color: #121212;
	/* white-space: nowrap; */
	padding: 10px;
	border-radius: 10px;
	display: flex;
}

.codeblock .btn {
	margin-left: 10px;
	border: none;
	background-color: #fff2;
	border-radius: 5px;
	padding: 5px;
	transition: background-color 0.2s;
}

.codeblock .btn>div {
	transition: background-color 0.1s;
	display: block;
	width: 5px;
	height: 20px;
	mask-position: center;
	mask-size: cover;
	mask-repeat: no-repeat;
}

.codeblock .btn:hover {
	background-color: #fff5;
}

.codeblock .btn.clicked {
	background-color: #fff3;

}

.codeblock code {
	margin: auto;
	scrollbar-width: none;
}

.codeblock code::-webkit-scrollbar {
	display: none;
}

code {
	line-break: anywhere;
	font-family: monospace;
	overflow: auto;
	white-space: nowrap;
	text-overflow: ellipsis;
}

@media only screen and (max-width: 768px) {
    .header-text.header-left {
        display: none;
    }
}

.wrapper.clickable:hover .svg {
    animation: rotate 0.3s linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
