/*!
Theme Name: MicroDigital
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: microdigital
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

MicroDigital is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;

	font-variant-ligatures: normal;
	font-variant-ligatures: no-common-ligatures;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}
:root {
	--headerOpacity: 1;
	--headerScale: 1;
}

.video-header {
	position: fixed;
	text-align: center;
	width: 100%;
	height: 100%;
}
.video-header, .video-header video, .video-header .viewport-header {
	width: 100%;
	min-height:100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}
.video-header video {
	background: #000;
	object-fit: cover;
}
.video-header .viewport-header {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	opacity: var(--headerOpacity);
	transform: scale(var(--headerScale));
}

html, body {
	height: 100vh;
	/*overflow-x: hidden;*/
}

html {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

	line-height: 1.4;
}

body {
	margin: 0;
	color: #fff;
	line-height: 1.3;
	font-family: "Lato", sans-serif;
	font-size: 20px;
}

h1 {
	font-family: "Syncopate", sans-serif;
	color: white;
	text-transform: uppercase;
	letter-spacing: 3vw;
	line-height: 1.2;
	font-size: 3vw;
	text-align: center;
}
h1 span {
	display: block;
	font-size: 10vw;
	letter-spacing: -1.3vw;
}

main {
	background: white;
	position: relative;
	padding: 1rem;
	margin-top: 100vh;
}
main::before {
	content: "";
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	top: -100vh;
}
main p {
	max-width: 600px;
	margin: 1rem auto;
}


/*MK Styles*/

@media (min-width: 1200px){
	.container {
		max-width: 1180px;
	}
}
.siteheader img{
	height: 50px;
	margin: 10px;
}
.siteheader{
	display: flex;
	justify-content: center;
	padding: 0 10px;
	box-sizing: border-box;
	align-items: center;
	height: 120px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,0.85);
	z-index: 1;
	border-bottom: 1px solid #333;

}
.video-header .viewport-header{

}
.logowrapper{
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	color: #fff;
	text-align: center;
}
.video-header:after{
	content: "";
	background: rgba(0,0,0,0.7);
	display: block;
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height:100%;

}

#page{
	padding-top: 210px;
	position: relative;
}
.gold{
	color: rgb(196, 179, 127);
}
.lg-gold{
	color: rgb(196, 179, 127);

}
.bold{
	font-weight: 800;
}

.lrgfont{
	font-size: 30px;

}

.xlrgfont{
	font-size: 36px;
	line-height: 1.15;
}
.br{
	display: block;
	height: 20px;
}

.fromRight {
	left: 0px;
	animation: slidefromright 2000ms;
	position: relative;
	animation-timing-function: ease;
}
@keyframes slidefromright {
	from {
		left: -200%;
		opacity: 0;
	}
	to {
		left: 0px;
		opacity: 1;
	}
}
.fromLeft {
	right: 0px;
	animation: slidefromleft 2000ms;
	position: relative;
	animation-timing-function: ease;
}
@keyframes slidefromleft {
	from {
		right: -200%;
		opacity: 0;
	}
	to {
		right: 0px;
		opacity: 1;
	}
}
.slideUp {
	bottom: 0;
	animation: slideupward 2000ms;
	position: relative;
	animation-timing-function: ease;
}
@keyframes slideupward {
	from {
		bottom: -200%;
		max-height: 0;
	}
	to {
		bottom: 0;
		max-height: auto;
	}
}

.nopadding{
	padding: 0;
}
.widgetcontainer{
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgb(196, 179, 127);
	border: 1px solid #444;
	padding: 10px;
}
.liveprices{


}
.liveprices .btc{

	position: relative;
	padding-top: 50%;
	width: 100%;
}
.liveprices .btc iframe{
	border: none;

	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom:0;
	right:0;
}
.liveprices .eth{

	position: relative;
	padding-top: 50%;
	width: 100%;
}
.liveprices .eth iframe{
	border: none;

	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom:0;
	right:0;
}
.livevwap{
	/*background: #000;*/
	position: relative;
	padding-top: 100%;
	width: 100%;
	overflow: hidden;

}
.livevwap:after{
	position: absolute;
	content: "1 = 0.01 coin";
	bottom: 2px;
	left: 50%;
	color: rgb(196, 179, 127);
	transform: translate(-50% , 0);

}
.liveprices .btc {
	position: relative;
	padding-top: 78%;
	width: 100%;
}

.leftbtn {
	display: none;
}

.liveprices .eth {
	display: none;
}

.livevwap iframe{
	border: none;
	width: 100%;
	height:93%;
	position: absolute;
	top: 0;
	left: 0;
	bottom:0;
	right:0;
}
.wdgtBtn:hover{
	cursor: pointer;
	text-decoration: underline;
}
.wdgtBtn{
	background: #666;
	color: #999;
	text-align: center;
	padding: 6px 10px;
	margin-bottom: 10px;
}
.wdgtBtn.active{
	background: rgb(196, 179, 127);

	color: #000;
	text-decoration: underline;
}

