
:root {
	--site-bg-color: #375b7d;
	--site-fg-color: white;
	--site-font: Helvetica;
	--nav-bar-height: 60px;
	--nav-bar-bgcolor: black;
	--nav-bar-fgcolor: white;
	--banner-bgcolor: grey;
	--banner-fgcolor: white;
	--main-bgcolor: white;
	--main-fgcolor: black;
	--footer-bgcolor: black;
	--footer-fgcolor: white;
	--footer-height: 200px;
	--banner-height: 300px;
	--nav-bar-height: 60px;
	
	/* Colors */
	--gold-yellow: #FFDF00;

	--accent-text-color: var(--gold-yellow);

	/*
	--company-name: "";
	--company-site-title: "";
	--company-email-title: "";
	--company-street-num: "";
	--company-street: "";
	--company-po-box: "";
	--company-suite: "";
	--company-apt: "";
	--company-city: "";
	--company-state: "";
	--company-country: "";
	--company-phone-num: "";
	*/
}

@keyframes rotating {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

*, *::before, *::after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
}

body {
  display: block;
  height: 100vh;
  width: 100%;
  font-family: Helvetica;
}

/* BODY - FIXED - NAV */

nav {
	height: var(--nav-bar-height);
	width: 100%;
	background-color: var(--nav-bar-bgcolor);
	color: var(--nav-bar-fgcolor);
	position: fixed;
	top: 0;
	left: 0;
}

.nav-bar {
	height: 100%;
	justify-content: space-between;
}

.nav-bar-links {
	flex-flow: row;
	margin-right: 1em;
	justify-content: center;
}

.nav-bar-link {
	margin: 0 0.5em;
	font-weight: bold;
	font-size: 0.85em;
}

.nav-logo-title-bar {
	flow-flow: row;
}

.nav-logo-title-bar-text-link {
	text-decoration: none;
}

.nav-logo-title-bar-text {
	color: var(--accent-text-color);
	font-weight: bold;
}

.nav-bar-link {
	text-decoration: none;
	color: var(--accent-text-color);
}

.nav-bar-link:hover {
	color: #FFFFFF;
}

.nav-bar-link:active {
	color: #FFDF00;
}

/* BODY - SCROLLABLE AREA */

.content-scroll-wrapper {
	width: 100%;
	max-height: calc(100vh - var(--nav-bar-height));
	min-height: calc(100vh - var(--nav-bar-height));
	overflow: scroll;
	position: fixed;
	top: var(--nav-bar-height);
	left: 0;
}

/* BODY - SCROLLABLE - BANNER */

