/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: circle;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

/* END OF HTML RESET */



/* BASICS */

body {
	background-color: #111;
	color: #ddd;
	font-family: Tahoma, Helvetica;
}
body::-webkit-scrollbar {
    display: none;
}

.divrow {
    display: flex;
    flex-direction: row;
}

.divcol {
    display: flex;
    flex-direction: column;
}

.fillTheDiv {
	height: 100%;
    width: 100%;
}

/* END BASIC */



.panelHeading {
	width: 100%;
	height: 30px;
	font-size:16px;
	color: #ddd;
	align-items: center;
}

.panelTitle {
	font-size:16px;
	line-height: 30px;
	margin-bottom: 0;
}

.panel_zoom_icon, .panel_minimize_icon {
	height: 15px;
	width: 15px;
	margin: 0 10px;
	cursor: pointer;
	filter: invert(1);
	position: absolute;
	right: 10px;
}

#flaremap-title > .panel_zoom_icon{
	position: block;
	right: 31vw;
}

#flaremap-title > .panel_minimize_icon {
	position: block;
	right: 0;
}

.modalBackdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3000;
	height: 100vh;
	width: 100vw;
	background-color: rgba(0, 0, 0, .5);
}

.zoomedInpanel {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 6000;
    margin: 5% 10%;
	overflow-y: scroll;

	background-image: linear-gradient(to bottom right, rgba(60, 60, 60, .85), rgba(50, 50, 50, .75), rgba(60, 60, 60, .85));
	-webkit-backdrop-filter: blur(10px); /* Add this line first, it fixes blur for Safari*/
	backdrop-filter: blur(15px);
	transform: translate3d(0, 0, 0);
	border: #222;
	border-style: solid;
	border-width: 1px;
	border-radius: 5px;
	box-shadow: 0 0 10px 10px rgba(20, 20, 20,.5) inset;

	height: calc(80% - 30px); width: 80%;

} .zoomedInpanel::-webkit-scrollbar {
	width: 9px;
} .zoomedInpanel::-webkit-scrollbar-thumb {
	background-color: rgba(155, 155, 155, 0.5);
	border-radius: 20px;
	border: transparent;
} .zoomedInpanel::-webkit-scrollbar-track {
	background: transparent;
}










.appFlaremapContainer {
    width: 60vw;
    height: calc(100vh - 6vw - 10px);
	margin: 10px 0 0 10px;
}

.appIframe {
    width: 100%;
    height: calc(100% - 30px);
}

.rightSide {
    width: 40vw;
    height: calc(100vh - 6vw - 10px);
	justify-content: space-between;
	margin: 10px 10px 0 0;
}




#selectedContainer {
	height: 36vh;
}

#detailsContainer {
    height: 35vh;
}

#detailsPanel > .extension-body, .selectedList  {
	overflow-y: scroll;

	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
} .extension::-webkit-scrollbar {
	display: none; /* Normal Borwsers */
}




.selectedList {
    width: 95%;
    margin-left: 2.5%;
	height: calc(100% - 41px);
}
.selectedHeader {
    height: 25px;
}

.selectedObj {
    max-height: 40px;

	margin-bottom: 8px;

	background-image: linear-gradient(to bottom right, rgba(150, 150, 150, .3),rgba(50, 50, 50, .3),rgba(0, 0, 0, .7));

	border-radius: 1vh;
}
.boxUnSelected {
    height: 10px;
    width: 10px;
    margin: 15px 0;
	margin-left: calc(calc(100% - 10px) / 3 * 2);
	background-color: #ddd;
	cursor: pointer;
}
.boxSelected {
    height: 10px;
    width: 10px;
    margin: 15px auto;
	margin-left: calc(calc(100% - 10px) / 3 * 2);
	background-color: black;
	box-shadow: inset gold 0px 0px 1px 3px;
	cursor: pointer;
}
.selectedBox {
    height: 20px;
    width: 20px;
    margin: 10px auto;
    vertical-align: top; 
}
.selectedBox > p {
    margin: 0 auto;
    font-size: .8vw;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
}
.selectedTitle {
    height: 40px;
    font-size: 1vw;
    line-height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.selectedCost {
    height: 40px;
    font-size: 1.2vw;
    text-align: center;
    line-height: 40px;
	justify-content: center;
	align-items: center;
}
.selectedCost > .arrow {
	margin-bottom: 3px;
}
.dropdown {
	height: 160px;
	display: none;
	background-color: #333;
	border-radius: 0 0 5px 5px;
	z-index: 5000;
}

.flagOption {
	justify-content: start;
	align-items: center;
}

.flagContainer {
	cursor: pointer;
}

.flagContainer > div {
	margin: 10px auto;
}
.dropdown > div {
	margin: 10px auto;
}

.flagContainer > img {
	margin: 6px 6px 0 6px;
}
.dropdown > img {
	margin: 6px 6px 0 6px;
}

.flag {
    height: 20px;
    width: 20px;
    margin: 5px;
	cursor: pointer;
}

.flagNone { 
	content: url("../images/flagNone.png");
	filter: invert(1) brightness(70%);
    height: 24px;
    width: 24px;
    margin: auto;
	/* clip-path: polygon(35% 80%, 65% 80%, 100% 30%, 75% 30%, 50% 55%, 25% 30%, 0% 30%); */
	/* clip-path: polygon(50% 80%, 0 20%, 27.5% 20%, 50% 45%, 72.5% 20%, 100% 20%); */
}
.flagRed { 
	background-color: red; 
	clip-path: circle(50% at 50% 50%);
    margin: auto;
}
.flagOrange { 
	background-color: orange; 
	clip-path: circle(50% at 50% 50%);
    margin: auto;
}
.flagYellow { 
	background-color: yellow; 
	clip-path: circle(50% at 50% 50%);
    margin: auto;
}
.flagGreen { 
	background-color: green; 
	clip-path: circle(50% at 50% 50%);
    margin: auto;
}

.listRemove {
	line-height: 40px;
	width: 100%;
	text-align: center;
	cursor: pointer;
}

#ext-actions {
	height: 13vh;
}


