@import url("pygment_highlights.css");

:root{

    --FONT: "Share Tech Mono";
    
    --BACKGROUND-color: #050505; /* Color of background */

    --SITE-TITLE-color: #0abc25; /* Color of the site title */
    --PAGE-TITLE-color: #e9fce8; /* Color of the page title */
    
    --MAIN-TEXT-color: #e9fce8; /* Color of text by default */
    --MAIN-TITLES-TEXT-color: #e9fce8; /* Color of titles h2-h3-h4-h5 */

    --MENU-color: #16d1f2; /* Color of menu */
    --MENU-SELECTED-color: #3700f9; /* Color of selected menu */

    --POST-PREVIEW-color: #209b5a; /* Color for link of post preview */
    --POST-PREVIEW-HOVER-color: #6ec898 /* Color for hover on link of post preview */
				    
    --MAIN-LINK-color: #1C90F3; /* Color of links */
    --MAIN-LINK-HOVER-color: #167ad0; /* Color of hovered links */

    --HIGHLIGHTED-color: #ff7211; /* Color of text when highlighted */
}

/* --- General --- */

body {
  font-family: "Share Tech Mono";
  font-size: 18px;
  color: var(--MAIN-TEXT-color);
  position: relative;
  background: var(--BACKGROUND-color);
  text-align: justify;
  word-break: normal;
  hyphens: auto;
  hyphenate-character: "-";
}
p {
  line-height: 1.5;
  margin: 30px 0;
  /* text-decoration: underline */
  color: var(--MAIN-TEXT-color);
  text-align: justify;
  word-break: normal;
  hyphens: auto;
  hyphenate-character: "-";
}
.page-heading .page-title h1 {
    color: var(--SITE-TITLE-color);
    font-size: 20px;
}
.site-title {
    color: var(--SITE-TITLE-color)
}
h1,h2,h3,h4,h5,h6 {
  font-family: "Share Tech Mono";
  font-weight: 800;
}
a {
    color: #1C90F3;
    /* text-decoration: underline; */
}
a:hover,
a:focus {
    color: var(--MAIN-LINK-HOVER-color);
    text-decoration: underline;
}
.badge {
    color: var(--BACKGROUND-color);
    background: var(--MAIN-TEXT-color);
}
blockquote {
  color: #808080;
  font-style: italic;
}
blockquote p:first-child {
  margin-top: 0;
}
hr.small {
  max-width: 100px;
  margin: 15px auto;
  border-width: 4px;
  border-color: inherit;
  border-radius: 3px;
}

.main-content {
  padding-top: 80px;
}
@media only screen and (min-width: 768px) {
  .main-content {
    padding-top: 130px;
  }
}

.main-explain-area {
  font-family: "Share Tech Mono";
  padding: 15px inherit;
}

.hideme {
  display: none;
}

::-moz-selection {
  color: black;
  text-shadow: none;
  background: var(--HIGHLIGHTED-color);
}
::selection {
  color: black;
  text-shadow: none;
  background: var(--HIGHLIGHTED-color);
}
img::selection {
  color: black;
  background: transparent;
}
img::-moz-selection {
  color: black;
  background: transparent;
}

img {
  display: block;
  margin: auto;
  max-width: 100%;
}

.disqus-comments {
  margin-top: 30px;
}

@media only screen and (min-width: 768px) {
  .disqus-comments {
    margin-top: 40px;
  }
}

/* --- Navbar --- */

.navbar-custom {
  background: var(--BACKGROUND-color);
  border-bottom: 1px solid var(--BACKGROUND-color);
  font-family: "Share Tech Mono";
}

