@font-face {
  font-display: swap;
  font-family: 'Hepta Slab';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/hepta-slab-v23-latin_latin-ext_vietnamese-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/oswald-v53-cyrillic_cyrillic-ext_latin_latin-ext_vietnamese-500.woff2') format('woff2');
}

html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /*Prevent font scaling in landscape on Safari without breaking zoom*/
  text-size-adjust: 100%;
  overflow-x: hidden; /* Always hide the horizontal scrollbar */
  overflow-y: scroll; /* Always show vertical scroll bar to prevent horizontal jumping on pages without a scrollbar */
}

/*************** HEADER.PHP ***************/
body {
  background-color: white;
  cursor: default;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 16px;
  margin: 0;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
}

header {
  background-color: rgb(240,240,240);
  min-height: 80px;
  width: 100%;
  /*z-index: 100; /*The higher the z-index, the more on-top it will be - only used when position is not the default of static (like for sticky)*/
}

.header-content {
  margin: 0 auto;
  max-width: 1280px;
}

.logo-link {
  color: black;
  text-decoration: none;
}

.logo-text {
  color: black;
  display: inline-block;
  font-family: 'Hepta Slab', serif;
  font-size: 26px;
  margin-top: 20px;
}

.logo-text--left {
  margin-left: 5px;
}

.logo-text--red {
  color: rgb(175,15,20);
}

.logo-text--chevron {
  font-family: 'Courier New', monospace;
  font-size: 30px;
  font-weight: bold;
}

.search {
  cursor: pointer;
  float: right;
  padding: 38px 20px;
  position: relative; /*Set relative for absolute below*/
  width: 24px;
}

.search::before {
  background: black;
  content: '';
  height: 2px;
  position: absolute;
  right: 20px;
  top: 28px;
  transform: rotate(-45deg);
  transform-origin: right top;
  transition: all .2s ease-in-out;
  width: 0;
}

.search::after {
  background: black;
  bottom: 26px;
  content: '';
  height: 2px;
  position: absolute;
  right: 20px;
  transform: rotate(45deg);
  transform-origin: right bottom;
  transition: all .2s ease-in-out;
  width: 14px;
}

.search-icon {
  border-color: black;
  border-radius: 50%;
  border-style: solid;
  border-width: 2px;
  display: block;
  height: 14px;
  left: 20px;
  position: absolute;
  top: 26px;
  transition: all .2s ease-in-out;
  width: 14px;
}

#search-toggle:checked ~ .search::before {
  width: 29px;
}

#search-toggle:checked ~ .search::after {
  width: 29px;
}

#search-toggle:checked ~ .search .search-icon {
  border-color: transparent;
  height: 0;
  width: 0;
}

#search-toggle:checked ~ .nav {
  display: none;
}

#search-toggle:checked ~ .search-form {
  display: initial; /*inline-block; && Removed 9/11/2023 - TEST THIS */
  float: right;
  margin: 15px 0 0 0;
  overflow: hidden;
  width: 400px;
}

#search-toggle {
  display: none;
}

.search-form {
  background-color: rgb(240,240,240);
  display: none;
  max-width: 1270px;
}

#search-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 0;
  float: left;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  height: 38px;
  margin: 6px 0 6px 10px;
  padding-left: 10px;
  padding-right: 10px;
  width: calc(100% - 70px);
}

#search-text:focus {
  outline: none;
}

#search-submit {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  float: right;
  height: 38px; /*Set fixed height - Safari is stupid with the button*/
  margin: 6px 10px 6px 0;
  width: 50px;
}

#search-submit:hover {
  background-color: rgb(0,162,232);	
}

.nav {
  background-color: rgb(240,240,240);
  float: right;
  list-style: none;
  margin: 25px 0 0 0;
  max-width: 1270px;
  overflow: visible;
  padding: 5px 5px;
  width: auto;
}

.nav li {
  display: inline-block;
  font-size: 16px;
  margin: 0 30px 0 0;
  padding: 0;
}

.nav li a {
  color: black;
  display: inline;
  text-decoration: none;
}