.details {
    margin: 0 2vh;
	height: 100%;
}

.details > h1 {
    font-size: 3vh;
    color: #ccc;
}

h2 {
    font-size: 2vh;
    margin-bottom: 1vh;
    color: #999;
}

h3 {
    font-size: 2vh;
    margin-bottom: 1vh;
    color: #ccc;
}

h4 {
    font-size: 1.75vh;
    color: #ccc;
}

p {
    font-size: 2vh;
    margin-bottom: .5vh;
    color: #eee;
}

.centered {
    text-align: center;
}

.numsHalf {
    width: 50%;
}

.numsQuart > div {
    width: 47.5%;
}

.numsQuart > .divcol > h4 {
	height: 28px;
}

.verticalAlign {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.awardID {
	color: #aaa;
    font-size: x-small;
	margin-top: .75vh;
}

.numsThird {
	justify-content: space-around;
	margin: 1.5vh 0;
}

.addressLines > h4 {
	margin: 2.5px 0;
	text-align: center;
}

.heightFix > h4{
	height: min-content !important;
}




.postPanel {
	display: block;
	position: fixed;
	z-index: 6000;
    margin: 20vh 20vw;


	background-image: linear-gradient(to bottom right, rgba(40, 40, 40, .85), rgba(30, 30, 30, .75), rgba(40, 40, 40, .85));
	-webkit-backdrop-filter: blur(10px); /* Add this line first, it fixes blur for Safari*/
	backdrop-filter: blur(15px);
	transform: translate3d(0, 0, 0);
	border: #222;
	border-style: solid;
	border-width: 1px;
	border-radius: 10px;
	box-shadow: 0 0 10px 10px rgba(20, 20, 20,.7) inset;

	height: 60vh; width: 60vw;
}

.panelHeadingTwitter {
	width: 100%;
	height: 30px;
	font-size:16px;
	color: #ddd;
	align-items: center;
	justify-content: space-between;
}


.ext-icon {
	max-height: 18px;
	margin-right: 10px;
}

/* ------ TWEET @ DOGE ------ */
#ext-x-post {
	height: calc(60vh - 30px);
}

#x-post-content-container {
  width: 100%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#x-post-content {
  width: calc(100% - 20px);
  height: calc(100% - 8vh - 30px);
  margin: 10px 10px 0 10px;
  margin-right: none;
  background-color: #090909;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #AAAAAA;
  resize: none;
  color: #AAAAAA;
  font-family: Arial;
  padding: 5px;
}

#x-post-content:focus {
  border-color: rgb(29, 155, 240);
}

#x-post-actions {
  width: calc(100% - 20px);
  height: 9vh;
  padding: .8vh 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#doge-handles-select {
  width: 40%;
  height: 100%;
  border: none;
  border-radius: 10px;
  border: 1px solid #AAAAAA;
  font-family: Arial, Verdana, Tahoma, sans-serif;
  text-align: center;
  font-size: 105%;
  background-color: #090909;
  color: #ddd;
}

#doge-handles-select::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
	border-radius: 0 10px 10px 0;
	background-color: #757575;
}

#doge-handles-select::-webkit-scrollbar {
	width: 20px;
	border-radius: 0 10px 10px 0;
	background-color: #757575;
}

#doge-handles-select::-webkit-scrollbar-thumb {
	border-radius: 0 10px 10px 0;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #222;
}

#doge-tag-link {
  width: 40%;
  height: 40px;
  background-color: #090909;
  color: #ddd;
  border-radius: 25px;
  border: 1px solid #AAAAAA;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Arial, Verdana, Tahoma, sans-serif;
}