.navbar-custom .nav li a {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav li a {
  font-weight: 800;
  color: var(--MENU-color);
}

.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-brand:focus ,
.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus {
  color: var(--MENU-SELECTED-color);
}

.navbar-custom .navbar-brand-logo {
  padding-top: 0;
  -webkit-transition: padding .5s ease-in-out;
  -moz-transition: padding .5s ease-in-out;
  transition: padding .5s ease-in-out;
}
.navbar-custom .navbar-brand-logo img {
  height: 50px;
  -webkit-transition: height .5s ease-in-out;
  -moz-transition: height .5s ease-in-out;
  transition: height .5s ease-in-out;
}
.navbar-custom.top-nav-short .navbar-brand-logo {
  padding-top: 5px;
}
.navbar-custom.top-nav-short .navbar-brand-logo img {
  height: 40px;
}

@media only screen and (min-width: 768px) {
  .navbar-custom {
    padding: 20px 0;
    -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
    -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
    transition: background .5s ease-in-out,padding .5s ease-in-out;
  }

  .navbar-custom.top-nav-short {
    padding: 0;
  }
}

.navbar-custom .avatar-container {
  opacity: 1;
  position: absolute;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  left: 50%;
  width: 50px;
  margin-top: -25px;
}
.navbar-custom .avatar-container  .avatar-img-border {
  width: 100%;
  border-radius: 50%;
  margin-left: -50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .8);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
}
.navbar-custom .avatar-container  .avatar-img {
  width: 100%;
  border-radius: 50%;
  display: block;
}

.navbar-custom.top-nav-short .avatar-container{
  opacity: 0;
}

.navbar-custom.top-nav-expanded .avatar-container  {
  display: none;
}

@media only screen and (min-width: 768px) {
  .navbar-custom .avatar-container {
    width: 100px;
    margin-top: -50px;
  }

  .navbar-custom .avatar-container  .avatar-img-border {
    width: 100%;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
    -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
  }

  .navbar-custom .avatar-container  .avatar-img {
    width: 100%;
  }
}

