html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
*[hidden],
.hidden {
    display: none !important;
}
body {
	line-height: 1;
}
menu, ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body {
	background-color: #1b1919;
	color: #fff;
	font-size: 16px;
	line-height: 1.3;
	font-family: 'Roboto',sans-serif;
	-webkit-font-smoothing: antialiased !important;
}
a,a:hover,a:focus {
	text-decoration: none;
	outline: none;
}
.wrapper {
	width: 1170px;
	max-width: 94%;
	margin: 0 auto;
}
.container {
	min-height: calc(100vh - 340px);
	padding: 40px 0;
}
.m-l-20 {
	margin-left: 20px;
}
.m-r-20 {
	margin-right: 20px;
}
.m-t-20 {
	margin-top: 20px;
}
.m-b-20 {
	margin-bottom: 20px;
}
.text-center {
	text-align: center;
}
.strong {
	font-weight: 700;
}
.italic {
	font-style: italic;
}
.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 6px;
    letter-spacing: 0.14em;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    appearance: none;
    -webkit-appearance: none;
}
.btn.large {
	font-size: 20px;
	padding: 12px 15px;
}
.btn.small {
	padding: 4px 10px;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 400;
}
.btn:hover ,
.btn.active{
	background-color: #fff;
	color: #3e2441;
}
.btn.revert {
	border-color: #3e2441;
	color: #3e2441;
}
.btn.revert:hover {
	background-color: #3e2441;
	color: #fff;
}
.btn.red {
	border-color: #ff5252;
	color: #ff5252;
}
.btn.red:hover {
	background-color: #ff5252;
	color: #fff;
}
.btn:disabled,
.btn.disabled {
	background-color: #b6b6b6;
    color: #212121;
    border-color: #b6b6b6;
    cursor: default;
}
.header {
	min-height: 50px;
	position: relative;
}
.header .menu {
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
}
.header .menu.open {
	background-color: #1b1919;
}
.header .menu .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header .logo {
	padding: 15px 0;
	font-size: 18px;
	line-height: 20px;
	font-weight: 700;
	color: #fff;
}
.header .nav > ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header .nav a {
	color: #fff;
    line-height: 20px;
    font-weight: 700;
    padding: 15px;
    display: block;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}
.header .nav:hover > ul > li > a {
	opacity: 0.6;
}
.header .nav > ul > li:hover > a {
	opacity: 1;
}
.header .nav > ul > li.has-submenu {
	position: relative;
}
.header .nav .submenu {
	position: absolute;
	top: 0;
	right: 0;
	margin-top: 40px;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	transition: all 0.2s ease-in-out;
}
.header .nav > ul > li.has-submenu:hover .submenu {
	visibility: visible;
	opacity: 1;
	z-index: 999;
}
.header .nav .submenu a {
	text-align: right;
	padding: 10px 15px;
}
.header .nav .submenu:hover a {
	opacity: 0.6;
}
.header .nav .submenu a:hover {
	opacity: 1;
}
.header .toggle-menu {
	display: none;
	width: 36px;
    height: 30px;
    position: relative;
}
.header .toggle-menu span {
	position: absolute;
    left: 8px;
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    transition: all 0.2s ease-in-out;
}
.header .toggle-menu span:nth-child(1) {
	top: 8px;
}
.header .toggle-menu span:nth-child(2) {
	top: 14px;
}
.header .toggle-menu span:nth-child(3) {
	top: 20px;
}
.header .toggle-menu.open span:nth-child(1) {
	top: 14px;
	transform: rotate(45deg);
}
.header .toggle-menu.open span:nth-child(3) {
	top: 14px;
	transform: rotate(-45deg);
}
.header .toggle-menu.open span:nth-child(2) {
	opacity: 0;
}
.hero {
	height: 160px;
	padding-top: 50px;
	background-color: #1b1919;
    box-shadow: 0px 0px 6px 0px #3e2441;
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url('/assets/images/pills.png');
	background-repeat: no-repeat;
    background-position: center top;
    background-size: auto auto;
}
.hero h1,
.hero h2 {
	color: #fff;
	font-weight: 700;
	text-align: center;
	margin: 0 3%;
}
.hero h1 {
	font-size: 60px;
	line-height: 64px;
}
.hero h2 {
	font-size: 30px;
	line-height: 34px;
}
.footer {
	font-size: 14px;
	line-height: 15px;
	border-top: 1px solid #4c4c4c;
	box-sizing: border-box;
	position: relative;
}
.footer .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .copyright {
	padding: 17px 0;
}
.footer .footer-nav > ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.footer .footer-nav a {
	color: #fff;
    padding: 17px 10px;
    display: block;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}
