/* basics */
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,
ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%
}

a img,
fieldset,
img {
	border: none
}

input[type=email],
input[type=password],
input[type=tel],
input[type=text],
textarea {
	-webkit-appearance: none;
	box-shadow: none
}

button,
input[type=submit] {
	cursor: pointer
}

button::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
	padding: 0;
	border: 0
}

button {
	background: 0 0
}

textarea {
	overflow: auto
}

button,
input {
	margin: 0;
	padding: 0;
	border: 0
}

a,
a:focus,
button,
div,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
span,
textarea {
	outline: 0
}

ol,
ul {
	list-style-type: none
}

table {
	border-spacing: 0;
	border-collapse: collapse;
	width: 100%
}

html {
	box-sizing: border-box
}

*,
:after,
:before {
	box-sizing: inherit
}
/* PAGE BASICS */
body {
	min-width: 375px;
	background: #fcfcfd;
	font-family: "DM-Sans", sans-serif;
	font-family: Helvetica, DM-Sans, sans-serif;
	line-height: 1.71429;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #23262f;
	margin: 0 auto;
}
body.blur .inner_wrap {
	filter: blur(5px);
}
a {
	text-decoration: none;
	color: inherit;
}
img,
svg {
	vertical-align: middle
}
.outer_wrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden
}
.inner_wrap {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 20px 0 0px 0;
}
.inner_wrap.has_sidebar {
	flex-direction: unset;
	flex-grow: unset;
	padding: 0;
}
.inner_wrap.waitlist {
	padding:0;
	flex-direction: unset;
	flex-grow: unset;
}
.anchor {
	position: absolute;
	left: 0;
	right: 0
}
.center {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    max-width: 1280px;
}
@media only screen and (max-width:1023px) {
	.center {
		padding: 0 20px
	}
}
body.in_app .center {
}
body section {
	display: block;
	width: 100%;
	position: relative;
	padding: 40px 0 50px;
	background: #fcfcfd;
}
body .user .user_name {
	/* font-weight: 600; */
}
body .user .user_handle {
	color: #777e90;
}
/* various - buttons */
.button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 48px;
	padding: 0 24px 0 26px;
	background: #00934b;
	border-radius: 24px;
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	color: #fcfcfd;
	transition: all .2s;
}
.button:hover {
	opacity: 0.8;
}
.button.disabled,
.button:disabled {
	opacity: .5;
	pointer-events: none
}
.button.stroke {
	background: 0 0;
	box-shadow: 0 0 0 2px #e6e8ec inset;
	color: #23262f
}
.button.stroke.creator {
	box-shadow: 0 0 0 2px #414244 inset;
}
.button.stroke.active,
.button.stroke:hover {
	background: #23262f url(../img/diamonds_background.svg);
	background-size: cover;
	box-shadow: 0 0 0 2px #23262f inset;
	color: #ffffff;
	opacity: 1;
}
.button.black {
	background: #141416
}
.button.black.active,
.button.black:hover {
	background: #353945
}
.button.red {
	background: #ff6838
}
.button.red.active,
.button.red:hover {
	background: #ff490f
}
.button.white {
	background: #fcfcfd;
	color: #23262f
}
.button.white:hover {
	background: #f4f5f6
}
.button.small {
	height: 40px;
	border-radius: 20px;
	padding: 0 16px;
	font-size: 14px
}
.button.circle {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	padding: 0;
	border-radius: 50%
}
.button.circle.stroke {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	padding: 0;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #e6e8ec inset;
	background: 0 0;
	transition: all .2s
}
.button.circle.stroke:hover {
	background: #23262f;
	box-shadow: 0 0 0 2px #23262f inset
}
.button.circle.stroke.small {
	flex: 0 0 40px;
	width: 40px;
	height: 40px
}
/* various - nav buttons */
body section .nav_buttons {
	position: relative;
	display: flex;
}
body section .nav_buttons a {
	color: #586a6d;
	width: 40px;
	box-shadow: 0 0 0 2px #e6e8ec inset;
	border: 0;
	height: 40px;
	padding: 8px;
	background: transparent;
	border-radius: 99px;
	margin-left: 7px;
	transition: all .2s;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.5;
}
body section .nav_buttons a:hover {
	box-shadow: 0 0 0 2px #777e90 inset;
}
body section .nav_buttons a.left:before {
	content: '';
	width: 20px;
	height: 20px;
	background: url('https://limewire.com/icons/icon-arrow-left-alt-white.svg');
	background-size: contain !important;
	opacity: 0.5;
	transition: all .2s;
	display: block;
	position: absolute;
	margin-left: -2px;
}
body section .nav_buttons a.right:before {
	content: '';
	width: 20px;
	height: 20px;
	background: url('https://limewire.com/icons/icon-arrow-right-alt-white.svg');
	background-size: contain !important;
	opacity: 0.5;
	transition: all .2s;
	display: block;
	position: absolute;
	margin-left: 2px;
}
body section .nav_buttons a.left:hover:before,
body section .nav_buttons a.right:hover:before {
	opacity: 0.75;
}
/* various - tags */
body .tag {
	background: #00934b;
	color: #fff;
	padding: 4px 5px 3px 5px;
	border-radius: 5px;
	font-size: 11px;
}
/* animations */
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* various - nice select */
.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: #fff;
	border-radius: 5px;
	border: solid 1px #e8e8e8;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	height: 42px;
	line-height: 40px;
	outline: 0;
	padding-left: 18px;
	padding-right: 30px;
	position: relative;
	text-align: left!important;
	transition: all .2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: auto
}
.nice-select:hover {
	border-color: #dbdbdb
}
.nice-select.open,
.nice-select:active,
.nice-select:focus {
	border-color: #999;
}
.nice-select:after {
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	content: '';
	display: block;
	height: 5px;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .15s ease-in-out;
	width: 5px
}
.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg)
}
.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0)
}
.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none
}
.nice-select.disabled:after {
	border-color: #ccc
}
.nice-select.wide {
	width: 100%
}
.nice-select.wide .list {
	left: 0!important;
	right: 0!important
}
.nice-select.right {
	float: right
}
.nice-select.right .list {
	left: auto;
	right: 0
}
.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px
}
.nice-select.small:after {
	height: 4px;
	width: 4px
}
.nice-select.small .option {
	line-height: 34px;
	min-height: 34px
}
.nice-select .list {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
	box-sizing: border-box;
	margin-top: 4px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(.75) translateY(-21px);
	transform: scale(.75) translateY(-21px);
	transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
	z-index: 9
}
.nice-select .list:hover .option:not(:hover) {
	background-color: transparent!important
}
.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: 0;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	transition: all .2s;
	color: #777e90;
}
.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
	background-color: #f6f6f6
}
.nice-select .option.selected {
	font-weight: 700
}
.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default;
	display: none;
}
.no-csspointerevents .nice-select .list {
	display: none
}
.no-csspointerevents .nice-select.open .list {
	display: block
}
.select {
	float: none;
	width: 100%;
	height: 48px;
	padding: 0 35px 0 16px;
	box-shadow: inset 0 0 0 1px #e6e8ec;
	background: #fcfcfd;
	border-radius: 12px;
	border: none;
	opacity: 1;
	font-size: 14px;
	font-weight: 600;
	line-height: 48px;
	width: 104px;
	height: 40px;
	/* margin-right: 8px; */
	line-height: 40px;
	/* background: #e6e8ec; */
	border-radius: 5px;
	font-family: 'DM Sans';
}

.select:after {
	display: none
}

.select:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
	width: 32px;
	height: 32px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 50%;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath fill-rule='evenodd' d='M9.207.793a1 1 0 0 0-1.414 0L5 3.586 2.207.793A1 1 0 1 0 .793 2.207l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0 0-1.414z' fill='%23777e91'/%3E%3C/svg%3E") no-repeat 50% 50%/10px auto;
	transition: -webkit-transform .2s;
	transition: transform .2s;
	transition: transform .2s, -webkit-transform .2s
}

.select.open {
	box-shadow: inset 0 0 0 2px #777e90;
}

.select.open:before {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg)
}

