
body {
	background:#252E33;
	
	font-family: 'Poppins', sans-serif;
	text-align: center;
	margin: 0;
	padding: 0;

	color: #d0d3d4;
	font-size: 16px;
	line-height: 1.4em;
	
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}

body * {
	box-sizing:border-box;
}

#background {
	background:#252E33;
	background: radial-gradient(circle, rgba(37,46,51,1) 0%, rgba(21,29,32,1) 100%), url(images/noise.svg);

	position: fixed;
	top:0;
	left:0;
	z-index:1;
	width:100%;
	height:100%;
	overflow: hidden;
}

.cloud {
	width: 400px; 
	height: 120px;
	background: #1FADE4;
	opacity: .125;

	border-radius: 400px;
	
	position: absolute;
	bottom:-2%;
	left:2%;
}

.cloud:before, 
.cloud:after {
	content: '';
	position: absolute; 
	background: #1FADE4;
	width: 200px; 
	height: 160px;
	position: absolute; 
	top: -55px; 
	left: 40px;
	
	border-radius: 200px;
	-moz-border-radius: 200px;
	-webkit-border-radius: 200px;
	
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	-moz-transform: rotate(30deg);
}

.cloud:after {
	width: 240px; 
	height: 240px;
	top: -120px; 
	left: auto; 
	right: 40px;
}

.s1 {
	bottom: -16%;
    left: -13%;
    transform: scale(3.2);
    opacity: 0.125;
}
.s2 {
    bottom: -4%;
    left: 18%;
    transform: scale(1.6);
    opacity: 0.15;
}
.s3 {
	bottom: -10%;
    left: 80%;
    transform: scale(2.6);
    opacity: 0.125;
}
.s4 {
	bottom: -3%;
    left: 80%;
    transform: scale(1.1);
    opacity: 0.1;
}

.x1 {
	transform: scale(1.4);
	opacity: 0.014;

	-webkit-animation: moveclouds 40s linear infinite;
	-moz-animation: moveclouds 40s linear infinite;
	-o-animation: moveclouds 40s linear infinite;
}

.x2 {
	bottom:6%;
	left: 18%;
	
	transform: scale(1.6);
	opacity: 0.016; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 50s linear infinite;
	-moz-animation: moveclouds 50s linear infinite;
	-o-animation: moveclouds 50s linear infinite;
}

.x3 {
	bottom:-4%;
	left: 30%;
	
	transform: scale(1.8);
	opacity: 0.018; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 45s linear infinite;
	-moz-animation: moveclouds 45s linear infinite;
	-o-animation: moveclouds 45s linear infinite;
}

.x4 {
	bottom: 5%; 
	left: 68%; 
	
	transform: scale(1.75);
	opacity: 0.075; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 44s linear infinite;
	-moz-animation: moveclouds 44s linear infinite;
	-o-animation: moveclouds 44s linear infinite;
}

.x5 {
	bottom: 10%; 
	left: 52%; 
	
	transform: scale(1.9);
	opacity: 0.019; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 40s linear infinite;
	-moz-animation: moveclouds 40s linear infinite;
	-o-animation: moveclouds 40s linear infinite;
}

@-webkit-keyframes moveclouds {
	0% {margin-left: 100vw;}
	100% {margin-left: -100vw;}
}
@-moz-keyframes moveclouds {
	0% {margin-left: 100vw;}
	100% {margin-left: -100vw;}
}
@-o-keyframes moveclouds {
	0% {margin-left: 100vw;}
	100% {margin-left: -100vw;}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #D2D5D8;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 500;
	margin: 0;
	padding: 0;
}

h2 {
	color: #1FADE4;
	font-size: 28px;
	line-height: 1.2em;
	letter-spacing: .5px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 20px 0;
	position:relative;
	z-index:1;
}

h2:after {
	background:transparent;
	background: radial-gradient(circle, rgba(37,46,51,0) 0%, rgba(10, 114, 186, .35) 100%);

	width:100%;
	height:1px;
	position:absolute;
	top:50%;
	left:0;
	z-index:1;
	content:"";
	margin:-1px 0 0 0;
}

h2 span {
	display:inline-block;
	padding:0 10px;
	position:relative;
	z-index:2;
}

h3 {
	color: rgba(210, 213, 216, .25);
	font-size: 20px;
	line-height: 1.2em;
	letter-spacing: 1px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 20px 0;
}

label {
	display: block;
	cursor: pointer;
	color: #9abac7;
	margin:0 0 10px 0;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 300;
}

#main-content {
	position: relative;
	z-index: 2;
	overflow:hidden;
	flex: 1;
	margin: 0 350px 0 0;
}

#emojiContainer {
	padding: 100px 80px 80px 80px;
	font-size:34px;
	line-height: 1;
}

