body, html {
  min-height: 100%;
  box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1.5;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body.light {
  --background-color: #f2f4ff;
	--secondary-color: #e2e4f0;
	--tertiary-color: #d2d4e0;
	--tertiary-color-alpha: rgb(210, 212, 224, 0.5);
	--icon-color: #131313;
	--text-color: #131313;
	--filter-brightness: brightness(0.9);
	--tippy-shadow-color: #d0d1da;
}

body.dark {
  --background-color: #131313;
  --secondary-color: #101010;
  --tertiary-color: #161616;
	--tertiary-color-alpha: rgb(22, 22, 22, 0.5);
	--icon-color: #f8f9fa;
	--text-color: #c7c9ca;
	--filter-brightness: brightness(0.8);
	--tippy-shadow-color: #0e0e0e;
}

body, html {
	display: flex;
	width: 100%;
	overflow: auto;
	min-height: 100%;
	background-color: var(--background-color);
	color: var(--text-color);
	flex-direction: column;
}


.logo {
  position: absolute;
  cursor: pointer;
	width: max-content;
	height: max-content;
	display: flex;
	justify-content: left;
	align-items: center;
	margin-left: 35px;
  margin-top: 35px;
}

.logo > svg {
	width: 220px;
  transition: transform 0.2s ease;
}

.logo:hover > svg {
  transform: rotate(-3deg);
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 5px;
}

span.material-icons {
	user-select: none;
	color: var(--icon-color);
}

.theme-changer {
	margin-left: -30px;
	margin-top: 30px;
	position: absolute;
	width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;	
}

.theme-changer-content {
	border-radius: 5px;
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 999;
	justify-content: center;
	padding: 5px;
	background-color: var(--secondary-color);
	transition: background 0.3s ease;
}

.theme-changer-content:hover {
	cursor: pointer;
	background-color: var(--tertiary-color);
}

.main-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 140px;
	min-width: 100%;
}

