/* -------------------------------------------------------------- Chakra Petch */

/* chakra-petch-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/chakra-petch-v11-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* chakra-petch-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/chakra-petch-v11-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* chakra-petch-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/chakra-petch-v11-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* chakra-petch-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/chakra-petch-v11-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* chakra-petch-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/chakra-petch-v11-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* -------------------------------------------------------------- Variables */

:root {
	--focusblack: #101012;
	--black: #080809;
	--black25: rgba(8,8,9,.25);
	--black40: rgba(8,8,9,.4);
	--black80: rgba(8,8,9,.8);
	--black95: rgba(8,8,9,.95);
	--white: #f5f5f5;
	--lightgrey: #d0d0d3;
	--mediumgrey: #88888c;
	--focusgrey: #343446;
	--darkgrey: #262633;
	--ultragrey: #14141b;
	--orange: #ff9000;
	--yellow: #ffb70b;
	--lightblue: #dce3ff;
	--blue: #1f166f;
	--border-radius-large: 8px;
	--border-radius-medium: 4px;
	--border-radius-small: 2px;
	--font-size-micro: .65rem;
	--font-size-mini: .75rem;
	--font-size-extrasmall: .85rem;
	--font-size-small: .9rem;
	--font-size-base: 1rem;
	--font-size-medium: 1.1rem;
	--font-size-large: 1.4rem;
	--fadegradient: linear-gradient(to bottom, rgba(8,8,9,0) 0%,rgba(8,8,9,.75) 50%,rgba(8,8,9,1) 100%);
	--floatshadow: 0 4px 20px rgba(8,8,9,.6);
}

/* -------------------------------------------------------------- CSS Reset */