#sidebar {
	position: fixed;
	bottom:0;
	right:0;
	z-index:99;

	height:100%;
	width: 350px;
	
	display:flex;
	flex-direction: column;
	justify-content: space-between;

	background-color: rgba(21, 29, 32, .25);
	border-left: 1px solid rgba(12, 134, 200, .45);
	box-shadow: inset 50px -50px 100px rgba(0, 0, 0, .025);

	overflow-y: auto;
	overflow-x: hidden;

	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}

#sidebar.open {
	left:0;
}

#sidebar-inner {
	padding: 40px 40px;
}

.search-container {
	background: #151d20;
    display: flex;
    justify-content: flex-start;
	position: fixed;
	top:0;
	left:0;
	z-index:99;
	display: block;
	width: calc(100% - 350px);
}

.search-container .eom-logo {
	background-image: url(images/EOM.SVG);
	background-size: contain;
	background-position: center center;
	width: 50px;
	height: 50px;
	cursor:default;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 20px;
	z-index:2;
	margin-top:-25px;

	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}

.search-container .eom-logo span {
	opacity: 0;
}

.search-container .eom-logo:hover {
	transform: rotate(360deg);
}

.search-container .search-field {
	position: relative;
}

.search-container .search-field input {
	background: #151d20;
	color: #D2D5D8;
	border: 0 none;
	border-bottom: 1px solid rgba(90, 91, 93, 0);
	box-shadow: 0 16px 30px rgba(0, 0, 0, .125);
	1px solid rgba(39,170,225,.125)

	border-radius:0;
	padding: 25px 40px 25px 100px;
	outline:none;

	width: 100%;
	font-size: 18px;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}
.search-container .search-field input::placeholder {
	color: #78909a;
	font-family: 'Poppins', sans-serif;
	font-weight:300;
}

.search-container .search-field input:hover,
.search-container .search-field input:focus {
	border-bottom: 1px solid rgba(12, 134, 200, .45);
	box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

.clear-button {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	color:rgba(210, 213, 216, .45);
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}

.clear-button:hover {
	color: rgba(210, 213, 216, .95);
}

#menu-button {
	background:#151D20;
	border: 0 none;
    position: absolute;
    height: 100%;
    width: 80px;
    top: 0;
    right: 0;
	cursor:pointer;
	display: none;
}

#menu-button span{
	display: block;
    height: 2px;
    width: 18px;
    background: #f2f2f2;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    z-index: 1;
    transition-duration: .3s;
    transition-timing-function: ease-out;
}

#menu-button span:nth-child(1) {
    margin-top: -5px;
}
#menu-button span:nth-child(3) {
    margin-top: 5px;
}

#menu-button:hover span:nth-child(1),
#menu-button:hover span:nth-child(3) {
    width: 14px;
}

#menu-button.active span:nth-child(1) {
    width: 12px;
}

#menu-button.active span:nth-child(2) {
	width: 16px;
}

#menu-button.active span:nth-child(3) {
    width: 12px;
}

.emoji-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.emoji {
	background:rgba(21, 29, 32, .65);
	border: 1px solid rgba(90, 91, 93, .25);

	position: relative;
	z-index:1;
	flex-basis: 80px;
	padding: 15px;
	margin: 3px;

	border-radius: 4px;
	cursor: pointer;
	user-select: none;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}

.emoji span {
	transition-duration: 0s;	
}

.emoji:hover {
	background:rgba(21, 29, 32, .98);
	border: 1px solid rgba(12, 134, 200, .45);
	box-shadow:0 10px 16px rgba(0,0,0,.125);

	transform:scale(2.25);
	z-index:2;
}