.nav li a span {
  display: none;
}

.nav-link {
  padding: 7px 0 5.5px 0;  
}
  
.nav-link--chevron {
  font-family: 'Courier New', monospace;
  font-size: 24px;
  font-weight: bold;
}

.nav-active {
  border-bottom: 2px solid black;
  position: relative;
}
  
.hamburger {
  cursor: pointer;
  display: none;
  float: right;
  padding: 38px 20px;
}

.hamburger-line {
  background: black;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
}

.hamburger-line::before, .hamburger-line::after {
  background: black;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.hamburger-line::before {
  top: 7px;
}

.hamburger-line::after {
  top: -7px;
}

#nav-toggle {
  display: none;
}

@media only screen and (max-width: 768px) {
  header {
    min-height: 50px;
  }
  
  .logo-text {
	font-size: 22px;
	margin-top: 10px;
  }
  
  .logo-text--chevron {
    font-size: 26px;
  }
  
  .search-form {
	display: none;
  }
  
  .search {
	display: inline;
	padding: 25px 20px;
  }
  
  .search::before {
	right: 24px;
	top: 17px;
  }
  
  .search::after {
	bottom: 14.5px;
	right: 24px;
	width: 12px;
  }
  
  .search-icon {
	height: 12px;
	top: 14px;
	width: 12px;
  }
  
  #search-toggle:checked ~ .search-form {
	display: block;
	float: none;
    margin: 0 5px 0 5px;
	width: calc(100% - 10px);
  }
  
  #search-toggle:checked ~ .search::before {
    width: 24px;
  }

  #search-toggle:checked ~ .search::after {
    width: 24px;
  }

  #search-toggle:checked ~ .search .search-icon {
	border-color: transparent;
	height: 0;
    width: 0;
  }
  
  #search-toggle:checked ~ .hamburger {
    pointer-events: none;
  }
  
  #search-toggle:checked ~ .hamburger .hamburger-line {
    background-color: rgba(0, 0, 0, 0);
  }
  
  #search-toggle:checked ~ .hamburger .hamburger-line::before {
	background-color: rgba(0, 0, 0, 0);
	transition: all 0s ease 0s;
  }
  
  #search-toggle:checked ~ .hamburger .hamburger-line::after {
	background-color: rgba(0, 0, 0, 0);
	transition: all 0s ease 0s;
  }

  .nav {
	display: none; /* && Reset this value if checked on resize? */
	float: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
  }
  
  .nav li {
    display: inline;
	margin: 0;
  }
  
  .nav li a {
	display: block;
    padding: 20px 15px 20px 15px;
  }
  
  .nav li a span {
	display: inline;
  }
  
  .nav li a:hover {
    background-color: rgb(0,162,232);
  }
  
  .nav-active {
	border-bottom: none;
	font-weight: bold;
  }
  
  .hamburger {
	display: inline;
	padding: 24px 20px;
  }
  
  #nav-toggle:checked ~ .nav {
    display: block;
  }

  #nav-toggle:checked ~ .hamburger .hamburger-line {
    background: transparent;
  }

  #nav-toggle:checked ~ .hamburger .hamburger-line::before {
	top: 0;
    transform: rotate(-45deg);
  }

  #nav-toggle:checked ~ .hamburger .hamburger-line::after {
	top: 0;
    transform: rotate(45deg);
  }
  
  #nav-toggle:checked ~ .search {
    pointer-events: none;
  }
  
  #nav-toggle:checked ~ .search::before {
	background-color: rgba(0, 0, 0, 0);
	transition: all 0s ease 0s;
  }
  
  #nav-toggle:checked ~ .search::after {
	background-color: rgba(0, 0, 0, 0);
	transition: all 0s ease 0s;
  }
  
  #nav-toggle:checked ~ .search .search-icon {
	border-color: rgba(0, 0, 0, 0);
	transition: all 0s ease 0s;
  }
}
/*************** HEADER.PHP ***************/


/************** MAIN CONTENT **************/

