/* reset styles */
html {line-height: 1.5;-webkit-text-size-adjust: 100%;width:100%;height:100%;padding: 0;}body {margin: 0;width: 100%;height: 100%;padding: 0;}main {display: block;}img {border-style: none;}button, input, optgroup, select, textarea {font-family: inherit;font-size: 100%;line-height: 1.5;margin: 0;}button, input {overflow: visible;}button, select {text-transform: none;}button, [type="button"], [type="reset"], [type="submit"] {-webkit-appearance: button;}button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {border-style: none;padding: 0;}button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {outline: 1px dotted ButtonText;}legend {box-sizing: border-box;color: inherit;display: table;max-width: 100%;padding: 0;white-space: normal;}progress {vertical-align: baseline;}textarea {overflow: auto;}[type="checkbox"], [type="radio"] {box-sizing: border-box;padding: 0;}[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {height: auto;}[type="search"] {-webkit-appearance: textfield;outline-offset: -2px;}[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}::-webkit-file-upload-button {-webkit-appearance: button;font: inherit;}details {display: block;}summary {display: list-item;}template {display: none;}
/* reset styles */

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 3px;
  }
  
*{
	--fontRegular: 'Lato', sans-serif;
	--fontSpecial: 'Oswald', sans-serif;
	--colorBlue:#194E80;
	--colorCyan:#4EC0EE;
	--colorLightBlue:#CAF0FF;
	--colorGray:#A6A6A6;
	--colorWhite:#FFFFFF;
	--colorBlack:#000000;
	--colorOrange:#FC771B;
	--colorYellow:#FEBA12;
	--colorRed:#C50000;
	--colorRedDark:#990000;
	--colorButtonNormal:var(--colorYellow);
	--colorButtonHover:var(--colorWhite);
	--hoverOutline:0 0 0 3px rgba(255,255,255,0.3);
	--buttonTransition: all 0.3s ease-in-out !important;
}

.ggskin{
	font-family: var(--fontRegular);
	font-size: 1rem;
}
.hidden{
	display: none !important;
}
.tippy-content{
	font-family: var(--fontRegular);
	font-weight: 300 !important;
	padding: 0.8em 1em !important;
}






/* Top right buttons */
.topRightButtonsContainer{
	display: flex;
	justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 5px;
    flex-direction: row;
    align-items: flex-start;
}
.topRightButtonsContainer .buttonPrimary {
    position: relative !important;
}
@media (max-width: 470px) and (orientation: portrait) {
	.topRightButtonsContainer{
		justify-content: flex-start;
		flex-direction: column;
		align-items: flex-end;
	}
	.topRightButtonsContainer .buttonPrimary {
		min-width: 7em;
	}
}
/* Top right buttons */


/* Prev-next */
.prevNextContainer {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
	gap:10px;
}
.prevNextContainer>div{
	position: relative !important;
}

.nodeName>div{
	font-size: 1.2rem !important;
    text-transform: uppercase;
    font-family: var(--fontSpecial) !important;
	text-shadow: 0 0 3px #00000050;
}
/* Prev-next */