/* Variables */
:root {
	--primary: #ff0066;
	--secondary: #f399c0;
	--info: #00ccff;
	--light: #f8f9fa;
	--dark: #111111;
	--gray-050: #fafafa;
	--gray-100: #f5f5f5;
	--gray-200: #eeeeee;
	--gray-300: #e0e0e0;
	--gray-400: #bdbdbd;
	--gray-500: #9e9e9e;
	--gray-600: #757575;
	--gray-700: #616161;
	--gray-800: #424242;
	--gray-900: #212121;
	--black-t10: rgba(0, 0, 0, 0.1);
	--black-t30: rgba(0, 0, 0, 0.3);
	--black-t80: rgba(0, 0, 0, 0.8);
	--black: #000;
	--white: #fff;
	--light-blue: #98FFFF;
	--gradient-rl: linear-gradient(90deg, #FF0066 0%, #00CBFF 100%);
	--gradient: linear-gradient(90deg, #00CBFF 3%, #FF0066 100%);
	--gradient-gray: linear-gradient(270deg, #323232 0%, #080808 100%);
	--sapphire-gradient: linear-gradient(270deg, #0CF 0%, #3628B6 100%);
	--sapphire-gradient-rev: linear-gradient(90deg, #109CEA 0%, #3628B6 100%);
	--sapphire-gradient-ver: linear-gradient(90deg, #3628B6 0%, #00CCFF 100%);
	--sapphire:#3628B6;
}

a, a span {
	font-family: 'Roboto';
	color: var(--info);
	text-decoration: none;
	transition: 0.3s ease;
}

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

/* Navigation */

.logged-in.admin-bar #header-nav {
	top: 32px;
}

#header-nav {
	z-index: 999;
	line-height: 20px;
}

.navbar-brand img {
	max-width:unset !important;
}

#header-nav .nav-border {
	height: 1px;
	opacity: 0.5;
	background: var(--gradient);
}

#header-nav .dropdown-toggle {
	position: relative;
}

#header-nav .dropdown-toggle::after {
	position: absolute;
    right: 1.5rem;
}

#header-nav .dropdown-menu {
	background: var(--dark);
	overflow: hidden;
	letter-spacing: 0.025em;
	left: 0;
}

#header-nav .dropdown-menu:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 25%;
	bottom: 0;
	background: var(--gradient);
	filter: blur(100px);
	-webkit-filter: blur(100px);
	z-index: -1;
	opacity: 0.6;
}

@media only screen and (max-width: 768px) {
	#header-nav .dropdown-menu:after {
		display: none;
	}
}

#header-nav .nav-item a,
#header-nav .nav-link a,
#header-nav .nav-link span {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
}

#header-nav .nav-header,
#header-nav .nav-header a,
#header-nav span.nav-header {
	font-weight: 700;
	color: var(--white);
}

#header-nav .nav-link.hl a {
	font-weight: 700;
	color: var(--light-blue);
}

#header-nav a.nav-cta {
	color: var(--info);
}

#header-nav .press-badge {
	background: var(--gradient-gray);
	font-size: 12px;
}

#header-nav .nav-item a:hover,
#header-nav .nav-link a:hover,
#header-nav .nav-header a:hover {
	color: var(--info);
}

#header-nav a.nav-cta:hover {
	color: var(--white);
}

.navbar-utilities {
	list-style: none;
	margin: 0;
	padding: 0;
}

.navbar-utilities .utilities_login img {
	height: 16px;
}

.navbar-utilities .utilities_login a,
.navbar-utilities .utilities_search a {
	color: var(--white);
}

.navbar-utilities .utilities_login a:hover {
	color: var(--primary);
}

@media only screen and (max-width: 768px) {
	.logged-in.admin-bar #header-nav {
		top: 47px;
	}
}

@media only screen and (min-width: 992px) {
	
	.navbar-nav li:hover>.dropdown-menu {
		display: block;
	}
	.navbar-nav .nav-link {
		padding: 0.5rem 1.5rem;
	}
	.navbar-nav .nav-link::after {
		display: none;
	}
	#header-nav {
		padding: 0;
	}
}

/* Search Form nav */

.nav-search #search-form {
	display: flex;
	align-items: center;
}

.nav-search #search-input {
	width: 100%;
	height: 40px;
	color: var(--light);
	background: #111111;
	border: 1px solid var(--gray-900);
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.nav-search #search-submit {
	background: var(--info);
	color: black;
	height: 40px;
	border: none;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.nav-search .btn-close {
	margin-left: 1rem;
}

.nav-search {
	position: relative;
}

.nav-search::after {
	content: '';
    position: absolute;
    background: var(--gradient);
    bottom: 0;
    right: 0;
    height: 100%;
    aspect-ratio: 2/1;
    filter: blur(75px);
    -webkit-filter: blur(75px);
    z-index: -1;
}

/* Buttons */

.btn-primary,
.btn-primary:focus {
	position: relative;
	color: var(--white) !important;
	border: none;
	padding: 8px 20px;
	background-color: transparent;
	transition: 0.3s ease;
	font-size: 1rem;
	box-shadow:unset !important;
}

.btn-primary::before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--gradient);
	z-index: -1;
}

.btn-primary:hover {
	background: var(--primary);
}

.btn-secondary {
	display: inline-block;
	background: none;
	border: 2px solid var(--info) !important;
	color: var(--info) !important;
	padding: 0.5rem 1rem;
	font-size: 1rem;
}

.btn-secondary:hover {
	background: var(--info);
	color: var(--black) !important;
}

.btn-secondary:focus {
	background-color:unset;
	box-shadow:unset;
}

.btn-secondary-solid {
	display: inline-block;
	background: var(--info);
	color: var(--black) !important;
	padding: 0.5rem 1rem;
	font-size: 1rem;
}

.btn-red {
	display: inline-block;
	background: none;
	border: 2px solid var(--primary);
	color: var(--primary);
	padding: 0.5rem 1rem;
}

.btn-red:hover {
	background: var(--primary);
	color: var(--white) !important;	
}

.btn-info {
	background: var(--info);
	border: none;
	color: var(--black);
	padding: 12px 20px;
	border-radius: 5px;
	font-weight: bold;
	font-size: 1rem;
}

.btn-sapphire {
	position: relative;
	display:inline-block;
	color: var(--white) !important;
	border: none;
	padding: 8px 20px;
	background: transparent;
	transition: 0.3s ease;
	font-size: 1rem;
}

.btn-sapphire::before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--sapphire-gradient-rev);
	z-index: -1;
}

.btn-sapphire:hover {
	background: var(--sapphire);
}