/******** HOME ********/
.content {
  margin: 0 auto;
  max-width: 1280px;
  min-height: calc(100vh - 315px); /*Set minimum height to push footer down on empty pages*/ /*&& Added 4/27/23:  75 (footer) + 150 (spacing above footer) + 80 (header) + 10 (spacing below header to content)*/
}

.article-grid-pane {
  font-size: 0; /*Hack to remove inline-block element spacing*/
}

.grid-pane-item {
  background-color: rgb(240,240,240);
  display: inline-block;
  margin: 10px 5px 0 5px;
  padding-bottom: 2px;
  width: 630px;
}

.grid-pane-image {
  display: inline-block;
  height: 300px;
  margin-bottom: 12px;
  width: 630px;
}

.grid-pane-image img {
  height: 100%;
  width: 100%;
}

.grid-pane-text a {
  color: black;
  text-decoration: none;
}

.grid-pane-text h1 {
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: black;
  display: -webkit-box;
  font-family: 'Oswald', sans-serif;
  font-size: 21px;
  font-weight: normal;
  height: 48px;
  line-height: 1.1em;
  margin: 0 15px 6px 15px;
  overflow: hidden;
  text-decoration: none;
}

.grid-pane-text p {
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: 15px;
  font-weight: normal;
  height: 2.4em;
  line-height: 1.2em;
  margin: 0 15px 12px 15px;
  overflow: hidden;
  padding: 0;
}

.grid-pane-text a:hover {
  color: rgb(0,162,232);
}

.grid-pane-text a:hover h1 {
  color: rgb(0,162,232);
}

.grid-pane-text span {
  color: gray;
  float: right;
  font-size: 11px;
  font-weight: bold;
  margin: 7px 20px 0 20px;
}

@media only screen and (max-width: 1296px) {
  .grid-pane-item {
	background-color: rgb(240,240,240);
    margin: 15px 5px 0 5px;
    padding: 0.05px; /*Hack to prevent margin collapsing on list-pane-text bottom margin*/
	width: calc(100% - 10px);
  }

  .grid-pane-image {
    display: inline-block;
	height: 150px;
	margin-bottom: 0;
    width: 300px;
  }

  .grid-pane-text {
    display: inline-block;
	height: 150px;
    vertical-align: top;
    width: calc(100% - 300px);
  }
  
  .grid-pane-text h1 {
	margin: 10px 15px 6px 15px;
  }
  
  .grid-pane-text p {
	margin: 0 15px 12px 15px;  
  }
}

@media only screen and (max-width: 768px) {
  .content {
	min-height: calc(100vh - 277px); /*Set minimum height to push footer down on empty pages*/ /*&& Added 4/27/23:  75 (footer) + 150 (spacing above footer) + 50 (header) + 2 (spacing below header to content)*/
  }
  
  .grid-pane-item {
	display: block;
	margin: 0;
	padding: 0.05px; /*Hack to prevent margin collapsing on grid-pane-text bottom margin*/
	width: 100%;
  }
  
  .grid-pane-image {
	/* Elements must remain intact to prevent layout shift on mobile */
	height: 0;
	padding-top: 50%;
	position: relative;
	width: 100%;
	/* /Elements must remain intact to prevent layout shift on mobile */
  }
  
  /* Elements must remain intact to prevent layout shift on mobile */
  .grid-pane-image img {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
  }
  /* /Elements must remain intact to prevent layout shift on mobile */
  
  .grid-pane-text {
    display: inline;
  }
  
  .grid-pane-text h1 {
	display: block;
	font-size: 21px;
	height: auto; /*Auto height is to adjust each item in case h1 has less than 2 lines*/
	margin: 10px 15px 8px 10px;
	overflow: visible;
  }
  
  .grid-pane-text p {
	-moz-box-orient: vertical;
	-ms-box-orient: vertical;
    -webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	display: -webkit-box;
    font-size: 15px;
	height: auto;
	line-height: 1.2em;
	margin: 0 15px 9px 10px;
  }
  
  .grid-pane-text span {
	font-size: 11px;
	margin: 7px 0 0 10px;
  }
}