html, body, div, span, h1, h2, h3, h4, h5, h6, h7, p, a, img, strong, b, form, label {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

ul,li {
	list-style: none;
}

body {
	line-height: 1;
}

* {
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
	background-position: center center;-webkit-tap-highlight-color: rgba(0,0,0,0);
}

html, *, *:before, *:after {
	   -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

* :focus {outline: none;}

*, * :active {
	-webkit-tap-highlight-color: rgba(0,0,0,0.05);
}

/* -------------------------------------------------------------- Body */

html, body {
	height: 100%;
}

html {
	  overflow-y: scroll; 
}

body {
	-webkit-text-size-adjust: none;
	font-family: 'Chakra Petch', Helvetica, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 1em;
	width: 100%;
	color: var(--white);
	background-color: var(--black);
	text-rendering: optimizeLegibility;
	font-variant-ligatures: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* -------------------------------------------------------------- Fonts */

h1,h2,h3,h4,h5 {
	float: left;
	width: 100%;
	line-height: 1.1em;
}

h1 {
	margin: 0 0 4px 0;
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--white);
	line-height: 1.1em;
}

h2 {
	margin: 0 0 20px 0;
	font-size: 1.2rem;
	color: var(--white);
}

h3 {
	margin: 0;
	font-size: var(--font-size-medium);
	color: var(--white);
}

b,strong {
	font-weight: 600;
}

p {
	position: relative;
	float: left;
	width: 100%;
	margin: 0 0 28px 0;
	line-height: 1.4em;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

del {
	text-decoration: line-through;
}

a,a:active,a:visited {
	text-decoration: none;
	color: var(--orange);
	transition: all .2s;
}

a:hover {
	color: var(--yellow);
}

::-webkit-input-placeholder {
	color:var(--mediumgrey);
}

::-moz-placeholder {
	color:var(--mediumgrey);
}

:-ms-input-placeholder {
	color:var(--mediumgrey);
}

input:-moz-placeholder {
	color:var(--mediumgrey);
}

input,button {
	font-family: 'Chakra Petch', Helvetica, sans-serif;
	font-weight: 500;
	font-style: normal;
}

@media (max-width: 800px) {
	h1 {
		font-size: 1.1rem;
	}
	
	h2 {
		font-size: 1rem;
	}
	
	h3 {
		font-size: .9rem;
	}
	
	p {
		font-size: var(--font-size-small);
	}
}

/* -------------------------------------------------------------- Hidden */

.hidden {
	display: none;
}

/* -------------------------------------------------------------- BTC */

.btc {
	font-size: .9em;
	letter-spacing: .05em;
	line-height: 1em;
	color: var(--mediumgrey);
}

.price-data {
	letter-spacing: .05em;
}

/* -------------------------------------------------------------- Site */

.site {
	position: relative;
	float: left;
	width: 100%;
	margin: 90px 0 0 0;
}

@media (max-width: 800px) {
	.site {
		margin: 66px 0 0 0;
	}
}

/* -------------------------------------------------------------- Light */

.light {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background: #181857;
	background: linear-gradient(to bottom, rgba(31,22,111,1) 0%,rgba(8,8,9,0) 100%);
	z-index: -1;
}

@media (max-width: 800px) {
	.light {
		height: 150px;
	}
}

/* -------------------------------------------------------------- Section */

section {
	position: relative;
	float: left;
	width: 100%;
	margin: 0 0 60px 0;
}

@media (max-width: 800px) {
	section {
		margin: 0 0 40px 0;
	}
}

/* -------------------------------------------------------------- Holder */

.holder {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 1800px;
	padding: 0 40px 0 40px;
}

@media (max-width: 800px) {
	.holder {
		max-width: 100%;
		padding: 0 14px 0 14px;
	}
}

/* -------------------------------------------------------------- Main */

.main {
	position: relative;
	float: left;
	width: 100%;
}

/* -------------------------------------------------------------- Header */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	padding: 10px 0 10px 0;
	background: var(--black95);
	z-index: 9998;
}

.nav {
	float: right;
}

.mint a,.mint a:active,.mint a:visited {
	float: right;
	height: 30px;
	margin: 6px 0 6px 14px;
	padding: 0 14px 0 14px;
	font-size: var(--font-size-mini);
	line-height: 30px;
	text-transform: uppercase;
	color: var(--black);
	text-align: center;
	letter-spacing: .05em;
	border: 0;
	background: var(--orange);
	-webkit-appearance: none;
	-webkit-font-smoothing: antialiased !important;
	transition: all .2s;
	border-radius: var(--border-radius-medium); 
	cursor: pointer;
}

.mint a:hover {
	background: var(--yellow);
}

.socials {
	float: right;
}

.socials a,.socials a:active,.socials a:visited {
	float: left;
	height: 40px;
	padding: 0 8px 0 8px;
	text-align: center;
	color: var(--lightblue);
	cursor: pointer;
	transition: all .2s;
}

.socials-title {
	float: left;
	width: 100%;
	font-size: var(--font-size-micro);
	line-height: 15px;
	text-transform: uppercase;
	letter-spacing: .02em;
	text-align: center;
}

.socials i {
	font-size: var(--font-size-medium);
	line-height: 25px;
}

.socials a:hover {
	color: var(--yellow);
}

@media (max-width: 800px) {
	header {
		width: 100%;
		height: 46px;
		padding: 8px 0 8px 0;
	}
	
	.mint a,.mint a:active,.mint a:visited {
		margin: 0 0 0 14px;
	}
	
	.socials a,.socials a:active,.socials a:visited {
		height: 30px;	
	}
	
	.socials-title {
		display: none;
	}
	
	.socials i {
		line-height: 30px;
	}
}

/* -------------------------------------------------------------- Logo */

.logo a, .logo a:active, .logo a:visited {
	position: relative;
	float: left;
	height: 40px;
	padding: 0 0 0 48px;
	overflow: hidden;
}

.logo-dog {
	float: left;
	width: 100%;
	height: 25px;
	font-size: var(--font-size-large);
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--white);
	line-height: 25px;
	background: -webkit-linear-gradient(#dce3ff, #4648ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.logo-btcbulls {
	float: left;
	width: 100%;
	height: 15px;
	font-size: var(--font-size-mini);
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--white);
	line-height: 15px;
}

@media (max-width: 800px) {
	.logo a, .logo a:active, .logo a:visited {
		height: 30px;
		padding: 0 0 0 38px;
	}
	
	.logo-dog {
		height: 20px;
		font-size: var(--font-size-base);
		line-height: 20px;
	}
	
	.logo-btcbulls {
		height: 10px;
		font-size: var(--font-size-micro);
		line-height: 10px;
	}
}

/* -------------------------------------------------------------- Icon */

.icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	background-image: url(dog.png) !important;
	background-size: cover !important;
	border-radius: 50%;
}

@media (-webkit-min-device-pixel-ratio: 2) {
	.icon {
		background-image: url(dog.png) !important;
		background-size: cover !important;
	}
}

@media (max-width: 800px) {
	.icon {
		width: 30px;
		height: 30px;
	}
}

/* -------------------------------------------------------------- Ordinal Image */

.ordinal-image {
	position: relative;
	float: left;
	width: 100%;
	padding-top: 100%;
	background-color: var(--ultragrey);
	overflow: hidden;
}

