/*@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;1,100;1,300&display=swap");*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,700;1,100;1,300;1,700&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
html, body {
  background: black;
  color: white;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  box-sizing: border-box;
  /*-webkit-box-sizing: border-box;*/ }

* {
  box-sizing: border-box;
  /*
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  */ }

.icon {
  /* unselectable */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.page {
  padding: 0 1rem 2rem; }

.head,
.head .icon {
  font-size: 2rem;
  line-height: 4rem; }

.head .icon {
  float: right;
  margin-left: 1rem;
  cursor: pointer; }

.head .icon:hover {
  color: #62C1F1;
  color: #bf263b;
  color: #e8ce4d; }

.container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* overflow: hidden;*/
  gap: 1rem; }

.card {
  float: left;
  background: #101010 no-repeat center;
  background-size: cover;
  /*
  https://newbedev.com/how-can-i-tint-a-background-image-with-css
  background-color: rgba(200,100,0,.5);
  background-blend-mode: multiply;
  -webkit-background-blend-mode: multiply;
  */
  border-radius: .6rem;
  overflow: hidden;
  /* margin-bottom: 1rem;*/ }

.card .header {
  background: lightslategrey;
  color: white;
  /*	color: #303033;*/
  padding: .2rem .5rem;
  font-size: 1.4rem;
  line-height: 2.6rem;
  min-height: 2.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3); }

.card .header,
.card .content > span {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3); }

.card .header > .icon {
  float: right;
  font-size: 2.6rem; }

.card > img {
  display: none; }

.card .material-icons {
  vertical-align: middle; }

/* view page styling */
.page.bake {
  padding: 0; }

.page.bake .head {
  display: none; }

.page.bake .card {
  border-radius: 0; }

.page.bake .container {
  display: block; }

.view .card .layout {
  height: 100%;
  /*display: flex;
  flex-direction: column;
  justify-content: space-between;*/
  /* wkhtmltopdf uses the following
  display: -webkit-flex;
  */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-pack: justify; }

.view .card.back .header,
.view .card.back .layout {
  display: none; }

/*.view .card .content {*/
.view .card .content > span {
  display: block;
  background: rgba(255, 255, 255, 0.9);
  color: black;
  margin: auto 1rem 1rem 1rem;
  padding: .6rem;
  text-align: center;
  vertical-align: middle;
  /* border-radius: 4px;*/
  border-radius: .3rem; }

.view .card hr {
  border: none;
  border-top: 1px solid #D0D0D0; }

/* admin page styling */
.admin .card {
  /* height: 320px;*/
  height: 20rem;
  background: #101010;
  font-size: 1.2rem;
  border: solid 1px #303033; }

.admin .card > * {
  display: float;
  float: left;
  height: 100%; }

.admin .card > img {
  display: inline-block; }

.admin .card > .layout {
  width: 240px;
  /*min-width: 240px;
  max-width: 640px;*/
  overflow: hidden; }

.admin .card > .layout > * {
  display: block;
  width: 100%;
  cursor: pointer; }

.admin .card > .layout > .content {
  padding: .6rem .4rem; }

/*.admin .card > .layout > .header {
	font-size: 2rem;
}*/
/* assume textarea is admin only */
textarea {
  width: 100%;
  height: 100%;
  padding: .6rem .4rem;
  background: #E0E0E3; }

textarea:focus {
  outline: none !important; }

/*# sourceMappingURL=style.css.map */