.select .current {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.select .list {
	right: 0;
	margin-top: 2px;
	border-radius: 5px;
	background: #fff;
	border: 2px solid #e6e8ec;
	box-shadow: 0 4px 12px rgba(35, 38, 47, .1);
}

.select .option {
	min-height: auto;
	padding: 10px 14px;
	font-weight: 500;
	line-height: 1.4
}

.select .option[data-value="BTC"],
.select .option[data-value="ETH"],
.select .option[data-value="Bitcoin (BTC)"],
.select .option[data-value="Ethereum (ETH)"] {
	padding-left: 20px;
}

.select .option[data-value="BTC"]:before,
.select .option[data-value="Bitcoin (BTC)"]:before {
	content: '';
	width: 16px;
	height: 16px;
	background: url('https://limewire.com/icons/icon-btc.svg');
	background-size: contain;
	transition: all .2s;
	position: relative;
	display: inline-block;
	left: -7px;
	top: 3px;
}
.select .option[data-value="ETH"]:before,
.select .option[data-value="Ethereum (ETH)"]:before {
	content: '';
	width: 16px;
	height: 16px;
	background: url('https://limewire.com/icons/icon-eth.svg');
	background-size: contain;
	transition: all .2s;
	position: relative;
	display: inline-block;
	left: -7px;
	top: 3px;
}


.select .option.focus,
.select .option.selected.focus,
.select .option:hover {
	background: #f4f5f6;
	color: #23262f;
}

.select .option.selected {
	font-weight: 500;
	color: #23262f;
}

.tool.sort .select {
	width: 175px;
	margin-right: 10px;
}

/* HEADER */
header.header {
	position: relative;
	z-index: 10;
	padding: 20px 0 21px 0;
	box-shadow: inset 0 -1px 0 #e6e8ec;
}
@media only screen and (max-width:767px) {
	header.header {
		padding: 32px 0 24px;
		box-shadow: none
	}
}
header.header.waitlist {
	box-shadow: none;
	padding: 0;
	top: 40px;
	width: 100%;
	margin-bottom: -40px;
}
.creators header.header.waitlist,
.terms header.header.waitlist {
	background: rgba(255,255,255,1);
    padding: 40px 0;
    margin-bottom: -40px;
    top: 0;
}
.terms header.header.waitlist {
	background: #fcfcfd;
}
header.header .header_center {
	display: flex;
    align-items: center;	
}
@media only screen and (max-width:1179px) {
	header.header .header_center {
		padding: 0 40px
	}
}
@media only screen and (max-width:1023px) {
	header.header .header_center {
		padding: 0 20px
	}
}
@media only screen and (max-width:767px) {
	.header.header header_center {
		padding: 0 24px
	}
}
header.header .header_center .header_logo {
	margin-right: 30px;
}
@media only screen and (max-width:1023px) {
	header.header .header_center .header_logo {
		margin-right: 20px;
	}
}
@media only screen and (max-width:767px) {
	header.header .header_center .header_logo {
		position: relative;
		z-index: 15;
		margin-right: auto
	}
}
header.header .header_center .header_logo img {
	width: 175px;
	position: relative;
	top: -1px;
}
@media only screen and (max-width:1023px) {
	header.header .header_center .header_logo img {
		width: 165px
	}
}
header.header .header_center .header_nav {
	display: flex;
	align-items: center;
	flex-grow: 1;
	padding-left: 5px;
	/* border-left: 1px solid #e6e8ec; */
}
@media only screen and (max-width:1023px) {
	header.header .header_center .header_nav {
		padding-left: 0;
		border: none
	}
}
@media only screen and (max-width:767px) {
	header.header .header_center .header_nav {
		flex-grow: 0
	}
	header.header.waitlist .header_center .header_nav {
		width: 100px;
	}
}
header.header .header_center .header_nav .header_nav_center {
	margin-right: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
}
@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_center {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 10;
		display: flex;
		flex-direction: column;
		width: 100%;
		min-height: calc(var(--vh, 1vh) * 100);
		padding: 100px 0 32px;
		background: #fcfcfd;
		visibility: hidden;
		opacity: 0;
		transition: all .2s;
	}
	header.header .header_center .header_nav .header_nav_center.mobile_menu_open {
		visibility: visible;
		opacity: 1;
	}
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search {
	/* width: 215px; */
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form {
	position: relative;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form label {
	position: relative;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form label input[type="text"] {
	width: 100%;
	padding: 0 48px 0 14px;
	border-radius: 24px;
	background: 0 0;
	border: 2px solid #e6e8ec;
	line-height: 1.71429;
	color: #23262f;
	height: 40px;
	font-size: 14px;
	/*width: 215px;*/
    width: 275px;
	transition: all .2s;
	background: #e7e8ec;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form label input[type="text"]:focus {
    border-color: #777e90;
	/*width: 275px;*/
    background: rgba(4, 4, 5, 0);
    box-shadow: rgb(4 4 5 / 6%) 0px 0px 0px 4px;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form label button {
	position: absolute;
	right: 0;
	width: 48px;
	height: 40px;
	cursor: pointer;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form label button:before {
	content: '';
	width: 20px;
	height: 20px;
	background: url('https://limewire.com/icons/icon-search.svg');
	transition: all .2s;
	position: absolute;
	top: 9px;
	right: 17px;
	opacity: 0.4;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form label button:hover:before {
	opacity: 1;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form .suggestions {
	display: none;
	box-sizing: border-box;
	width: 150%;
	padding: 0;
	position: absolute;
	left: -26%;
	font-size: 14px;
	z-index: 9;
	overflow: hidden;
	top: calc(100% + 20px);
	box-shadow: 0 16px 48px rgb(31 47 70 / 10%);
	border-radius: 12px;
	background: #ffffff;
	margin-top: -10px;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form .suggestions .results {
	max-height: 350px;
	overflow-y: scroll;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form .suggestions a {
	display: block;
	list-style: none;
	outline: 0;
	text-align: left;
	transition: all .2s;
	color: #23262f;
	min-height: auto;
	padding: 10px 14px;
	font-weight: 500;
	line-height: 1.4;
	cursor: pointer;
	position: relative;
	border-bottom: 1px solid #e6e8ec;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form .suggestions a span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form .suggestions a span img {
    border-radius: 99px;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    object-fit: cover;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form .suggestions .results.items a span img {
    border-radius: 5px;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form .suggestions a span .verified:after {
	margin-left: 6px;
	margin-top: -9px;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form .suggestions a .arrow:after {
    content: '';
    width: 16px;
    height: 16px;
    transition: all .1s;
    display: block;
    background: url(https://limewire.com/icons/icon-arrow-right-alt.svg);
    opacity: 0.4;
    position: absolute;
    right: 18px;
    top: 19px;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form .suggestions a:not(.heading):hover {
	color: #23262f;
	background: #f4f5f6;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form .suggestions a:hover .arrow:after {
    opacity: 1;
    right: 14px;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form .suggestions a.heading {background: #e7e8ec;color: #23262f;font-weight: 700;font-size: 13px;padding: 9px 14px 8px 14px;cursor: default;}
header.header .header_center .header_nav .header_nav_center .header_nav_center_search form .suggestions .search_results {
	display: none;
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_links {
	display: flex;
	margin-left: 30px;
}
@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_center .header_nav_center_links {
		flex-direction: column
	}
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_links .header_nav_item:not(:last-child) {
	margin-right: 40px
}

@media only screen and (max-width:1179px) {
	header.header .header_center .header_nav .header_nav_center .header_nav_center_links .header_nav_item:not(:last-child) {
		margin-right: 32px
	}
}

@media only screen and (max-width:1023px) {
	header.header .header_center .header_nav .header_nav_center .header_nav_center_links .header_nav_item:not(:last-child) {
		margin-right: 18px;
	}
}

@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_center .header_nav_center_links .header_nav_item:not(:last-child) {
		margin: 0
	}
}
header.header .header_center .header_nav .header_nav_center .header_nav_center_links .header_nav_item[href] {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	line-height: 40px;
	font-weight: 700;
	color: #777e90;
	transition: all .2s
}

@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_center .header_nav_center_links .header_nav_item[href] {
		padding: 0 22px;
		border-left: 2px solid transparent;
		font-size: 20px;
		line-height: 60px;
		font-weight: 600;
	}
}

header.header .header_center .header_nav .header_nav_center .header_nav_center_links .header_nav_item[href].active,
header.header .header_center .header_nav .header_nav_center .header_nav_center_links .header_nav_item[href]:hover {
	color: #23262f
}

@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_center .header_nav_center_links .header_nav_item[href].active,
	header.header .header_center .header_nav .header_nav_center .header_nav_center_links .header_nav_item[href]:hover {
		border-color: #00934b
	}
}
/*
header.header .header_center .header_nav .header_nav_item.account.badge_pro:after {
	content: '';
	width: 20px;
	height: 20px;
	background: url('https://limewire.com/icons/icon-badge-pro-fill.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 1;
	transition: all .2s;
	display: block;
	position: absolute;
	right: -5px;
	bottom: -5px;
}
*/
header.header .header_center .header_nav .header_nav_item.dropdown {
	position: relative;
}
header.header .header_center .header_nav .header_nav_item.dropdown > span {
	display: flex;
	align-items: center;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	line-height: 40px;
	font-weight: 700;
	transition: color .2s;
	-webkit-tap-highlight-color: transparent;
	color: #777e90;
	cursor: pointer;
}
@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_item.dropdown > span {
		width: 100%;
		padding: 0 22px;
		border-left: 2px solid transparent;
		font-size: 20px;
		line-height: 60px;
		font-weight: 600;
	}
}
header.header .header_center .header_nav .header_nav_item.dropdown.account > span {
	width: 40px;
	height: 40px;
	border-radius: 999px;
}
header.header .header_center .header_nav .header_nav_item.dropdown.account.badge_pro > span:before {
	content: '';
	width: 20px;
	height: 20px;
	background: url('https://limewire.com/icons/icon-badge-pro-fill.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 1;
	transition: all .2s;
	display: block;
	position: absolute;
	right: -5px;
	bottom: -5px;
	z-index: 1;
}
header.header .header_center .header_nav .header_nav_item.dropdown > span:after {
	content: '';
	width: 16px;
	height: 16px;
	background: url('https://limewire.com/icons/icon-arrow-down.svg');
	opacity: 0.5;
	transition: all .2s;
}
header.header .header_center .header_nav .header_nav_item.dropdown.account > span:after {
	content: '';
	/*background: url('https://limewire.com/icons/icon-user-white.svg');
	background-size: 53%;
	background-position: 9px 8px;*/
	width: 100%;
	height: 100%;
	background: url('https://limewire.com/icons/icon-vinyl-limewire.svg');
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 1;
	-webkit-animation: rotating 2s linear infinite;
	-moz-animation: rotating 2s linear infinite;
	-ms-animation: rotating 2s linear infinite;
	-o-animation: rotating 2s linear infinite;
	animation: rotating 2s linear infinite;
}
/*header.header .header_center .header_nav .header_nav_item.dropdown.account:hover > span:after,
header.header .header_center .header_nav .header_nav_item.dropdown.account > span.open:after {
	-webkit-animation: rotating 2s linear infinite;
	-moz-animation: rotating 2s linear infinite;
	-ms-animation: rotating 2s linear infinite;
	-o-animation: rotating 2s linear infinite;
	animation: rotating 2s linear infinite;
}*/
@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_item.dropdown > span:after {
		width: 32px;
		height: 32px;
	}
}
header.header .header_center .header_nav .header_nav_item.dropdown > span:hover:after {
	opacity: 1;
}
header.header .header_center .header_nav .header_nav_item.dropdown > span.open:after {
	opacity: 1;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	/* fill: #23262f; */
}
header.header .header_center .header_nav .header_nav_item.dropdown.account > span.open:after {
	-webkit-transform: unset;
	transform: unset;
}
header.header .header_center .header_nav .header_nav_item.dropdown > span:hover {
	color: #23262f
}
header.header .header_center .header_nav .header_nav_item.dropdown > span.open {
	color: #23262f
}
header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body {
	position: absolute;
	top: calc(100% + 21px);
	border-radius: 12px;
	background: #fcfcfd;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	-webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
	box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}
@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body {
		top: 100%
	}
}
header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body:before {
	content: "";
	position: absolute;
	bottom: 100%;
	width: 24px;
	height: 12px;
	background: url('https://limewire.com/img/dropdown_tip.svg') no-repeat 50% 100%/100% auto
}
header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body {
	left: 50%;
	width: 215px;
	-webkit-transform: translate(-50%, 10px);
	transform: translate(-50%, 10px);
	padding: 0 16px;
	padding: 0;
}
@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body {
		position: static;
		display: none;
		width: 100%;
		padding: 0 24px;
		box-shadow: none;
		visibility: visible;
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0)
	}
}
header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body:before {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%)
}
@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body:before {
		display: none
	}
}
header.header .header_center .header_nav .header_nav_item.dropdown.account .dropdown_body:before {
	left: unset;
	right: 8px;
	-webkit-transform: none;
	transform: none;
}

header.header .header_center .header_nav .header_nav_item.dropdown span.open + .dropdown_body {
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0)
}
@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_item.dropdown span.open + .dropdown_body {
		display: block;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0)
	}
}
header.header .header_center .header_nav .header_nav_item.dropdown span.open + .dropdown_body {
	visibility: visible;
	opacity: 1
}
header.header .header_center .header_nav .header_nav_item.dropdown.account .dropdown_body,
header.header .header_center .header_nav .header_nav_item.dropdown.account span.open + .dropdown_body {
	-webkit-transform: none;
	transform: none;
	right: 0;
	left: unset;
	width: 200px;
}
header.header .header_center .header_nav .header_nav_item.dropdown.account .dropdown_body .profile_summary {
	border-bottom: 1px solid #e6e8ec;
	padding: 7px 16px 5px 16px;
}
header.header .header_center .header_nav .header_nav_item.dropdown.account .dropdown_body .profile_summary .username {
	font-size: 14px;
	font-weight: 600;
	position: relative;
	text-overflow: ellipsis;
	max-width: 150px;
	white-space: nowrap;
	overflow: hidden;
	display: inline-block;
	margin-bottom: -7px;
}
header.header .header_center .header_nav .header_nav_item.dropdown.account.badge_pro .dropdown_body .profile_summary .username + .badge:after {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../icons/icon-badge-pro-fill.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transition: all .2s;
    display: block;
    position: absolute;
    right: 16px;
    top: 10px;
}
header.header .header_center .header_nav .header_nav_item.dropdown.account .dropdown_body .profile_summary .email {
	font-size: 14px;
	position: relative;
	top: -5px;
	display: block;
}
header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body .header_nav_item {
	display: flex;
	align-items: center;
	padding: 16px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	line-height: 1.14286;
	font-weight: 700;
	color: #353945;
	transition: color .2s;
	margin-right: 0;
	position: relative;
}
header.header .header_center .header_nav .header_nav_item.dropdown.account .dropdown_body .header_nav_item.logout {
	/* color: red; */
}
header.header .header_center .header_nav .header_nav_item.dropdown.account .dropdown_body .header_nav_item.logout:before {
    content: '';
    width: 18px;
    height: 18px;
    background: url(../icons/icon-power.svg);
    background-size: contain;
    opacity: 1;
    transition: all .2s;
    display: inline-block;
    top: 0;
    left: 0;
    position: relative;
    margin-right: 6px;
}
@media only screen and (max-width:767px) {
    header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body .header_nav_item {
		height: 45px;
		padding: 0 16px;
		border-radius: 8px;
		font-size: 16px;
		font-weight: 500;
	}
}
header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body .header_nav_item:not(.no_arrow):after {
	content: '';
	width: 16px;
	height: 16px;
	position: absolute;
	transition: all .1s;
	display: block;
	float: right;
	background: url(../icons/icon-arrow-right-alt.svg);
	right: 15px;
	top: 17px;
}
header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body .header_nav_item:hover:after {
	right: 10px;
}
@media only screen and (max-width:767px) {
	.header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body .header_nav_item:active,
	header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body .header_nav_item:hover {
		background: #f4f5f6
	}
}
header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body .header_nav_item .tag {
	margin-left: 5px;
	position: absolute;
	right: 16px;
}
.header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body .header_nav_item:not(:last-child) {
	border-bottom: 1px solid #e6e8ec
}

@media only screen and (max-width:767px) {
	.header.header .header_center .header_nav .header_nav_item.dropdown .dropdown_body .header_nav_item:not(:last-child) {
		border: none
	}
}
.header.header .header_center .header_nav .header_nav_center .header_nav_mobile_ctas {
	display: none;
}
@media only screen and (max-width:767px) {
	.header.header .header_center .header_nav .header_nav_center .header_nav_mobile_ctas {
		display: flex;
		margin: auto 16px 0;
	}
	.header.header .header_center .header_nav .header_nav_center .header_nav_mobile_ctas .header_nav_item {
		flex: 0 0 calc(50% - 16px);
		width: calc(50% - 16px);
		margin: 0 8px;
	}
}
header.header .header_center .header_nav .header_nav_right {
	display: flex
}
@media only screen and (max-width:767px) {
	header.header:not(.waitlist) .header_center .header_nav > .header_nav_right {
		display: none
	}
	header.header .header_center .header_nav .header_nav_right {
		margin: auto 16px 0
	}
	header.header.waitlist .header_center .header_nav .header_nav_right {
		margin: 0;
	}
}
header.header.waitlist .header_center .header_nav .header_nav_right {
	align-items: center;
}
@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_right .header_nav_item {
		flex: 0 0 calc(50% - 16px);
		width: calc(50% - 16px);
		margin: 0 8px;
	}
}

header.header .header_center .header_nav .header_nav_right .header_nav_item:not(:last-child) {
	margin-right: 10px;
}

@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_nav_right .header_nav_item:not(:last-child) {
		margin-right: 8px
	}
}

header.header.waitlist .header_center .header_nav .header_nav_right span {
	font-size: 14px;
	font-weight: 500;
	margin-right: 10px;
	font-family: 'DM Sans', sans-serif;
}
@media only screen and (max-width:767px) {
	header.header.waitlist .header_center .header_nav .header_nav_right span {
	    display: none;	
	}
	header.header.waitlist .header_center .header_nav .header_nav_right .header_nav_item {
		flex: unset;
		margin: 0;
		width: 100px;
	}
}

header.header .header_center .header_nav .header_burger {
	display: none
}

@media only screen and (max-width:767px) {
	header.header .header_center .header_nav .header_burger {
		display: block;
		position: relative;
		z-index: 15;
		margin-left: 12px;
		width: 32px;
		height: 32px;
		background: 0 0;
		-webkit-tap-highlight-color: transparent
	}
	header.header .header_center .header_nav .header_burger:after,
	header.header .header_center .header_nav .header_burger:before {
		content: '';
		position: absolute;
		top: 16px;
		left: 6px;
		width: 20px;
		height: 2px;
		background: #777e90;
		border-radius: 2px;
		transition: -webkit-transform .2s;
		transition: transform .2s;
		transition: transform .2s, -webkit-transform .2s
	}
	header.header .header_center .header_nav .header_burger:before {
		-webkit-transform: translateY(-4px);
		transform: translateY(-4px)
	}
	header.header .header_center .header_nav .header_burger:after {
		-webkit-transform: translateY(3px);
		transform: translateY(3px)
	}
	header.header .header_center .header_nav .header_burger.open:before {
		-webkit-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg)
	}
	header.header .header_center .header_nav .header_burger.open:after {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg)
	}
}
/* footer */
.footer {
	border-top: 1px solid #e6e8ec
}
@media only screen and (max-width:767px) {
	.footer_body {
		position: relative;
		padding-top: 32px
	}
}
.footer_center {
	display: flex;
	justify-content: space-between;
}
@media only screen and (max-width:767px) {
	.footer_center {
		display: block
	}
}
.footer_col {
	padding: 80px 80px 64px 80px;
}
@media only screen and (max-width:1339px) {
	.footer_col {
		padding: 60px 30px 64px 60px;
	}
}
@media only screen and (max-width:1179px) {
	.footer_col {
		flex: 0 0 34%
	}
}
@media only screen and (max-width:1023px) {
	.footer_col {
		padding: 64px 32px 48px
	}
}
@media only screen and (max-width:767px) {
	.footer_col {
		padding: 32px 0;
		border-bottom: 1px solid #e6e8ec
	}
}
.footer_col.menu {
	display: flex;
	flex-direction: row;
	padding-right: 0;
	justify-content: space-between;
	align-content: center;
	flex-wrap: nowrap;
	align-items: center;
}
.footer_col:first-child {
	display: flex;
	padding-left: 0;
	flex-direction: column;
	padding-top: 50px;
}
@media only screen and (max-width:1179px) {
	.footer_col:first-child {
		flex: 0 0 32%
	}
}
@media only screen and (max-width:767px) {
	.footer_col:first-child {
		display: block
	}
}
.footer_col:nth-child(3) {
	padding-right: 0
}
.footer_col:nth-child(2),
.footer_col:nth-child(3) {
	/* border-left: 1px solid #e6e8ec */
}
@media only screen and (max-width:767px) {
	.footer_col:nth-child(2),
	.footer_col:nth-child(3) {
		border-left: none
	}
}
.footer_col span.marker {
	display: block;
	line-height: 20px;
	background-color: #00934b;
	padding: 10px 10px 12px 10px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-weight: 400;
	font-weight: 900;
	color: #fff;
	font-size: 24px;
	white-space: nowrap;
}
.footer_col span.marker:nth-child(2) {
	padding-bottom: 5px;
}
.footer_col span.marker:nth-child(3) {
	padding-bottom: 13px;
}
.footer_col span.marker:nth-child(4) {padding-top: 4px;}
.footer_logo {
	display: inline-block;
	margin-right: 160px;
	width: 40px;
}
@media only screen and (max-width:1339px) {
	.footer_logo {
		margin-right: 80px
	}
}
@media only screen and (max-width:1023px) {
	.footer_logo {
		margin-right: 32px
	}
}
@media only screen and (max-width:767px) {
	.footer_logo {
		width: 140px;
		margin: 0 0 32px;
		display: none;
	}
}
.footer_logo img {
	width: 80px;
	position: relative;
	left: -2px;
	margin-bottom: 40px;
}
.footer_menu {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-right: 75px;
}
@media only screen and (min-width:768px) {
	.footer_menu {
		display: flex!important;
	}
}
@media only screen and (max-width:767px) {
	.footer_menu {
		/* display: none; */
		padding-top: 0;
	}
}
.footer_link {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	line-height: 1.14286;
	font-weight: 700;
	color: #777e90;
	transition: color .2s
}
.footer_link.heading {
	color: #000000;
}
@media only screen and (max-width:767px) {
	.footer_link {
		display: block
	}
}
.footer_link.active,
.footer_link:hover {
	color: #23262f
}
.footer_link:not(:last-child) {
	margin-bottom: 20px;
}
.footer_bottom {
	padding: 25px 0 35px;
}
@media only screen and (max-width:767px) {
	.footer_bottom {
		padding: 56px 0 48px;
		border: none
	}
}
.footer_copyright {
	margin-right: auto;
	font-size: 12px;
	color: #777e90;
}
@media only screen and (max-width:767px) {
	.footer_copyright {
		margin: 0 0 24px
	}
}
.footer_copyright span {position: relative;top: 4px;}
.footer_terms a {
	font-size: 12px;
	line-height: 1.66667;
	color: #777e90;
}
.footer_terms a:hover {
	text-decoration: underline;
}
.footer_socials {
	display: flex
}
.footer_social {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 20px;
	height: 20px
}
.footer_social .icon {
	width: 16px;
	height: 16px;
	fill: #777e90;
	transition: fill .2s
}
.footer_social .icon-twitter {
	width: 18px;
	height: 18px
}
.footer_social .icon-behance {
	width: 20px;
	height: 20px
}
.footer_social:hover .icon {
	fill: #23262f
}
.footer_social:not(:last-child) {
	margin-right: 24px
}
/* waitlist - login */
body .inner_wrap.waitlist {
    position: relative;
    display: block;
    flex-grow: 1;
}
body .inner_wrap.waitlist .waitlist_signup .form {
    width: 380px;
    margin: 0 auto;
    position: relative;
    /* top: 180px; */
}
body .inner_wrap.waitlist .waitlist_signup:not(.joined_waitlist) .form.referral_info,
body .inner_wrap.waitlist .waitlist_signup.joined_waitlist .form.waitlist_form {
	display: none;
}
body .inner_wrap.waitlist .waitlist_signup.joined_waitlist .form.referral_info {
	display: block;
	width: 450px;
}
body .inner_wrap.waitlist .waitlist_signup.joined_waitlist .form.referral_info .url_wrap {
	padding: 10px 10px;
	border: 1px solid #e3e3e3;
	margin-top: 2px;
	display: block;
	border-radius: 10px;
	font-size: 15px;
	font-family: 'DM Sans';
	font-weight: 500;
	position: relative;
	padding-right: 50px;
	height: 47.7px;
}
body .inner_wrap.waitlist .waitlist_signup.joined_waitlist .form.referral_info .url_wrap a.copy {
    width: 21px;
    height: 21px;
    background: url(../icons/icon-copy.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .2s;
    display: inline-block;
    top: 12px;
    right: 5px;
    position: absolute;
    margin-right: 10px;
    opacity: 0.75;
    transition: none;
    cursor: pointer;
}
body .inner_wrap.waitlist .waitlist_signup.joined_waitlist .form.referral_info .url_wrap a.copy:hover {
    opacity: 1;
}
body .inner_wrap.waitlist .waitlist_signup.joined_waitlist .form.referral_info .url_wrap a.copy.copied {
    background: transparent;
    opacity: 1;
    margin-top: 0px;
    right: 18px;
    transition: none;
    font-size: 12px;
}
body .inner_wrap.waitlist .waitlist_signup .form .head {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e6e8ec;
}
body .inner_wrap.waitlist .waitlist_signup .form .head .heading {
    margin-bottom: 0;
    text-align: center;
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: -.01em;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}
body .inner_wrap.waitlist .waitlist_signup .form .head .heading + p {text-align: center;margin-top: 20px;color: #777e90;font-weight: 500;font-family: 'DM Sans', sans-serif;letter-spacing: -0.2px;line-height: 25px;}
body .inner_wrap.waitlist .waitlist_signup .form .head .heading + p a {
    text-decoration: underline;	
}
body .inner_wrap.waitlist .waitlist_signup {
	padding: 100px 0 135px 0;
	background: #ffffff url(../img/test_illustration_fade.svg);
	background-size: 150%;
	background-position: center;
}
body .inner_wrap.waitlist .waitlist_signup.creators {
	padding: 150px 0 135px 0;
	background: #ffffff url(../img/test_illustration_gray.svg);
	background-size: 150%;
	background-position: center;
}
body .inner_wrap.waitlist .waitlist_signup .form.referral_info .form {
	width: 450px;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row {
	margin-bottom: 32px;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row:last-of-type {
	margin-bottom: 0;
}
body .inner_wrap.waitlist .waitlist_signup .form.login .form .form_row.submit {
    margin-bottom: 25px;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .label {
	margin-bottom: 12px;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	color: #777e90;
	font-family: 'DM Sans', sans-serif;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .label a.forgot {text-decoration: underline;float: right;color: #23262f;text-transform: none;position: relative;top: -1px;}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .input_wrap {
    position: relative
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .input_wrap input {
    width: 100%;
    border-radius: 5px;
    box-shadow: inset 0 0 0 1px #d7d7d7;
    background: 0 0;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    line-height: 1.71429;
    font-weight: 500;
    color: #23262f;
    height: 48px;
    padding: 0 14px;
    background: #fff;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .input_wrap input:focus {
    box-shadow: inset 0 0 0 2px #777e90;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .input_wrap input + .show_password {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48px;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .input_wrap input + .show_password:before {
	content: '';
	width: 20px;
	height: 20px;
	background: url(../icons/icon-eye-fill.svg);
	background-size: contain;
	display: inline-block;
	position: absolute;
	left: 10px;
	top: 14px;
	opacity: 0.25;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .input_wrap input + .show_password:hover:before {
	opacity: 0.5;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .input_wrap input + .show_password.active:before {
	background: url(../icons/icon-eye-slash-fill.svg);
	background-size: contain;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .checkbox > input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .checkbox .inner {
    display: flex;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .checkbox .inner .text {
	font-weight: 400;
	color: #777e90;
	line-height: 20px;
	font-size: 14px;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .checkbox .inner .text a {
    font-weight: 500;
    color: #23262f;
    transition: color .1s;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .checkbox .inner .tick {
    position: relative;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border-radius: 4px;
    border: 2px solid #e6e8ec;
    transition: all .1s;
    cursor: pointer;
    top: 4px;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .checkbox .inner .tick:hover {
    border-color: #3772ff;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .checkbox input:checked+.inner .tick {
	background: #3772ff;
    border-color: #3772ff;	
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .checkbox .inner .tick:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 14px;
	height: 10px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' fill='none' viewBox='0 0 14 10'%3E%3Cpath fill-rule='evenodd' d='M13.707.293a1 1 0 0 1 0 1.414l-8 8a1 1 0 0 1-1.414 0l-4-4a1 1 0 1 1 1.414-1.414L5 7.586 12.293.293a1 1 0 0 1 1.414 0z' fill='%23fcfcfd'/%3E%3C/svg%3E") no-repeat 50% 50%/100% auto;
	opacity: 0;
	transition: opacity .2s;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row .checkbox input:checked+.inner .tick:before {
    opacity: 1;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row.submit button {
	width: 100%;
	background: #00934b url(../img/diamonds_background.svg);
	background-size: cover;
}
body .inner_wrap.waitlist .waitlist_signup.creators .form .form .form_row.submit button {
	width: 100%;
	background: #23262f url(../img/diamonds_background.svg);
	background-size: cover;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row.legal p {
    font-weight: 400;
    color: #777e90;
    line-height: 20px;
    font-size: 14px;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row.legal.explanation p {
    font-size: 15px;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row.legal p a {
    font-weight: 500;
    text-decoration: underline;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row.captcha {
	margin-bottom: 15px;
	background: #f9f9f9;
	padding: 5px 10px;
	text-align: center;
	border: 1px solid #d7d7d7;
	border-radius: 5px;
	position: relative;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row.captcha .t {display: block;position: absolute;width: 90%;left: 0;right: 0;top: 1px;margin: 0 auto;height: 17px;background: #f9f9f9;}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row.captcha .b {display: block;position: absolute;width: 90%;left: 0;right: 0;bottom: 2px;margin: 0 auto;height: 10px;background: #f9f9f9;}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row.captcha .t:before {
	content: '';
	display: block;
	position: absolute;
	left: 10px;
	top: 11px;
	width: 20px;
	height: 75px;
	background: #f9f9f9;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row.captcha .b:before {
	content: '';
	display: block;
	position: absolute;
	right: 10px;
	bottom: 11px;
	width: 20px;
	height: 75px;
	background: #f9f9f9;
}
body .inner_wrap.waitlist .hero .copy_side {
	display: block;
	width: 575px;
	position: relative;
	top: -1px;
}
body .inner_wrap.waitlist .hero .center.video_playing .copy_side {
	display: none;	
}
body .inner_wrap.waitlist .hero .copy_side .marker {
	display: block;
	line-height: 30px;
	background-color: #00934b;
	padding: 15px 15px 17px 15px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-weight: 900;
	color: #fff;
	font-size: 35px;
	white-space: nowrap;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
}
body .inner_wrap.waitlist .hero .copy_side .marker:first-of-type,
body .inner_wrap.waitlist .hero .copy_side .marker:nth-child(2) {margin-bottom: -5px;}
body .inner_wrap.waitlist .hero .copy_side .ctas a {
	
}
body .inner_wrap.waitlist .hero .copy_side .ctas a:first-of-type {
	margin-right: 5px;
	background: #00934b;
	background-size: cover;
}
body .inner_wrap.waitlist .hero .copy_side .ctas p {width: 450px;margin-top: 34px;margin-bottom: 20px;font-weight: 500;font-family: 'DM Sans', sans-serif;letter-spacing: -0.2px;line-height: 25px;}
body .inner_wrap.waitlist .hero .video_side {
	display: block;
	width: 588px;
	height: 330px;
	background: #025a2f url(../img/diamonds_background.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	transition: all .5s;
	top: -2px;
}
body .inner_wrap.waitlist .hero .center.video_playing .video_side {width: 80%;height: 540px;width: 100%;height: 675px;margin: 0 auto;}
body .inner_wrap.waitlist .hero .video_side a {
	display: block;
	width: 100%;
	height: 100%;
}
body .inner_wrap.waitlist .hero .video_side a:before {
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	background-color: hsla(0,0%,100%,.2);
	background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg viewBox=\'0 0 24 24\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath d=\'M19 12a1 1 0 0 1-.55.89l-10 5A1 1 0 0 1 8 18a1 1 0 0 1-.53-.15A1 1 0 0 1 7 17V7a1 1 0 0 1 1.45-.89l10 5A1 1 0 0 1 19 12z\' fill-opacity=\'.2\'/%3E%3C/svg%3E');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 80px 80px;
	border-radius: 9px;
	content: " ";
	display: block;
	height: 80px;
	opacity: .9;
	transition: opacity .2s ease-in-out,transform .1s ease-in-out,background-color .1s ease-in-out;
	width: 120px;
	z-index: 1;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 125px;
	cursor: pointer;
}
body .inner_wrap.waitlist .hero .video_side a:hover:before {
    background-color: hsla(0,0%,100%,.5);
    opacity: 1;
}
body .inner_wrap.waitlist .hero .video_side.playing {
	background: transparent;
}
body .inner_wrap.waitlist .hero .video_side.playing .graphic {
}
body .inner_wrap.waitlist .hero .video_side.playing .play {
	display: none;
}
body .inner_wrap.waitlist .hero .video_side .play {
	cursor: pointer;
}
body .inner_wrap.waitlist .hero {
background: #eef6e9
}
body .inner_wrap.waitlist .hero .center:first-of-type {
	display: flex;
	width: 100%;
	min-height: 500px;
	min-height: 596px;
	padding-top: 150px;
	padding-bottom: 110px;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
}
body .inner_wrap.waitlist .hero .center.video_playing:first-of-type {
    display: block;
    padding-top: 100px;
    padding-bottom: 55px;
    padding-top: 80px;
    padding-bottom: 40px;
}
body .inner_wrap.waitlist .hero video {width: 100%;height: 100%;position: absolute;left: 0;right: 0;bottom: 0;opacity: 0.3;}
body .inner_wrap.waitlist .hero .video_side.playing video {
	opacity: 1;
}
body .inner_wrap.waitlist .hero .community {
	width: 100%;
	min-height: 80px;
	/* background: #fff; */
	border-radius: 10px;
	/* box-shadow: 0 7px 14px 0 rgb(60 66 87 / 10%), 0 3px 6px 0 rgb(0 0 0 / 10%); */
	overflow: hidden;
	/* border: 1px solid #c6d1cc; */
	padding: 15px 20px 15px 20px;
	text-align: center;
	/*background: rgba(198, 209, 204, 0.44);*/
	background: #d6e5ccab;
	/*background: #d4dfcdab;*/
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: space-between;
	align-items: center;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
	font-weight: 500;
}
body .inner_wrap.waitlist .hero .community .text {position: relative;top: -1px;}
body .inner_wrap.waitlist .hero .community span.text {
	margin-bottom: 15px;
	display: block;
}
body .inner_wrap.waitlist .hero .community .links {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	position: relative;
	top: 0;
	right: 30px;
}
body .inner_wrap.waitlist .hero .community .links a {
	width: 30px;
	height: 30px;
	background: #000;
	display: block;
	margin-right: 35px;
	position: relative;
}
body .inner_wrap.waitlist .hero .community .links a.telegram {
	background: url(../img/colored_logo_telegram.svg);
	background-position: left center;
	background-size: 30px;
	background-repeat: no-repeat;
	width: auto;
	padding-left: 38px;
	font-weight: 500;
	overflow: visible;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
}
body .inner_wrap.waitlist .hero .community .links a span {position: relative;top: 1px;}
body .inner_wrap.waitlist .hero .community .links a.discord {
	background: url(../img/colored_logo_discord.svg);
	background-position: left center;
	background-size: 30px;
	background-repeat: no-repeat;
	width: auto;
	padding-left: 38px;
	font-weight: 500;
	overflow: visible;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
	margin-right: 50px;
}
body .inner_wrap.waitlist .hero .community .links a.discord:after {
	content: '';
	display: inline-block;
	width: 1px;
	height: 30px;
	background: #c9d3c3;
	position: absolute;
	right: -25px;
	z-index: 1;
}
body .inner_wrap.waitlist .hero .community .links a.twitter {
	background: url(../img/colored_logo_twitter.svg);
	background-position: left center;
	background-size: 30px;
	background-repeat: no-repeat;
	width: auto;
	padding-left: 38px;
	font-weight: 500;
	overflow: visible;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
}
body .inner_wrap.waitlist .hero .community .links a.instagram {
	background: url(../img/colored_logo_instagram.svg);
	background-position: left center;
	background-size: 30px;
	background-repeat: no-repeat;
	width: auto;
	padding-left: 38px;
	font-weight: 500;
	overflow: visible;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
}
body .inner_wrap.waitlist .hero .community .links a.tiktok {
	background: url(../img/colored_logo_tiktok.svg);
	background-position: left center;
	background-size: 26px;
	background-repeat: no-repeat;
	width: auto;
	padding-left: 35px;
	font-weight: 500;
	overflow: visible;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
}
body .inner_wrap.waitlist .hero .community .links a:last-of-type {
	margin-right: 0px;
}


body .inner_wrap section.team .flex .card {
    display: block;
    width: 100%;
    /* background: #fff; */
    border-radius: 10px;
    text-align: left;
    padding: 0;
    position: relative;
    min-height: 400px;
    /* box-shadow: 0 7px 14px 0 rgb(60 66 87 / 10%), 0 3px 6px 0 rgb(0 0 0 / 10%); */
    overflow: hidden;
    padding: 25px 0 20px 0;
    border: 1px solid #d9dbdf;
}
body .inner_wrap section.team.advisory_board {
	padding-top: 0;
	padding-bottom: 60px;
}
body .inner_wrap section.team .flex .card.team .body {
}
body .inner_wrap section.team .flex .card.team ul {
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
	padding: 15px 0px;
}
body .inner_wrap section.team .flex .card.team ul li {
	width: 20%;
	text-align: center;
	position: relative;
}
body .inner_wrap section.team .flex .card.team ul li .picture {

}
body .inner_wrap section.team .flex .card.team ul li .picture img {
    width: 85px;
    height: 85px;
    border-radius: 999px;
    border: 0 solid #00934b;
    margin-bottom: 5px;
    object-fit: cover;
}
body .inner_wrap section.team .flex .card.team:not(.advisors) ul li .picture img {
    filter: grayscale(1);
}
body .inner_wrap section.team .flex .card.team.advisors ul li .picture img {
	border-radius: 5px;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}
body .inner_wrap section.team .flex .card.team.advisors ul li.ayita .picture img {
	object-fit: contain;
    width: 100px;
}
body .inner_wrap section.team .flex .card.team.advisors ul li.nue .picture img {
    width: 70px;
    object-fit: contain;
}
body .inner_wrap section.team .flex .card.team.advisors ul li.wyre .picture img {
	object-fit: contain;
    width: 85px;
}
body .inner_wrap section.team .flex .card.team.advisors ul li.six .picture img {
	object-fit: contain;
}
body .inner_wrap section.team .flex .card.team.advisors ul li.y2p .picture img {
    object-fit: contain;
    width: 65px;
    top: 3px;
    position: relative;
}
body .inner_wrap section.team .flex .card.team.advisors ul li.algorand .picture img {
	object-fit: contain;
    width: 125px;
}
body .inner_wrap section.team .flex .card.team.advisors ul li.defjam .picture img {
	object-fit: contain;
    border-radius: 5px;
}
body .inner_wrap section.team .flex .card.team.advisors ul li.bitpanda .picture img {
	object-fit: contain;
    width: 115px;
    position: relative;
    top: 5px;
}
body .inner_wrap section.team .flex .card.team ul li .linkedin {
	content: '';
    width: 20px;
    height: 20px;
    background: url('https://limewire.com/img/linkedin_icon.svg');
    background-size: contain;
    opacity: 1;
    transition: all .2s;
    display: inline-block;
    top: 0px;
    left: 24px;
    position: relative;
}
body .inner_wrap section.team .flex .card.team.advisors ul li .linkedin {
    margin-top: 5px;
}
body .inner_wrap section.team .flex .card.team ul li .linkedin span {
	display: inline-block;
    width: 100px;
    float: left;
    font-weight: 600;
    font-size: 12px;
    position: absolute;
    left: -72px;
    top: 0px;
    margin-left: -5px;
}
body .inner_wrap section.team .flex .card.team ul li .name {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
body .inner_wrap section.team .flex .card.team ul li .title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    white-space: nowrap;
}
body .inner_wrap section.team .flex .card.team ul li .title span {
    font-weight: 500;
    position: relative;
    top: -3px;
}
body .inner_wrap section.team .flex .card.team ul li .description {
    line-height: 16px;
}
body .inner_wrap section.team .flex .card.team ul li .description span {
    font-size: 12px;
    color: #777e90;
}
body .inner_wrap section.team .flex .card.team ul li .description span a {
	text-decoration: underline;
	cursor: pointer;
}
body .inner_wrap section.team .flex .card.team ul li .description.both span {
    position: absolute;
    bottom: 0;
    width: 155%;
    left: 45px;
    z-index: 1;
}
body section .section_header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
}
body section .section_header h2 {
    font-size: 26px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.2px;
    width: 100%;
}
body section .section_header h2 span:not(.hide_mobile) {float: right;font-size: 16px;position: relative;top: 11px;color: #888e9e;}
body section .section_header h2 span a {
	text-decoration: underline;
}
body .inner_wrap section.as_seen_in {
	background: transparent;
}
body .inner_wrap section.as_seen_in {padding: 35px 0 20px;}
body.page_creators .inner_wrap section.as_seen_in {
	padding: 35px 0 5px;
}
body .inner_wrap section.as_seen_in .list {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: center;
}
body .inner_wrap section.as_seen_in .list .list_item {
	background: url('https://limewire.com/img/media_forbes.svg');
	background-size: 100px;
	background-position: center;
	background-repeat: no-repeat;
	width: 18%;
	height: 75px;
	opacity: 0.25;
}
body .inner_wrap section.as_seen_in .list .list_item.text {
	background: none;
	width: 10%;
	position: relative;
	top: 25px;
	opacity: 0.4;
	font-family: 'DM SANS';
	font-weight: 600;
	margin-right: 30px;
	left: 20px;
	font-size: 14px;
}
body .inner_wrap section.as_seen_in .list .list_item.rollingstone {
	background: url('https://limewire.com/img/media_rollingstone.svg');
    background-size: 150px;
    position: relative;
    top: 2px;
    right: -8px;
    background-position: center;
    background-repeat: no-repeat;
}
body .inner_wrap section.as_seen_in .list .list_item.forbes {
	background: url('https://limewire.com/img/media_forbes.svg');
	background-size: 100px;
	background-position: center;
	background-repeat: no-repeat;
}
body .inner_wrap section.as_seen_in .list .list_item.tnw {
	background: url('https://limewire.com/img/media_tnw.svg');
	background-size: 90px;
	background-position: center;
	background-repeat: no-repeat;
}
body .inner_wrap section.as_seen_in .list .list_item.bloomberg {
	background: url('https://limewire.com/img/media_bloomberg.svg');
	background-size: 138px;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	top: 4px;
}
body .inner_wrap section.as_seen_in .list .list_item.techcrunch {
	background: url('https://limewire.com/img/media_tc.svg');
	background-size: 105px;
	background-position: center;
	background-repeat: no-repeat;
}
body .inner_wrap section.as_seen_in .list .list_item.reuters {
	background: url('https://limewire.com/img/media_reuters.svg');
	background-size: 135px;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.3;
	margin-right: 15px;
}
body .inner_wrap section.as_seen_in .list .list_item.cnbc {
	background: url('https://limewire.com/img/media_cnbc.svg');
	background-size: 120px;
	background-position: center;
	background-repeat: no-repeat;
}
body .inner_wrap section.as_seen_in .list .list_item.techeu {
	background: url('https://limewire.com/img/media_techeu.svg');
	background-size: 56px;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 25px;
	margin-left: -20px;
}
body section.lmwr_stats .center {
	
}
body section.lmwr_stats .center .flex {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	align-content: center;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #d7d7d9;
	padding-top: 25px;
}
body section.lmwr_stats .center .flex .col {
	padding: 20px 0;
}
body section.lmwr_stats .center .flex .col span {
	position: relative;
}
body section.lmwr_stats .center .flex .col.ticker {
	
}
/*
body section.lmwr_stats .center .flex .col.ticker span:before {
	content: '';
	width: 16px;
	height: 16px;
	background: url('https://limewire.com/icons/icon-lightning.svg');
	background-size: contain !important;
	transition: all .2s;
	display: inline-block;
	position: relative;
	top: 3px;
	left: -5px;
}
*/
body section.lmwr_stats {
	background: #e7e8ec;
	padding: 20px 0;
	font-size: 15px;
	padding-bottom: 35px;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
}
body section.lmwr_stats .center .flex .col.price {
	
}
body section.lmwr_stats .center .flex .col.price .plus {
	color: #00934c;
	font-weight: 600;
}
body section.lmwr_stats .center .flex .col.price .minus {
	
}
body section.lmwr_stats .center .flex .col.marketcap {
	
}
body section.lmwr_stats .center .flex .col.volume {
	
}
body section.lmwr_stats .center .flex .col.buy {
	
}
body section.lmwr_stats .center .flex .col.buy a.buy {
    background: #23262f url(../img/diamonds_background.svg);
    box-shadow: 0 0 0 2px #23262f inset;
    color: #ffffff;
    opacity: 1;
    background-size: cover;
    letter-spacing: normal;
}
body section.lmwr_stats .center .flex .col.buy a.look_up,
body section.lmwr_stats .center .flex .col.buy a.look_up:hover {
    box-shadow: 0 0 0 2px #23262f inset;
    margin-right: 8px;
	background: transparent;
	color: #23262f;
}
body section.lmwr_stats .center .flex .col.buy a.buy:hover {
    opacity: 0.8;
}
body .inner_wrap section.lmwr_token {
	background: #888e9e url("../img/top-bg.svg");
	background: #e7e8ec;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 55px 0 60px;
}
body .inner_wrap section.lmwr_token .center {
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	align-items: flex-start;
}
body .inner_wrap section.lmwr_token .center .copy_side {
    display: block;
    width: 575px;
    position: relative;
    top: 4px;
}
body .inner_wrap section.lmwr_token .center .copy_side .marker {
	display: block;
	line-height: 25px;
	background: #888e9e;
	padding: 15px 15px 17px 15px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-weight: 900;
	color: #fff;
	font-size: 26px;
	white-space: nowrap;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
}
body .inner_wrap section.lmwr_token .center .copy_side .marker:first-of-type {padding-bottom: 10px;margin-bottom: -5px;}
body .inner_wrap section.lmwr_token .center .copy_side .ctas p {
    width: 450px;
    margin-top: 30px;
    margin-bottom: 25px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.2px;
    line-height: 25px;
}

body .inner_wrap section.lmwr_token .center .copy_side .ctas a {
	width: 30px;
	height: 30px;
	background: #000;
	display: block;
	margin-right: 35px;
	position: relative;
}
body .inner_wrap section.lmwr_token .center .copy_side .ctas a.telegram {
	background: url(../img/colored_logo_telegram.svg);
	background-position: left center;
	background-size: 30px;
	background-repeat: no-repeat;
	width: auto;
	padding-left: 38px;
	font-weight: 500;
	overflow: visible;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
	margin-bottom: 15px;
}
body .inner_wrap section.lmwr_token .center .copy_side img {
    height: 105px;
    position: relative;
    top: -20px;
    left: -4px;
}
body .inner_wrap section.lmwr_token .center .copy_side .ctas a span {position: relative;top: 1px;}
body .inner_wrap section.lmwr_token .center .copy_side .ctas a.discord {
	background: url(../img/colored_logo_discord.svg);
	background-position: left center;
	background-size: 30px;
	background-repeat: no-repeat;
	width: auto;
	padding-left: 38px;
	font-weight: 500;
	overflow: visible;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
	margin-right: 50px;
}
body .inner_wrap section.lmwr_token .center .roadmap_side {
	width: 850px;
	height: 400px;
	background: url(../img/lw_roadmap.svg);
	background-size: cover;
}
body .inner_wrap section.faq {
	padding: 40px 0 80px;
}
body .inner_wrap section.faq .faq_wrap {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: -30px;
}
body .inner_wrap section.faq .faq_wrap .qa {
	margin-bottom: 30px;
	width: 47.5%;
	/* padding: 0 20px; */
}
body .inner_wrap section.faq .faq_wrap .qa:last-of-type {
}
body .inner_wrap section.faq .faq_wrap .qa .q {
	font-weight: 600;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
	line-height: 25px;
	margin-bottom: 5px;
}
body .inner_wrap section.faq .faq_wrap .qa .a {
	font-weight: 400;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: -0.2px;
	line-height: 25px;
}
body .inner_wrap section.faq .faq_wrap .qa .a a {text-decoration: underline;}
body .inner_wrap section.terms {

}
body .inner_wrap section.terms p {font-size: 14px;line-height: 18px;margin-bottom: 15px;}
body .inner_wrap section.terms ul {list-style-type: disc;padding-left: 15px;font-size: 14px;}
body .inner_wrap section.terms ul li {

}
body .inner_wrap section.terms h3 {margin-top: 30px;margin-bottom: 10px;}
body .inner_wrap section.terms h4 {margin-bottom: 15px;margin-top: 15px;}

/* error */
input.error {
	background: #fce3e4 !important;
    box-shadow: inset 0 0 0 1px #f3b9bb !important;
}
/* ALERTS */
.alert {
    border-radius: 5px;
    display: block;
    overflow: hidden;
    padding: 8px 12px 9px 42px;
    font-weight: 500;
    position: relative;
    margin-bottom: 15px;
    font-size: 15px;
}
.alert > a {
	text-decoration: underline;
	color: inherit;
}
.alert:first-of-type {
	margin-top: 0;
}
.alert.info {
    background: #e0e6f8;
    color: #2a407d;
}
.alert.error {
    background: #fce3e4;
    color: #de2102;
}
.alert.success {
    background: #d7f3e9;
    color: #267d5d;
}
.alert:before {
    content: "";
    padding: 3px 5px;
    font-size: x-large;
    font-weight: 600;
    position: absolute;
    left: 13px;
    top: 11px;
    background: url(../img/alert_icon_success.svg);
    width: 20px;
    height: 20px;
}
.alert.error:before {
    background: url(../img/alert_icon_error.svg);
}
.alert.info:before {
    background: url(../img/alert_icon_info.svg);
}
.referral_info .alert,
.creators .alert {
	line-height: 20px;
	margin-bottom: 30px;
}
.referral_info .alert p {
	
}
/* LOADING */
.loading {
    color: transparent !important;
}
.loading:before {
    display: block;
    z-index: 2000;
    position: absolute;
    content: '' !important;
    width: 20px;
    height: 20px;
    border: solid 2px transparent;
    border-top-color: #ffffff;
    border-left-color: #ffffff;
    border-radius: 999px;
    -webkit-animation: pace-spinner 600ms linear infinite;
    -moz-animation: pace-spinner 600ms linear infinite;
    -ms-animation: pace-spinner 600ms linear infinite;
    -o-animation: pace-spinner 600ms linear infinite;
    animation: pace-spinner 600ms linear infinite;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: -1px;
}
@-webkit-keyframes pace-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes pace-spinner {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-o-keyframes pace-spinner {
    0% {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-ms-keyframes pace-spinner {
    0% {
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes pace-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.share_wrap {
    text-align: center !important;
    margin-top: 15px;
}
/* mobile */
@media screen and (max-width: 1270px) {
	body .inner_wrap section.lmwr_token .center .copy_side {
    width: 550px;
	}
	body .inner_wrap section.lmwr_token .center .roadmap_side {
	background-repeat: no-repeat;
    background-size: contain;
    width: 70%;
    height: 350px;
    position: relative;
    top: 2pc;
	}
	
}
@media screen and (max-width: 1150px) {
	body .inner_wrap.waitlist .hero .community .text {
	display: none;	
	}
	body .inner_wrap.waitlist .hero .community {
		display: flex;
		flex-wrap: nowrap;
		flex-direction: row;
		align-content: center;
		justify-content: center;
		align-items: center;
	}
	body .inner_wrap.waitlist .hero .community .links {
		right: 0;	
	}
}
@media screen and (max-width: 1100px) {
body .inner_wrap section.lmwr_token {

}
body .inner_wrap section.lmwr_token .center .copy_side {
	width: 100%;
	text-align: center;
}
body .inner_wrap section.lmwr_token .center {
	display: block;	
}
body .inner_wrap section.lmwr_token .center .roadmap_side {
	width: 100%;
	height: 400px;
	background-size: contain;
	background-position: center;
}
body .inner_wrap section.lmwr_token .center .copy_side .marker,
body .inner_wrap section.lmwr_token .center .copy_side .ctas p {
	margin: 0 auto;
}	
body .inner_wrap section.lmwr_token .center .copy_side .ctas p {
	margin-top: 20px;	
	margin-bottom: 20px;	
}
body .inner_wrap section.lmwr_token .center .copy_side .ctas a,
body .inner_wrap section.lmwr_token .center .copy_side .ctas a.discord {
    width: 240px !important;
    margin: 0 auto;
    display: block;	
}
header.header.waitlist .header_center .header_nav .header_nav_right span {
	display: none;	
}
body .inner_wrap.waitlist .hero .copy_side .marker {
    font-size: 30px;	
    line-height: 25px;	
}
}
@media screen and (max-width: 1000px) {
body .inner_wrap section.as_seen_in .list .list_item.text {
	display: none;
}
body .inner_wrap section.as_seen_in .list {
justify-content: space-between;	
}
body .inner_wrap section.team .flex .card.team ul li .description span {
	display: none;	
}
}
@media screen and (max-width: 1050px) {
body .inner_wrap.waitlist .waitlist_signup {
background-size: 175% !important;		
}
}
@media screen and (max-width: 900px) {
body .inner_wrap.waitlist .waitlist_signup {
background-size: 200% !important;		
}
body .inner_wrap.waitlist .hero .center:first-of-type {
	min-height: 0;
	padding-top: 100px;
	padding-bottom: 75px;
}
body .inner_wrap section.team .flex .card.team .body {
	display: block;
	width: 1000px;
}
body .inner_wrap section.team .flex .card {
	white-space: nowrap;
	overflow: scroll;
}
}
@media screen and (max-width: 850px) {
body section.lmwr_stats .center .flex .col span strong {
	display: block;
}
body section.lmwr_stats .center .flex .col.ticker span strong + span.space {
	display: none;
}

}

@media screen and (max-width: 800px) {
body .inner_wrap.waitlist .waitlist_signup {
background-size: 250% !important;	
}
body .inner_wrap section.as_seen_in .list {display: block;white-space: nowrap;overflow: scroll;}
body .inner_wrap section.as_seen_in .list .list_item:not(.text) {display: inline-block !important;white-space: nowrap;overflow: scroll;width: 150px;}
}
@media screen and (max-width: 650px) {
body .inner_wrap.waitlist .waitlist_signup {
background-size: 300% !important;		
}
body .inner_wrap section.faq .faq_wrap {
	display: block;
}
body .inner_wrap section.faq .faq_wrap .qa {
	width: 100%;
}
}
@media screen and (max-width: 600px) {
body section.lmwr_stats .center .flex .col.volume,
body section.lmwr_stats .center .flex .col.marketcap {
	display: none;	
}

}
@media screen and (max-width: 550px) {
body .inner_wrap.waitlist .waitlist_signup {
background-size: 350% !important;	
}
}
@media screen and (max-width: 420px) {
body .inner_wrap.waitlist .waitlist_signup {
background-size: 450% !important;		
}
body .inner_wrap.waitlist .waitlist_signup .form {
	width: 95% !important;
}
body .inner_wrap.waitlist .waitlist_signup .form .form .form_row.legal p {
	text-align: center;	
}
}
@media screen and (max-width: 912px) {

body .inner_wrap.waitlist .hero .community .links a span {
	display: none;	
}

}
@media only screen and (max-width:767px) {
body .inner_wrap.waitlist .hero .center:first-of-type {
    display: block;
    padding-top: 90px;
    padding-bottom: 40px;
}
body .inner_wrap.waitlist .hero .copy_side {
		width: 100%;
		text-align: center;
}
body .inner_wrap.waitlist .hero .video_side {
		width: 100%;
		margin-top: 40px;
}
body .inner_wrap.waitlist .hero .copy_side .ctas p {
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
}
body .inner_wrap.waitlist .hero .copy_side .marker {
	font-size: 25px;
	line-height: 15px;
	margin: 0 auto;
}
body .inner_wrap.waitlist .waitlist_signup .form .head .heading,
body section .section_header h2 {
	font-size: 25px;
}
header.header.waitlist .header_center .header_nav .header_nav_right .header_nav_item.creator {
	display: none;	
}
body .inner_wrap section.lmwr_token .center .copy_side .marker {
	font-size: 25px;
	line-height: 20px;
	width: 100%;
}
.hide_mobile {
	display: none;	
}
body .inner_wrap section.faq {
    padding: 40px 0 60px;	
}
 	
}

@media screen and (max-width: 600px) {
body .inner_wrap section.lmwr_token .center .roadmap_side {
	height: 300px;
}

}
@media screen and (max-width: 520px) {
body section .section_header h2 span:not(.hide_mobile) {
	float: none;
	display: block;
	top: 0;
}

}
@media screen and (max-width: 500px) {
body .inner_wrap.waitlist .hero .copy_side .ctas p {
	width: 100%;
}
body .inner_wrap section.lmwr_token .center .copy_side .ctas p {
	width: 100%;
}
body .inner_wrap section.lmwr_token .center .roadmap_side {
	height: 250px;
}
body .inner_wrap.waitlist .waitlist_signup.joined_waitlist .form.referral_info {
	width: 95%;
}
body .inner_wrap.waitlist .waitlist_signup .form.referral_info .form {
	width: inherit !important;	
}
body .inner_wrap.waitlist .waitlist_signup .form .head .heading + p {
    margin: 0 auto;
    margin-top: 20px;	
}
}
@media screen and (max-width: 430px) {
body .inner_wrap.waitlist .waitlist_signup.joined_waitlist .form.referral_info .url_wrap a.copy {
	display: none;	
}
body .inner_wrap.waitlist .waitlist_signup.joined_waitlist .form.referral_info .url_wrap {
	padding-right: 10px;	
    overflow: scroll;
}

}
@media screen and (max-width: 430px) {
body .inner_wrap.waitlist .hero .community .links a {
	margin-right: 10px;
}
body .inner_wrap.waitlist .hero .community .links a.discord:after {
    right: -21px;	
}
body .inner_wrap section.lmwr_token .center .roadmap_side {
	height: 200px;
}
}
@media screen and (max-width: 380px) {
body .inner_wrap.waitlist .hero .copy_side .marker {
    font-size: 23px;	
}

}
.g-recaptcha, 
.g-recaptcha > div {
	margin: 0 auto;
	text-align: center;	
}