section.search {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

section.search > input {
	padding: 5px;
	width: 200px;
	height: 20px;
	border-radius: 5px;
	background: var(--secondary-color);
	outline: none;
	border: none;
	color: var(--text-color);
	font-size: 13px;
}

section.search > button {
	border: none;
	height: 30px;
	width: 50px;
	margin-left: 5px;
	cursor: pointer;
	border-radius: 5px;
	background-color: var(--secondary-color);
	color: var(--text-color);
	font-weight: 600;
	transition: background 0.3s ease;
}
section.search > button:hover {
	background-color: var(--tertiary-color);
}

section.profile {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	width: 520px;
	height: max-content;
	border-radius: 5px;
	background-color: var(--secondary-color);
}

div.seperator {
	display: block;
	width: 380px;
	margin-top: 30px;
	height: 2px;
	background-color: var(--secondary-color);
}

section.profile > div.seperator {
	display: block;
	width: 460px;
	margin-top: 15px;
	height: 2px;
	background-color: var(--tertiary-color);
}

.banner {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	width: 100%;
	height: 125px;
	background-color: var(--tertiary-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.banner > div {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--tertiary-color-alpha);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.banner:hover > div {
	opacity: 1;
	cursor: pointer;
}

.banner > div > span {
	font-size: 25px;
	color: var(--text-color);
}

.avatar {
	width: 94px;
	height: 94px;
	border-radius: 50%;
	background-color: var(--tertiary-color);
	position: relative;
	top: -30px;
	align-self: baseline;
	left: 30px;
	margin-bottom: -30px;
	border: 7px solid var(--secondary-color);
	background-image: url(https://cdn.discordapp.com/embed/avatars/0.png?size=512);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.avatar > div {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: var(--tertiary-color-alpha);
	opacity: 0;
	transition: opacity 0.1s ease;
}

.avatar:hover > div {
	opacity: 1;
	cursor: pointer;
}

.avatar > div > span {
	font-size: 25px;
	color: var(--text-color);
}

.tag {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	align-self: baseline;
	position: relative;
	left: 30px;
	font-weight: 600;
	padding: 2.5px;
	user-select: none;
	color: var(--text-color);
	border-radius: 5px;
	transition: background 0.2s ease;
}

.tag:hover {
	cursor: pointer;
	background-color: var(--tertiary-color);
}

section.blocks {
	width: 100%;
	margin-top: 15px;
	display: grid;
	grid-auto-rows: auto;
	gap: 0.75rem;
	position: relative;
	left: 30px;
	margin-bottom: 15px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

section.blocks > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	width: 100%;
	height: max-content;
}

section.blocks > div > span {
	font-weight: 600;
}

section.blocks > div > p {
	font-size: 14px;
	color: var(--text-color);
	width: max-content;
	border-radius: 5px;
	padding: 2.5px;
	margin-left: -2px;
  margin-top: 3px;
	transition: background 0.2s ease;
}

section.blocks > div > p:hover {
	background-color: var(--tertiary-color);
	cursor: pointer;
}

section.profile > div.tag > div.username:empty::before {
	content: 'Discord'
}

section.profile > div.tag > div.discriminator:empty::before {
	content: '#0000'
}

section.blocks > div > p.id:empty::before {
	content: '000000000000000031'
}

section.blocks > div > p.created_at:empty::before {
	content: 'Cumartesi, 24.07.2021'
}

section.blocks > div > p.type:empty::before {
	content: 'Sistem'
}

section.blocks > div > p.account_age:empty::before {
	content: 'X Yıl'
}

.empty {
	background-color: var(--tertiary-color);
	border-radius: 5px;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 7px;
	padding-right: 7px;
	margin-top: 5px;
	width: 100px !important;
	height: 15px;
	animation: empty 0.5s ease-out infinite;
}

.empty::before {
	content: '' !important;
}

@keyframes empty {
	0% {
		filter: brightness(1);
	}

	50% {
		filter: var(--filter-brightness);
	}

	100% {
		filter: brightness(1);
	}
}

section.profile > div.badges {
	display: flex;
	flex-direction: row;
	margin-top: 5px;
	position: relative;
	width: 100%;
	left: 30px;
}

section.profile > div.badges > img {
	cursor: pointer;
	padding: 1px;
	width: 23px;
	z-index: 0;
	user-select: none;
	-webkit-user-drag: none;
	transition: background 0.2s ease;
	border-radius: 5px;
}

section.profile > div.badges > img:hover {
	background-color: var(--tertiary-color);
}

section.profile > div.badges > img:not(:first-child) {
	margin-left: 3px;
}

.badges.wait {
	background-color: var(--tertiary-color);
	border-radius: 5px;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 7px;
	padding-right: 7px;
	width: 170px !important;
	align-self: baseline;
	height: 15px;
	animation: empty 2s ease infinite;
	z-index: 999;
}

.tippy-box[data-theme~='default'] {
  background-color: var(--background-color);
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  word-wrap: break-word;
  min-width: max-content;
	border-radius: 7px;
  animation: base 0.10s ease;
  filter: drop-shadow(0px 0px 7px var(--tippy-shadow-color));
}

.tippy-box[data-animation='scale'][data-state='hidden'] {
  opacity: 0;
  transform: translateY(11px) scale(0.8);
}

.tippy-box[data-theme~='default'] > .tippy-arrow::before {
  color: var(--background-color);
}


@keyframes base {
  from {
    opacity: 0;
    transform: translateY(11px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

@media screen and (max-width: 500px) {
  .tippy-box[data-theme~='default'] {
    font-size: 12.5px !important;
  }
  
  .tippy-box[data-animation='scale'][data-state='hidden'] {
    transform: translateY(20px) scale(0.8) !important;
  }
  
  .tippy-box[data-animation='scale'][data-state='visible'] {
    transform: translateY(5px) scale(1) !important;
  }
  
  .tippy-box[data-theme~='default'] > .tippy-arrow::before {
    height: 3px  !important;
  }
  
  @keyframes base {
		from {
			opacity: 0;
			transform: translateY(20px) scale(0.8);
		}
		to {
			opacity: 1;
			transform: translateY(5px) scale(1);
		}
  }
}

@media screen and (max-width: 560px) {
  .row {
    flex-direction: column !important;
  }

  section.history {
    margin-bottom: -10px !important;
  }

  section.profile > div.badges {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    width: 200px !important;
    margin-right: auto !important;
    grid-gap: 3px !important;
  }


	div.seperator {
		width: 280px;
	}

	section.profile {
		width: 270px;
	}

	section.profile > div.seperator {
		width: 210px;
	}

	section.blocks {
		grid-template-columns: repeat(1, minmax(0, 1fr))
	}
}

@media screen and (max-width: 320px) {
  .theme-changer {
    margin-left: -15px;
  }
}

section.history {
  display: flex;
  flex-direction: column;
  justify-content: center;
  place-self: flex-start;
  align-items: center;
  width: 223px;
  margin-top: 20px;
  border-radius: 5px;
  background-color: var(--background-color);
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

section.history > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 223px;
}

section.history > .container > .channel {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  width: 100%;
  font-size: 16px;
  background-color: var(--tertiary-color);
	border-radius: 4px;
  padding: 5px;
	height: 30px;
	color: var(--text-color);
	font-weight: 600;
	cursor: pointer;
  transition: background 0.2s ease;
}

section.history > .container > .channel:hover {
  background-color: var(--secondary-color);
}

section.history > .container > .channel > span.material-icons {
  font-size: 24px;
  color: var(--text-color);
  margin-right: 6px;
}

section.history > .container > .channel > .button {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
  width: 100%;
}

section.history > .container > .channel:hover > .button {
  opacity: 1;
}

.button > .content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: max-content;
  height: 100%;
  border-radius: 3px;
  padding: 2px;
}

.button > .content > span.material-icons {
  font-size: 20px;
}

.button > .content:hover {
  background-color: var(--tertiary-color);
}

section.history > .container > .members {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 5px;
  width: 100%;
  font-size: 14px;
}

.members > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--tertiary-color);
  border-radius: 4px;
  font-weight: 500;
  padding: 7.5px;
  cursor: pointer;
  transition: background 0.2s ease;
  user-select: none;
  --webkit-user-select: none;
  --moz-user-select: none;
  --ms-user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
}

.members > div:hover {
  background-color: var(--secondary-color);
}

.members > div > img {
  border-radius: 100%;
  width: 18px;
  margin-right: 5px;
  user-select: none;
  --webkit-user-select: none;
  --moz-user-select: none;
  --ms-user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
}

.members > div > span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

section.most-views {
  display: flex;
  flex-direction: column;
  justify-content: center;
  place-self: flex-start;
  align-items: center;
  width: 223px;
  margin-top: 20px;
  border-radius: 5px;
  background-color: var(--background-color);
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

section.most-views > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 223px;
}

section.most-views > .container > .channel {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  width: 100%;
  font-size: 16px;
  background-color: var(--tertiary-color);
	border-radius: 4px;
  padding: 5px;
	height: 30px;
	color: var(--text-color);
	font-weight: 600;
	cursor: pointer;
  transition: background 0.2s ease;
}

section.most-views > .container > .channel:hover {
  background-color: var(--secondary-color);
}

section.most-views > .container > .channel > span.material-icons {
  font-size: 24px;
  color: var(--text-color);
  margin-right: 6px;
}

section.most-views > .container > .channel > span.name {
  font-size: 15px;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

section.most-views > .container > .members {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 5px;
  width: 100%;
  font-size: 14px;
}

section.most-views > .container > .members > div > p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}

section.most-views > .container > .members > div > p > span {
  font-size: 15px;
  margin-right: 5px;
  color: var(--text-color);
}