.ordinal-image::-webkit-scrollbar {
	display: none;
}

.ordinal-image img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.collections-medium .ordinal-image {
	padding-top: 60%;
}

.collections-medium .ordinal-image img {
	object-fit: cover;	
}

.collections-large .ordinal-image img {
	object-fit: cover;	
}

/* -------------------------------------------------------------- Intro */

.intro {
	color: var(--mediumgrey);
	text-align: center;
}

.profile {
	position: relative;
	float: left;
	width: 100%;
	margin: 0 0 28px 0;
}

.profile .holder {
	max-width: 440px;
}

.profile-box {
	float: left;
	width: 100%;
	overflow: hidden;
	border-radius: 50%;
	border: 1px solid var(--darkgrey);
}

@media (max-width: 800px) {
	.profile .holder {
		max-width: 220px;
	}
}

/* -------------------------------------------------------------- View Collection */

.view-collection a,.view-collection a:active,.view-collection a:visited {
	display: inline-block;
	height: 30px;
	margin: 0 10px 0 0;
	padding: 0 14px 0 14px;
	font-size: var(--font-size-mini);
	line-height: 30px;
	text-transform: uppercase;
	color: #311900;
	letter-spacing: .02em;
	background: var(--orange);
	border-radius: var(--border-radius-medium); 
	transition: all .2s;
	cursor: pointer;
	overflow: hidden;
}

.view-collection a:hover {
	background: var(--yellow);
}

@media (max-width: 800px) {
}

/* -------------------------------------------------------------- Mint */

.mint-soon {
	display: inline-block;
	height: 30px;
	padding: 0 14px 0 14px;
	font-size: var(--font-size-mini);
	line-height: 28px;
	text-transform: uppercase;
	color: var(--white);
	letter-spacing: .02em;
	border: 1px solid var(--darkgrey);
	background-color: var(--black80);
	transition: all .2s;
	border-radius: var(--border-radius-medium); 
	overflow: hidden;
}

@media (max-width: 800px) {
}

/* -------------------------------------------------------------- Collections Large */

.collections-large {
	width: 100%;
	display: grid;
	grid-auto-columns: calc(18.18% - 18px);
	grid-auto-flow: column;
	grid-gap: 20px;
	overflow-x: auto;
}

.collections-large::-webkit-scrollbar {
	  display: none;
}

.collection-large {
	width: 100%;
	overflow: hidden;
	border: 1px solid var(--darkgrey);
	background-color: var(--black25);
	border-radius: var(--border-radius-large);
	transition: all .2s;
}

.collection-large:hover {
	border: 1px solid var(--focusgrey);
}

.collection-large-content {
	float: left;
	width: 100%;
	padding: 14px;
}

.collection-large-owners {
	float: left;
	width: 100%;
	margin: 0 0 2px 0;
	font-size: var(--font-size-mini);
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--mediumgrey);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.collection-large-content h2 {
	font-size: var(--font-size-large);
}

.collection-large-stat {
	float: left;
	width: 100%;
	margin: 0 0 4px 0;
	color: var(--mediumgrey);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.collection-large-stat:last-child {
	margin: 0;
}

.collection-large-stat-value {
	color: var(--white);
}

.collection-large-stat-title {
	font-size: var(--font-size-mini);
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--mediumgrey);
}

@media (max-width: 1800px) and (min-width: 801px) {
	.collections-large {
		width: calc(100% + 80px);
		margin: 0 0 0 -40px;
		padding: 0 40px 0 40px;
		grid-auto-columns: calc(20% - 20px);
	}
}

@media (max-width: 1500px) and (min-width: 1101px) {
	.collections-large {
		grid-auto-columns: calc(25% - 20px);
	}
}

@media (max-width: 1100px) and (min-width: 801px) {
	.collections-large {
		grid-auto-columns: calc(33.33% - 20px);
	}
}

@media (max-width: 800px) {
	.collections-large {
		width: calc(100% + 28px);
		margin: 0 0 0 -14px;
		padding: 0 14px 0 14px;
		grid-auto-columns: calc(50% - 7px);
		grid-gap: 7px;
	}
	
	.collection-large-content {
		padding: 10px;
	}
	
	.collection-large-owners {
		font-size: var(--font-size-micro);
	}
	
	.collection-large-content h2 {
		font-size: var(--font-size-base);	
	}
	
	.collection-large-stat {
		font-size: var(--font-size-small);	
	}
	
	.collection-large-stat-title {
		font-size: var(--font-size-micro);
	}
}