.leftbtn{
	margin-right: 3px;
}
.rightbtn{
	margin-left: 3px;
}

.siteheader .btn {
	font-size: 18px;
	margin-top: 30px;
	padding: 4px 12px
}

.siteheader .btn{
	/*background: #00db29;*/
	/*background: #2dac2a;*/
	color: #000;
	background: rgb(196, 179, 127);
	float: right;
}
.contactsales .right{
	float: right;
}
.contactsales .gold {
	padding-top: 38px; font-size: 18px;
}

.contactsales .gold a{
	color: rgb(196, 179, 127);
}
.contactlink a:hover{
	/*color: rgb(196, 179, 127);*/
	font-weight: bold;
}
.contactsales a{

}
.contactlink a{
	color: #fff;
	text-decoration: underline;
	font-weight: normal;
}
.contactlink{
	/*padding-left: 10px;*/
	display: inline-block;
}
.extraonespace{
	padding-left:3px;
}
.microlist  {
	list-style: none;
	padding-left: 24px;
	font-size:19px;
}
.microlist li {
	position: relative;
}
.microlist li:before {
	content: "";
	display: block;
	width: 12px;
	height: 18px;
	background: url(./img/arrow-glyphicons.svg) 0 0 no-repeat;
	background-size: 100% 100%;
	font-style: normal;
	position: absolute;
	bottom: auto;
	right: auto;
	z-index: 1;
	color: #be0a24;
	font-size: 2.211em;
	font-weight: 400;
	font-family: "Lato",Arial,Helvetica,sans-serif;
	top: 0.10em;
	left: -20px;
}
.whitewrap{
	white-space: nowrap;
}

div[class^="col-"] , div{
	/*border: 1px solid red;*/
}
.site-footer .partof, .site-footer .regulatedTXT {
	display: none;
}
.mobileWdgtTxt{
	margin: 25px 0;
}
.w700{
	font-weight: 700;
}
.disclaimer{
	margin-top: 70px;
	font-size: 16px;
	margin-bottom: 20px;
	/*text-align: center;*/
}
@media screen and (max-width: 576px) {
	.disclaimer{
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.livevwap{
		padding-top: 103%;
	}
	.livevwap:after{
		bottom: -5px;

	}

	.contactsales .gold {
		padding-top: 12px; font-size: 18px;
		float: right;
	}

	.br{
		display: block;
		height: 10px;
	}



	.topHl {
		padding-bottom: 5px;
	}

	.contactlink {
		padding-left: 0;
	}
	.xlrgfont{
		font-size: 32px;
	}
	.lrgfont {
		font-size: 26px;
	}
	.logowrapper{
		text-align: left;
	}
	a:visited{
		color: rgb(165, 127, 55);
	}

	.siteheader img{
		margin-left: 0px;
	}
	.topHl{
		padding-top: 10px;
	}

	html{
		font-size: 20px;
	}
	.SOD{
		display: none;
	}

	#page {
		padding-top: 55px;
	}
	.siteheader .partof, .siteheader .regulatedTXT {
		display: none;
	}
	.siteheader img{
		height: 26px;
		margin-top: 10px;
	}
	.siteheader{
		box-sizing: border-box;
		padding: 0;
		height: 50px;
	}
	.siteheader .btn {
		font-size: 18px;

		padding: 0 12px;
		float: right;
		margin: 0 auto;
		margin-top: 7px;
	}
	.col-sm-4{
		text-align: center;
	}
	/*.leftbtn, .rightbtn{*/
	/*	margin-right: 0;*/
	/*	margin-left: 0;*/
	/*}*/
	.site-footer .partof {
		font-size: 16px;
		padding:10px 0;
		display: block;
		text-align: center;
	}

}
.clear{
	clear: both;
}


@media screen and (min-width: 577px) {

	.SOM {
		display: none;
	}
}
/* LMAX Cookie Consent */

#lmax-cookie-bar {
	background-color: rgb(252, 248, 227);
	color: rgb(165, 127, 55);
	font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
	display: block;
	font-size: 15px;
	text-align: center;
	font-weight: 300;
	/*display: none;*/
}
#lmax-cookie-bar .link {
	display: inline-block;
	color: rgb(85, 85, 85);
	font-weight: 600;
	text-decoration: underline;
}
#lmax-cookie-bar .cookieBtn {
	display: inline-block;
	color: rgb(252, 248, 227);
	background-color: rgb(165, 127, 55);
	padding: 5px 10px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	margin: 5px 0px 5px 10px;
	text-decoration: none;
	position: relative;
	cursor: pointer;
}
@media screen and (max-width: 699px) {
	#lmax-cookie-bar {
		/*padding: 55px 35px 0 35px;*/
		padding: 10px 10px 10px 10px;
	}
	#lmax-cookie-bar .cookieBtn {
		margin: 0px 0px 0px 10px;
	}
}
/* End LMAX Cookie Consent */