.article-list-pane {
  font-size: 0; /*Hack to remove inline-block element spacing*/
}

.list-pane-item {
  background-color: rgb(240,240,240);
  margin: 15px 5px 0 5px;
  padding: 0.05px; /*Hack to prevent margin collapsing on list-pane-text bottom margin*/
  width: calc(100% - 10px);
}

.list-pane-image {
  display: inline-block;
  height: 150px;
  width: 300px;
}

.list-pane-image img {
  height: 100%;
  width: 100%;
}

.list-pane-text {
  display: inline-block;
  height: 150px;
  vertical-align: top;
  width: calc(100% - 300px);
}

.list-pane-text a {
  color: black;
  text-decoration: none;
}

.list-pane-text h1 {
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: black;
  display: -webkit-box;
  font-family: 'Oswald', sans-serif;
  font-size: 21px;
  font-weight: normal;
  height: 48px;
  line-height: 1.1em;
  margin: 10px 15px 6px 15px;
  overflow: hidden;
  text-decoration: none;
}

.list-pane-text p {
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: 15px;
  font-weight: normal;
  height: 2.4em;
  line-height: 1.2em;
  margin: 0 15px 12px 15px;
  overflow: hidden;
  padding: 0;
}

.list-pane-text a:hover {
  color: rgb(0,162,232);
}

.list-pane-text a:hover h1 {
  color: rgb(0,162,232);
}

.list-pane-text span {
  color: gray;
  float: right;
  font-size: 11px;
  font-weight: bold;
  margin: 7px 20px 0 20px;
}

.tags {
  display: block;
  height: 27px;
  margin: 0 15px 10px 15px;
  overflow: hidden;
}

.tags a {
  border: none;
  color: black;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  margin-right: 10px;
  padding: 3px 7px 3px 7px;
  text-align: center;
  text-decoration: none;
}

.tags a:hover {
  color: white;
}

.tags-windows {
  background-color: rgb(0,162,232);
}

.tags-howto {
  background-color: rgb(34,177,76);
}

.tags-troubleshooting {
  background-color: rgb(225,225,0);
}

.tags-guide {
  background-color: rgb(225,120,30);
}

.tags-enterprise {
  background-color: rgb(255,125,40);
}

.tags-sysadmindude {
  background-color: rgb(240,85,95); /*rgb(230,35,40);*/
}

@media only screen and (max-width: 768px) {
  .list-pane-item {
	margin: 0;
	width: 100%;
  }
  
  .list-pane-image {
	/* Elements must remain intact to prevent layout shift on mobile */
	height: 0;
	padding-top: 50%;
	position: relative;
	width: 100%;
	/* /Elements must remain intact to prevent layout shift on mobile */
  }
  
  /* Elements must remain intact to prevent layout shift on mobile */
  .list-pane-image img {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
  }
  /* /Elements must remain intact to prevent layout shift on mobile */
  
  .list-pane-text {
    display: inline;
  }
  
  .list-pane-text h1 {
	display: block;
	font-size: 21px;
	height: auto;
	margin: 10px 15px 8px 10px;
	overflow: visible;
  }
  
  .list-pane-text p {
	-webkit-line-clamp: 4;
	font-size: 15px;
	height: auto;
	line-height: 1.2em;
	margin: 0 15px 9px 10px;
  }
  
  .list-pane-text span {
    font-size: 11px;
	margin: 7px 0 0 10px;
  }
  
  .tags {
	margin: 0 10px 10px 10px;
  }
  
  .tags a {
	margin-right: 5px;  
  }
}

.page-nav {
  display: block;
  height: 35px;
  margin: 20px 5px 0 5px;
  overflow: hidden;
  text-align: center;
}

.page-nav a {
  background-color: rgb(240,240,240);
  border: none;
  color: black;
  display: inline-block;
  font-family: 'Hepta Slab', serif;
  font-size: 16px;
  margin-right: 10px;
  padding: 7px 10px 7px 10px;
  text-align: center;
  text-decoration: none;
}

.page-nav a:hover {
  color: rgb(0,162,232);
}
/******** HOME ********/