.footer .footer-nav:hover > ul > li > a {
	opacity: 0.6;
}
.footer .footer-nav > ul > li:hover > a {
	opacity: 1;
}
.footer .toggle-footer-menu {
	display: none;
	width: 36px;
    height: 30px;
    position: relative;
}
.footer .toggle-footer-menu span {
	position: absolute;
    left: 10px;
    width: 16px;
    height: 1px;
    background-color: #4c4c4c;
    border-radius: 1px;
    transition: all 0.2s ease-in-out;
}
.footer .toggle-footer-menu span:nth-child(1) {
	top: 10px;
}
.footer .toggle-footer-menu span:nth-child(2) {
	top: 15px;
}
.footer .toggle-footer-menu span:nth-child(3) {
	top: 20px;
}
.footer .toggle-footer-menu.open span:nth-child(1) {
	top: 15px;
	transform: rotate(45deg);
}
.footer .toggle-footer-menu.open span:nth-child(3) {
	top: 15px;
	transform: rotate(-45deg);
}
.footer .toggle-footer-menu.open span:nth-child(2) {
	opacity: 0;
}
.cookie {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	background-color: #3e2441;
	padding: 10px 20px;
	font-size: 15px;
	text-align: center;
	border-radius: 6px;
}
.cookie a:not(.btn) {
	color: #fff;
	text-decoration: underline;
}
.pagination {
	text-align: center;
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
}
.pagination .btn {
    margin-left: 10px;
    padding: 0;
    width: 36px;
    height: 30px;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: 400;
}
.pagination .btn:first-child {
	margin-left: 0;
}
.notif-holder {
	position: fixed;
    right: -270px;
    top: 65px;
    width: 260px;
    opacity: 0;
    z-index: 0;
    animation-name: notif;
    animation-duration: 5000ms;
}
.notif {
    width: 100%;
    padding: 10px 16px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
}
.notif + .notif {
	margin-top: 10px;
}
.notif.error {
	background-color: #ff5252;
}
.notif.success {
	background-color: #4CAF50;
}
.popup#refferal-block p {
	color: #212121;
}
.popup#refferal-block .icon-copy {
	display: inline-block;
	background-image: url('/assets/images/icon-copy.svg');
	background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
	width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
    left: 3px;
    cursor: pointer;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #212121 !important;
}
::-moz-selection {
	background-color: #3e2441;
	color: #fff;
}
::selection {
	background-color: #3e2441;
	color: #fff;
}

@keyframes notif {
	0% {
		right: -270px;
		opacity: 0;
		z-index: 101;
	}
	10% {
		right: 15px;
		opacity: 1;
		z-index: 101;
	}
	90% {
		right: 15px;
		opacity: 1;
		z-index: 101;
	}
	100% {
		right: -270px;
		opacity: 0;
		z-index: 0;
	}
}

@media only screen and (max-width: 768px)  {
	.container {
	    min-height: calc(100vh - 300px);
	}
	.header .toggle-menu {
		display: block;
	}
	.header .nav {
	    position: absolute;
	    top: 50px;
	    left: 0;
	    right: 0;
	    box-shadow: 0px 4px 6px 0px #3e2441;
	    display: none;
	}
	.header .nav > ul {
		display: block;
		background-color: #1b1919;
		text-align: center;
		padding: 10px 0;
		min-height: 140px;
	}
	.header .nav a {
		padding: 10px 15px;
		display: inline-block;
	}
	.header .nav > ul > li.has-submenu {
		margin-top: 20px;
	}
	.header .nav li.margin {
		margin-top: 20px;
	}
	.header .nav .submenu {
	    position: static;
	    visibility: visible;
	    opacity: 1;
	    z-index: 1;
	    margin-top: 0;
	}
	.header .nav:hover > ul > li > a,
	.header .nav .submenu:hover a {
		opacity: 1;
	}
	.hero {
		height: 120px;
	}
	.hero h1 {
		font-size: 36px;
		line-height: 40px;
	}
	.hero h2 {
		font-size: 30px;
		line-height: 32px;
	}
	.footer .toggle-footer-menu {
		display: block;
	}
	.footer .footer-nav {
	    position: absolute;
	    bottom: 45px;
	    right: 3%;
	    border: 1px solid #4c4c4c;
	    display: none;
	}
	.footer .footer-nav > ul {
		display: block;
		background-color: #1b1919;
		text-align: right;
		padding: 10px 0;
	}
	.footer .footer-nav a {
		padding: 10px 15px;
		display: inline-block;
	}
	.footer .footer-nav:hover > ul > li > a {
		opacity: 1;
	}
	.pagination .btn:not(.page-prev):not(.page-next) {
		display: none;
	}
}