/** Defaults **/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Montserrat;
	cursor: default;
}

h1 {
	margin-bottom: 30px;
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

h2 {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1px;
}

h3 {
	margin-top: 0;
	font-size: 20px;
	font-weight: 700;
}

body {
	min-height: 100vh;
	font-family: Poppins;
	font-size: 16px;
	font-weight: 300;
	color: white;
	background-color: #323232;
	background-image: url(../img/repeatingDots.png);
}

p {
	letter-spacing: 0.5px;
}

a {
	text-decoration: none;
	transition: all 200ms;
	outline: none !!important;
}

a:hover,
a:focus,
a:active {
	text-decoration: none;
}

input,
textarea {
	border: 1px solid #ddd;
	transition: all 200ms;
	box-shadow: none;
	border-radius: 0;
}

input:hover,
textarea:hover {
	border-width: 1px;
	border-style: solid;
}

input:focus,
textarea:focus,
input:active,
textarea:active {
	border-width: 1px;
	border-style: solid;
}

button {
	position: relative;
	border: none;
	box-shadow: none;
	font-size: 20px;
	font-family: Montserrat;
	font-weight: 500;
	color: white;
	transition: all 200ms;
}

.btn {
	outline: none !important;
}

.btn-grey,
.btn-grey::before,
.btn-grey::after,
.btn-grey:focus,
.btn-grey:active {
	background-color: #aaaaaa;
	background: -webkit-linear-gradient(top, #dddddd 0%, #aaaaaa 100%);

	background: -moz-linear-gradient(top, #dddddd 0%, #aaaaaa 100%);
	background: -ms-linear-gradient(top, #dddddd 0%, #aaaaaa 100%);
	background: -o-linear-gradient(top, #dddddd 0%, #aaaaaa 100%);
	background: linear-gradient(top, #dddddd 0%, #aaaaaa 100%);
}

.btn-black,
.btn-black::before,
.btn-black::after,
.btn-black:focus,
.btn-black:active {
	background-color: #222222;
	background: -webkit-linear-gradient(top, #666666 0%, #222222 100%);
	background: -moz-linear-gradient(top, #666666 0%, #222222 100%);
	background: -ms-linear-gradient(top, #666666 0%, #222222 100%);
	background: -o-linear-gradient(top, #666666 0%, #222222 100%);
	background: linear-gradient(top, #666666 0%, #222222 100%);
}

button,
button::before,
button::after {
	border-radius: 60px;
	background-clip: border-box;
}

button::before,
button::after {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0;
	transition: all 200ms;
}

button:hover::before,
button:focus::after,
button:active::after {
	opacity: 1;
}

.bodyContent {
	min-height: calc(100vh - 60px);
	padding-top: 100px;
}

.bodyMask {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 100vw;
	background-color: rgba(0,0,0,0.85);
	z-index: 8;
}

input#not_human {
	display: none !important;
}

.checkbox label,
.radio label {
	font-size: 14px;
	font-weight: 500;
}

.notesLink {
	margin-left: 5px;
}

.checkContainer {
	display: inline;
	position: relative;
	padding-top: 8px;
	padding-left: 22px;
	margin-bottom: 0px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 500;
	font-family: Montserrat;
	letter-spacing: 0.5px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.checkContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 9px;
	left: 0;
	height: 14px;
	width: 14px;
	background-color: #ffffff;
	transition: all 200ms;
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
	transition: all 200ms;
}

.checkContainer:hover input ~ .checkmark {
	background-color: #ffffff;
}

.checkmark:after {
	content: "";
	position: absolute;
	opacity: 0;
	visibility: hidden;
}

.checkContainer input:checked ~ .checkmark:after {
	opacity: 1;
	visibility: visible;
}

.checkContainer .checkmark:after {
	top: -9px;
	left: 3px;
	height: 22px;
	width: 8px;
	border-width: 0 3px 3px 0;
	border-style: solid;
	box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.25);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all 300ms;
}

.radioContainer {
	position: relative;
	padding-left: 22px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.radioContainer + .radioContainer {
	margin-left: 12px;
}

.radioContainer.radioBlock {
	display: block !important;
	margin: 0 0 5px 20px;
	padding: 0 45px 0 25px;
	font-weight: 500;
}

.radioContainer input {
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.radioContainer .checkmark {
	position: absolute;
	top: 10px;
	left: 0;
	height: 16px;
	width: 16px;
	background-color: white;
	border-width: 2px;
	border-style: solid;
	border-radius: 50%;
	transition: all 200ms;
}

.radioContainer.radioBlock .checkmark {
	top: 4px;
}

.radioContainer .checktext {
	transition: all 200ms;
}

.radioContainer .checktext .checktextLg {
	display: block;
	padding-top: 1px;
	font-size: 16px;
	font-family: Montserrat;
}

.radioContainer .checktext .checktextMd {
	display: block;
	font-size: 14px;
	font-family: Montserrat;
}

.radioContainer .checktext .checktextSm {
	display: block;
	font-size: 14px;
	color: #323232;
}

.radioContainer .checktext .checktextXs {
	display: block;
	font-size: 12px;
	color: #323232;
}

.radioContainer .checkmark:after {
	content: "";
	position: absolute;
	opacity: 0;
	visibility: hidden;
}

.radioContainer input:checked ~ .checkmark:after {
	opacity: 1;
	visibility: visible;
}

.radioContainer .checkmark:after {
	top: 2px;
	left: 2px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	transition: all 200ms;
}

.password-group {
	position: relative;
}

.password-group label[for="show_password"] {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 34px;
	margin: 0;
	border-left: 1px dotted #787878;
}

.password-group label[for="show_password"] i {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 34px;
	line-height: 34px;
	font-size: 14px;
	text-align: center;
	z-index: 98;
}

.password-group input[name="show_password"] {
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 34px;
	margin: 0;
	line-height: 34px;
	text-align: center;
	opacity: 0;
	z-index: 99;
	cursor: pointer;
}

.password-group input[name="show_password"]:checked ~ i.fa-eye,
.password-group input[name="show_password"] ~ i.fa-eye-slash {
	display: block;
}

.password-group input[name="show_password"] ~ i.fa-eye,
.password-group input[name="show_password"]:checked ~ i.fa-eye-slash {
	display: none;
}

/** GDPR notice **/

.gdpr {
	padding: 15px;
	margin: 0 auto;
	max-width: 400px;
	background-color: #323232;
	text-align: center;
	border: 1px solid #555;
	border-bottom: none;
	border-radius: 6px 6px 0 0;
	box-shadow: 0 3px 6px 0px rgba(0,0,0,0.25);
}

.gdpr p {
	color: white;
	font-size: 14px;
}

.gdpr a {
	font-weight: 700;
	color: #fff;
	border-color: transparent;
	border-radius: 4px;
	border-width: 0;
	transition: all 200ms;
}

.gdpr a:hover {
	color: #fff;
	border-color: transparent;
}

.gdpr a:focus,
.gdpr a:active {
	color: #fff;
	border-color: transparent;
	box-shadow: none;
}

/** Layouts - Header/Nav **/

nav.navbar {
	min-height: 90px;
	margin: 0;
	z-index: 10;
	background-image: linear-gradient(rgba(0,0,0,0.75) 50%, transparent );
	border: none;
	z-index: 999;
}

nav.navbar #mobileMenu {
	display: none;
	position: absolute;
	top: 30px;
	right: 40px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	z-index: 100;
}

nav.navbar #mobileMenu span {
	display: block;
	position: absolute;
	left: 5px;
	width: 40px;
	height: 4px;
	border-radius: 6px;
	background-color: #f36f43;
	box-shadow: 0 0 5px 0 rgba(255,255,255,0.25);
	transition: all 200ms;
}

nav.navbar #mobileMenu:hover span {
	box-shadow: 0 0 5px 0 rgba(255,255,255,0.5);
}

nav.navbar #mobileMenu span:nth-child(1) {
	top: 10px;
}

nav.navbar #mobileMenu span:nth-child(2) {
	top: 23px;
}

nav.navbar #mobileMenu span:nth-child(3) {
	bottom: 10px;
}

nav.navbar[data-mobile-state="open"] #mobileMenu span:nth-child(1),
nav.navbar[data-mobile-state="open"] #mobileMenu span:nth-child(3) {
	top: 24px;
	background-color: #fff;
	box-shadow: 0 0 5px 0 rgba(255,255,2553,0.25);
}

nav.navbar[data-mobile-state="open"] #mobileMenu span:nth-child(1) {
	transform: rotate(45deg);
}

nav.navbar[data-mobile-state="open"] #mobileMenu span:nth-child(3) {
	transform: rotate(-45deg);
}

nav.navbar[data-mobile-state="open"] #mobileMenu span:nth-child(2) {
	display: none;
}

nav.navbar .headerLeft,
nav.navbar .headerRight {
	display: block;
	padding-top: 30px;
}

nav.navbar ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 500;
}

nav.navbar[data-mobile-state="open"] .headerRight {
	display: block !important;
	position: absolute;
	top: 0px;
	left: 100%;
	height: 100vh;
	width: 100%;
	padding: 60px 60px 0;
	background-color: #f36f43;
	text-align: left;
	z-index: 99;
}

nav.navbar[data-mobile-state="close"] ul.headerRight li#homeMain {
	display: none;
}

nav.navbar[data-mobile-state="open"] ul.headerRight li#homeMain {
	display: block;
	margin-bottom: 20px;
}

nav.navbar[data-mobile-state="open"] ul.headerRight li#homeMain .mobileLogo {
	display: block;
	padding: 0;
	max-width: 260px;
}

nav.navbar[data-mobile-state="open"] ul.headerRight li {
	display: block;
	margin-bottom: 10px;
}

nav.navbar[data-mobile-state="close"] ul.headerRight li {
	display: inline-block;
	vertical-align: middle;
}

nav.navbar[data-mobile-state="open"] ul.headerRight li a {
	display: block;
	width: 100%;
	padding: 0px 0px;
	outline: none !important;
	color: white;
	font-size: 30px;
	letter-spacing: 0.5px;
	text-shadow: 0 0 5px rgba(0,0,0,0.25);
}

nav.navbar[data-mobile-state="close"] ul.headerRight li a {
	padding: 0 20px;
	outline: none !important;
	letter-spacing: 0.5px;
	text-shadow: 0 0 5px rgba(0,0,0,1);
}

nav.navbar[data-mobile-state="close"] ul.headerRight li a span {
	position: relative;
}

nav.navbar[data-mobile-state="close"] ul.headerRight li:not(.authLinks) a span::after {
	content: '';
	position: absolute;
	display: block;
	left: -5px;
	bottom: -6px;
	width: calc(100% + 10px);
	height: 2px;
	border-radius: 4px;
	background-color: transparent;
	transition: all 200ms;
}

nav.navbar[data-mobile-state="close"] ul.headerRight li:not(.authLinks).currentMenuItem a span::after,
nav.navbar[data-mobile-state="close"] ul.headerRight li:not(.authLinks) a:hover span::after {
	background-color: rgba(243,111,67,0.75);
	box-shadow: 0 0 5px 0 rgba(0,0,0,1);
}

nav.navbar[data-mobile-state="close"] ul.headerRight li.navNotice {
	display: none;
}

nav.navbar[data-mobile-state="open"] ul.headerRight li.navNotice {
	position: absolute;
	display: block;
	left: 50%;
	width: calc(100% - 35px);
	margin: 0;
	bottom: 40px;
	text-align: center;
	transform: translateX(-50%);
}

nav.navbar[data-mobile-state="open"] ul.headerRight li.navNotice p {
	margin-bottom: 0;
	font-size: 12px;
}

nav.navbar[data-mobile-state="open"] .headerLeft {
	
}

nav.navbar[data-mobile-state="close"] .headerLeft {
	float: left;
}

nav.navbar .headerLeft .headerLogo {
	display: inline-block;
	max-width: 240px;
	margin-right: 20px;
	outline: none !important;
}

nav.navbar[data-mobile-state="open"] .headerRight {
	float: none;
}

nav.navbar[data-mobile-state="close"] .headerRight {
	float: right;
}

nav.navbar[data-mobile-state="open"] .headerRight li a {
	color: white;
}

nav.navbar[data-mobile-state="close"] .headerRight li.authLinks a {
	display: block;
	padding: 5px 20px;
	line-height: 1;
	color: white;
	border: 2px solid;
	border-radius: 6px;
	outline: none !important;
}

nav.navbar[data-mobile-state="close"] .headerRight li#homeLogin {
	margin: 0 10px;
	border-color: white;
}

nav.navbar[data-mobile-state="close"] .headerRight li#homeRegister a,
nav.navbar[data-mobile-state="close"] .headerRight li#homeDashboard a {
	background-color: #f36f43;
	border-color: #f36f43;
}

nav.navbar[data-mobile-state="close"] .headerRight li#homeLogin a:hover,
nav.navbar[data-mobile-state="close"] .headerRight li#homeLogin a:focus,
nav.navbar[data-mobile-state="close"] .headerRight li#homeLogin a:active {
	box-shadow: 0 0 10px 0 rgba(255,255,255,0.5) inset;
}

nav.navbar[data-mobile-state="close"] .headerRight li#homeRegister a:hover,
nav.navbar[data-mobile-state="close"] .headerRight li#homeRegister a:focus,
nav.navbar[data-mobile-state="close"] .headerRight li#homeRegister a:active,
nav.navbar[data-mobile-state="close"] .headerRight li#homeDashboard a:hover,
nav.navbar[data-mobile-state="close"] .headerRight li#homeDashboard a:focus,
nav.navbar[data-mobile-state="close"] .headerRight li#homeDashboard a:active {
	background-color: #dd633c;
	border-color: #dd633c;
}