/******** SEARCH ********/
.search-content {
  margin: 0 auto;
  max-width: 1280px;
  min-height: calc(100vh - 335px); /*Set minimum height to push footer down on empty pages*/ /*75 (footer) + 150 (spacing above footer) + 80 (header) + 40 (spacing below header to content)*/	
}

.search-heading {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: normal;
  margin: 30px 5px 0 5px;
  text-align: center;
}

.search-list-pane { /*Must be below article-list-pane*/
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .search-content {
	min-height: calc(100vh - 295px); /*Set minimum height to push footer down on empty pages*/ /*75 (footer) + 150 (spacing above footer) + 50 (header) + 20 (spacing below header to content)*/	
  }

  .search-heading {
    font-size: 24px;
	margin: 20px 5px 0 5px;
  }
  
  .search-list-pane { /*Must be below article-list-pane*/
    margin-top: 15px;
  }
}
/******** SEARCH ********/

/******** ARTICLE ********/
.article {
  padding-left: 10px;
  padding-right: 10px;
}

.article p {
  font-size: 18px;
  line-height: 1.5em;
}

.article .p--hang {
  text-indent: -20px;
}
  
.article .p--indent {
  padding-left: 20px;
}

.article .p--extra-indent {
  padding-left: 40px;
}

.article .p--super-indent {
  padding-left: 60px;
}

.article h2 {
  font-size: 24px;
  font-weight: bold;
}

.article img {
  max-width: 100%;
}

.article pre { /*https://www.w3docs.com/snippets/css/how-to-wrap-text-in-a-pre-tag-with-css.html*/
  font-size: 0; /*Hack to prevent spacing in pre code*/
  overflow-x: auto;
  white-space: -moz-pre-wrap;
  white-space: -o-pre-wrap;
  white-space: -pre-wrap;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.article .pre--indent {
  padding-left: 20px;	
}

.article pre code {
  background-color: #eee;
  border: 1px solid #999;
  display: block;
  font-size: 16px;
  padding: 20px 20px 20px 20px;
}

#article-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: normal;
  line-height: 1.2em;
  margin-bottom: 10px;
  margin-top: 50px;
}

#article-timestamp {
  color: gray;
  font-size: 14px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 20px;
  margin-top: 0;
}

#article-banner-image {
  min-width: 600px;
  width: 70%; /* 896 x 426 */
}

#readmore-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: normal;
  margin: 50px 5px 10px 5px;
}

.tags-article {
  margin: 0 10px 0 10px;
}

.article-mini-grid-pane {
  font-size: 0; /*Hack to remove inline-block element spacing*/
}

.mini-grid-pane-item {
  background-color: rgb(240,240,240);
  display: inline-block;
  margin: 10px 5px 0 5px;
  width: 400px;
}

.mini-grid-image {
  display: inline-block;
  height: 200px;
  margin-bottom: 10px;
  width: 400px;
}

.mini-grid-image img {
  height: 100%;
  width: 100%;
}

.mini-grid-text a {
  color: black;
  text-decoration: none; 
}

.mini-grid-text h1 {
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: black;
  display: -webkit-box;
  font-family: 'Oswald', sans-serif;
  font-size: 21px;
  font-weight: normal;
  height: 48px;
  line-height: 1.1em;
  margin: 0 10px 8px 10px;
  overflow: hidden;
  text-decoration: none;
}

.mini-grid-text p {
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: 15px;
  font-weight: normal;
  height: 2.4em;
  line-height: 1.2em;
  margin: 0 10px 12px 10px;  
  overflow: hidden;
  padding: 0;
}

.mini-grid-text a:hover {
  color: rgb(0,162,232);
}

.mini-grid-text a:hover h1 {
  color: rgb(0,162,232);
}

.mini-grid-text span {
  color: gray;
  display: none;
  float: right;
  font-size: 11px;
  font-weight: bold;
  margin: 7px 20px 0 20px;
}

.tags-mini-grid {
  margin: 0 10px 10px 10px;
}

.tags-mini-grid a {
  margin-right: 5px;
}