/* Multi-level navigation links */
.navbar-custom .nav .navlinks-container {
  position: relative;
}
.navbar-custom .nav .navlinks-parent:after {
  content: " \25BC";
}
.navbar-custom .nav .navlinks-children {
  width: 100%;
  display: none;
  word-break: break-word;
}
.navbar-custom .nav .navlinks-container .navlinks-children a {
  display: block;
  padding: 10px;
  padding-left: 30px;
  background: var(--BACKGROUND-color);
  text-decoration: none !important;
  border-width: 0 1px 1px 1px;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .navbar-custom .nav .navlinks-container.show-children {
    background: #eee;
  }
  .navbar-custom .nav .navlinks-container.show-children .navlinks-children {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .navbar-custom .nav .navlinks-container {
    text-align: center;
  }
  .navbar-custom .nav .navlinks-container:hover {
    background: #eee;
  }
  .navbar-custom .nav .navlinks-container:hover .navlinks-children {
    display: block;
  }
  .navbar-custom .nav .navlinks-children {
    position: absolute;
  }
  .navbar-custom .nav .navlinks-container .navlinks-children a {
    padding-left: 10px;
    border: 1px solid #eaeaea;
    border-width: 0 1px 1px;
  }
}

/* --- Footer --- */

footer {
  padding: 30px 0;
  background: var(--BACKGROUND-color);
  border-top: 0px var(--MENU-color) solid;
  margin-top: 50px;
  font-size: 14px;
}

footer a {
  color: #404040;
}

footer .list-inline {
  margin: 0;
  padding: 0;
}
footer .copyright {
  font-family: Open Sans;
  text-align: center;
  margin-bottom: 0;
}
footer .theme-by {
  text-align: center;
  margin: 10px 0 0;
}

@media only screen and (min-width: 768px) {
  footer {
    padding: 50px 0;
  }
  footer .footer-links {
    font-size: 18px;
  }
  footer .copyright {
    font-size: 16px;
  }
}

/* --- Lists in posts --- */

.speclist {
    margin-top: -1em;
     list-style:  none;
     /* remove left padding, it's usually unwanted: */
     padding:  30px;
}

li.dur:before {
    content: url(/imgs/watch_icon.png);
    display: inline-block;
    vertical-align: middle;
    margin-right: 1em;
}
li.number:before {
    content: url(/imgs/people-group_icon.png);
    display:inline-block;
    vertical-align: middle;
    margin-right: 1em;
}
li.age:before {
    content: url(/imgs/age_icon.png);
    display:inline-block;
    vertical-align: middle;
    margin-right: 1em;
}
li.tool:before {
    content: url(/imgs/tool_icon.png);
    display:inline-block;
    vertical-align: middle;
    margin-right: 1em;
}
li.loc:before {
    content: url(/imgs/home_icon.png);
    display:inline-block;
    vertical-align: middle;
    margin-right: 1em;
}
li.price:before {
    content: url(/imgs/euro_icon.png);
    display:inline-block;
    vertical-align: middle;
    margin-right: 1em;
}

/* --- anim grid --- */
@media only screen and (max-width: 500px) {
    .wrapper {
	display: flex;
	flex-flow: column nowrap;
	gap: 20px;
    }
}

@media only screen and (min-width: 500px) and (max-width: 800px){
    .wrapper {
	display: grid;
	grid-template-columns: repeat(2,minmax(250px,1fr));
	grid-auto-rows: 450px;
	column-gap: 1em;
	row-gap: 0px;
    }
}

@media only screen and (min-width: 800px){
    .wrapper {
	display: grid;
	grid-template-columns: repeat(3,minmax(250px,1fr));
	grid-auto-rows: 450px;
	column-gap: 1em;
	row-gap: 0px;
	padding-top: 30px;
    }
}

/* --- catalogue boxes --- */
.cata-box {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
    /* border: 5px solid #808080; */
    background: #101010;
    color: var(--MAIN-TEXT-color);
    height: 400px;
}

.cata-box .cata-title {
    color: var(--POST-PREVIEW-color);
}

.cata-box .cata-title h2 {
    padding: 10px;
    margin: 0px;
}

.cata-box .cata-image {
    height: 200px;
    width: 200px;
    border: 10 10 10 10px;
}

.cata-box .cata-image img {
  border-radius: 0px;
  width: 200px;
  height: 200px;
  margin: 10 10 10 10px;
  object-fit: cover;
  object-position: 50% 50%;
}

.cata-box .cata-tags {
    color: #404040;
}

.cata-box .cata-tags a {
    text-decoration: none;
    color: #404040;
}

.cata-box .cata-tags a:hover {
    text-decoration: none;
    color: #808080;
}

/* --- event grid --- */
@media only screen and (max-width: 500px) {
    .wrapper_event {
	display: flex;
	flex-flow: column nowrap;
	gap: 20px;
    }
}

@media only screen and (min-width: 500px) and (max-width: 1000px){
    .wrapper_event {
	display: grid;
	grid-template-columns: minmax(450px,1fr);
	grid-auto-rows: 500px;
	column-gap: 1em;
	row-gap: 1em;
    }
}

@media only screen and (min-width: 1000px){
    .wrapper_event {
	display: grid;
	grid-template-columns: repeat(2,minmax(450px,1fr));
	grid-auto-rows: 500px;
	column-gap: 1em;
	row-gap: 1em;
	padding-top: 30px;
    }
}

/* --- event boxes --- */
.event-box {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 10px;
    margin: 0px;
    /* border: 5px solid #808080; */
    background: #101010;
    color: var(--MAIN-TEXT-color);
}

.event-box .event-title {
    color: var(--POST-PREVIEW-color);
}

.event-box .event-title h2 {
    font-size: 25px;
    padding: 10px;
    margin: 0px;
}

.event-box .event-image {
    height: 200px;
    width: 200px;
    border: 10 10 10 10px;
}

.event-box .event-image img {
  border-radius: 0px;
  width: 200px;
  height: 200px;
  margin: 10 10 10 10px;
  object-fit: cover;
  object-position: 50% 50%;
}

.event-meta {
    color: #909090;
}

.event-box .event-tags a {
    text-decoration: none;
    color: #404040;
}

.event-box .event-tags a:hover {
    text-decoration: none;
    color: #808080;
}

/* --- Blog post --- */
.blog-post img {
    width: 500px;
    padding-top: 30px;
}

.blog-post .large img {
    width: 100%;
}

/* --- Post preview --- */

.post-preview {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

@media only screen and (min-width: 768px) {
  .post-preview {
    padding: 10px;
  }
}

.post-preview:last-child {
  border-bottom: 0;
}

.post-preview a {
  text-decoration: none;
  color: var(--POST-PREVIEW-color)  ;
}

.post-preview a:focus, .post-preview a:hover {
  text-decoration: none;
  color: var(--POST-PREVIEW-HOVER-color);
}

.post-preview .post-title {
  font-size: 30px;
  margin-top: 0;
}
.post-preview .post-subtitle {
  margin: 0;
  font-weight: 300;
  margin-bottom: 10px;
}
.post-preview .post-meta,
.post-heading .post-meta {
  color: #808080;
  font-size: 18px;
  font-style: italic;
  margin: 0 0 10px;
}
.post-preview .post-meta a,
.post-heading .post-meta a {
  color: #404040;
  text-decoration: none;
}
.post-meta a:hover {
    color: var(--MAIN-LINK-Hover-color);
}
.post-preview .post-entry {
  font-family: "Share Tech Mono";
}
.post-entry-container {
  display: inline-block;
  width: 100%;
}
.post-entry {
  width: 100%;
}
.post-image {
    float: center;
    height: 192px;
  width: 192px;
  border: 10 10 10 10px;
}
.post-image:hover {
  filter: grayscale(0%);
}
.post-image img {
  border-radius: 90px;
  width: 192px;
  height: 192px;
  margin: 10 10 10 10px;
  object-fit: cover;
  object-position: 50% 50%;
}
.post-preview .post-read-more {
  font-weight: 800;
  float: right;
}

@media only screen and (min-width: 768px) {
  .post-preview .post-title {
    font-size: 36px;
  }
}

/* --- Tags --- */

.blog-tags {
  font-family: "Share Tech Mono";
  color: #999;
  font-size: 15px;
  margin-bottom: 30px;
}

.blog-tags a {
  color: #008AFF;
  text-decoration: none;
  padding: 0px 5px;
}

.blog-tags a:hover {
  border-radius: 2px;
  color: #008AFF;
  background-color: #CCC;
}

.post-preview .blog-tags {
  margin-top: 5px;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .post-preview .blog-tags {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 500px) {
  .post-image, .post-image img {
    height: 100px;
    width: 100px;
  }

  .post-image {
    width: 100%;
    text-align: center;
    margin-top: 0;
    float: left;
  }
}
/* --- Post and page headers --- */

.intro-header {
  margin: 80px 0 20px;
  position: relative;
}
.intro-header.big-img {
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  margin-top: 51px; /* The small navbar is 50px tall + 1px border */
  margin-bottom: 35px;
}
.intro-header.big-img  .big-img-transition {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  -webkit-transition: opacity 1s linear;
  -moz-transition: opacity 1s linear;
  transition: opacity 1s linear;
}
.page-subheading {
    color: var(--PAGE-TITLE-color);
}
.site-title {
    color: var(--PAGE-TITLE-color);
}
.intro-header .page-heading {
  text-align: center;
}
.intro-header.big-img .page-heading,
.intro-header.big-img .post-heading {
  padding: 100px 0;
  color: #FFF;
  text-shadow: 1px 1px 3px #000;
}
.intro-header .page-heading h1 {
  margin-top: 0;
  font-size: 20px;
}
.intro-header .post-heading h1 {
  margin-top: 0;
  font-size: 20px;
}
.intro-header .page-heading .page-subheading,
.intro-header .post-heading .post-subheading {
  font-size: 27px;
  line-height: 1.1;
  display: block;
  font-family: "Share Tech Mono";
  font-weight: 300;
  margin: 10px 0 0;
}
.intro-header .post-heading .post-subheading {
  margin-bottom: 20px;
}
.intro-header.big-img .page-heading .page-subheading,
.intro-header.big-img .post-heading .post-subheading {
  font-weight: 400;
}
.intro-header.big-img .page-heading hr {
  box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  -moz-box-shadow: 1px 1px 3px #000;
}
.intro-header.big-img .post-heading .post-meta {
  color: #EEE;
}
.intro-header.big-img .img-desc {
  background: rgba(30, 30, 30, 0.6);
  position: absolute;
  padding: 5px 10px;
  font-size: 11px;
  color: #EEE;
  font-family: "Share Tech Mono";
  right: 0;
  bottom: 0;
  display: none;
}
@media only screen and (min-width: 768px) {
  .intro-header {
    margin-top: 130px;
  }
  .intro-header.big-img {
    margin-top: 91px;  /* Full navbar is small navbar + 20px padding on each side when expanded */
  }
  .intro-header.big-img .page-heading,
  .intro-header.big-img .post-heading  {
    padding: 150px 0;
  }
  .intro-header .page-heading h1 {
    font-size: 50px;
  }
  .intro-header .post-heading h1 {
    font-size: 30px;
  }
  .intro-header.big-img .img-desc {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) {

  .intro-header {
    margin-top: 200px;
  }

}


.header-section.has-img .no-img {
  margin-top: 0;
  background: #FCFCFC;
  margin: 0 0 40px;
  padding: 20px 0;
  box-shadow: 0 0 5px #AAA;
}
/* Many phones are 320 or 360px, so make sure images are a proper aspect ratio in those cases */
.header-section.has-img .intro-header.no-img {
  display: none;
}
@media only screen and (max-width: 365px) {
  .header-section.has-img .intro-header.no-img {
    display: block;
  }
  .intro-header.big-img {
    width: 100%;
    height: 220px;
  }
  .intro-header.big-img .page-heading,
  .intro-header.big-img .post-heading {
    display: none;
  }
  .header-section.has-img .big-img {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 325px) {
  .intro-header.big-img {
    height: 200px;
  }
}

.caption {
  text-align: center;
  font-size: 14px;
  padding: 10px;
  font-style: italic;
  margin: 0;
  display: block;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

/* --- Pager --- */

.pager li a {
  font-family: "Share Tech Mono";
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 10px 5px;
  background: #FFF;
  border-radius: 0;
  color: #404040;
}
@media only screen and (min-width: 768px) {
  .pager li a {
    padding: 15px 25px;
  }
}
.pager li a:hover,
.pager li a:focus {
  color: #FFF;
  background: #0085a1;
  border: 1px solid #0085a1;
}

.pager {
  margin: 10px 0 0;
}

.pager.blog-pager {
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .pager.blog-pager  {
    margin-top: 10px;
  }
}

/* --- Tables --- */

table {
  padding: 0;
}
table tr {
  border-top: 1px solid #cccccc;
  background-color: var(--BACKGROUND-color);
  margin: 0;
  padding: 0;
}
table tr:nth-child(2n) {
  background-color: #f8f8f8;
}
table tr th {
  font-weight: normal;
  border: 1px solid #cccccc;
  text-align: left;
  margin: 0;
  padding: 6px 13px;
}
table tr td {
  border: 1px solid #cccccc;
  text-align: left;
  margin: 0;
  padding: 6px 13px;
}
table tr th :first-child,
table tr td :first-child {
  margin-top: 0;
}
table tr th :last-child,
table tr td :last-child {
  margin-bottom: 0;
}

/* --- wrap text around image */
img[src$='#floatleft']
{
    float:left;
    //etc. etc/
}

/* --- test wrap text around image --- */
section {
    margin: auto;
    padding-top: 10px;
    color: var(--MAIN-TEXT-color);
}
div#section_imgleft {
    float: left;
    margin-right: 10px;
}
div#sectionright {
    margin: auto;
}

div#sectionleft {
    margin: auto;
}

div#section_imgright {
    float: right;
    margin-left: 10px;
}

/* --- Code blocks --- */

pre {
  font-size: 16px;
  line-height: 1.5em;
}
pre code {
  white-space: pre;
}
pre.highlight, .highlight > pre, td.code pre {
  background: #FAFAFA;
  background-image: linear-gradient(#F9F9F9 50%, #FDFDFD 50%);
  background-repeat: repeat;
  background-size: 3em 3em;
  background-position: 0px 10px;
  border-left: 7px solid #444;
}
code table, code table td, code table th, code table tbody, code table tr,
td.gutter pre {
  padding: 0;
  border: none;
  background-color: #fff;
}
.highlight > pre {
  padding: 0;
}
td.code pre {
  border-width: 0 0 0 2px;
  border-style: solid;
  border-color: #444;
  border-radius: 0;
}
td.gutter {
  padding-top: 3px;
}

/* --- Social media sharing section --- */

#social-share-section {
  margin-bottom: 30px;
}

/* --- Google Custom Search Engine Popup --- */
#modalSearch table tr, #modalSearch table tr td, #modalSearch table tr th {
  border:none;
}
.reset-box-sizing, .reset-box-sizing *, .reset-box-sizing *:before, .reset-box-sizing *:after,  .gsc-inline-block {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input.gsc-input, .gsc-input-box, .gsc-input-box-hover, .gsc-input-box-focus, .gsc-search-button {
  box-sizing: content-box;
  line-height: normal;
}

.well {
    color: var(--MAIN-TEXT-color);
    background: var(--BACKGROUND-color);	   
}
