/* MENU APPEARANCE IN DIFFERENT SCREEN SIZES*/
/* Attept that did not work beacuse I did not find the "Menu Class" field and could not make it appear*/
/* Hide menu in "menu" position on desktop/larger screens */
@media (min-width: 992px) {
  .moduletable.menu-position { display: none !important; }
}
/* Hide menu in "sidebar-left" position on mobile/small screens */
@media (max-width: 991.98px) {
  .moduletable.sidebar-left-position { display: none !important; }
}

/* As the above would need me to manage adding Menu Class Suffix field to the template first
I now first try it via addressing the IDs of the modules)*/

/* Hide 'Digcompae Main Menu Mobile' on desktop/larger screens */
@media (min-width: 992px) {
  #site-nav-118 { display: none !important; }
}

/* Hide 'Digcompae Main Menu Desktop' on mobile/small screens */
@media (max-width: 991.98px) {
  #site-nav-112 { display: none !important; }
}
/* The above now works*/

/* Adjusting title (h) styles*/
h3 {
 /* font-size: 8px;  /* Yes this works*/
 padding-top: 14px; 
}


/* ARTICLE FONTS STYLES */ 

/*Style defined in editor.css as well, for captions*/
.caption-large-CG {
  font-size: 0.8 em;
  color: #225588;
  background: #f9f9f9;
  padding: 6px 12px;
  border-radius: 6px;
  display: block;
  text-align: left;
  font-style: italic;
}

/* Adding German style a) b) enumerations to the enumeration types for the editor */
/* Instruction for this came from Px*/
/* This appears now in the Caption style selector... hmpf...*/
ol.alpha-bracket {
    list-style-type: lower-alpha;
}
ol.alpha-bracket > li::marker {
    content: counter(list-item) ") ";
}

/* Left indent for <blockquote> paragraphs... which they currentl haven't in frontend*/
blockquote {    
/*text-indent: 2em;  /* possible also 10% or 50 px*/ /* but this is only first line!*/ 
  margin-left: 2em;
}