.tags-mini-grid a:hover {
  color: white;
}

@media only screen and (max-width: 1296px) {
  .mini-grid-pane-item {
	background-color: rgb(240,240,240);
	margin: 10px 5px 0 5px;
    padding: 0.05px; /*Hack to prevent margin collapsing on list-pane-text bottom margin*/
	width: calc(100% - 10px);
  }

  .mini-grid-image {
    display: inline-block;
	height: 150px;
	margin-bottom: 0;
    width: 300px;
  }

  .mini-grid-text {
    display: inline-block;
	height: 150px;
    vertical-align: top;
    width: calc(100% - 300px);
  }
  
  .mini-grid-text h1 {
	margin: 10px 10px 6px 10px;
  }
  
  .mini-grid-text p {
	margin: 0 10px 12px 10px;	
  }
  
  .mini-grid-text span {
	display: block;
  }
}

@media only screen and (max-width: 768px) {
  .article p {
    font-size: 16px;
  }
  
  .article .p--hang {
	text-indent: -18px;  
  }
  
  .article .p--indent {
    padding-left: 18px;
  }

  .article .p--extra-indent {
    padding-left: 36px;
  }
  
  .article .p--super-indent {
    padding-left: 54px;
  }

  .article h2 {
    font-size: 20px;
  }
  
  .article pre code {
    font-size: 14px;
  }
  
  .article .pre--indent {
    padding-left: 18px;	
  }

  #article-heading {
    font-size: 24px;
	margin-bottom: 10px;
    margin-top: 20px;
  }
  
  #article-banner-image {
	min-width: 0;
    width: 100%;
  }
  
  #readmore-heading {
    font-size: 24px;
	margin: 30px 5px 15px 5px;
	padding: 0;
  }
  
  .mini-grid-pane-item {
	display: block;
	margin: 0;
	padding: 0.05px; /*Hack to prevent margin collapsing on list-pane-text bottom margin*/
	width: 100%;
  }
  
  .mini-grid-image {
	/* Elements must remain intact to prevent layout shift on mobile */
	height: 0;
	padding-top: 50%;
	position: relative;
	width: 100%;
	/* /Elements must remain intact to prevent layout shift on mobile */
  }
  
  /* Elements must remain intact to prevent layout shift on mobile */
  .mini-grid-image img {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
  }
  /* /Elements must remain intact to prevent layout shift on mobile */
  
  .mini-grid-text {
    display: inline;
  }
  
  .mini-grid-text h1 {
	display: block;
	font-size: 21px;
	height: auto;
	margin: 10px 15px 8px 10px;
	overflow: visible;
  }
  
  .mini-grid-text p {
	font-size: 15px;
	-webkit-line-clamp: 4;
	height: auto;
	line-height: 1.2em;
	margin: 0 15px 9px 10px;
  }
  
  .mini-grid-text span {
	display: block;
	font-size: 11px;
	margin: 7px 0 0 10px;
  }
}
/******** ARTICLE ********/

/******** EDITOR ********/
.editor {
  padding-left: 20px;
  padding-right: 20px;
}

.editor_heading {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: normal;
  margin-bottom: 10px;
  margin-top: 50px;
  text-align: center;
}

.editor_entry_item {
  margin-bottom: 5px;
}

.editor_entry_item__center {
  text-align: center;
}

.editor_entry_item_title {
  display: inline-block;
  font-size: 20px;
  font-weight: normal;
  margin-right: 15px;
  padding-bottom: 8px;
  padding-top: 12px;
  text-align: right;
  vertical-align: top;
  width: 150px;
}

.editor_entry_item_text {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 2px solid #ccc;
  box-sizing: border-box;
  font-family: 'Courier New', monospace;
  margin-top: 8px;
  padding: 6px;
  width: calc(100% - 190px);
}

.editor_entry_item_textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 2px solid #ccc;
  box-sizing: border-box;
  height: 4em;
  margin-top: 6px;
  padding: 5px;
  resize: none;
  width: calc(100% - 190px);
}

.editor_entry_item_textarea__big {
  height: 30em;
}