/** Layouts - Section defaults **/

.section {
	position: relative;
	min-height: auto;
	padding: 50px 0;
}

.sectionFull {
	min-height: 100vh;
}

.section .container {
	position: relative;
	min-height: inherit;
}

.section h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 32px;
	text-align: center;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.section p.subtitle {
	margin-top: -5px;
	margin-bottom: 20px;
	font-size: 20px;
}

.section p {
	font-size: 18px;
	margin-bottom: 15px;
}

.section p:last-child {
	margin-bottom: 0px;
}

.section .btn {
	font-size: 20px;
	padding: 6px 20px;
	border-radius: 10px;
	background: transparent;
	border: 4px solid #f36f43;
	text-shadow: 0 0 5px rgba(0,0,0,1);
	transition: all 200ms;
}

.section .btn:hover {
	box-shadow: 0 0 20px 0 rgba(255,255,255,0.25) inset;
	background-color: transparent;
	border-color: #ccc;
}

.section .btn:focus,
.section .btn:active {
	box-shadow: 0 0 20px 0 rgba(255,255,255,0.25) inset;
	background-color: #f36f43;
	border-color: #ccc;
}

/** Layouts - Header/Nav **/

footer {
	position: relative;
	padding: 50px 0 20px;
	background-color: #f36f43;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
	z-index: 998;
}

footer .footerLogoColumn img {
	max-width: 400px;
}

footer .tagline {
	margin-top: 10px;
	font-size: 32px;
	font-family: Montserrat;
	letter-spacing: 1.8px;
}

footer .legalNote {

}

footer .legalNote h2 {
	font-size: 14px;
	margin-bottom: 2px;
}