/* -------------------------------------------------------------- Collections Medium */

.collections-medium {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 1fr;
	gap: 20px;
}

.collection-medium {
	display: block;
	overflow: hidden;
	border: 1px solid var(--darkgrey);
	background-color: var(--black25);
	border-radius: var(--border-radius-large);
	transition: all .2s;
}

.collection-medium:hover {
	border: 1px solid var(--focusgrey);
}

.collection-medium-content {
	float: left;
	width: 100%;
	padding: 10px;
}

.collection-medium-content h2 {
	font-size: var(--font-size-medium);
}

.collection-medium-stat {
	position: relative;
	float: left;
	width: 100%;
	margin: 0 0 4px 0;
	color: var(--mediumgrey);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.collection-medium-stat:last-child {
	margin: 0;
}

.collection-medium-stat-title {
	font-size: var(--font-size-mini);
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--mediumgrey);
}

.collection-medium-stat-value {
	color: var(--white);
}

@media (max-width: 1400px) and (min-width: 1201px) {
	.collections-medium {
		grid-template-columns: repeat(5, 1fr);
	}
}

@media (max-width: 1200px) and (min-width: 1001px) {
	.collections-medium {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 1000px) and (min-width: 801px) {
	.collections-medium {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 800px) {
	.collections-medium {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
	
	.collection-medium-content h2 {
		font-size: var(--font-size-small);	
	}
	
	.collection-medium-stat {
		font-size: var(--font-size-small);	
	}
	
	.collection-medium-stat-title {
		font-size: var(--font-size-micro);
	}
}

/* -------------------------------------------------------------- WL */

.wl {
	position: relative;
	float: left;
	width: 100%;
	margin: 0 0 28px 0;
	color: var(--mediumgrey);
	text-align: center;
}

.wl h1 {
	margin: 0 0 14px 0;
	text-align: center;
}

.wl .holder {
	max-width: 640px;
}

/* -------------------------------------------------------------- Whitelist */

.box-content {
	float: left;
	width: 100%;
	padding: 28px;
	border: 1px solid var(--darkgrey);
	background-color: var(--black25);
	border-radius: var(--border-radius-large);
}

.box-content p {
	color: var(--mediumgrey);
}

.box-content b {
	color: var(--white);
}

.success .box-content {
	border: 1px solid #10d66d;
}

.success h1 {
	color: #10d66d;
}

.error .box-content {
	border: 1px solid #e72828;
}

.error h1 {
	color: #e72828;
}

.whitelist input[type=text] {
	float: left;
	width: 100%;
	margin: 0 0 14px 0;
	padding: 0 10px 0 10px;
	font-size: 16px;
	line-height: 38px;
	text-decoration: none;
	color: var(--white);
	border: 1px solid var(--mediumgrey);
	background-color: var(--black25);
	-webkit-appearance: none;
	-webkit-font-smoothing: antialiased !important;
	transition: all .2s;
	border-radius: var(--border-radius-medium); 
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 998;
}

.whitelist input[type=text]:focus {
	color: var(--white);
	border: 1px solid var(--yellow);
}

@media (max-width: 800px) {
	.box-content {
		padding: 14px;
	}
}

/* -------------------------------------------------------------- Enter */

.enter {
	float: left;
	width: 100%;
	height: 40px;
	margin: 0;
	padding: 0 14px 0 14px;
	font-size: var(--font-size-extrasmall);
	line-height: 40px;
	text-transform: uppercase;
	color: #311900;
	text-align: center;
	border: 0;
	background: var(--orange);
	-webkit-appearance: none;
	-webkit-font-smoothing: antialiased !important;
	transition: all .2s;
	border-radius: var(--border-radius-medium); 
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 999;
}

.enter:hover {
	background: var(--yellow);
}

@media (max-width: 800px) {
}

/* -------------------------------------------------------------- Go To */

.go-to a,.go-to a:active,.go-to a:visited {
	float: left;
	width: 100%;
	height: 40px;
	margin: 0 0 28px 0;
	padding: 0 14px 0 14px;
	font-size: var(--font-size-extrasmall);
	line-height: 40px;
	text-transform: uppercase;
	color: #311900;
	text-align: center;
	border: 0;
	background: var(--orange);
	-webkit-appearance: none;
	-webkit-font-smoothing: antialiased !important;
	transition: all .2s;
	border-radius: var(--border-radius-medium); 
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 999;
}

.go-to a:hover {
	background: var(--yellow);
}

@media (max-width: 800px) {
}
