/* Minimal "dark" stylesheet for ojs. This stylesheet allows us to control navigation menu colors, header image size, and footer image */
/* This stylesheet was adapted from the minimal stylesheet, which was in turn adapted from the eblip stylesheet */

/* ensures the pkp/ojs footer image is invisible */
.pkp_brand_footer img {
	max-height:0px;
}

/* navigation menu background color */
.pkp_navigation_primary_row, .pkp_navigation_primary_wrapper {
    background: #decea4;
    color: #000;
}


/* content area bg color -- this is what makes the theme dark! */
.pkp_site_name,.pkp_navigation_user,.pkp_structure_content,.pkp_structure_footer {
background-color: #000;
border: 0px solid;
}


/* Main menu style settings. The important ones for us are color and background */
#navigationPrimary a {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
    font-size: 13px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    background: #decea4;
}

/* navigation menu text color when hovering */
#navigationPrimary a:hover, #navigationPrimary a:focus {
  color:#878787;
}
#navigationPrimary ul a{color: #000}

/* Handling site header image */
.pkp_site_name .is_img img {
	display: block;
    max-height: 350px;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* font control */
.obj_article_summary .pages,.obj_article_summary .published,.obj_issue_toc .heading .pub_id .type,.obj_issue_toc .heading .published .label,.cmp_breadcrumbs,.cmp_breadcrumbs .current,.cmp_breadcrumbs .current h1 {
 color:#fff
}

.cmp_breadcrumbs .separator {
 color:#ddd
}

/* font color for various headers (span class title, h2)  -- defaults to OJS grey when not set */
.pkp_block .title, .obj_issue_summary .title, .obj_issue_toc > .galleys h2,.obj_issue_toc .section h2,.pkp_page_index .current_issue h2,.obj_article_details .main_entry .label {
    color:#fff;
}

/* font color for various headers (span class title, h2)  -- defaults to OJS grey when not set */
.obj_article_details .main_entry .sub_item .label,.obj_article_details .author_bios .sub_item .label,.obj_article_details .entry_details .sub_item .label {
    color:#000;
}



/* below is optional color customization. */
/* main background color, main font color. background-image ok  -- defaults to OJS grey when not set */
body {
background-color: #000;
color: #fff;
}

/* color of border between content areas. Change to 0px to hide */
@media (min-width: 992px){.pkp_structure_sidebar:before{content: '';position: absolute;top: 0;right: 0;bottom: 0;width: 300px;
border-left: 1px solid #decea4}

/* body link colors -- defaults to OJS blue when not set */
a {
  color:#decea4;
}
  
/* body link hover/focus colors -- defaults to OJS blue when not set */
a:hover, a:focus {
  color:#878787;
}

/* "read more" link text  -- defaults to OJS blue when not set */
.pkp_page_index .current_issue .read_more, .obj_announcement_summary .read_more:after, .obj_announcement_summary .read_more, .cmp_announcements .obj_announcement_summary h2, .cmp_announcements .obj_announcement_summary h3,.cmp_announcements .obj_announcement_summary h4,.cmp_announcements .date,.cmp_announcements .read_more {
color: #decea4;
}

/* "read more" link hover/focus colors  -- defaults to OJS blue when not set */
.pkp_page_index .current_issue .read_more:hover,.pkp_page_index .current_issue .read_more:focus, .obj_announcement_summary .read_more:hover,.obj_announcement_summary .read_more:focus {
  color:#decea4;
}

/* galley button colors -- defaults to "Colour" set in OJS Website Settings when not set */ 
.cmp_manuscript_button, .block_make_submission a, .obj_galley_link {
    background: #decea4;
    color: #000;
}

/* galley button hover/focus colors  -- defaults to "Accent Colour" set in OJS Website Settings when not set */
.cmp_button_wire:hover,.cmp_button_wire:focus,.obj_galley_link:hover,.obj_galley_link:focus {
    background: #bfad86;
    color: #000;
}

/* hover color "SEARCH" text -- defaults to OJS blue when not set */
.pkp_head_wrapper .pkp_search .search_controls .search_prompt:hover,.pkp_head_wrapper .pkp_search .search_controls .search_prompt:focus{
    color: #000;
}

/* font color for "SEARCH" magnifying glass -- defaults to "Accent Colour" set in OJS Website Settings when not set */
.pkp_head_wrapper .pkp_search .search_controls .search_prompt:before{
    color: #fff;
}

/* notification background + accent color  -- defaults to OJS grey & blue when not set */
.cmp_notification {
    background: #3b3b3b;
    border-left: 5px solid #decea4;
}

.obj_article_details .entry_details .item{margin: 30px 0;padding: 0;border-bottom: none;border-radius: 3px;background:#3b3b3b;box-shadow: 0 0 1px rgba(0,0,0,0.4)}
.obj_article_details .entry_details .item > .label,.obj_article_details .entry_details .sub_item:first-child > .label{padding: .5em 20px;background: #decea4;border-top-left-radius: 3px;border-top-right-radius: 3px}