.editor_entry_item_date {
  border: 2px solid #ccc;
  border-collapse: collapse;
  margin-top: 8px;
  padding-bottom: 5px;
  padding-left: 4px;
  padding-top: 5px;
  width: 180px;
}

.editor_entry_item_dropdown {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  appearance: none;
  background-image: url("/img/60781.svg");
  background-position: 90% 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  border: 2px solid #ccc;
  border-radius: 0;
  display: inline-block;
  font-family: 'Courier New', monospace;
  margin-top: 8px;
  padding: 5px;
  width: 60px;
}

.editor_entry_item_button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: white;
  cursor: pointer;
  height: 28px; /*Set fixed height - Safari is stupid with the button*/
  width: 130px;
}

.editor_entry_item_button:disabled {
  border: 1px solid #ccc;
  cursor: initial;
}

.editor_entry_item_button:enabled:hover {
  background-color: rgb(0,162,232);
  color: white;
}

.editor_entry_item__tb_margin {
  margin-bottom: 10px;
  margin-top: 10px;
}
/******** EDITOR ********/

/******** SUBMIT ARTICLE ********/
.submit_results {
  display: block;
  font-size: 20px;
  margin: 20px 4px 0 4px;
  text-align: center;
  width: 100%;
}

.submit_results a {
  text-decoration: underline;
}

.submit_andre {
  display: block;
  margin: 20px auto 20px auto;
}

.submit_button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: white;
  cursor: pointer;
  display: block;
  height: 28px;
  margin: 0 auto 0 auto;
  width: 200px;
}

.submit_button:hover {
  background-color: rgb(0,162,232);
  color: white;
}
/******** SUBMIT ARTICLE ********/

/******** 404 ERROR ********/
#error-banner {
  margin: 50px 0 30px 0;
  width: 100%;
}

.error-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: normal;
  line-height: 1.2em;
  margin: 0 10px 20px 10px;
}

.error-content {
  font-size: 18px;
  line-height: 1.5em;
  margin: 0 10px 20px 10px;
}

.error-footing {
  font-size: 18px;
  font-style: italic;
  line-height: 1.5em;
  margin: 0 10px 0 10px;
}

.error-home-link {
  display: block;
  margin: 40px 0 0 0;
  text-align: center;
}

.error-home-link a {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: rgb(240,240,240);
  color: black;
  cursor: pointer;
  display: inline-block;
  padding: 8px 14px 8px 14px;
  text-decoration: none;
}

.error-home-link a:hover {
  background-color: rgb(0,162,232);
}

@media only screen and (max-width: 768px) {
  #error-banner {
	margin: 10px 10px 10px 10px;
	width: calc(100% - 20px);
  }
  
  .error-heading {
	font-size: 24px;
  }
  
  .error-content {
	font-size: 16px;
  }
  
  .error-footing {
	font-size: 16px;
  }
}
/******** 404 ERROR ********/

/************** MAIN CONTENT **************/


/*************** FOOTER.PHP ***************/
.footing {
  background-color: rgb(96,96,96);
  color: white;
  height: 75px;
  margin-top: 150px;
  min-width: 100%;
}

.footing-item {
  float: left;
  width: 50%; /*33.33%;*/
}

.footing-item--right {
  text-align: right;
}

/*.footing-item--center {
  text-align: center;
}*/

.footing-item span, .footing-item a:visited, .footing-item a:link, .footing-item a:hover {
  color: white;
}

/*.bbb-logo {
  padding-bottom: 6px;
  vertical-align: middle;
}*/

.footing-text {
  font-size: 12px;
  height: 75px;
  line-height: 75px;
}

.footing-text--space {
  letter-spacing: 5px;
}

.footing-text--big {
  font-size: 32px;
}

.footing-text--left {
  margin-left: 30px;
}

.footing-text--right {
  margin-right: 30px;
}

@media only screen and (max-width: 768px) {
  .footing-text--left {
    margin-left: 10px;
  }

  .footing-text--right {
    margin-right: 10px;
  }	
}
/*************** FOOTER.PHP ***************/