.category-filters {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.category-filters > div {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.category-filters > div label {
	display: flex;
	flex-grow: 1;
	align-items: center;
	gap: 10px;
	text-align: left;
	margin: 0;
}

.category-filters input[type="checkbox"] {
	width: 0;
	height: 0;
	border-radius:4px;
	accent-color: #1FADE4;
	opacity: 0;
	position: absolute;
	left:-999em;
}

.category-filters .checkboxSwitch {
	display: inline-block;
    padding: 6px;
    margin: 0px;
    width: 28px;
    height: 28px;

    cursor: pointer;

    background: #252E33;
    border: 1px solid #5A5B5D;
    border-radius: 3px;
    transition-duration: .3s;
    transition-timing-function: ease-out;
}

.category-filters > div label:hover .checkboxSwitch {
	transform: scale(1.125);
}

.category-filters .checkboxSwitch svg {
	fill:#5A5B5D;
}

.category-filters input[type="checkbox"]:checked + .checkboxSwitch {
    background: #1FADE4;
    border: 1px solid #0C86C8;
}

.category-filters input[type="checkbox"]:checked + .checkboxSwitch svg {
	fill:#EFF1F4;
}

.category-filters button {
	background:transparent;
	border:0 none;
	width: 18px;
	padding:0;
	cursor: pointer;
}

.category-filters button svg {
	fill:#5A5B5D;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}

.category-filters button:hover svg {
	fill:#d0d3d4;
}

.category-filters button.active svg {
	fill:#DC3A95;
}

input[type="range"] {
	display:block;
	width:100%;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	input[type='range'] {
		overflow: hidden;
		width: 100%;
		-webkit-appearance: none;
		background-color: #5A5B5D;
	}
	
	input[type='range']::-webkit-slider-runnable-track {
		height: 15px;
		-webkit-appearance: none;
		color: #1FADE4;
		margin-top: -1px;
	}
	
	input[type='range']::-webkit-slider-thumb {
		width: 15px;
		-webkit-appearance: none;
		height: 15px;
		cursor: ew-resize;
		background: #1FADE4;
		box-shadow: -200px 0 0 200px #0C86C8;
	}

}

input[type="range"]::-moz-range-progress {
	background-color: #1FADE4; 
}

input[type="range"]::-moz-range-track {  
	background-color: #5A5B5D;
}
input[
	type="range"]::-ms-fill-lower {
	background-color: #1FADE4; 
}

input[type="range"]::-ms-fill-upper {  
	background-color: #5A5B5D;
}

.toast {
	position: fixed;
	z-index:99;
	bottom: 40px;
	right: 40px;
	background-color: #DC3A95;
	color: #fff;
	display: flex;
	align-items: center;
	border-radius: 4px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.toast p {
	font-size: 22px;
	font-weight: 100;
	margin: 0;
    padding: 15px 20px;
}

.toast span {
	width:80px;
	height:60px;
	font-size: 44px;
	background:#151D20;
	border-radius: 4px 0 0 4px;
	line-height: 60px;
    padding: 0;
    margin: 0;
}

.toast.show {
	opacity: 1;
}

.tooltip {
	background-color:rgba(220, 58, 149, .95);
	border-radius: 4px;
	font-size: 6px;
	font-weight:300;
	letter-spacing: .5px;
	line-height: 1;

	text-transform:uppercase;
	white-space: nowrap;

	opacity: 0;

	transition: opacity 0.3s;
	pointer-events: none;

	padding: 5px 8px;

	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
}

.tooltip:after {
	position: absolute;
	bottom:-2px;
	left:50%;
	content:"";
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 2px solid transparent;
	border-right: 2px solid transparent;
	border-top: 2px solid rgba(220, 58, 149, .95);
}

.alignCenter {
	text-align: center !important;
}

.alignLeft {
	text-align: left !important;
}

.alignRight {
	text-align: right !important;
}

.noMargin {
	margin: 0 !important;
}

.noMarginTop {
	margin-top: 0 !important;
}

.noMarginBottom {
	margin-bottom: 0 !important;
}

.noPadding {
	padding: 0 !important;
}

.noPaddingTop {
	padding-top: 0 !important;
}

.noPaddingBottom {
	padding-bottom: 0 !important;
}

@media screen and (max-width:1280px) {

	#main-content {
		margin: 0 300px 0 0;
	}

	#emojiContainer {
		padding: 100px 80px 80px 80px;
	}

	.search-container {
		width: calc(100% - 300px);
	}

	#sidebar {
		width: 300px;
	}

}

@media screen and (max-width:980px) {

	#main-content {
		margin: 0;
	}

	.search-container {
		position: relative;
		width: calc(100%);
		height: 68px;
	}

	.search-container .eom-logo {
		left:10px;
	}

	.search-container .search-field {
		width: calc(100% - 80px);
	}

	.search-container .search-field input {
		padding:25px 20px 25px 70px;
		font-size: 14px;
	}
	
	.clear-button {
		right: 0px;
	}

	#emojiContainer {
		padding: 40px;
	}

	#menu-button {
		display: block;
	}

	#sidebar {
		width: 100%;
		height: calc(100% - 68px);
		position:fixed;
		left:100%;
	}

	.emoji:hover {
		transform:scale(2);
	}

	.tooltip {
		font-size: 7px;
	}
}

@media screen and (max-width:480px) {

	.search-container .eom-logo {
		width: 40px;
		height: 40px;
		margin-top:-20px;
	}

	.search-container .search-field input {
		padding:25px 20px 25px 60px;
	}

	#emojiContainer {
		padding: 20px;
	}

	.emoji:hover {
		transform:scale(1.5);
	}

	.tooltip {
		font-size: 9px;
	}

}