/* 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;
}



.disallowed:hover {
	cursor: not-allowed;
}

.clickable:hover {
	cursor: pointer;
}

.centered {
	text-align: center;
}

.bolded {
	font-weight: bold;
}


body {
  background: linear-gradient(to bottom, #111, #000);
  font-family: Tahoma, Arial, Verdana, Tahoma, sans-serif;
  overflow-x: hidden;
  height: 100vh;
}
body::-webkit-scrollbar {
    display: none;
}

.underline {
	text-decoration: underline;
	color: #ddd;
}



/* HEADER */

.appHeader {
	height: 10vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
  color: rgb(204, 204, 204);
}

/* Use logo link as a wrapper to force a container width, keeping title centered even when logos are different widths */
.logo {
  height: 100%;
}

/* These should be IDs because they apply to a specific element only */
#homeLogo {
	height: 7.5vh;
  margin-left: 2vw;
}

#DOGELogo {
	height: 7.5vh;
	width: 7.5vh;
	margin-right: 2vw;
}

.headerTitle {
	font-size: 2vw;
	line-height: 2.5vw;
	width: 70vw;
	text-align: center;
	vertical-align: middle;
}

.headerTitle > span {
	font-size: 1.6vw;
	vertical-align: top;
}

/* END OF HEADER */


/* APP BODY */

#app-container {
	width: calc(100vw - 20px);
	height: calc(90vh - 50px);
	padding: 10px;
	padding-bottom: 0px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	overflow: hidden;
}

.component-column {
  height: 100%;
  flex-direction: column;
}

#component-group-left {
  width: calc(70% - 5px);
  height: 100%;
}

#component-group-right {
  width: calc(30% - 5px);
  height: 100%;
  display: flex;
  justify-content: space-between;
}


/* EXTENSIONS */

.extension {
  width: 100%;
  background: linear-gradient(to bottom right, rgba(100, 100, 100, .2),rgba(50, 50, 50, .1));
  border-radius: 10px;
  border: 1px solid #AAAAAA;
  height: 100%;
}

#ext-actions {
	overflow-y: hidden;
}

.extension-title {
  height: 40px;
  width: calc(100% - 20px);
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: bold;
  font-size: 90%;
  color: #AAAAAA;
  border-bottom: 1px solid #AAAAAA;
  /* position: sticky; */
}

.extension-body {
  height: calc(100% - 43px);
}

#detailsPanel > .extension-body {
	height: calc(100% - 53px);
}

.ext-icon {
  max-height: 18px;
  margin-right: 10px;
	filter: invert(1);
}

.panel_zoom_icon, .panel_minimize_icon {
	float: right;
}

.moHeader {
	color: #eee;
	font-size: large;
	margin-bottom: 5px;
	padding: 5px;
	justify-content: space-between;
}

.moName {
	margin-bottom: 5px;
}

.moAbbr {
	color: #bbb;
	font-size: medium;
}

.moDesc {
	color: #bbb;
	font-size: small;
}
.moDescP {
	padding: 1px 5px;
}

.moCounts {
	justify-content: space-between;
	margin: 10px 3px;
}

.moNumbers {
	color: #ccc;
	font-size: medium;
	margin-bottom: 5px;
}

.moNumbersMed {
	color: #ccc;
	font-size: 14px;
	margin-bottom: 5px;
}

.moNameSmall {
	margin-bottom: 5px;
	font-size: small;
}

.moAbbrSmall {
	color: #bbb;
	font-size: x-small;
}

.moCounts {
	justify-content: space-between;
	margin: 10px 3px;
}

.moNumbersSmall {
	color: #ccc;
	font-size: small;
	margin-bottom: 5px;
}

.moNumbersSmaller {
	color: #ccc;
	font-size: smaller;
	margin-bottom: 5px;
}

/* ----- CREDIT ------ */
#credit-container {
	position: absolute;
	bottom: 0;
	width: calc(100vw - 20px);
	height: 50px;
	color: #666666;
	font-size: 12px;
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	overflow-y: hidden;
	padding: 0 10px;
}


/* ------ FEEDBACK ------ */
#feedback-container {
  position: absolute;
  top: 2vh;
  right: 10vw;
  width: 6vh;
	height: 6vh;
	border-radius: 6vh;
	border: 4px solid #FFF;
	display: flex;
	justify-content: space-between;
  overflow: hidden;

  transition: 0.25s ease;
  -o-transition: 0.25s ease;
  -moz-transition: 0.25s ease;
  -webkit-transition: 0.25s ease;
}

#feedback-container:hover {
  width: 10vw;
	padding-right: 1vh;
  
  transition: 0.25s ease;
  -o-transition: 0.25s ease;
  -moz-transition: 0.25s ease;
  -webkit-transition: 0.25s ease;
}

#feedback-container:hover > #feedback-content-container {
  width: calc(10vw - 5vh);

  transition: width 0.s ease 0.25s;
  -o-transition: width 0s ease 0.25s;
  -moz-transition: width 0s ease 0.25s;
  -webkit-transition: width 0s ease 0.25s;
}

#feedback-icon-container {
	max-width: 4vh;
	max-height: 4vh;
	min-width: 4vh;
	min-height: 4vh;
	margin-top: 1vh;
  margin-left: 1vh;
}

#feedback-icon {
	width: 100%;
	height: 100%;
	filter: invert(1);
}

#feedback-content-container {
  width: 0;
	height: 100%;
  display: flex;
  color: #FFF;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 2vh;
	font-size: 1.25vh;
  overflow: hidden;
}









.moAwardDescCut {
	margin-top: 3px;
	color: #bbb;
	line-height: 1.2;

	width: calc(100% - 5px);
	padding: 2px;
	left: 12px;
	font-size: small;

	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.moAwardDesc {
	color: #ddd;
	line-height: 1.2;

	width: calc(100% - 24px);
	left: 5.3px;
	margin-top: 3px;
	border: 2px solid #ccc;
	padding: 5px;
	font-size: small;

	max-height: 180px;
	overflow-y: auto;
	display: none;
	position: absolute;
	top: 64px;

	z-index: 99999999;
	
	border-radius: 5px;
	border-top: 0;

	background-image: linear-gradient(to bottom, rgba(17, 17, 17, .9), rgba(0, 0, 0, .9));
	box-shadow: 0 10px 10px black;
}

.moAwardDescCut:hover + .moAwardDesc {
	display: block;
}
.moAwardDesc:hover {
	display: block;
}

.awardLink {
	color: #4f7eff;
}

.awardLinkButton {
	width: fit-content;
	height: 12px;
	padding: 5px 8px;
	background-color: #111;
	border: 1px solid white;
	border-radius: 10px;
	box-shadow: 0 0 5px 2px #000;
}

.selTooltip {
	position: relative;
}

.selTooltip .selTooltiptext {
	visibility: hidden;
	width: 92px;
	background-color: #222;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 100%;
	left: 50%;
	margin-left: -48px;
	border: 1px solid white;
}

.selTooltip .selTooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: white transparent transparent transparent;
}

.selTooltip:hover .selTooltiptext {
	visibility: visible;
}


.actionTooltip {
	position: relative;
}

.actionTooltip .actionTooltipText {
	visibility: hidden;
	width: 148px;
	background-color: #222;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 80%;
	left: 50%;
	margin-left: -75px;
	border: 1px solid white;
}

.actionTooltip .actionTooltipText::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: white transparent transparent transparent;
}

@media screen and (max-width: 900px){

	body {
		overflow: scroll;
	}

}