#doge-tag-link:visited {
  color: #ddd;
}

#doge-tag-link:active{
  color: #ddd;
}

.arrow {
	width: 18px;
	height: 18px;
	margin: 0px 5px;

	background-color: #333;
	clip-path: polygon(30% 100%, 70% 100%, 70% 50%, 100% 50%, 50% 0, 0 50%, 30% 50%);
}





@media screen and ((min-width: 1500px) or (min-height: 800px)){
	.selectedBox > p {
		font-size: 12px;
	}
	.selectedTitle {
		font-size: 14px;
	}
	.selectedCost {
		font-size: 16px;
	}
	p {
		font-size: 16px;
		color: #eee;
	}
	.details > h1 {
		font-size: 20px;
		color: #ccc;
		margin-bottom: 2vh;

	}
	
	h2 {
		font-size: 18px;
		margin-bottom: 1vh;
		color: #ccc;
	}
	
	h3 {
		font-size: 16px;
		margin-bottom: 2vh;
		color: #ccc;
	}
	
	h4 {
		font-size: 14px;
		margin-bottom: .5vh;
	}

	.details > h1 {
		margin-top: 1vh;
		margin-bottom: 1vh;
	}

	.numsQuart > div > p{
		margin-bottom: 1vh;
	}

}

.showMobile {
	display: none;
}


@media screen and (max-width: 900px) {
	.showMobile {
		display: block;
	}
}

@media screen and (max-width: 900px) {

	.hideMobile {
		display: none;
	}

	body {
		background-image: none;
		background-color: #111;
		height: 100% !important;
		width: calc(100vw) !important;
		overflow-x: hidden;
	}

	.appHeader {
		height: fit-content;
		min-height: 0px;
		margin: 10px 0 10px 0;
	}
	
	#homeLogo {
		height: 15vw;
		margin-left: 2vw;
	}

	#DOGELogo {
		height: 15vw;
		width: 15vw;
		margin-right: 4.5vw;
		margin-left: 2.5vw;
	}

	.flaremapSelectors {
		flex-direction: column;
		align-items: center;
		margin: 0;
	}

	.headerTitle {
		font-size: 3.7vw;
		width: 50vw;
		line-height: 4vw;
	}
	
	#app-container {
		flex-direction: column;
		height: fit-content;
	}

	.mobileAlert {
		width: 100%;
		text-align: center;
		color: #aaa;
		margin-bottom: 15px;
		font-size: 15px;
	}

	#component-group-left {
		width: 100%;
		height: 80vh;
	}

	#component-group-left > div {
		height: 80vh;
	}

	#flaremap-title {
		font-size: x-small;
		width: calc(100% - 35px);
	}

	#flaremap-title > .panel_zoom_icon {
		right: 2.5vw;
	}

	#component-group-right {
		width: 100%;
		height: 100vh;
		margin-top: 2.5%;
	}

	#detailsContainer, #selectedContainer {
		height: 41%;
	}

	h1 {
		font-size: 2.8vh;
		margin: 5px 0;
	}

	#ext-actions {
		height: 15%;
	}

	.selectedBox > p {
		font-size: small;
	}

	.selectedTitle {
		margin-left: 5px;
		font-size: 12px;
	}

	.selectedCost {
		font-size: medium;
	}

	.selectedHeader > p:nth-child(2) {
		width: 52% !important;
	}

	.selectedHeader > p:nth-child(3) {
		width: 25% !important;
	}

	#ext-actions {
 		height: 18% !important;
	}

	.actionText {
		font-size: 12px !important;
		margin: -10px 4vw 10px 4vw !important;
		width: 15vw !important;
	}

	#component-group-right > #ext-x-post {
		height: 45%;
	}

	#feedback-container {
		position: absolute;
		transform: translate(0%, calc(181vh + 17.3vw + 50px - 30px));
		width: 20vh;
		right: calc(50vw - 10vh - 10px);
	}

	#feedback-container:hover {
		width: 20vh;
		padding-right: 0;
		transition: none;
		-o-transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		right: calc(50vw - 10vh - 10px);
	}

	#feedback-content-container {
		width: 15vh;
	}

	#feedback-container:hover > #feedback-content-container {
		width: 15vh;
	}

	#credit-container {
		position: static;
		height: fit-content;
		font-size: 8px;
		line-height: 10px;
		padding: 10px;
		width: calc(100% - 20px);
		margin-top: 8vh;
	}

}

@media screen and (max-width: 900px)  {
	#feedback-container {
		transform: translate(0%, calc(181vh + 17.3vw + 50px));
	}
}

@media screen and (max-width: 369px)  {
	#feedback-container {
		transform: translate(0%, calc(181vh + 17.3vw + 50px + 15px));
	}
}

@media screen and (max-width: 214px)  {
	#feedback-container {
		transform: translate(0%, calc(181vh + 17.3vw + 50px + 30px));
	}
}