footer .legalNote p {
	margin-bottom: 0;
	font-size: 12px;
	line-height: 1.2;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

footer .legalNote p a {
	color: white;
}

footer h2 {
	font-size: 18px;
	margin: 0 0 15px;
	color: white;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

footer ul {
	list-style-type: none !important;
	padding: 0 !important;
	margin: 0 4px !important;
}

footer ul {
	list-style-type: none;
}

footer ul li {
	margin: 10px 0;
	font-size: 14px;
	color: #323232;
}

footer ul li a {
	font-weight: 500;
	color: #323232;
	text-shadow: 0 0 5px rgba(0,0,0,0.25);
	outline: none !important;
}

footer ul li a:hover,
footer ul li a:focus,
footer ul li a:active {
	color: #000;
}

footer .copyrightNote {
	margin-top: 20px;
}

footer .copyrightNote p {
	margin-bottom: 4px;
	font-size: 14px;
	line-height: 1;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/** Auth **/

.authPages .authBgMask {
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.0);
	position: absolute;
	top: 0px;
	left: 0px;
	box-shadow: 0 0 100px 0px rgba(0,0,0,0.5) inset;
}

.authPages {
	padding: 0;
	background-color: #323232 !important;
	background-image: url(../img/authBg1.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	font-weight: 500;
	color: #323232;
	text-align: center;
}

.authPages .authPopup {
	position: absolute;
	display: none;
	top: 65px;
	left: 0px;
	height: calc(100% - 65px);
	width: 100%;
	background-color: #f4f5fb;
	border-radius: 0 0 4px 4px;
	opacity: 0;
	visibility: hidden;
	transition: all 200ms;
	z-index: 99;
}

.authPages .authPopup > div {
	position: absolute;
	top: 50%;
	left: 50%;
	height: auto;
	width: 100%;
	padding: 25px;
	transform: translate(-50%, -50%);
	z-index: 999;
}

.authPages .authPopup i {
	margin-bottom: 10px;
	font-size: 30px;
}

.authPages .authPopup i.fa-exclamation-triangle {
	color: #f36f43;
}

.authPages .authPopup i.fa-user-plus {
	margin-left: 14px;
}

.authPages .authPopup i.fa-facebook {
	color: #3b5998;
}

.authPages .authPopup i.fa-google {
	color: #db4437;
}

.authPages .authPopup p {
	max-width: 350px;
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: 500;
	font-family: Montserrat;
	text-align: center;
	cursor: default;
}

.authPages .authPopup input[type="text"] {
	width: calc(100% - 20px);
	padding: 10px 10px;
}

.authPages .authPopup .btn {
	position: relative;
	font-size: 12px;
}

.authPages .authPopup .btn + .btn {
	margin-left: 4px;
}

.authPages .authPopup.authLoading > div {
	transform: translate(-50%, calc(-50% - 40px));
}

.authPages .authPopup.authLoading p {
	margin: -15px auto 0px;
}

.authPages .authPopup.authLoading p span {
	color: #323232;
}

.authPages .container {
	position: relative;
	min-height: 100vh;
}
 
.authPages h1 {
	margin: 0px 0px 5px;
	padding: 0;
	font-size: 20px;
	font-weight: 500;
	text-shadow: none;
}

.authPages a {
	font-size: 14px;
}

.authPages p {
	font-size: 14px;
	margin: 0;
}

.authPages p.errorNote {
	display: none;
	margin-top: -10px;
	margin-bottom: 10px;
	font-size: 12px;
	color: #d0302a;
}

.authPages p:last-child {
	margin-bottom: 5px;
}

.authPages [data-required="true"][type="text"],
.authPages [data-required="true"][type="number"],
.authPages [data-required="true"][type="email"],
.authPages [data-required="true"][type="password"],
.authPages [data-required="true"][type="checkbox"] ~ .checkmark,
.authPages .has-error .form-control,
.authPages .has-error .form-control:focus {
	border-color: #d0302a;
	box-shadow: 0 0 5px 0 rgba(208,48,42,0.35);
}

.authForms {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #f5f6fb;
	border-radius: 10px;
	padding: 0 15px 10px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
	overflow: hidden;
}

.authForms .alert {
	margin: 10px 15px 0;
	padding: 10px;
	font-size: 12px;
	font-weight: 500;
	font-family: Montserrat;
	letter-spacing: 0.75px;
	border-radius: 10px;
}

.authForms .alert ul {
	padding-left: 0px;
}

.authForms .alert ul li {
	list-style: none;
}

.authLogo {
	display: block;
	margin: 0 -15px 25px;
	padding: 20px 0px 15px;
}

.authLogo img {
	margin: 0 auto;
	max-width: 150px;
}

.authForms form {
	margin-top: 15px;
}

.authForms .form-group {
	margin-bottom: 10px;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0px;
}

.authForms .form-group:last-child button {
	margin-bottom: 5px;
}

.authForms .form-group.regLeft,
.authForms .form-group.regRight {
	width: 50%;
	float: left;
}

.authForms .form-group.regLeft {
	padding-right: 5px;
}

.authForms .form-group.regRight {
	padding-left: 5px;
}

.authForms input {
	background-color: transparent;
	border: 1px dotted #787878;
	border-radius: 10px;
	box-shadow: none;
	text-align: center;
}

.authForms input:focus {
	box-shadow: none;
}

.authForms textarea {
	background-color: transparent;
	border: 1px dotted #787878;
	border-radius: 0;
	box-shadow: none;
	text-align: left;
	resize: none;
}

.authForms textarea:focus {
	box-shadow: none;
}

.authVerify h1 {
	margin-bottom: 10px;
}

.authVerify .alert {
	margin: 15px 0;
}

.authVerify p {
	font-size: 16px;
	margin-bottom: 10px;
}

.authVerify .resendGroup p {
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 500;
	font-family: Montserrat;
}

.authVerify a.btn {
	font-size: 14px;
	font-weight: 500;
	font-family: Montserrat;
	line-height: 25px;
	outline: none;
}

.authVerify a.btn i {
	margin-left: -18px;
	margin-right: 6px;
}

.authVerify a.btn span {
	display: none;
	width: 110px;
	margin-left: 4px;
	margin-right: -10px;
	text-align: left;
}

.authVerify a.btn.btn-disabled,
.authVerify a.btn.btn-disabled:hover,
.authVerify a.btn.btn-disabled:focus,
.authVerify a.btn.btn-disabled:active {
	cursor: default;
	background-color: #888888;
	background: -webkit-linear-gradient(top, #aaaaaa 0%, #888888 100%);
	background: -moz-linear-gradient(top, #aaaaaa 0%, #888888 100%);
	background: -ms-linear-gradient(top, #aaaaaa 0%, #888888 100%);
	background: -o-linear-gradient(top, #aaaaaa 0%, #888888 100%);
	background: linear-gradient(top, #aaaaaa 0%, #888888 100%);
	box-shadow: none;
}

.authVerify a.btn.btn-disabled span {
	display: inline-block;
}

.authVerify strong {
	font-weight: 600;
}

.authVerify .cancelLink {
	margin-top: 8px;
	margin-bottom: -5px;
}

.authVerify .cancelLink button {
	margin-bottom: 0px !important;
	padding: 0 2px;
	font-size: 14px;
	font-weight: 700;
	font-family: Open Sans;
	letter-spacing: 1px;
	background-color: transparent;
	border-radius: 0;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	transition: all 200ms;
}

.authUnsub p.unsubReasons {
	margin: 10px 0;
	font-weight: 500;
	font-family: Montserrat;
	text-align: left;
}

.authUnsub .radioContainer.radioBlock {
	margin: 0 0 0 10px;
	padding: 0 35px 0 25px;
}

.authUnsub label {
	text-align: left;
}

.authUnsub label .checktext {
	font-size: 14px;
}

.authUnsub textarea {
	margin: 5px auto;
	border-radius: 10px;
}

.authPages .btn {
	min-height: 38px;
}

.authPages .btn.btn-sm,
.authPages .btn.btn-xs {
	min-height: unset;
}

.authPages .btn-primary {
	margin-top: 5px;
	padding: 6px 28px;
	letter-spacing: 0.75px;
	border-radius: 10px;
	border: none;
	box-shadow: 0 -10px 20px 0 transparent inset;
	transition: all 200ms;
}

.authPages .btn-primary.withIcon {
	padding: 6px 16px 6px 28px;
}

.authPages .btn-primary:hover {
	box-shadow: 0 -10px 20px 0 rgba(255,255,255,0.1) inset;
}

.authPages .btn-primary:focus {
	box-shadow: 0 -10px 20px 0 rgba(255,255,255,0.2) inset;
}

.authPages .btn img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all 200ms;
}

.authPages .btn img {
	transition: all 200ms;
}

.authPages .btn[data-loading="true"] {
	cursor: default;
}

.authPages .btn[data-loading="false"] {
	cursor: pointer;
}

.authPages .btn[data-loading="true"] img,
.authPages .btn[data-loading="false"] span {
	opacity: 1;
	visibility: visible;
}

.authPages .btn[data-loading="false"] img,
.authPages .btn[data-loading="true"] span {
	opacity: 0;
	visibility: hidden;
}

.authPages .loginDivider {
	position: relative;
}

.authPages .loginDivider hr {
	border-color: #888;
	border-style: dashed;
}

.authPages .loginDivider p {
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 0 5px;
	background-color: #f5f6fb;
	font-family: Montserrat;
	transform: translate(-50%, -50%);
	cursor: default;
}

.authPages .btn-social {
	position: relative;
	padding: 7px 12px 5px;
	border-radius: 10px;
	color: white;
	font-size: 16px;
	letter-spacing: .25px;
}

.authPages .btn-social i {
	position: absolute;
	display: inline-block;
	top: 1px;
	left: 1px;
	height: 34px;
	width: 34px;
	font-size: 18px;
	font-weight: normal;
	line-height: 34px;
	text-align: center;
	background-color: white;
	z-index: 1;
}

.authPages .btn-social i::after {
	content: '';
	position: absolute;
	top: -2px;
	right: -4px;
	height: calc(100% + 4px);
	width: 2px;
	background-color: #f4f5fb;
	z-index: 999;
}

.authPages .btn-social span {
	margin-left: 18px;
}

.authPages .btn-facebook {
	background-color: #1877f2;
	font-family: Helvetica, Arial, sans-serif;
}

.authPages .btn-social:hover {
	box-shadow: 0 -10px 20px 0 rgba(255,255,255,0.1) inset;
}

.authPages .btn-social:focus {
	box-shadow: 0 -10px 20px 0 rgba(255,255,255,0.2) inset;
}

.authPages .btn-social img {
	position: absolute;
	display: inline-block;
	top: 1px;
	left: 1px;
	padding: 8px;
	background-color: white;
	opacity: 1;
	visibility: visible;
	transform: none;
	border-radius: 8px 0 0px 8px;
}

.authPages .btn-social::before {
	content: '';
	position: absolute;
	top: -2px;
	left: 37px;
	height: calc(100% + 4px);
	width: 2px;
	background-color: #f4f5fb;
	z-index: 999;
}

.authPages .btn-facebook i {
	color: #1877f2;
}

.authPages .btn-google {
	background-color: #4285F4;
	font-family: Roboto;
}

.authPages .btn-twitter {
	background-color: black;
	font-weight: 600;
	font-family:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.authPages .btn-twitter i {
	color: #1da1f2;
}

.authPages button i {
	margin-right: 6px;
	margin-left: -18px;
}

.authPages .serviceLogo {
	margin: 0 auto 15px;
}

/** Bootstrap styles modded **/

.row {
	margin-left: unset;
	margin-right: unset;
}

/** Public pages **/

.publicPages {

}

.hero {

}

.heroMiddle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.floatingSection {

}

.floatingSection .container {
	padding: 0 30px;
}

.floatingBg {
	position: relative;
	z-index: 9;
}

.floatingBgLeft {
	text-align: left;
}

.floatingBgRight {
	text-align: right;
}

.floatingBg img {
	display: inline-block;
	max-width: calc((100% * 2/3) - 10px);
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
	border-radius: 10px;
	opacity: 0.6;
}

.floatingBox h3 {
	font-size: 20px;
	color: white;
	text-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.floatingBox {
	position: absolute;
	top: 50%;
	padding: 30px 40px 35px;
	background-color: rgba(243,111,67,0.75);
	transform: translateY(-50%);
	border-radius: 10px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
	z-index: 10;
}

.floatingBoxLeft {
	left: 30px;
}

.floatingBoxRight {
	right: 30px;
}

.floatingBox h2 {
	color: white;
	text-align: left;
	text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.floatingBox p {
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.floatingBox p:last-child {
	margin-bottom: 0;
}

.floatingBox .btn {
	border: 4px solid white;
}

/** Home page **/

.indexPage {
	
}

.indexPage .hero {
	min-height: 100vh;
	background-image: url(../img/repeatingDots.png), url(../img/heroSplashImg.jpg);
	background-size: auto, cover;
}

.indexPage .heroText {
	position: absolute;
	display: block;
	max-width: 60vw;
	top: 50%;
	left: calc(5vw + 15px);
	text-align: left;
	transform: translateY(-50%);
	z-index: 9;
}

.indexPage .heroText h1 {
	font-size: 100px;
	text-align: inherit;
	margin-bottom: 20px;
	color: #f36f43;
	line-height: 1;
	background: -webkit-linear-gradient(75deg, #f36f43 20%, #f09f84 80%);
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 10px rgb(243,111,67,0.3);
}

.indexPage .heroText p {
	max-width: 90%;
	margin-bottom: 25px;
	font-size: 24px;
	line-height: 1.6;
	letter-spacing: 1px;
	text-shadow: 0 0 5px rgba(0,0,0,1);
}

.indexPage .heroText .btn {
	font-size: 30px;
	padding: 10px 30px;
	border-radius: 10px;
	background: transparent;
	border: 4px solid #f36f43;
	text-shadow: 0 0 5px rgba(0,0,0,1);
	transition: all 200ms;
}

.indexPage .heroText .btn:hover,
.indexPage .heroText .btn:focus,
.indexPage .heroText .btn:active {
	box-shadow: 0 0 30px 0 rgba(255,255,255,0.25) inset;
}

.indexPage .heroImg {
	position: absolute;
	top: 50%;
	right: calc(5vw + 15px);
	transform: translateY(-50%);
	z-index: 8;
}

.indexPage .heroImg img {
	max-height: calc(80vh - 100px);
}

/** Volatility section **/

.section.sectionVolatility .volatilityImg img {
	opacity: 1;
}

/** Features/How it works section **/

.indexPage .section.sectionFeatures {
	padding: 0;
}

.indexPage .section.sectionFeatures h2 {
	margin-bottom: 20px;
	color: white;
	text-align: left;
}

.indexPage .section.sectionFeatures .featuresCard {
	padding: 30px 40px;
	background-color: rgba(243,111,67,0.75);
	border-radius: 10px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}

.indexPage .section.sectionFeatures .featuresCard img {
	display: block;
	height: 300px;
	width: 100%;
	margin-bottom: 25px;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
}

.indexPage .section.sectionFeatures .featuresCard p {
	margin-bottom: 0px;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/** Unique section **/

.section.sectionUnique .container {
	padding: 0 30px;
}

.section.sectionUnique .uniqueTxt p:last-child {
	margin-bottom: 0;
}

/** Pricing section **/

.sectionPricing h2 {
	margin-bottom: 25px;
}

.plansRow,
.plansRow > div {
	display: flex;
}

.plansBoxes {
	position: relative;
	display: flex;
	padding: 50px 30px 30px;
	border-radius: 10px;
	flex-direction: column;
	flex-grow: 1;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	overflow: hidden;
}

.plansBoxes .plansFeatured {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 100%;
	text-align: center;
}

.plansBoxes .plansFeatured p {
	margin: 0;
	font-size: 12px;
	font-family: Montserrat;
	font-weight: 700;
	color: white;
	line-height: 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: #f36f43;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.05) inset;
	text-shadow: 0 0 3px rgba(0,0,0,0.5);
	cursor: default;
}

.plansBoxes h2 {
	position: relative;
	left: -2px;
	margin: 0;
	padding: 0;
	font-size: 32px;
	font-weight: 500;
	text-align: left;
	letter-spacing: 2px;
}

.plansBoxes .plansTarget {
	font-size: 20px;
}

.plansPrices {
	position: relative;
	display: inline-block;
	padding: 0 0 0;
	margin: 0 0 0;
	cursor: default;
}

.plansPrices .plansPriceNumber {
	display: inline-block;
	margin-bottom: 0;
	font-size: 60px;
	font-weight: 600;
	font-family: Nunito;
	color: #f36f43;
	line-height: 1;
}

.plansPrices sup {
	top: -26px;
	left: -2px;
	font-size: 22px;
	font-weight: 700;
	color: white;
}

.plansPrices .plansPeriod {
	display: inline-block;
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	font-family: Montserrat;
	line-height: 1;
}

.plansPrices .plansPriceNote {
	display: block;
	margin-bottom: 10px !important;
	font-size: 14px;
}

.plansPrices .plansCheaper {
	font-size: 18px;
	font-family: Montserrat;
	font-weight: 700;
	color: #f36f43;
}

.plansBoxes hr {
	margin: 25px 0;
	border-color: #ccc;
}

.plansInclude {
	flex-grow: 1;
	margin-top: -5px;
}

.plansInclude h3 {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 500;
	font-family: Poppins;
	color: white;
}

.plansInclude ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.plansInclude ul li {
	margin: 0;
	padding: 0;
}

.plansInclude .featuresList li {
	position: relative;
	margin: 0 0 10px;
	padding: 0 10px 0 26px;
}

.plansInclude .featuresList li:last-child {
	margin-bottom: 0px;
}

.plansInclude .featuresList li::before,
.plansInclude .featuresList li::after {
	content: '';
	position: absolute;
	display: block;
	border-radius: 2px;
	background-color: #f36f43;
	transform: rotate(45deg);
}

.plansInclude .featuresList li::before {
	top: 12px;
	left: 0px;
	height: 4px;
	width: 6px;
/*	box-shadow: 3px 1px 4px 0px rgba(0,0,0,0.3);*/
}

.plansInclude .featuresList li::after {
	top: 4px;
	left: 8px;
	height: 16px;
	width: 4px;
/*	box-shadow: 2px 0px 4px 0px rgba(0,0,0,0.3);*/
}

.plansInclude h4 {
	margin: -5px 0 10px;
	font-size: 16px;
	font-family: Poppins;
}

.plansInclude .coinsList {
	font-size: 0;
}

.plansInclude .coinsList li {
	display: inline-block;
	width: calc(100% / 5);
	padding: 4px 10px;
	font-size: 12px;
}

.plansInclude .coinsList li img {
	height: 14px;
	width: 14px;
	margin-right: 6px;
	border-radius: 50%;
	box-shadow: 0 0 3px 0 rgba(0,0,0,0.25);
}

.plansBillingCycle {
	width: 100%;
	margin-bottom: 15px;
}

.plansBillingCycle:before {
	content: " ";
	position: absolute;
	left: 40px;
	height: 0;
	width: 0;
	margin-top: 2px;
	border-left-color: #f36f43 !important;
	border: 10px solid transparent;
	pointer-events: none;
}

.plansBillingCycle:after {
	content: " ";
	position: absolute;
	right: 40px;
	height: 0;
	width: 0;
	margin-top: 2px;
	border-right-color: #f36f43 !important;
	border: 10px solid transparent;
	pointer-events: none;
}

.plansBillingCycle p {
	margin: 0;
	padding: 0px 5px 5px;
	border-bottom: 3px solid transparent;
	font-weight: 700;
	font-family: Montserrat;
	color: #888;
	background-color: white;
	text-align: center;
	transition: all 200ms;
}

.plansBillingCycle p:hover {
	color: #777;
	border-bottom-color: rgba(243,111,67,0.25);
}

.plansBillingCycle input {
	display: none;
}

.plansBillingCycle input:checked + p {
	color: #f36f43;
	border-bottom-color: #323232;
}

.plansBillingCycle label {
	display: inline-block !important;
	margin: 0 -3px 0 0 !important;
	padding: 0 !important;
	width: 30%;
}

.plansBillingCycle label:last-child {
	margin: 0 !important;
}

.plansBoxes form {

}

.plansBoxes .btn {
	position: relative;
	margin: 0;
	border: none;
	border-radius: 6px;
	padding: 12px 30px;
	box-shadow: none;
	font-size: 20px;
	font-family: Montserrat;
	font-weight: 500;
	color: white;
	background-color: #f36f43;
	transition: all 200ms;
}

.plansBoxes .btn:hover {
	box-shadow: none;
	background-color: #dd633c;
}

/** Cta section **/
.section.sectionCta {
	text-align: center;
	padding-bottom: 0;
	overflow: hidden;
}

.section.sectionCta h2 {
	margin-bottom: 40px;
	font-size: 60px;
	text-align: center;
}

.section.sectionCta .btn {
	margin-bottom: 50px;
	font-size: 30px;
	padding: 10px 30px;
	border-radius: 10px;
	background: transparent;
	border: 4px solid #f36f43;
	text-shadow: 0 0 5px rgba(0,0,0,1);
	transition: all 200ms;
}

.section.sectionCta .btn:hover,
.section.sectionCta .btn:focus,
.section.sectionCta .btn:active {
	box-shadow: 0 0 30px 0 rgba(255,255,255,0.1) inset;
}

.section.sectionCta img {
	display: block;
	max-width: 50%;
	margin: 0 auto;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
	border-radius: 20px 20px 0 0;
}

/** About page **/

.aboutPage .hero {
	min-height: 100vh;
	background-image: url(../img/repeatingDots.png), url(../img/heroSplashImg-about.jpg);
	background-size: auto, cover;
}

.aboutPage .hero p {
	line-height: 1.8;
}

.aboutPage h2 {
	text-align: left;
}

.aboutPage .floatingSection:not(.sectionUnique) {
	margin-bottom: -50px;
}

/** Features page **/

.featuresPage .sectionHeader {
	padding-top: 100px;
	background-image: url(../img/repeatingDots.png), url(../img/pageHeaderImg-03.jpg);
	background-size: auto, cover;
	background-position: left top, center center;
	background-color: #323232;
}

.featuresPage .section.sectionFeatures h2 {
	text-align: left;
}

.featuresPage .featuresImgCol {

}

.featuresPage .featuresImgCol img {
	border-radius: 10px;
	border: 2px solid #f36f43;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.75);
}

/** Pricing page **/

.pricingPage .sectionHeader {
	padding-top: 100px;
	background-image: url(../img/repeatingDots.png), url(../img/pageHeaderImg-04.jpg);
	background-size: auto, cover;
	background-position: left top, center center;
	background-color: #323232;
}

.section.sectionFaqs .container {
	padding: 0 30px;
}

.section.sectionFaqs ul {
	list-style: none;
	margin: 30px 0 0;
	padding: 10px 25px;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	border-radius: 10px;
}

.section.sectionFaqs ul li {
	display: block;
	padding: 15px 15px;
	border-bottom: 2px solid rgba(243,111,67,0.25);
}

.section.sectionFaqs ul li:last-child {
	border-bottom: none;
}

.section.sectionFaqs ul li p.question {
	margin-bottom: 2px;
	font-size: 20px;
	font-weight: 600;
	color: #f36f43;
}

.section.sectionFaqs ul li p.answer {
	font-size: 16px;
}

/** Events page **/

.eventsPage .sectionHeader {
	padding-top: 100px;
	background-image: url(../img/repeatingDots.png), url(../img/pageHeaderImg-01.jpg);
	background-size: auto, cover;
	background-color: #323232;
}

.eventsPage .sectionHeader h2 {
	font-size: 24px;
}

.section.sectionEvents ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.section.sectionEvents ul.eventsTabs {
	margin-bottom: 50px;
	font-size: 0;
	text-align: center;
}

.section.sectionEvents ul.eventsTabs li {
	display: inline-block;
	margin: 0 10px;
	padding: 10px 20px;
	font-size: 20px;
	color: #ccc;
	border: 2px solid #f36f43;
	border-radius: 10px;
	background-color: rgba(243,111,67,0.25);
	cursor: pointer;
	transition: all 200ms;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.section.sectionEvents ul.eventsTabs li:last-child {
	border-right: 2px solid #f36f43;
}

.section.sectionEvents ul.eventsTabs li:hover,
.section.sectionEvents ul.eventsTabs li:focus,
.section.sectionEvents ul.eventsTabs li:active {
	background-color: rgba(243,111,67,0.5);
}

.section.sectionEvents ul.eventsTabs li[data-state="active"] {
	background-color: rgba(243,111,67,0.75);
	color: white;
}

.eventsListsWrapper {
	padding: 50px;
	border-radius: 10px;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}

.eventsList {
	text-align: left;
}

.eventsList li {
	margin-bottom: 25px;
	padding: 0 10px 25px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.eventsList li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.eventsList li .eventHeader {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(255,255,255,0.25);
}

.eventsList li .eventHeader h2 {
	margin-bottom: 6px;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0;
	text-align: inherit;
}

.eventsList li .eventHeader .eventSubHeader {
	font-size: 0;
}

.eventsList li .eventHeader .eventSubHeader > span {
	display: inline-block;
	margin-right: 10px;
	vertical-align: bottom;
}

.eventsList li .eventHeader .eventSubHeader span p {
	margin-bottom: 0;
	font-size: 16px;
	line-height: 22px;
}

.eventsList li .eventHeader .eventSubHeader span:nth-child(odd) p {
	font-size: 14px;
}

.eventsList li .eventBody span {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
}

.eventsList li .eventBody h3 {
	font-family: Poppins;	
	font-weight: 500;
}

.eventsList li .eventBody p {
	margin-bottom: 0;
	padding: 0 5px;
	font-size: inherit;
}

/** Cryptocurrencies page **/

.cryptocurrenciesPage .sectionHeader {
	padding-top: 100px;
	background-image: url(../img/repeatingDots.png), url(../img/pageHeaderImg-02.jpg);
	background-size: auto, cover;
	background-color: #323232;
}

.cryptocurrenciesPage .sectionHeader h2 {
	font-size: 24px;
}

.section.sectionCryptocurrencies ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.cryptocurrenciesListWrapper {
	padding: 50px;
	border-radius: 10px;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}

.cryptocurrenciesList {
	text-align: left;
}

.cryptocurrenciesList li {
	position: relative;
	margin-bottom: 25px;
	padding: 0 10px 25px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.cryptocurrenciesList li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.cryptocurrenciesList li .cryptocurrencyHeader {
	position: relative;
	font-size: 0;
}

.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon {
	display: block;
	position: absolute;
	height: 60px;
	width: 60px;
	top: 50%;
	right: 0px;
	margin: 0;
	transform: translateY(-50%);
	cursor: pointer;
	transition: all 200ms;
}

.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon span {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	border-radius: 10px;
	background-color: #ccc;
	transform: translate(-50%, -50%);
}

.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon[data-state="close"] {
	transform: translateY(-50%) rotate(45deg);
}

.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon span:nth-child(1) {
	height: 4px;
	width: 40px;
}

.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon span:nth-child(2) {
	height: 40px;
	width: 4px;
}

.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon::hover span {
	box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.cryptocurrenciesList li .cryptocurrencyHeader > * {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.cryptocurrenciesList li .cryptocurrencyHeader .cryptocurrencyIcon {
	max-width: 40px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
	border-radius: 50%;
}

.cryptocurrenciesList li .cryptocurrencyHeader h2 {
	margin-bottom: 0;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0;
	text-align: inherit;
}

.cryptocurrenciesList li .cryptocurrencyHeader .dynamicData.markPrice {
	position: relative;
	margin-right: 20px;
	padding: 2px 40px 0 0;
	font-size: 22px;
	font-weight: 700;
	font-family: Nunito;
	border-right: 1px solid rgba(255,255,255,0.25);
}

.cryptocurrenciesList li .cryptocurrencyHeader .dynamicData.markPrice::after {
	content: "\f0d8";
	position: absolute;
	top: 50%;
	right: 20px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	transform: translateY(-50%);
}

.cryptocurrenciesList li .dynamicData[data-direction="same"] {
	color: #ccc !important;
}

.cryptocurrenciesList li .dynamicData.markPrice[data-direction="same"]::after {
	opacity: 0;
}

.cryptocurrenciesList li .dynamicData[data-direction="up"] {
	color: #2ab948 !important;
}

.cryptocurrenciesList li .dynamicData.markPrice[data-direction="up"]::after {
	transform: translateY(-50%) rotate(0deg);
}

.cryptocurrenciesList li .dynamicData[data-direction="down"] {
	color: #ff2d25 !important;
}

.cryptocurrenciesList li .dynamicData.markPrice[data-direction="down"]::after {
	transform: translateY(-50%) rotate(180deg);
}

.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock {
	text-align: center;
	margin-right: 25px;
}

.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock:last-child {
	margin-right: 0;
}

.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock p {
	margin: 0;
}

.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock .metricTitle {
	font-family: Montserrat;
	font-size: 12px;
	color: #ccc;
	font-weight: 700;
}

.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock .metricData {
	font-family: Nunito;
	font-size: 14px;
	color: #ccc;
}

.cryptocurrenciesList li .cryptocurrencyBody {
	display: none;
	padding-top: 15px;
}

.cryptocurrenciesList li .cryptocurrencyBody h3 {
	font-family: Poppins;	
	font-weight: 500;
}

.cryptocurrenciesList li .cryptocurrencyBody p {
	padding: 0 5px;
	font-size: 16px;
}

/** Data pages **/

.toolbar {
	position: relative;
	display: block;
	margin: 0 0 25px;
	padding: 10px 15px;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	border-radius: 10px;
	text-align: center;
}

.toolbar p {
	display: inline-block;
	margin: 0;
}

.toolbar.toolbarTop {}

.toolbar.toolbarBottom {
	margin-bottom: 50px;
}

.toolbar .viewRange {
	display: block;
	min-width: 300px;
	width: 20%;
}

.dataPages .viewRange {
	float: right;
	text-align: right;
}

.toolbar .leftPlaceholder p,
.toolbar .viewRange p {
	display: inline-block;
	margin: 0 5px 0 0;
	line-height: 1;
	font-size: 12px;
}

.toolbar .leftPlaceholder,
.toolbar .rightPlaceholder {
	display: block;
	min-width: 300px;
	width: 20%;
}

.toolbar .leftPlaceholder {
	float: left;
	text-align: left;
}

.toolbar .pagination {
	margin: 0 0 -10px;
}

.toolbar .pagination > .disabled > a,
.toolbar .pagination > .disabled > a:focus,
.toolbar .pagination > .disabled > a:hover,
.toolbar .pagination > .disabled > span,
.toolbar .pagination > .disabled > span:focus,
.toolbar .pagination > .disabled > span:hover {
	cursor: default;
}

.toolbar .pagination li a,
.toolbar .pagination li a:hover,
.toolbar .pagination li a:focus,
.toolbar .pagination li a:active,
.toolbar .pagination li span,
.toolbar .pagination li span:hover,
.toolbar .pagination li span:focus,
.toolbar .pagination li span:active {
	border: none !important;
	background-color: transparent !important;
	outline: none;
}

.toolbar .pagination li > * {
	position: relative;
	font-size: 20px;
	font-weight: 700;
	font-family: Nunito;
}

.toolbar .pagination li a {
	color: #f9b7a1;
	cursor: pointer;
}

.toolbar .pagination li:not([rel]) > *::after {
	content: '';
	position: absolute;
	display: block;
	bottom: 2px;
	left: 50%;
	height: 2px;
	width: 20px;
	background-color: transparent;
	border-radius: 4px;
	transform: translateX(-50%);
	transition: all 200ms;
}

.toolbar .pagination li:hover a::after {
	background-color: #f36f43;
}

.toolbar .pagination li:hover a,
.toolbar .pagination li:focus a,
.toolbar .pagination li:active a {
	color: #f36f43;
	text-shadow: 0 0 5px rgba(243,111,67,0.5);
}

.toolbar .pagination li span,
.toolbar .pagination li:hover span,
.toolbar .pagination li:focus span,
.toolbar .pagination li:active span {
	color: #f36f43;
}

.toolbar .pagination li[rel] span,
.toolbar .pagination li[rel]:hover span,
.toolbar .pagination li[rel]:focus span,
.toolbar .pagination li[rel]:active span {
	color: rgba(255,255,255,0.5);
}

.toolbar .pagination li span::after {

}

.viewRange select {
	display: inline-block;
	margin: 0 !important;
	padding: 0 5px 0 0;
	height: auto !important;
	line-height: 1;
	font-size: 12px;
	border: none !important;
	border-bottom: 1px dotted #ddd !important;
	border-radius: 0 !important;
}

.dataListFilters {
	margin-bottom: 50px;
	padding: 30px 30px 25px;
	border-radius: 10px;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}

.dataFilter {
	position: relative;
}

.dataFilter .expandIcon {
	display: none;
	position: absolute;
	top: -4px;
	right: 0px;
	font-size: 20px;
	transition: all 200ms;
}

.dataFilter .expandIcon[data-state="close"] {
	transform: rotate(180deg);
}

.dataFilter .expandIcon span {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	border-radius: 10px;
	background-color: #ccc;
	transform: translate(-50%, -50%);
}

.dataFilter .expandIcon::hover span {
	box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.dataFilter h3 {
	font-weight: 500;
	font-size: 18px;
	transition: all 200ms;
}

.dataFilterList {
	list-style-type: none;
	margin: 0 0 15px;
	padding: 0 5px 15px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.dataFilter:last-child .dataFilterList {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.dataFilterList li:not(:last-child) {
	margin-bottom: 6px;
}

.dataFilterList li a {
	position: relative;
	font-size: 14px;
	color: #f9b7a1;
	outline: none;
}

.dataFilterList li a::before {
	content: '';
	position: absolute;
	display: block;
	top: 50%;
	left: -18px;
	height: 8px;
	width: 8px;
	border-left: 8px solid #f27d55;
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	transform: translateY(-50%);
	transition: all 200ms;
	opacity: 0;
	visibility: hidden;
}

.dataFilterList li:hover a::before {
	opacity: 1;
	visibility: visible;
}

.dataFilterList li:hover a {
	color: #f27d55;
}

.dataFilterList li .checkmark,
.dataFilterList li .checkContainer:hover input ~ .checkmark,
.dataFilterList li .checkContainer input:checked ~ .checkmark {
	background-color: transparent;
}

.dataListWrapper {
	margin-bottom: 25px;
	padding: 30px 25px 25px;
	border-radius: 10px;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}

.dataList {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.dataList li {
	margin-bottom: 15px;
	padding: 0 10px 15px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	font-size: 0;
}

.dataList li:last-child {
	margin-bottom: 0;
	padding: 0 10px;
	border-bottom: none;
}


.dataList li h3 {
	margin-bottom: 2px;
	font-size: 18px;
	font-weight: 500;
}

.dataList li h3 span {
	position: relative;
	display: inline-block;
	margin-left: 20px;
	font-family: Poppins;
	font-size: 14px;
	color: rgba(255,255,255,0.65);
}

.dataList li h3 span::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: -12px;
	height: 100%;
	width: 2px;
	border-radius: 4px;
	background-color: rgba(255,255,255,0.5);
}

.dataList li p {
	margin-bottom: 0;
	padding: 0 1px;
	font-size: 14px;
	color: rgba(255,255,255,0.75);
	line-height: 1.4;
}

.dataList li p b {
	font-weight: 700;
	font-family: Nunito;
}

.dataList li .dataItemDetails,
.dataList li .dataItemLinks {
	display: inline-block;
	width: 50%;
	vertical-align: bottom;
}

.dataList li .dataItemDetails {

}

.dataList li .dataItemLinks {
	text-align: right;
}

.dataList li .dataItemLinks select {
	display: inline-block;
	padding: 0 4px;
	font-size: 14px;
	background-color: transparent;
	border: none;
	box-shadow: none;
	outline: none;
	text-align: right;
}

.dataList li .dataItemLinks select option {
	color: #323232;
}

.dataList li .dataItemLinks a {
	position: relative;
	display: inline-block;
	margin-left: 12px;
	padding-right: 12px;
	font-size: 14px;
	font-weight: 500;
	color: #f9b7a1;
	cursor: pointer;
	outline: none;
}

.dataList li .dataItemLinks a::after {
	content: "\f0da";
	position: absolute;
	top: 0;
	right: 0px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.dataList li .dataItemLinks a:hover,
.dataList li .dataItemLinks a:focus,
.dataList li .dataItemLinks a:active  {
	color: #f27d55;
}

.dataColour[data-colour="green"],
.dataColour[data-positive-direction="up"][data-direction="up"],
.dataColour[data-positive-direction="down"][data-direction="down"] {
	color: #2ab948;
}

.dataColour[data-colour="red"],
.dataColour[data-positive-direction="up"][data-direction="down"],
.dataColour[data-positive-direction="down"][data-direction="up"] {
	color: #ff2d25;
}

.dataColour[data-colour="white"],
.dataColour[data-direction="same"] {
	color: white;
}

.datesNav {
	display: block;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 0;
}

.datesNav li {
	display: inline-block;
	width: 50%;
	font-size: 16px;
}

.datesNav li a {
	outline: none;
}

.datesNav li[data-nav="prev"] {
	text-align: left;
}

.datesNav li[data-nav="next"] {
	text-align: right;
}

.datesNav li span {
	position: relative;
	display: inline-block;
	margin-bottom: 25px;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	border-radius: 6px;
}

.datesNav li[data-nav="prev"] span {
	padding: 10px 18px 10px 28px;
}
.datesNav li[data-nav="next"] span {
	padding: 10px 28px 10px 18px;
}

.datesNav li span::before {
	position: absolute;
	top: 50%;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 28px;
	transform: translateY(-50%);
}

.datesNav li[data-nav="prev"] span::before {
	content: '\f0d9';
	left: 8px;
}

.datesNav li[data-nav="next"] span::before {
	content: '\f0da';
	right: 8px;
}

.datesNav li span p {
	margin-bottom: 0;
	color: inherit;
	line-height: 1;
}

.datesNav li span p.navDirection {
	font-size: 18px;
	font-weight: 500;
}

.datesNav li span p.navInfo {
	font-size: 14px;
	color: rgba(255,255,255,0.75);
}

.dataView h2 {
	margin-top: 0;
}

.dataView .darkBox {
	position: relative;
	margin-bottom: 25px;
	padding: 25px 25px;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	border-radius: 10px;
	overflow: hidden;
}

.dataView div p:last-child {
	margin-bottom: 0;
}

.dataView .cryptoIcon {
	position: absolute;
	top: -26px;
	left: -26px;
	opacity: 0.1;
	border-radius: 50%;
	box-shadow: 0 0 25px 0 rgba(0,0,0,0.75);
	z-index: 1;
}

.dataView .chartBox .coinInfo {
	display: block;
	margin-bottom: 10px;
	padding: 0 0 6px;
	border-radius: 0;
	font-size: 0;
}

.dataView .chartBox .coinInfo span {
	position: relative;
	display: inline-block;
	height: 50px;
	vertical-align: middle;
	font-family: Nunito;
	font-size: 16px;
	font-weight: 700;
}

.dataView .chartBox .coinInfo .coinInfoTicker {
	padding: 0 16px 0 0;
	border-right: 1px solid rgba(255,255,255,0.25);
}

.dataView .chartBox .coinInfo .coinInfoTicker h2 {
	position: relative;
	display: inline-block;
	margin: 0 0 0;
	padding-left: 0px;
	font-weight: 800;
	font-family: Nunito;
	z-index: 2;
}

.dataView .chartBox .coinInfo .coinInfoTicker p {
	font-size: 14px;
	font-weight: 500;
}

.dataView .chartBox .coinInfo .coinInfoSub {
	padding: 22px 0 0px 20px;
}


.dataView .chartBox .coinInfo .coinInfoSub .metricTitle {
	position: absolute;
	display: block;
	top: 6px;
	left: 10px;
	width: 100%;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255,255,255,0.75);
}

.dataView .chartBox p {
	position: relative;
	margin-bottom: 0;
	z-index: 2;
}

.dataView .chartBox .releaseInfo {
	display: block;
	margin: 0 0 10px;
	padding: 6px 0;
	border-top: 1px solid rgba(255,255,255,0.25);
	border-bottom: 1px solid rgba(255,255,255,0.25);
	border-radius: 0;
}

.dataView .chartBox .releaseInfo p {
	margin-bottom: 0;
	font-weight: 500;
}

.dataView .chartBox .releaseInfo .releaseName {
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
}

.dataView .chartBox .releaseInfo .releaseAgency {
	margin-bottom: 6px;
	font-size: 14px;
}

.dataView .chartBox .releaseInfo .releaseDate {
	font-size: 16px;
}

.dataView .chartBox .releaseInfo .releaseDate .releaseTz {
	margin-left: 6px;
	font-weight: 300;
	color: rgba(255,255,255,0.75);
}

.dataView .chartBox .dataSource {
	margin-bottom: -5px !important;
	font-size: 12px;
}

.chartWrap {
	position: relative;
	width: 100%;
	height: 600px;
}

.chartWrap .pane {
	position: relative;
	width: 100%;
}

.chartWrap .pane.panePrice {
	height: 450px;
}

.chartWrap .pane.paneVol {
	height: 150px;
	border-top: 1px solid rgba(255,255,255,0.25);
}

#priceChart {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.volumeLabel {
	position: absolute;
	top: 5px;
	left: 5px;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: #fff;
	z-index: 10;
	pointer-events: none;
}

#volChart {
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.dataView .chartInterval {
	position: relative;
	display: block;
	list-style-type: none;
	padding: 0 6px;
	margin: 0 0 0 -8px;
	font-size: 0;
	line-height: 0;
	z-index: 2;
}

.dataView .chartInterval li {
	display: inline-block;
	padding: 0;
	font-size: 0;
	line-height: 1;
}

.dataView .chartInterval li a {
	display: inline-block;
	padding: 6px 2px 2px;
	margin: 0 4px 4px;
	font-size: 16px;
	font-weight: 700;
	font-family: Nunito;
	text-align: center;
	border-bottom: 1px solid transparent;
	outline: none;
}

.dataView .chartInterval li.active a {
	border-bottom-color: #f36f43;
}

.dataView .analysisTableWrap {
	overflow-x: auto !important;
}

.dataView .analysisTable {
	table-layout: fixed;
	width: 100%;
	padding: 5px;
	text-align: center;
	overflow: hidden;
}

.dataView .analysisTable thead tr th {
	padding: 0 0 8px;
	font-size: 14px;
	text-align: center;
	border-bottom: 1px solid rgba(255,255,255,0.25);

	border-bottom-color: #f36f43;
}

.dataView .analysisTable thead tr.theadPrimary th:first-child,
.dataView .analysisTable thead tr.theadSecondary th:first-child {
	width: 100px;
}

.dataView .analysisTable thead tr.theadPrimary th:not(:first-child),
.dataView .analysisTable thead tr.theadSecondary th:not(:first-child) {
	width: calc((100% - 100px) / 9);
}

.dataView .analysisTable.forecastSummaryTable thead tr.theadSecondary th:nth-child(2),
.dataView .analysisTable.forecastSummaryTable thead tr.theadSecondary th:nth-child(5),
.dataView .analysisTable.forecastSummaryTable thead tr.theadSecondary th:nth-child(8),
.dataView .analysisTable.forecastSummaryTable tbody tr td:nth-child(2),
.dataView .analysisTable.forecastSummaryTable tbody tr td:nth-child(5),
.dataView .analysisTable.forecastSummaryTable tbody tr td:nth-child(8) {
	border-left: 1px double rgba(255,255,255,0.25);
}

.dataView .analysisTable thead tr.theadPrimary th {
	padding: 0 0 0;
	border-bottom: none;
}

.dataView .analysisTable thead tr.theadSecondary th {
	padding: 2px 0 6px;
	font-size: 12px;
	text-align: center;
}

.dataView .analysisTable:not(.forecastSummaryTable) thead tr th.timeCell {
	width: 18%;
	text-align: left;
}

.dataView .analysisTable.forecastSummaryTable tbody tr:first-child th,
.dataView .analysisTable.forecastSummaryTable tbody tr:first-child td {
	padding-top: 8px !important;
}

.dataView .analysisTable.forecastSummaryTable tbody tr th {
	font-size: 12px;
	text-align: center;
}

.dataView .analysisTable tbody tr.subtitleRow td {
	font-size: 14px;
	font-weight: 700;
}

.dataView .analysisTable tbody tr.spacerRow {
	line-height: 8px;
}

.dataView .analysisTable tbody tr:not(:last-child) th {
	border-bottom: 1px dotted rgba(255,255,255,0.25);
}

.dataView .analysisTable tbody tr td {
	font-size: 12px;
	font-family: Nunito;
}

.dataView .analysisTable tbody tr:not(.subtitleRow):not(.spacerRow) td {
	padding: 4px 0;
}

.dataView .analysisTable tbody tr:not(.subtitleRow):not(.spacerRow) td:not(:last-child) {
	border-right: 1px solid rgba(255,255,255,0.25);
}

.dataView .analysisTable.forecastSummaryTable tbody tr td {
	border-left: 1px dotted rgba(255,255,255,0.25);
}

.dataView .analysisTable.forecastSummaryTable tbody tr:not(:last-child) td {
	border-bottom: 1px dotted rgba(255,255,255,0.25);
}

.dataView .analysisTable tbody tr:not(.subtitleRow):not(.spacerRow) td:first-child {
	padding: 4px 6px;
}

.dataView .analysisTable tbody tr.beforeRow td {
	border-bottom: 1px solid rgba(255,255,255,0.25);
}

.dataView .analysisTable tbody tr td:first-child {
	text-align: left;
}

/** Blog **/

.sectionBlogHome {
	margin: 100px 0 50px;
	padding: 0;
}

.sectionBlogHome .blogHero {
	overflow: hidden;
}

.sectionBlogHome .blogHero > div {
	height: 100%;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.5);
}

.sectionBlogHome .blogHero .articleImg {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center top;
	border-radius: 10px;
}

.sectionBlogHome .blogHero .articleHeadline {
	position: absolute;
	bottom: 0px;
	left: 15px;
	width: calc(100% - 30px);
	padding: 0;
	outline: none;
}

.sectionBlogHome .articleHeadline > div {
	overflow: auto;
	background-color: rgba(0,0,0,0.75);
	padding: 0 20px 5px;
	border-radius: 0 0 10px 10px;
}

.sectionBlogHome .featArticleCategory {
	display: inline-block;
	position: absolute;
	top: -25px;
	margin-top: 10px;
	margin-left: -8px;
	margin-bottom: 5px;
	padding: 5px 8px;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
	background-color: black;
}

.sectionBlogHome .articleHeadline h2 {
	margin-top: 16px;
	margin-bottom: 15px;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: capitalize;
	text-align: left;
	color: white;
	cursor: pointer;
}

.sectionBlogHome .blogHero1 .articleHeadline h2,
.sectionBlogHome .blogHero2 .articleHeadline h2 {
	margin-bottom: 5px;
}

.sectionBlogHome .articleHeadline h2::after,
.sectionBlogHome .blogHero1 .articleHeadline h3::after,
.sectionBlogHome .blogHero2 .articleHeadline h3::after {
	content: "Read More";
	font-size: 14px;
	font-weight: 500;
	color: #f36f43;
	text-transform: lowercase;
	margin-left: 5px;
	opacity: 0;
	visibility: hidden;
	transition: all 200ms;
}

.sectionBlogHome .blogHero1 .articleHeadline h2::after,
.sectionBlogHome .blogHero2 .articleHeadline h2::after {
	content: "";
	display: none;
}

.sectionBlogHome .articleHeadline:hover h2::after,
.sectionBlogHome .blogHero1 .articleHeadline:hover h3::after,
.sectionBlogHome .blogHero2 .articleHeadline:hover h3::after {
	opacity: 1;
	visibility: visible;
}

.sectionBlogHome .articleHeadline h3 {
	margin-top: 0px;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 300;
	font-family: Poppins;
	letter-spacing: 0.5px;
	opacity: 0.85;
	color: white;
	cursor: pointer;
}

.sectionBlogHome .blogHero1 {
	height: 600px;
}

.sectionBlogHome .blogHero2 {
	height: 305px;
}

.sectionBlogHome .blogHero3,
.sectionBlogHome .blogHero4 {
	height: 265px;
	margin-top: 30px;
}

.sectionBlogList {
	padding-top: 0;
}

.sectionBlogList .blogList h2 {
	margin-top: 0px;
	margin-bottom: 30px;
	font-size: 30px;
	text-align: left;
}

.sectionBlogList .blogList .blogArticles {
	overflow: auto;
	margin-bottom: 25px;
	padding: 0 15px 15px 0;
	border-bottom: 1px dotted #f36f43;
}

.sectionBlogList .blogList .blogArticles a {
	outline: none;
}

.sectionBlogList .blogList .blogArticles > div {
	padding-top: 10px;
	padding-left: 25px;
}

.sectionBlogList .blogList .blogArticles .articleHero {
	height: 150px;
	background-color: #323232;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 10px;
}

.sectionBlogList .blogList .blogArticles .articleCategory {
	display: inline-block;
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 500;
	color: white;
	text-transform: uppercase;
	letter-spacing: 2px;
	outline: none;
}

.sectionBlogList .blogList .blogArticles .articleCategoryHr {
	display: inline-block;
	width: 10px;
	vertical-align: top;
	margin: 0;
	margin-right: 8px;
	padding-top: 12px;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 2px solid #f36f43;
	opacity: 0.75;
}

.sectionBlogList .blogList .blogArticles h4 {
	margin-bottom: 5px;
	cursor: pointer;
	transition: all 200ms;
}

.sectionBlogList .blogList .blogArticles a:hover h4 {
	color: #dd633c;
}

.sectionBlogList .blogList .blogArticles .articleSummary {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.sectionBlogList .blogList .blogArticles .articleDate {
	font-size: 12px;
	font-style: italic;
	letter-spacing: 0.5px;
	opacity: 0.5;
	text-transform: uppercase;
	float: left;
	margin-bottom: 0;
}

.sectionBlogList .blogList .blogArticles .articleDateHr {
	margin: 10px 0 10px;
	width: 30px;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 2px solid rgba(255,255,255,0.5);
}

.sectionBlogList .blogList .readMore {
	float: right;
	margin-top: -6px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
	color: white;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: 2px solid #f36f43;
	border-radius: 6px;
}

.sectionBlogList .blogList .readMore::after {
	position: relative;
	bottom: 1px;
	margin-left: 4px;
	content: "\f1d8";
	font-family: "Font Awesome 5 Free";
	font-size: 8px;
	color: #f36f43;
}

.sectionBlogList .blogList .readMore:hover {
	color: #f27d55;
}

.blogSideBar {
	border-left: 1px dotted #f36f43;
	padding: 5px 15px;
}

.blogSideBar h3 {
	font-size: 30px;
	font-weight: 500;
	font-family: Poppins;
	letter-spacing: 0.5px;
}

.blogSideBar .sidebarList {
	list-style-type: none;
	margin: 0;
	padding: 0 10px;
}

.blogSideBar .sidebarList li,
.blogSideBar .sidebarList li a {
	color: white;
	position: relative;
	padding: 4px 0;
	font-size: 22px;
	outline: none;
}

.blogSideBar .sidebarList li.currentMenuItem {
	color: #f36f43;
}

.blogSideBar .sidebarList li.currentMenuItem::before {
	content: '';
	position: absolute;
	top: 4px;
	left: -14px;
	height: calc(100% - 8px);
	width: 4px;
	border-radius: 4px;
	background-color: #f36f43;
}

.blogSideBar .sidebarList li.currentMenuItem::after {
	content: '';
	position: absolute;
	top: 6px;
	right: -10px;
	border: 8px solid transparent;
	border-right-color: #f36f43;
}

.blogSideBar .sidebarList a {
	color: white;
}

.blogSideBar .sidebarList a:hover {
	color: #f36f43;
}

/** Blog category **/

.sectionCategoryHeader {
	padding: 0;
	margin: 100px 0 25px;
}

.sectionBlogList .blogCategoryFeatured {
	height: 520px;
	margin-bottom: 50px;
}

.sectionBlogList .blogCategoryFeatured > div {
	position: relative;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 10px;
}

.sectionBlogList .blogCategoryFeatured > div .articleHeadline {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	padding: 0;
    outline: none;
}

.sectionBlogList .blogCategoryFeatured .articleHeadline > div {
	overflow: auto;
	background-color: rgba(0,0,0,0.75);
	background-image: url(../img/blogHeadlineSpot.png);
	padding: 0 20px 5px;
	border-radius: 0 0 10px 10px;
}

.sectionBlogList .blogCategoryFeatured .articleHeadline .featArticleCategory {
    display: inline-block;
    position: absolute;
    top: -25px;
    margin-top: 10px;
    margin-left: -8px;
    margin-bottom: 5px;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: black;
    outline: none;
}

.sectionBlogList .blogCategoryFeatured .articleHeadline h2 {
	margin-top: 16px;
	margin-bottom: 5px;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: capitalize;
	color: white;
	cursor: pointer;
}

.sectionBlogList .blogCategoryFeatured .articleHeadline h3 {
	margin-top: 0px;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 300;
	opacity: 0.85;
	color: white;
	cursor: pointer;
}

.sectionBlogList .blogCategoryFeatured .articleHeadline h3::after {
	content: "Read More";
	font-size: 14px;
	font-weight: 500;
	text-transform: lowercase;
	color: #f36f43;
	margin-left: 5px;
	opacity: 0;
	visibility: hidden;
	transition: all 200ms;
}

.sectionBlogList .blogCategoryFeatured .articleHeadline:hover h3::after {
	opacity: 1;
	visibility: visible;
}

/** Blog post **/

.sectionPost {
	margin: 100px 0 20px;
	padding: 0;
}

.sectionPost .postHero {
	position: relative;
	min-height: 600px;
	margin: 0 auto;
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #555;
	box-shadow: 0px -250px 100px 0px rgba(0,0,0,0.75)inset, 0 0 20px 0 rgba(0,0,0,0.25);
	border-radius: 10px;
}

.sectionPost .postHeroImg {
	width: 0px;
	height: 0px;
}

.sectionPost .postHeadline {
	position: absolute;
	bottom: 0px;
	left: 35px;
	padding-right: 35px;
}

.sectionPost .postHeadline h1 {
	margin-bottom: 0;
	font-size: 40px;
	font-weight: 700;
	color: white;
	text-align: left;
}

.sectionPost .postHeadline h2 {
	margin: 5px 0 15px;
	font-size: 30px;
	font-family: Poppins;
	color: white;
	font-weight: 500;
	text-align: left;
}

.sectionPost .postHeadline hr {
	margin: 0px 0px 15px -5px;
	width: 50px;
	border-width: 4px;
	border-color: #f36f43;
	border-radius: 10px;
}

.sectionPost .featArticleCategory {
	padding: 5px 8px;
	margin-top: 10px;
	margin-left: -8px;
	margin-bottom: 5px;
	display: inline-block;
	position: absolute;
	top: -25px;
	font-size: 12px;
	font-weight: bold;
	color: #f36f43;
	letter-spacing: 2px;
	text-transform: uppercase;
	background-color: black;
}

.sectionPost .postAuthor {
	overflow: auto;
	width: 100%;
	margin-bottom: 20px;
}

.sectionPost .authorImg {
	margin-right: 5px;
}

.sectionPost .authorImg > div {
	height: 40px;
	width: 40px;
	border-radius: 50%;
	border: 4px solid 4px solid rgba(243,111,67,0.5);
	background-color: #555;
	background-image: url(../img/showcaseDemoPerson.jpg);
	background-size: 40px;
	background-position: center center;
}

.sectionPost .postAuthor > div {
	overflow: auto;
	float: none;
	vertical-align: middle;
	display: inline-block;
}

.sectionPost .postAuthor p {
	color: white;
	font-size: 12px;
	margin-bottom: 0px;
}

.sectionPost .postAuthor .postAuthorName {
	font-size: 16px;
	letter-spacing: 1px;
}

.sectionPostContent {
	margin: 0 auto 50px;
	padding: 0;
}

.sectionPostContent .shareButtons {
	list-style-type: none;
	margin: 0 0 15px;
	padding: 0;
	font-size: 0;
}

.sectionPostContent .shareButtons li {
	display: inline-block;
	margin-right: 6px;
	border-radius: 4px;
	overflow: hidden;
}

.sectionPostContent .shareButtons li:first-child {
	display: block;
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 500;
	color: #f36f43;
	line-height: 1;
	text-shadow: 0 0 10px rgba(0,0,0,0.75);
}

.sectionPostContent .shareButtons li:last-child {
	margin-right: 0;
}

.sectionPostContent .shareButtons li a {
	display: block;
	height: 30px;
	width: 50px;
	font-size: 20px;
	color: white;
	text-align: center;
	line-height: 30px;
	background-color: white;
	outline: none;
	transition: all 200ms;
}

.sectionPostContent .shareButtons li.shareX a {
	background-color: #000000;
}

.sectionPostContent .shareButtons li.shareX:hover a {
	background-color: #181818;
}

.sectionPostContent .shareButtons li.shareReddit a {
	background-color: #ff4500;
}

.sectionPostContent .shareButtons li.shareReddit:hover a {
	background-color: #cc3700;
}

.sectionPostContent .shareButtons li.shareLinkedIn a {
	background-color: #0077B5;
}

.sectionPostContent .shareButtons li.shareLinkedIn:hover a {
	background-color: #005983;
}

.sectionPostContent .shareButtons li.shareTelegram a {
	background-color: #0088cc;
}

.sectionPostContent .shareButtons li.shareTelegram:hover a {
	background-color: #006699;
}

.sectionPostContent .shareButtons li.shareWhatsApp a {
	background-color: #25d366;
}

.sectionPostContent .shareButtons li.shareWhatsApp:hover a {
	background-color: #1da851;
}

.sectionPostContent .shareButtons li.shareFacebook a {
	background-color: #1877f2;
}

.sectionPostContent .shareButtons li.shareFacebook:hover a {
	background-color: #145dbf;
}


.sectionPostContent .postContent h2 {
	margin-top: 25px;
	font-size: 24px;
	font-weight: 500;
	text-align: left;
}

.sectionPostContent .postContent h3 {
	font-weight: 500;
	letter-spacing: 0;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.sectionPostContent .postContent li {
	font-size: 18px;
}

.sectionPostContent .postContent p:not(:last-child) {
	margin-bottom: 15px;
}

.sectionPostContent .postContent p a {
	position: relative;
}

.sectionPostContent .postContent p a::after {
	content: '';
	position: absolute;
	display: block;
	left: -1px;
	bottom: -1px;
	height: 1px;
	width: calc(100% + 2px);
	background-color: #f36f43;
}

.sectionPostContent .postContent img {
	margin-right: 15px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}

.sectionPostContent .postContent hr {
	margin: 50px auto 25px;
	width: 50%;
	border-width: 1px;
}

.sectionPostContent iframe {
	margin-bottom: 15px;
}

.analysisTableWrap {
	overflow-x: auto !important;
}

.analysisTable {
	table-layout: fixed;
	width: 100%;
	min-width: 800px;
	padding: 5px;
	margin-bottom: 15px;
	text-align: center;
	overflow: hidden;
}

.analysisTable thead tr th {
	padding: 0 0 8px;
	font-size: 14px;
	text-align: center;
	border-bottom: 1px solid #ddd;

	border-bottom-color: #f36f43;
}

.analysisTable thead tr.theadPrimary th:first-child,
.analysisTable thead tr.theadSecondary th:first-child {
	width: 100px;
}

.analysisTable thead tr.theadPrimary th:not(:first-child),
.analysisTable thead tr.theadSecondary th:not(:first-child) {
	width: calc((100% - 100px) / 9);
}

.analysisTable.forecastSummaryTable thead tr.theadSecondary th:nth-child(2),
.analysisTable.forecastSummaryTable thead tr.theadSecondary th:nth-child(5),
.analysisTable.forecastSummaryTable thead tr.theadSecondary th:nth-child(8),
.analysisTable.forecastSummaryTable tbody tr td:nth-child(2),
.analysisTable.forecastSummaryTable tbody tr td:nth-child(5),
.analysisTable.forecastSummaryTable tbody tr td:nth-child(8) {
	border-left: 1px double #ddd;
}

.analysisTable thead tr.theadPrimary th {
	padding: 0 0 0;
	border-bottom: none;
}

.analysisTable thead tr.theadSecondary th {
	padding: 2px 0 6px;
	font-size: 12px;
	text-align: center;
}

.analysisTable:not(.forecastSummaryTable) thead tr th.timeCell {
	width: 18%;
	text-align: left;
}

.analysisTable.forecastSummaryTable tbody tr:first-child th,
.analysisTable.forecastSummaryTable tbody tr:first-child td {
	padding-top: 8px !important;
}

.analysisTable.forecastSummaryTable tbody tr th {
	font-size: 12px;
	text-align: center;
}

.analysisTable tbody tr.subtitleRow td {
	font-size: 14px;
	font-weight: 700;
}

.analysisTable tbody tr.spacerRow {
	line-height: 8px;
}

.analysisTable tbody tr:not(:last-child) th {
	border-bottom: 1px dotted #ddd;
}

.analysisTable tbody tr td {
	font-size: 12px;
	font-family: Nunito;
}

.analysisTable tbody tr:not(.subtitleRow):not(.spacerRow) td {
	padding: 4px 0;
}

.analysisTable tbody tr:not(.subtitleRow):not(.spacerRow) td:not(:last-child) {
	border-right: 1px solid #ddd;
}

.analysisTable.forecastSummaryTable tbody tr td {
	border-left: 1px dotted #ddd;
}

.analysisTable.forecastSummaryTable tbody tr:not(:last-child) td {
	border-bottom: 1px dotted #ddd;
}

.analysisTable tbody tr:not(.subtitleRow):not(.spacerRow) td:first-child {
	padding: 4px 6px;
}

.analysisTable tbody tr.beforeRow td {
	border-bottom: 1px solid #ddd;
}

.analysisTable tbody tr td:first-child {
	text-align: left;
}

/** KnowledgeBase **/

.kbPages {

}

/** KnowledgeBase home **/

.kbPages.kbHome {
	
}

/** KnowledgeBase account **/

.kbPages.kbAccount {
	
}

/** Contact page **/

.contactPage .sectionHeader {
	padding-top: 100px;
	background-image: url(../img/repeatingDots.png), url(../img/pageHeaderImg-05.jpg);
	background-size: auto, cover;
	background-position: left top, center center;
	background-color: #323232;
}

/** Copied from pano **/

.flexContainer {
	display: flex;
}

.flexContainer > div {
	display: flex;
	flex-direction: column;
}

.flexContainer > div > div {
	flex-grow: 1;
}

.flexContainer > div > div > div.middleDiv {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.sectionContact .textCol {
	border-radius: 10px;
	background-size: cover;
}

.sectionContact .textCol .contactInfo {
	position: relative;
	height: 100%;
	width: 100%;
	z-index: 2;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.5);
	background-color: rgba(0,0,0,0.5);
}

.sectionContact .textCol .contactInfo > div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.sectionContact .textCol .contactInfo > div > div:not(:last-child) {
	margin-bottom: 10px;
}

.sectionContact .textCol .contactInfo > div > div:first-child {
	margin-bottom: 15px;
}

.sectionContact .textCol .contactInfo strong {
	display: inline-block;
	margin-bottom: 4px;
	font-size: 26px;
	font-weight: 500;
	line-height: 1;
	color: #f36f43;
}

.sectionContact .textCol .contactInfo i {
	position: absolute;
	left: -30px;
	width: 30px;
	font-size: 18px;
	line-height: 26px;
	color: #f36f43;
}

.sectionContact .textCol .contactInfo p {
	margin-bottom: 0px;
	padding-left: 2px;
	font-size: 16px;
	font-weight: 500;
	font-family: Montserrat;
}

.sectionContact .formCol {
	
}

.sectionContact .formCol > div {
	border-radius: 10px;
	padding: 60px 50px 45px;
	background-color: rgba(243,111,67,0.75);
	box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.5);
}

.sectionContact .formCol .sendResult {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	z-index: 3;
	transition: all 200ms;
}

.sectionContact .formCol .sendResult > div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.sectionContact .formCol .sendResult .sendImage {
	display: block;
	position: relative;
	height: 100px;
	width: 100px;
	margin: 0 auto 10px;
	border: 4px solid white;
	border-radius: 50%;
}

.sectionContact .formCol .sendResult .sendImage i {
	position: absolute;
	left: 50%;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
	transform: translateX(-50%);
}

.sectionContact .formCol .sendResult .sendImage .fa-times,
.sectionContact .formCol .sendResult .sendImage .fa-check {
	top: 12px;
	font-size: 30px;
}

.sectionContact .formCol .sendResult .sendImage .fa-envelope {
	top: 38px;
	font-size: 46px;
}

.sectionContact .formCol .sendResult p {
	font-size: 30px;
	font-weight: 500;
	color: white;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
	text-align: center;
}

.sectionContact .formCol .formFields {
	opacity: 1;
	visibility: visible;
	transition: all 200ms;
}

.sectionContact .formCol .form-group {
	position: relative;
	display: block;
	margin-bottom: 30px;
}

.sectionContact .formCol .form-group input:not(#not_human),
.sectionContact .formCol .form-group textarea {
	display: block;
	width: 100%;
	outline: none;
	padding: 14px 20px;
	font-weight: 500;
	color: #323232;
	border: none;
	border-radius: 10px;
	box-shadow: none;
}

.sectionContact .formCol .form-group label {
	position: absolute;
	top: -12px;
	left: 0px;
	padding: 2px 8px;
	font-size: 14px;
	font-weight: 500;
	color: #555;
	background-color: white;
	border-radius: 6px 6px 0 0;
	transition: all 200ms;
}

.sectionContact .formCol .form-group input:hover + label,
.sectionContact .formCol .form-group textarea:hover + label {
	color: #f36f43;
}

.sectionContact .formCol .form-group input:focus + label,
.sectionContact .formCol .form-group input:active + label,
.sectionContact .formCol .form-group textarea:focus + label,
.sectionContact .formCol .form-group textarea:active + label {
	color: #f36f43;
	text-shadow: 0 0 2px rgba(61,193,206,0.25);
}

.sectionContact .formCol .form-group input:not(#not_human) {

}

.sectionContact .formCol .form-group textarea {
	resize: none;
}

.sectionContact .formCol .btn {
	border-color: white;
	font-weight: 500;
}

/** Legal pages **/

.legalPages nav.navbar {
	background-color: #323232;
}

.legalPages .bodyContent {
	padding-bottom: 100px;
	background-color: white;
	color: #323232;
}

.legalPages h1 {
	text-shadow: none;
}

.legalPages ul {
	list-style: none;
	padding-left: 20px;
}

.legalPages ul li,
.legalPages p {
	line-height: 1.6;
}

.legalPages ul li:not(last-child) {
	margin-bottom: 4px;
}

.legalPages ul li > strong {
	margin-right: 10px;
}

/** Terms & conditions page **/

.termsPage {

}

/** Privacy policy page **/

.privacyPage {

}

/** Cookie notice page **/

.cookiePage {

}

/********************
 *                  * 
 * Responsive rules *
 *                  *
 ********************/

/* large desktop monitors at 1920x1080 or 2560x1440 scaled. Simulate typical height: 1080px */
@media only screen and (min-width:1601px) {
	.container { width: 90vw; }
}

/* 1600x900 laptops or 1536x864 scaled desktops. Simulate typical height: 900px */
@media only screen and (max-width:1600px) {
	body { font-size: 16px; }
	.container { width: 90vw; }
	.indexPage .heroText h1 { font-size: 80px; }
	.section h2 { font-size: 30px; }
	.section p { margin-bottom: 10px; font-size: 16px; }
	.section.sectionCta h2 { font-size: 54px; }
	.eventsList li .eventBody p { font-size: 14px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .cryptocurrencyIcon { max-width: 36px; }
	.cryptocurrenciesList li .cryptocurrencyHeader h2 { font-size: 24px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .dynamicData.markPrice { font-size: 20px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon span:nth-child(1) { width: 36px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon span:nth-child(2) { height: 36px; }
	.cryptocurrenciesList li .cryptocurrencyBody p { font-size: 14px; }
	.dataListFilters { padding: 20px 20px 20px; }
}

/* 1440x900 MacBook Air or similar laptops. Simulate typical height: 900px */
@media only screen and (max-width: 1440px) {
	.container { width: calc(100vw - 40px); }
	body { font-size: 14px; }
	.section h2 { font-size: 26px; }
	.floatingBox { padding: 20px 30px 25px; }
	.floatingBox h3 { font-size: 18px; }
	.section p { font-size: 14px; }
	.sectionPostContent .postContent li { font-size: 14px; }
	.section .btn { font-size: 16px; border: 2px solid #f36f43; }
	.indexPage .section.sectionFeatures .featuresCard { padding: 20px 30px; }
	.indexPage .section.sectionFeatures .featuresCard img { margin-bottom: 15px; }
	.plansBoxes h2 { font-size: 28px; }
	.plansBoxes .plansTarget { font-size: 18px; }
	.plansPrices .plansPriceNumber { font-size: 50px; }
	.plansPrices sup { top: -20px; font-size: 18px; }
	.plansInclude h3 { font-size: 18px; }
	footer .footerLogoColumn img { max-width: 380px; }
	footer .copyrightNote p { font-size: 12px; }
	footer .tagline { font-size: 30px; }
	footer ul li { margin: 8px 0; }
}

/* 1366x768 budget laptops like HP or Dell. Simulate typical height: 768px */
@media only screen and (max-width: 1366px) {
	.indexPage .heroText h1 { font-size: 70px; }
	.indexPage .heroText p { font-size: 20px; }
	.indexPage .heroText .btn { font-size: 26px; padding: 8px 26px; }
	.plansInclude .coinsList li { width: calc(100% / 4); }
	.sectionBlogHome .articleHeadline h2 { font-size: 20px; }
}

/* 1280x800 older laptops or 1280x720 HD displays. Simulate typical height: 800px */
@media only screen and (max-width: 1280px) {
	nav.navbar .headerLeft .headerLogo { max-width: 220px; }
	nav.navbar[data-mobile-state="close"] ul li a { padding: 0 16px; }
	nav.navbar[data-mobile-state="close"] .headerRight li#homeLogin { margin-left: 8px; }
	.plansPrices .plansPriceNumber { font-size: 46px; }
	.plansPrices sup { top: -18px; }
	.plansInclude .coinsList li { width: calc(100% / 3); }
	.sectionContact .textCol .contactInfo strong { font-size: 22px; }
	.dataFilterList li a span { display: none; }
	nav.navbar[data-mobile-state="close"] ul.headerRight li a { padding: 0 15px; }
	.sectionBlogHome .featArticleCategory { top: -24px; padding: 2px 7px; }
	.sectionBlogHome .articleHeadline h2 { font-size: 18px; }
}

@media only screen and (max-width: 1199px) {
	h1 { font-size: 38px; }
	nav.navbar .headerLeft .headerLogo { max-width: 200px; }
	nav.navbar[data-mobile-state="close"] ul li a { padding: 0 8px; }
	nav.navbar[data-mobile-state="close"] .headerRight li#homeLogin { margin-left: 2px; }
	nav.navbar[data-mobile-state="close"] .headerRight li.authLinks a {  padding: 5px 10px; }
	footer .footerLogoColumn img { max-width: 340px; }
	footer .tagline { font-size: 27px; }
	.indexPage .heroText .btn { font-size: 22px; }
	.heroMiddle { position: relative; top: unset; left: unset; transform: unset; margin: 50px auto; display: block; transform: unset; float: none; }
	.section.sectionFaqs ul li p.question { font-size: 18px; }
	.section.sectionFaqs ul li p.answer { font-size: 14px; }
	.section.sectionCta h2 { font-size: 50px; }
	.section.sectionCta .btn { font-size: 22px; padding: 6px 24px; }
	.featuresPage .hidden-sm.col-lg-2.pull-right { display: none; }
	.eventsList li .eventHeader h2 { font-size: 22px; }
	.eventsList li .eventHeader .eventSubHeader span p { font-size: 14px; }
	.eventsList li .eventBody h3 { font-size: 18px; }
	.cryptocurrenciesListWrapper { padding: 25px; }
	.cryptocurrenciesList li { margin-bottom: 20px; padding: 0 10px 20px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .cryptocurrencyIcon { max-width: 32px; }
	.cryptocurrenciesList li .cryptocurrencyHeader h2 { font-size: 20px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .dynamicData.markPrice { font-size: 18px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon span:nth-child(1) { width: 30px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon span:nth-child(2) { height: 30px; }
	.cryptocurrenciesList li .cryptocurrencyBody h3 { font-size: 18px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock { margin-right: 20px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock .metricTitle { font-size: 10px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock .metricData { font-size: 12px; }
/*	.floatingBg { text-align: center !important; }*/
/*	.floatingBox { position: relative; top: unset; left: unset; right: unset; margin-top: -100px; transform: unset; }*/
	.toolbar .pagination li > * { font-size: 18px; }
	.dataList li .dataItemDetails,
	.dataList li .dataItemLinks { display: block; width: 100%; text-align: left; }
	.dataList li .dataItemDetails h3,
	.dataList li .dataItemDetails p,
	.dataList li .dataItemLinks p { margin-bottom:4px; }
	.dataList li .dataItemLinks select { padding: 0; text-align: left; }
	.sectionBlogHome .articleHeadline h2::after,
	.sectionBlogHome .blogHero1 .articleHeadline h3::after,
	.sectionBlogHome .blogHero2 .articleHeadline h3::after { content: unset; }
}

/* 1024x768 tablets in landscape or small laptops. Simulate typical height: 768px */
@media only screen and (max-width: 1024px) {
	nav.navbar { min-height: 120px; background-image: linear-gradient(rgba(0,0,0,0.75) 80%, transparent ); }
	nav.navbar #mobileMenu { display: block; }
	nav.navbar .headerLeft { position: absolute; top: 40px; left: 40px; padding-top: 0; }
	nav.navbar .headerLeft .headerLogo { max-width: 240px; }
	nav.navbar[data-mobile-state="close"] .headerRight { display: none; }
	.indexPage .hero { background-position: left top, 70% top; }
	.indexPage .heroText h1 { font-size: 60px; }
	.indexPage .heroText p { font-size: 18px; }
	.indexPage .heroText .btn { font-size: 20px; }
	.indexPage .section.sectionFeatures .featuresCard img { height:150px; }
	.floatingBg.uniqueImg img,
	.featuresPage .floatingBg.volatilityImg img { width: 100%; max-width: 100%; }
	.floatingBox.uniqueTxt { top: unset; bottom: 0px; left: unset !important; right: unset !important; width: calc(100% - 60px); transform: unset; border-radius: 0 0 10px 10px; }
	.indexPage .floatingBox.uniqueTxt { bottom: -60px; }
	.featuresPage .floatingBg.volatilityImg img { border-radius: 10px 10px 0 0; }
	.featuresPage .floatingBox.volatilityTxt { position: relative; left: unset !important; right: unset !important; width: 100%; margin-top: -200px; transform: unset; border-radius: 0 0 10px 10px; }
	.heroMiddle { margin: 100px auto; }
	.section.sectionCta .btn { font-size: 20px; padding: 6px 24px; }
	.plansBoxes h2 { font-size: 26px; }
	.plansBoxes .plansTarget { font-size: 16px; }
	.plansPrices .plansPriceNumber { font-size: 42px; }
	.plansPrices sup { font-size: 16px; }
	.plansBoxes .btn { width: 100%; padding: 12px 0px; font-size: 16px; }
	.plansInclude h3 { font-size: 16px; }
	.plansInclude .coinsList li { width: calc(100% / 2); }
	.eventsListsWrapper { padding: 25px 15px; }
	.legalPages nav.navbar { min-height: 80px; }
	.legalPages ul li, .legalPages p { line-height: 1.4; }
	.legalPages nav.navbar .headerLeft { top: 30px; left: 30px; }
	.legalPages nav.navbar #mobileMenu { top: 15px; right: 25px; }
}

/* 800x1280 tablets in portrait. Simulate typical height: 1280px */
@media only screen and (max-width: 991px) {
	.section p { font-size: 18px; }
	.sectionPostContent .postContent li { font-size: 18px; }
	.indexPage .heroText { width: calc(100vw - 120px); max-width: calc(100vw - 120px); left: 60px; }
	.indexPage .heroText h1 { font-size: 8em; }
	.indexPage .heroText p {font-size: 24px; max-width: unset; }
	.indexPage .heroText .btn { font-size: 30px; padding: 10px 30px; }
	.floatingBg img { width: 100%; max-width: 100%; }
	.floatingBox { position: relative; left: unset !important; right: unset !important; width: 100% !important; margin-top: -200px; transform: unset; border-radius: 0 0 10px 10px; }
	.heroMiddle { padding: 0 60px; }
	.featuresPage .featuresImgCol { margin-bottom: 50px; }
	.featuresPage .featuresImgCol img { margin: 0 auto; }
	.cryptocurrenciesList li .cryptocurrencyHeader .cryptocurrencyIcon { max-width: 26px; }
	.cryptocurrenciesList li .cryptocurrencyHeader h2 { font-size: 18px; }
	.cryptocurrenciesList li .cryptocurrencyHeader h2 span { display: none; }
	.cryptocurrenciesList li .cryptocurrencyHeader .dynamicData.markPrice { margin-right: 10px; padding: 2px 24px 0 0; font-size: 16px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .dynamicData.markPrice::after { right: 10px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock { margin-right: 10px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock .metricData { font-size: 10px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon span:nth-child(1) { width: 26px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon span:nth-child(2) { height: 26px; }
	.section.sectionCta h2 { font-size: 46px; }
	footer { text-align: center; }
	footer .footerLogoColumn img { margin: 0 auto; }
	footer .copyrightNote { margin-top: 10px; }
	footer ul li { display: inline-block; margin: 0 10px; }
	footer ul li a,
	footer ul li a:hover,
	footer ul li a:focus,
	footer ul li a:active { color: white; }
	.dataListFilters { margin-bottom: 25px; }
	.dataFilter .expandIcon { display: block; }
	.dataFilter[data-filter-type="years"] .expandIcon[data-state="close"] + h3 { margin-bottom: 0; }
	.dataFilterList { display: none; border-bottom: none; }
}

/* tablet portrait or mobile landscape at 768x1024. Simulate typical height: 1024px */
@media only screen and (max-width: 768px) {
	nav.navbar { min-height: 100px; }
	nav.navbar .headerLeft { top: 32.5px; left: 30px; }
	nav.navbar .headerLeft .headerLogo { max-width: 180px; }
	nav.navbar #mobileMenu { top: 20px; right: 30px; }
	nav.navbar[data-mobile-state="open"] .headerRight { padding: 40px 40px 0; }
	.container { width: calc(100vw - 15px); }
	.flexContainer,
	.flexContainer > div,
	.plansRow,
	.plansRow > div { display: block; }
	.hidden-xs { display: none !important; }
	.col-xs-12 { width: 100%; }
	.heroMiddle { padding: 0px 25px }
	.section { padding: 25px 0; }
	.section h2 { font-size: 32px; }
	.section .container { padding: 0 5px; width: 100%; }
	.floatingSection .container { padding: 0 20px; }
	.floatingBox h3 { font-size: 20px; }
	.aboutPage .floatingSection:not(.sectionUnique) { margin-bottom: -25px; }
	.section.sectionUnique .container { padding: 0 20px; }
	.section.sectionFeatures .container > div:not(:last-child) { margin-bottom: 25px; }
	.featuresPage .section.sectionFeatures .container > div:not(:last-child) { margin-bottom: 20px; }
	.volatilityTxt.floatingBox { margin-top: -60px !important; }
	.indexPage .section.sectionPricing { margin-top: 20px; }
	.plansRow > div:not(:last-child) { margin-bottom: 25px; }
	.plansBoxes h2 { font-size: 32px; }
	.plansBoxes .plansTarget { font-size: 20px; }
	.plansPrices .plansPriceNumber { font-size: 60px; }
	.plansPrices sup { top: -26px; font-size: 22px; }
	.plansBoxes .btn { padding: 12px 30px; font-size: 20px; }
	.plansInclude h3 { font-size: 20px; }
	.plansInclude .featuresList li { font-size: 16px; }
	.plansInclude .coinsList li { width: calc(100% / 5); }
	.section.sectionFaqs .container { padding: 0 20px; }
	.eventsListsWrapper { margin: 0 15px; }
	.section.sectionEvents ul.eventsTabs { margin-bottom: 25px; }
	.section.sectionCryptocurrencies { padding: 25px 15px 15px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon span:nth-child(1) { width: 22px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon span:nth-child(2) { height: 22px; }
	.sectionContact .textCol .contactInfo { padding: 50px; border-radius: 10px 10px 0 0 }
	.sectionContact .textCol .contactInfo > div { position: relative; top: unset; left: unset; transform: unset; margin-left: 40px; }
	.sectionContact .formCol > div { border-radius: 0 0 10px 10px; }
	.section.sectionCta img { max-width: calc(100% - 30px); }
	.dataPages h1 { margin-top: 40px; }
	.dataPages .container > div { margin: 0 -17.5px; width: calc(100% + 35px); }
	.dataPages .container > div > div,
	.datesNav li span { margin-bottom: 20px; }
	.dataView .chartBox .coinInfo span { font-size: 14px; }
	.dataView .chartBox .coinInfo .coinInfoSub { padding: 22px 0 0px 18px; }

	.blogHero { margin-bottom: 20px; }
	.sectionBlogHome { padding-bottom: 0; margin-bottom: 0; }
	.sectionBlogHome .blogHero3,
	.sectionBlogHome .blogHero4 { margin-top: 0px; }

	.sectionCategoryHeader { margin: 100px 0 0; padding-bottom: 0; }
	.sectionCategoryHeader h1 { margin: 0px; }
	.sectionBlogList .blogCategoryFeatured { margin-bottom: 25px; }
	.sectionBlogList .blogList .blogArticles { padding: 0 0 15px; }
	.sectionBlogList .blogList .blogArticles > div { padding: 10px 10px 0; }

	.sectionPost { margin: 120px 0 0; padding: 0 15px; }
	.sectionPost .postHero { min-height: 450px; }
	.sectionPost .postHeadline { left: 25px; padding-right: 25px; }
	.sectionPost .postHeadline h1 { font-size: 26px; }
	.sectionPost .postHeadline h2 { font-size: 20px; }
	.sectionPostContent { margin: 0 auto; padding-bottom: 0; }

	.blogSideBar { border: none; }
	.blogSideBar > div { position: relative; margin: 0px 0 25px; padding: 0 15px; }
	.blogPost .blogSideBar { margin: 25px 0 0; padding: 0 15px; }
	.blogPost .blogSideBar > div { margin-bottom: 0; padding: 25px 15px 20px; border-top: 1px dotted #f36f43; border-bottom: 1px dotted #f36f43; }
}

@media only screen and (max-width:736px) {
	.indexPage .heroText { width: calc(100vw - 80px); max-width: calc(100vw - 80px); left: 40px; }
	.indexPage .heroText h1 { font-size: 5em; }
	.indexPage .heroText p { font-size: 18px; }
	.indexPage .heroText .btn { font-size: 26px; padding: 10px 22px; }
	nav.navbar[data-mobile-state="open"] .headerRight { padding: 30px; overflow: auto; }
	nav.navbar[data-mobile-state="open"] ul.headerRight li.navNotice { position: relative; display: block; left: 0; width: 100%; margin: 30px 0 0; bottom: 0; text-align: center; transform: unset; }
	.sectionBlogList
}

@media only screen and (max-width:720px) {
	
}

@media only screen and (max-width:667px) {
	.dataListWrapper { padding: 20px 15px 15px; }
	.dataList li h3 { font-size: 16px; }
	.dataList li h3 span { display: block; margin: 6px 0 6px; font-size: 14px; }
	.dataList li h3 span::before { content: unset; }
	.dataList li p,
	.dataList li .dataItemLinks select,
	.dataList li .dataItemLinks a { font-size: 12px; }
	.dataView h2 { font-size: 20px; }
	.dataView .chartBox .releaseInfo .releaseName { font-size: 18px; }
	.dataView .chartBox .releaseInfo .releaseDate { font-size: 14px; }
	.dataView .analysisTable thead tr th { width: 100px !important; }
	.sectionPost .postHero { min-height: 350px; }
}

@media only screen and (max-width:568px) {
	.floatingBg img { border-radius: 10px 10px 0 0; }
	.floatingBox,
	.volatilityTxt.floatingBox { margin-top: 0 !important; }
	.indexPage .floatingBox.uniqueTxt { bottom: unset; }
	.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock:nth-child(5),
	.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock:nth-child(6),
	.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock:nth-child(7) { display: none; }
	.dataView h2 { font-size: 16px; }
	.dataView .chartBox .coinInfo .coinInfoTicker { padding: 0 12px 0 0; }
	.dataView .chartBox .coinInfo .coinInfoTicker p { font-size: 12px; }
	.dataView .chartBox .coinInfo .coinInfoSub .metricTitle { top: 10px; font-size: 8px; white-space: nowrap; }
	.dataView .chartBox .coinInfo span { height: 40px; font-size: 10px; }
	.dataView .chartBox .releaseInfo .releaseName { font-size: 16px; }
	.dataView .chartBox .releaseInfo .releaseDate { font-size: 12px; }
}

/* 480x800 older Android phones. Simulate typical height: 800px */
@media only screen and (max-width: 480px) {
	nav.navbar[data-mobile-state="open"] ul.headerRight li#homeMain { margin-bottom: 15px; }
	nav.navbar[data-mobile-state="open"] ul.headerRight li#homeMain .mobileLogo { max-width: 200px; }
	nav.navbar[data-mobile-state="open"] ul.headerRight li a { font-size: 24px; }
	.section.sectionCta h2 { font-size: 42px; }
	.section.sectionEvents ul.eventsTabs li { margin: 0 4px; padding: 6px 14px; font-size: 18px; }
	.sectionContact .formCol > div { padding: 40px 30px 35px; }
	footer .footerLogoColumn img { max-width: 320px; }
	footer .tagline { margin: 0 0 15px; font-size: 24.8px; }
	.dataList li .dataItemDetails p[data-p-type="release-data"] span { display: block; margin-top: 4px; }
	.dataList li .dataItemDetails p[data-p-type="release-data"] span::before { content: 'Agency: '; }
	.dataList li h3 span { font-weight: 300; }
	.dataView .chartBox .coinInfo .coinInfoTicker { display: block; border-right: none; }
	.dataView .chartBox .releaseInfo { }
	.dataView .chartBox .coinInfo .coinInfoSub { padding: 0 0; max-width: calc(100% / 6); text-align: left; height: 20px; margin-right: 14px; }
	.dataView .chartBox .coinInfo .coinInfoSub .metricTitle { font-size: 8px; white-space: nowrap; position: relative; top: unset; left: unset; }
	.blogSideBar h3 { font-size: 24px; }
	.blogSideBar .sidebarList li,
	.blogSideBar .sidebarList li a { font-size: 18px; }
	.sectionPostContent .shareButtons li a { height: 26px; width: 40px; font-size: 18px; line-height: 26px; }
	.sectionPostContent .shareButtons li:first-child { font-size: 20px; }
}

/* 414x896 newer iPhones. Simulate typical height: 896px */
@media only screen and (max-width: 414px) {
	h1 { font-size: 32px; }
	h2,
	.section h2,
	.eventsPage .sectionHeader h2 { font-size: 28px; }
	.section p { font-size: 16px; }
	.sectionPostContent .postContent li { font-size: 16px; }
	.indexPage .heroText h1 { font-size: 4em; }
	.indexPage .heroText p { font-size: 16px; }
	.indexPage .heroText .btn { font-size: 22px; padding: 8px 20px; }
	.section.sectionEvents ul.eventsTabs li { margin: 0px 4px; padding: 6px 12px; font-size: 14px; }
	.cryptocurrenciesList li .cryptocurrencyHeader .dynamicData.markPrice { border-right: none; }
	.cryptocurrenciesList li .cryptocurrencyHeader .statsBlock { display: none; }
	.cryptocurrenciesList li .cryptocurrencyHeader .expandIcon { right:-20px; }
	.plansInclude .coinsList li { width: calc(100% / 4); }
	.sectionContact .textCol .contactInfo strong { font-size: 18px; }

	.dataView .chartBox .coinInfo .coinInfoSub { height: unset; width: calc(100% / 3); max-width: unset; margin-right: 0; margin-bottom: 0px; }
	.dataView .chartBox .coinInfo .coinInfoSub:nth-child(-n+4) { margin-bottom: 10px; }
	.dataView .chartBox .coinInfo .coinInfoSub .metricTitle { font-size: 10px; text-align: left; }
	.dataView .chartBox .releaseInfo .releaseDate .releaseTz { display: block; margin-left: 0; font-size: 10px; }

	.sectionPost .featArticleCategory { margin-left: 0; }
	.sectionPost .postHeadline { left: 10px; padding-right: 10px; }
	.sectionPost .postHeadline h1 { font-size: 22px; }
	 .sectionPost .postHeadline h2 { font-size: 18px; }
	 .sectionPost .postHeadline hr { margin: 0 0 15px 0; }
}

/* 390x844 Pixel phones or small iPhones. Simulate typical height: 844px */
@media only screen and (max-width: 390px) {
	nav.navbar[data-mobile-state="open"] ul.headerRight li#homeMain .mobileLogo { max-width: 200px; }
	footer .footerLogoColumn img { max-width: 280px; }
	footer .tagline { font-size: 21.4px; }
	.dataList li p[data-p-type="data-count"] span { display: none; }
}

/* 375x812 older iPhones. Simulate typical height: 812px */
@media only screen and (max-width: 375px) {
	nav.navbar[data-mobile-state="open"] ul.headerRight li#homeMain .mobileLogo { max-width: 160px; }
	h1 { font-size: 28px; }
	h2,
	.section h2,
	.eventsPage .sectionHeader h2 { font-size: 24px; }
	.indexPage .heroText h1 { font-size: 3.8em; }
	.plansInclude .coinsList li { width: calc(100% / 3); }
	.sectionContact .textCol .contactInfo { padding: 40px; }
	footer .footerLogoColumn img { max-width: 240px; }
	footer .tagline { font-size: 17.6px; }
}

/* 360x800 budget Android phones. Simulate typical height: 800px */
@media only screen and (max-width: 360px) {
	.indexPage .heroText h1 { font-size: 3.6em; }
	 .section.sectionEvents ul.eventsTabs li { margin: 0px 2px; padding: 6px 10px; font-size: 14px; }
	.sectionContact .textCol .contactInfo { padding: 30px; }
}

/* 320x480 older iPhones. Simulate typical height: 480px */
@media only screen and (max-width: 320px) {
	h1 { font-size: 24px; }
	h2,
	.section h2,
	.eventsPage .sectionHeader h2 { font-size: 20px; }
	.indexPage .heroText h1 { font-size: 3em; }
	.indexPage .heroText p { font-size: 16px; }
	.indexPage .heroText .btn { font-size: 20px; padding: 6px 18px; }
	.plansInclude .coinsList li { width: calc(100% / 2); }
	.cryptocurrenciesList li .cryptocurrencyHeader .cryptocurrencyIcon { max-width: 18px; margin-right: 4px; }
	.cryptocurrenciesList li .cryptocurrencyHeader h2 { font-size: 16px; }
	.sectionContact .textCol .contactInfo { padding: 30px 18px; }
	.dataList li .dataItemLinks a { margin-left: 0; }
}