.banner {
	min-height: 300px;
	width: 100%;
	background-color: var(--banner-bgcolor);
	color: var(--banner-fgcolor);
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner_container {
	display: flex;
	justify-content: space-around;
	align-content: center;
	min-height: 300px;
	width: 100%;
	overflow: hidden;
}

.dark_boxes_main {
	min-height: 100%;
	min-width: 100%;
	background-color: black;
}

.banner-logo {
	flex-flow: row;
	position: absolute;
}

.banner-logo img {
	height: 200px !important;
	width: auto !important;
}

.logo-animation-frame {
    display: grid;
    max-width: max-content;
	border: 5px solid white;
	border-radius: 50%;
	opacity: 0.6;
	animation: rotating 60s linear infinite;
}

.logo-animation-frame img {
    width: 200px;
    height: 200px;
    grid-row: 1;
    grid-column: 1;
}

.banner-logo h2 {
	margin-left: 2em;
	color: #777777;
}

/* BODY - SCROLLABLE - MAIN AREA */

main {
	width: 100%;
	background-color: var(--main-bgcolor);
	color: var(--main-fgcolor);
}

.main-content-wrapper {
	padding: 1em 2em 1em 2em;
	min-height: calc(100vh - (var(--nav-bar-height) + var(--banner-height) + var(--footer-height)));
	background-image: linear-gradient(to bottom, #808080, #979797, #aeaeae, #c6c6c6, #dedede, #d2d2d2, #c5c5c5, #b9b9b9, #878787, #585858, #2e2e2e, #000000);
}

/* BODY - SCROLLABLE - MAIN AREA - SITE CONTENT STYLES */

/* Landing Styles */

/*Intro styles*/
.intro-paragraph {
	margin-top: 2em;
	margin-bottom: 2em;
	background-color: #5A5A5A;
	color: var(--gold-yellow);
	border-radius: 10px;
	padding: 1em;
}

.intro-paragraph a {
	font-weight: bold;
	text-decoration: none;
	color: #ffffff;
}

.intro-paragraph p {
	width: 100%;
}

.indent-text {
	margin-left: 2em;
}

.intro-italic-text {
	font-style: italic;
	color: silver;
}

.acronym-text {
	font-size: 1.25em;
	font-weight: bold;
	font-style: italic;
	color: #ffffff;
}

.project-card {
	display: flex;
	flex-flow: row;
	margin-top: 1em;
	margin-bottom: 1em;
	justify-content: center;
}

.portfolio-card {
	background-color: #5A5A5A;
	color: var(--gold-yellow);
	padding: 2em;
	border-radius: 10px;
    width: 100%;
}

.portfolio-card h3:last-of-type {
	margin-top: 1em;
}

.no-list-style {
    list-style: none;
}

.item-list {
    width: 100%;
}

.item-list li {
    margin-top: 0.5em;
    margin-left: 1.5em;
}

.item-list a {
	text-decoration: none;
	font-weight: bold;
	color: white;
}

.item-list a:hover {
	color: var(--gold-yellow);
}

.item-list a:active {
	color: white;
}

#projects {
    align-items: center;
}

.project-tile h2 {
    color: white; 
}

.project-title {
    font-weight: bold;
}

.server-demo-container {
	min-height: inherit;
	background-color: silver;
	border-radius: 10px;
	padding: 1em;
	margin-right: 1.5em;
}

.server-demo-image-container {
	min-width: max-content;
	margin-right: 1em;
	margin-top: auto;
	margin-bottom: 0;
}

.server-demo-image-container img {
	max-height: 250px;
	width: auto;
	border-bottom-left-radius: 5px;
	border-left: 3px solid grey;
	border-bottom: 3px solid grey;
}

.server-demo-info {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	background-color: grey;
	min-height: 100%;
	padding: 1em;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 1em;
	border-radius: 5px;
}

.server-demo-info-card {
	flex-flow: row;
	background-color: #5A5A5A;
	color: var(--gold-yellow);
	padding: 5px;
	height: max-content;
	border-radius: 5px;
}

.server-demo-info-card:last-of-type {
	margin-bottom: 0;
}

.server-demo-info-card-icon {
	height: 32px;
	width: 32px;
	margin-right: 1.5em;
}

.server-demo-info-card p {
	margin-right: 1em;
	margin-left: auto;
	font-size: 0.85em;
	font-weight: bold;
}

.large-bold-white {
	font-size: 1.1em;
	color: white;
	font-weight: bold;
}

.top-left-border {
	border-top: 2px solid rgba(255,255,255,0.4);
	border-left: 2px solid rgba(255,255,255,0.4);
}

.top-left-border-white {
	border-top: 2px solid white;
	border-left: 2px solid white;
}

.half-fill {
	min-width: 50%; 
}

.full-width {
	min-width: 100%;
}

.center-column-flex {
	display: flex;
	flex-flow: column;
	width: 100%;
	align-items: center;
}

.landing-menu-img {
	width: 196px;
	height: 196px;
	margin: 0.5em 0;
	border: 5px solid black;
	border-radius: 50%;
}

.server-link-a {
	text-decoration: none;
	color: white;
}

.server-link-a:active {
	color: white;
}

.server-link-a:visited {
	color: white;
}

.server-link {
	color: var(--gold-yellow);
}

.demo-sites {
	background-color: silver;
	padding: 1em;
	border-radius: 10px;
}

.demo-sites ul {
	list-style: none;
}

.demo-sites ul li {
	flex-flow: row;
	width: max-content;
	background-color: #5A5A5A;
	margin-top: 0.25em;
	border-radius: 5px;
	padding: 5px;
}

.server-demo-site-icon {
	height: 1em;
	width: 1em;
	margin-right: 0.5em;
}

.demo-sites ul li p {
	display: flex;
	align-items: center;
}

.demo-sites ul li p a {
	color: var(--gold-yellow);
	text-decoration: none;
	font-weight: bold;
	margin-bottom: 2px;
}

.demo-sites ul li p a:active {
	color: var(--gold-yellow);
}

.demo-sites ul li p a:hover {
	color: #ffffff;
}

/* BODY - Animate-svg styles */

.animation-frame {
    display: grid;
    max-width: max-content;
    padding: 1em;
    background-color: grey;
    border-radius: 10px;
    margin: 2em auto;
}

.animation-frame img {
    width: 96px;
    height: 96px;
    grid-row: 1;
    grid-column: 1;
}

.sprites-sheet section img {
    margin-left: 0px;
    padding: 0;
}

.sprites-sheet section img:first-of-type {
    margin-left: 0;
}

.sprites-sheet {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 2em;
    background-color: grey;
    border-radius: 10px;
}

.sprites-sheet section {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    width: max-content;
    height: max-content;
    background-color: silver;
    border-radius: 10px;
    padding: 0.5em;
    margin: 0 1em;
    margin-top: 1em;
}

.sprites-sheet section:last-of-type {
    margin-left: 0;
    margin-bottom: 1em;
}

button {
    padding: 5.5px;
    border-radius: 5px;
    background-color: red;
    font-weight: bold;
    color: yellow;
}

/* BODY - SCROLLABLE - FOOTER */

footer {
	min-height: 200px;
	width: 100%;
	background-color: var(--footer-bgcolor);
	background-image: url('/include/media/template/paradoxresearch/header_banner01_short-white.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 95vw 90%;
	color: var(--footer-fgcolor);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2em 2em 1em 2em;
}

#copyright {
	text-align: center;
	margin: 0 0.5em;
}

.footer-info {
	min-width: 50%;
}

.footer-info a {
	display: block;
	color: var(--gold-yellow);
	text-decoration: none;
	width: fit-content;
}

.footer-info a:active {
	color: var(--gold-yellow);
}

.footer-info a:hover {
	color: #ffffff;
}

.footer-info p {
	width: fit-content;
	font-size: 0.9em;
	color: var(--gold-yellow);
}

.footer-info ul {
	list-style: none;
}

.powered-by-display {
	flex-flow: row;
	justify-content: left;
	margin-top: 0.25em;
}

.powered-by-display p {
	background-color: #5A5A5A;
	font-size: .70em;
	font-weight: bold;
	border-radius: 5px;
	padding: 2px;
}

.powered-by-display a {
	margin-left: 0.25em;
	margin-bottom: 2px;
	font-weight: bold;
}

.footer-copyright {
	font-size: 0.9em;
	font-weight: bold;
}

.footer-item-container {
	min-height: 125px;
	min-width: 100%;
} 

.footer-items {
	width: 100%;
	min-height: 100%;
	justify-content: space-between;
}

.footer-icon-links {
	flex-flow: row;
	min-width: 50%;
	justify-content: right;
}

.footer-icon {
	min-height: 48px;
	min-width: 48px;
	margin-left: 1em;
}

/* OTHER STYLES */

.center-text {
	text-align: center;
}

.no-text-decoration {
	text-decoration: none;
}

.space-left {
	margin-left: 1em;
}

.flex-center {
	display: flex;
	align-items: center;
}

.server-inactive {
	background-color: #5A5A5A;
}

.server-active {
	background-color: green !important;
	color: #ffffff !important;
}

/* SVG images */

.svg-bg {
	background-position: center;
	background-size: cover;
	background-size: contain;
	background-repeat: no-repeat;
}

/*Social Media Images*/
.github-svg-image {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 496 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cstyle%3Esvg%7Bfill:%23ffdf00%7D%3C/style%3E%3Cpath d='M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z'/%3E%3C/svg%3E%0A");
}

.mastodon-svg-image {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cstyle%3Esvg%7Bfill:%23ffdf00%7D%3C/style%3E%3Cpath d='M433 179.11c0-97.2-63.71-125.7-63.71-125.7-62.52-28.7-228.56-28.4-290.48 0 0 0-63.72 28.5-63.72 125.7 0 115.7-6.6 259.4 105.63 289.1 40.51 10.7 75.32 13 103.33 11.4 50.81-2.8 79.32-18.1 79.32-18.1l-1.7-36.9s-36.31 11.4-77.12 10.1c-40.41-1.4-83-4.4-89.63-54a102.54 102.54 0 0 1-.9-13.9c85.63 20.9 158.65 9.1 178.75 6.7 56.12-6.7 105-41.3 111.23-72.9 9.8-49.8 9-121.5 9-121.5zm-75.12 125.2h-46.63v-114.2c0-49.7-64-51.6-64 6.9v62.5h-46.33V197c0-58.5-64-56.6-64-6.9v114.2H90.19c0-122.1-5.2-147.9 18.41-175 25.9-28.9 79.82-30.8 103.83 6.1l11.6 19.5 11.6-19.5c24.11-37.1 78.12-34.8 103.83-6.1 23.71 27.3 18.4 53 18.4 175z'/%3E%3C/svg%3E ");
}

/* INet - Contact Images */
.envelope-svg-image {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cstyle%3Esvg%7Bfill:%23ffdf00%7D%3C/style%3E%3Cpath d='M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z'/%3E%3C/svg%3E ");
}

.globe-svg-image {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cstyle%3Esvg%7Bfill:%23ffdf00%7D%3C/style%3E%3Cpath d='M352 256c0 22.2-1.2 43.6-3.3 64H163.3c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64H348.7c2.2 20.4 3.3 41.8 3.3 64zm28.8-64H503.9c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0H167.7c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 20.9 58.2 27 94.7zm-209 0H18.6C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192H131.2c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64H8.1C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6H344.3c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.3 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352H135.3zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6H493.4z'/%3E%3C/svg%3E ");
}

/* Computer Related Images */
.server-svg-image {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cstyle%3Esvg%7Bfill:%23ffdf00%7D%3C/style%3E%3Cpath d='M64 32C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm48 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 288c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V352c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z'/%3E%3C/svg%3E ");
}

.network-svg-image {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 640 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cstyle%3Esvg%7Bfill:%23ffdf00%7D%3C/style%3E%3Cpath d='M256 64H384v64H256V64zM240 0c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96v32H80c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H240c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H192V288H448v32H400c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H512V288h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V192h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H240zM96 448V384H224v64H96zm320-64H544v64H416V384z'/%3E%3C/svg%3E ");
}


/*Darkboxes JS Script - ParadoxResearch Banner*/
.inherit {
	min-width: 100%;
}
			
.inh_full_area {
	min-height: 100%;
	min-width: 100%;
}
			
.quadrant {
	display: grid;
	grid-template-areas:
		"q1 q2"
		"q4 q3";
	grid-template-rows: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
}
			
#q1 {
	grid-area: q1;
}

#q2 {
	grid-area: q2;
}

#q3 {
	grid-area: q3;
}

#q4 {
	grid-area: q4;
}

@media (max-width: 1000px) {
	.project-card {
		flex-flow: column;
	}

	.server-demo-container {
		width: 100%;
		justify-content: space-between;
		flex-flow: column;
	}

	/*
	.server-demo-info {
		margin-top: 0;
		margin-bottom: 0;
		min-height: 300px;
	}
	*/

	.server-demo-info {
		margin-top: 1em;
		margin-right: 1em;
		width: 100%;
	}

	.server-demo-info-card {
		margin-top: 0.5em;
	}

	.demo-sites {
		margin-top: 1em;
		width: 100%;
	}

	.demo-sites ul li {
		width: 100%;
	}

}

@media (max-width: 625px) {
	.logo-animation-frame img {
		height: 150px;
		width: 150px;
	}

	/*
	.server-demo-container {
		flex-flow: column;
	}
	*/

	/*
	.server-demo-info {
		margin-top: 1em;
		margin-right: 1em;
		width: 100%;
	}
	*/

	.footer-icon {
		min-height: 32px;
		min-width: 32px;
		margin-left: 1em;
	}
}