﻿*,
*:before,
*:after {
  box-sizing: border-box;
}
.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial;
  font-size: 11pt;
}
button {
  padding: 3px 10px;
  border: 1px solid #666;
  border-radius: 3px;
  background-color: #eee;
}
button.clear {
  padding: 0;
  border: 0;
  background: none;
}
button:hover {
  background-color: #fff;
}
button:active {
  border-color: #96bf0d;
  background-color: #eee;
}
select,
input[type=text],
input[type=date],
input[type=datetime-local],
input[type=password],
textarea {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: 0;
}
input[readonly] {
  opacity: 0.7;
  background-color: #eee;
}
::-webkit-input-placeholder {
  font-style: italic;
}
:-ms-input-placeholder {
  font-style: italic;
}
::placeholder {
  font-style: italic;
}
/**
#mainmenu {
	display: flex;
	align-items: center;
	background-color: #ccc;
	padding: 0 1em;

	&>ul {
		display: flex;
		list-style-type: none;
		margin: 0;

		li {
			position:relative;
			padding: 0.5em 1em;
			cursor: pointer;
		}

		li:hover {
			background-color: #ddd;

			&>ul
			{
				display: block;
			}
		}

		ul
		{
			display:none;
			list-style-type:none;
			margin:0;
			padding: 0.2em;
			position: absolute;
			left:0;
			top: 2em;
			width: 15em;
			border: 1px solid #000;
			background-color: #ccc;
		}
	}

	.spacer {
		flex-grow: 1;
	}
}
**/
#loginbox {
  z-index: 99992;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  padding: 15px;
  border: 1px solid #96bf0d;
  border-radius: 3px;
  background-color: #fff;
}
#loginbox .reason {
  font-size: 12pt;
  font-weight: bold;
  padding: 0 0 15px 0;
}
#loginbox .message {
  color: #a00;
}
#sidebar {
  z-index: 1;
  position: fixed;
  top: 0px;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  background-color: #eee;
  overflow: auto;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
#sidebar > .application-title {
  flex-grow: 0;
  flex-shrink: 0;
  padding: 0 0 15px 0;
}
#sidebar > .application-title h1 {
  margin: 0;
  padding: 0 0 15px 0;
  font-family: Verdana;
  color: #444;
  border-bottom: 1px solid #fff;
}
#sidebar > .nav {
  flex-grow: 1;
}
#sidebar > .nav > .admin {
  margin: 60px 0 0 0;
  color: #666;
}
#sidebar > .nav > .admin a {
  color: #666;
  text-decoration: none;
}
#sidebar > .logo {
  flex-grow: 0;
  flex-shrink: 0;
}
ul.menu {
  font-size: 13pt;
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.menu li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}
ul.menu li > .fa-fw {
  margin: 0 15px 0 0;
}
ul.menu li.split {
  padding: 0;
}
ul.menu li:hover > span {
  text-decoration: underline;
}
tr.selected {
  background-color: #008;
  color: #fff;
}
tr.selected button {
  color: #fff;
}
/*
div.flex-status-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
*/
div.view {
  position: absolute;
  width: 500px;
  height: 400px;
  border: 1px solid #000;
  background-color: #ffd;
  box-shadow: 5px 10px #88888880;
}
div.panel {
  position: absolute;
  width: 500px;
  height: 400px;
  border: 1px solid #333;
  background-color: #ddd;
  border-radius: 3px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  outline: 0;
}
div.panel > .title {
  flex-shrink: 0;
  padding: 3px 5px;
  background-color: #9a9a9a;
  color: #222;
  color: #fff;
  font-weight: bold;
  cursor: default;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
div.panel.active > .title {
  background-color: #96bf0d;
  color: #fff;
}
div.panel > .content {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  flex-grow: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
div.panel.resizable {
  resize: both;
}
div.panel .close-button {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
}
div.panel .close-button > .fa-window-close {
  font-size: 22px;
}
div.panel .savebuttons {
  text-align: center;
}
div.panel .savebuttons button {
  margin: 0 5px;
}
div.panel .pager .prevpage,
div.panel .pager .nextpage {
  padding: 0 3px;
  cursor: pointer;
}
div.panel .toolbox {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.25);
}
div.panel .toolbox .close-button {
  position: absolute;
  top: 0;
  right: 0;
  color: #000;
}
div.panel .toolbox .close-button > .fa-window-close {
  font-size: 18px;
}
.toolbars {
  background-color: #999;
}
.toolbar {
  height: 28px;
  flex-grow: 0;
  background-color: #999;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.toolbar button.clear {
  font-size: 22px;
}
.toolbar .spacer {
  width: 8px;
}
.toolbar .split {
  width: 2px;
  height: 100%;
  border-left: 1px solid #666;
  border-right: 1px solid #ccc;
  margin: 0 4px;
}
.panel.exactedit > .content > ._edit_ {
  padding: 15px;
}
.panel.exactedit > .content > ._edit_ > table > tbody > tr > td:first-child {
  width: 180px;
}
.panel.exactedit > .content input[type="text"] {
  width: 100%;
}
.panel.exactedit > .content .reconnect-result {
  padding: 15px 0;
}
.panel.exactedit > .content .reconnect-result .success {
  color: green;
  font-weight: bold;
}
.panel.exactedit > .content .reconnect-result .errormsg {
  color: red;
}
.panel.exactedit > .content .reconnect-result .errormsg-extra {
  max-width: 400px;
  overflow-wrap: break-word;
  font-size: 8pt;
}
.statusbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-height: 24px;
  padding: 0 15px 0 5px;
  vertical-align: middle;
  flex-grow: 0;
  background-color: #aaa;
  flex-shrink: 0;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.statusbar .progressbar {
  flex-grow: 1;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}
.statusbar .progressbar .progress {
  display: none;
  width: 30%;
  height: 100%;
  background-color: #96bf0d;
}
.statusbar .progressbar .text {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  padding: 3px 5px;
}
.statusbar .progressbar .text .prc {
  font-weight: bold;
}
.statusbar .progressbar .text .desc {
  font-size: smaller;
}
.tablegrid {
  position: relative;
  width: 100%;
  overflow: auto;
  height: 100%;
}
.tablegrid > table {
  width: 100%;
  font-size: 0.8rem;
}
.tablegrid > table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #ddd;
  text-align: left;
  padding-left: 4px;
}
.tablegrid > table tr td .expander {
  cursor: pointer;
}
.tablegrid > table tr.hide {
  display: none;
}
.tablegrid > table tr .expander::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f055";
}
.tablegrid > table tr.expanded .expander::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f056";
}
.tablegrid > table td > div {
  height: 1.1em;
  overflow: hidden;
  overflow: clip;
  white-space: nowrap;
}
.tablegrid > table td.exp,
.tablegrid > table td.cb {
  width: 16px;
}
.tablegrid > table > tbody > tr:nth-child(odd) {
  background-color: #f2f2f2;
}
.tablegrid > table > tbody > tr:nth-child(odd).selected {
  background-color: #00a;
}
.tablegrid > table > thead > tr > th {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.tablegrid > table > tbody > tr > td {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  padding: 5px;
}
.tablegrid > table .align-right {
  text-align: right;
}
.tablegrid > table .align-center {
  text-align: center;
}
.tablegrid.disabled {
  opacity: 0.4;
}
.tablegrid.disabled::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: " ";
}
.tablegrid .icons {
  display: flex;
  flex-flow: row wrap;
}
.tablegrid .icons::after {
  content: "";
  flex: auto;
}
.tablegrid .icons .icon {
  width: 100px;
  margin: 5px;
  padding: 5px;
}
.tablegrid .icons .icon .img {
  text-align: center;
  height: 100px;
  padding: 5px;
  background-color: #ccc;
  border-radius: 3px;
}
.tablegrid .icons .icon .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}
.tablegrid .icons .icon .fa-fw {
  color: #96bf0d;
  font-size: 60px;
}
.tablegrid .icons .icon .text {
  text-align: center;
}
.tablegrid .icons .icon .text > span {
  display: inline-block;
  max-width: 90px;
  word-wrap: break-word;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.6rem;
}
.tablegrid .icons .icon.selected {
  background-color: #008;
}
.tablegrid .icons .icon.selected .text {
  color: #fff;
}
.tablegrid .icons.small .fa-fw {
  font-size: 20px;
}
.tablegrid .icons.small .icon {
  width: 50px;
}
.tablegrid .icons.small .icon .img {
  height: 50px;
}
.tablegrid .icons.small .icon .text span {
  width: 45px;
}
/*
Webgroup -> lidmaatschap van artikelen
*/
.panel.dualpane > .content {
  display: flex;
  flex-direction: row;
}
.panel.dualpane > .content .title {
  flex-grow: 0;
  flex-shrink: 0;
  padding: 5px;
  background-color: #bbb;
  font-weight: bold;
}
.panel.dualpane > .content > .pane {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.panel.dualpane > .content > .pane .tablegrid {
  height: 99%;
}
.panel.dualpane > .content > .left-pane {
  width: 50%;
  min-width: 50%;
  flex-grow: 0;
}
.panel.dualpane > .content > .right-pane {
  width: calc(50% - 3px);
}
.panel.dualpane > .content .slider {
  flex-grow: 0;
  width: 3px;
  background-color: #666;
}
.panel.tripane > .content {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 25% auto;
}
.panel.tripane > .content > .pane {
  justify-self: stretch;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.panel.tripane > .content > .pane .tablegrid {
  height: 99%;
}
.panel.tripane > .content > .pane > .title {
  background-color: #666;
  color: #fff;
  padding: 2px;
}
.panel.tripane > .content > .pane.top {
  grid-column: 1 / span 2;
  grid-row: 1;
}
.panel.tripane > .content > .pane.left {
  grid-column: 1 / span 1;
  grid-row: 2;
}
.panel.tripane > .content > .pane.right {
  grid-column: 2 / span 1;
  grid-row: 2;
}
.panel.tripane.familyprops > .content {
  grid-template-rows: 100px auto;
}
.titles {
  padding: 5px;
  background-color: #bbb;
}
.titles > .title {
  font-weight: bold;
}
/*
Artikelen groeperen..
*/
.panel .choices {
  padding: 5px;
}
#content .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 40px;
  transform: translate(-50%, -50%);
  display: none;
}
.tabpages {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tabpages > .tabs {
  display: flex;
  flex-shrink: 0;
  flex-grow: 0;
}
.tabpages > .tabs .tab {
  padding: 3px 8px;
  border-bottom: 1px solid #888;
  background-color: #ccc;
  cursor: default;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.tabpages > .tabs .tab.active {
  background-color: #ddd;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  border-right: 1px solid #888;
  border-bottom: none;
}
.tabpages > .tabs .tab.last {
  flex-grow: 1;
}
.tabpages .tabpage {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}
.tabpages .tabpage .props th:first-child {
  padding: 0 30px 0 0;
}
.tabpages .tabpage .props th {
  text-align: left;
}
.panel.filemanager > .content {
  display: flex;
  flex-direction: row;
}
.panel.filemanager > .content .folders {
  flex-grow: 0;
  width: 270px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
}
.panel.filemanager > .content .folders > .tablegrid {
  height: 99%;
}
.panel.filemanager > .content .slider {
  flex-grow: 0;
  width: 3px;
  background-color: #666;
}
.panel.filemanager > .content .files {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.panel.filemanager > .content .files > .tablegrid {
  height: 99%;
}
.panel.filemanager > .content .upload {
  padding: 0 15px;
  position: relative;
  z-index: 1;
  /**
		.progress {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			padding: 0 15px;
			background-color: #ddd;
			z-index: 2;
			display: none;

			.row {
				clear: both;

				.fn {
					float: left;
					font-size: 9pt;
				}

				.idxcount {
					float: right;
					font-size: 9pt;
				}
			}

			.prcbar {
				height: 2px;
				margin: 3px 0 0 0;
				background-color: @ibvgreen;
			}
		}
		**/
}
.panel.filemanager > .content .dropzone .target {
  display: none;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.panel.filemanager > .content .dropzone.active {
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 24pt;
  border: 2px dashed blue;
  color: blue;
  background-color: #fff;
}
.panel.filemanager > .content .dropzone.active .target {
  display: block;
}
.panel.editrecord .imgpreview {
  width: 150px;
  height: 150px;
}
.panel.editrecord .imgpreview.small {
  width: 50px;
  height: 50px;
}
.panel.editrecord .imgpreview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}
.panel.editrecord .imgselect input,
.panel.editrecord .fileselect input {
  width: calc(100% - 40px);
}
.panel.editrecord ._edit_ {
  position: relative;
  width: 100%;
  overflow: auto;
  height: 100%;
}
.contextmenu {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.contextmenu > .item {
  padding: 5px 10px;
}
.contextmenu > .item.default {
  font-weight: bold;
}
.contextmenu > .item:hover {
  cursor: default;
  color: #fff;
  background-color: #96bf0d;
}
.contextmenu > .separator {
  padding: 0 10px;
  height: 4px;
}
.autosuggestions {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.autosuggestions > .item {
  padding: 5px 10px;
}
.autosuggestions > .item:hover {
  cursor: default;
  color: #fff;
  background-color: #96bf0d;
}
.wait {
  cursor: wait !important;
}
.tooltip {
  position: absolute;
  transform: translateY(-100%);
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 3px;
}
.tooltip .fm-file-preview {
  width: 200px;
  background-color: #fff;
}
.tooltip .fm-file-preview img {
  /*
			position: relative;
			top: 50%;
			transform: translateY(-50%);
			*/
  max-width: 100%;
  max-height: 100%;
}
.sync > .content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sync > .content > .main {
  height: 100%;
  flex-grow: 1;
  overflow-y: auto;
}
.sync > .content > .statusbar {
  flex-grow: 0;
  flex-shrink: 0;
  min-height: 22px;
}
.sync .section {
  padding: 15px;
}
.sync .section .item {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 15px 0;
  margin: 15px 0;
  border-bottom: 1px solid #666;
}
.sync .section .item .desc {
  font-weight: bold;
}
.sync .section .item .statusitems {
  width: 100%;
  flex-grow: 2;
}
.sync .section .item .actions {
  width: 100%;
  flex-grow: 2;
}
.sync .section .item .actions button {
  margin: 0 0 0 15px;
}
.sync .section .item .actions button:first-child {
  margin: 0;
}
.config .section {
  padding: 15px;
}
.config .section .item {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.generate-props.columns {
  column-count: 2;
  column-gap: 1em;
  column-fill: balance;
}
.generate-props.columns > div {
  break-inside: avoid-column;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.generate-props.columns > div > label {
  width: 40%;
  white-space: nowrap;
}
.generate-props.columns > div > label .propenable {
  width: 25px;
  overflow: hidden;
  white-space: nowrap;
  float: left;
  padding-top: 2px;
}
.generate-props.columns > div > label .propname {
  width: calc(100% - 25px);
  overflow: hidden;
  white-space: nowrap;
  padding-top: 4px;
}
.generate-props.columns > div > .propname {
  width: 40%;
  overflow: hidden;
  white-space: nowrap;
}
.generate-props.columns > div .propval {
  width: 59%;
}
.generate-props.columns > div .propval input {
  width: 100%;
}
.generate-prop.required .propname {
  font-weight: bold;
}
.generate-prop.required .propname::before {
  content: "* ";
}
.fieldinput.lang,
.fieldinput.lang > input {
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 18px 11px;
}
.fieldinput.lang.lang-nl,
.fieldinput.lang > input.lang-nl,
.fieldinput.lang.lang-nl > input,
.fieldinput.lang > input.lang-nl > input {
  background-image: url("/app/img/flags/flag_nl.png");
}
.fieldinput.lang.lang-en,
.fieldinput.lang > input.lang-en,
.fieldinput.lang.lang-en > input,
.fieldinput.lang > input.lang-en > input {
  background-image: url("/app/img/flags/flag_en.png");
}
.fieldinput.lang.lang-fr,
.fieldinput.lang > input.lang-fr,
.fieldinput.lang.lang-fr > input,
.fieldinput.lang > input.lang-fr > input {
  background-image: url("/app/img/flags/flag_fr.png");
}
.fieldinput.lang.lang-de,
.fieldinput.lang > input.lang-de,
.fieldinput.lang.lang-de > input,
.fieldinput.lang > input.lang-de > input {
  background-image: url("/app/img/flags/flag_de.png");
}
.fieldinput.lang.imgselect,
.fieldinput.lang > input.imgselect,
.fieldinput.lang.fileselect,
.fieldinput.lang > input.fileselect {
  background-image: none;
}
input.containsbutton {
  padding-right: 20px;
}
button.insideinput {
  margin-left: -20px;
  border: none;
  background-color: transparent;
  width: 20px;
  padding: 0;
}
button.insideinput:hover {
  border: 1px solid #ccc;
}
#errormsgs {
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100px;
  border: 1px solid #f00;
  border-radius: 3px;
  background-color: rgba(240, 200, 200, 0.9);
  z-index: 10000;
  padding: 0.5em;
  margin: 1em;
}
#errormsgs .title {
  font-weight: bold;
  text-align: center;
}
#errormsgs .code {
  font-size: smaller;
}
#errormsgs .close {
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
#errormsgs .close i {
  font-size: 2em;
}
div.error {
  border: 2px solid #f00;
  background-color: #fee;
  color: #000;
  padding: 0.5em;
  margin: 1em;
  display: none;
}
.pdfgeneration table {
  width: 90%;
  margin: 1em;
}
.pdfgeneration table td {
  vertical-align: top;
  padding-bottom: 1em;
}
.pdfgeneration table td select {
  width: 100%;
}
.pdfgeneration table td.title {
  text-align: right;
  padding-top: 2px;
  padding-right: 1em;
}
.pdfgeneration div.generate {
  margin: 1em auto;
  text-align: center;
}
.pdfgeneration div.generate button {
  font-size: larger;
  padding: 0.5em 2em;
}
.pdfgeneration div.result {
  margin: 2em;
  text-align: center;
  font-size: larger;
}