/* Adjust header tags margins; H1 will be at top of pages so little top margin wanted */

.h1, h1 {
	font-size: 2em;
    margin-top: 0.09em;
    margin-bottom: 0.13em;
}
.h2, .h3, .h4, .h5, .h6, h2, h3, h4, h5, h6 {
    margin-top: 0.55em;
    margin-bottom: 0.12em;
}

/* Make datatables buttons a little smaller and closer together with a slightly rounded border, and a little margin above */
button.dt-button {padding: 4px 6px !important; font-size: 12px !important; border-radius: 3px !important; margin-right: 0px !important; margin-top: 3px !important;}

/* Set padding on html select pull down menus so text will display a little better */
select { padding: 2 2 2 2 !important;}

/* Set initial height/width on input elements */
select.form-control:not([multiple]), select.inputbox:not([multiple]), select:not([multiple]) {
    height: calc(1.4rem + 2px);
    width: calc(5.25rem + 2px);
}

/* Modify colors of amcharts 3-dot export menu to make it more apparent */
a.am5exporting-icon,
.am5exporting-list {
  background-color: #2dcc38;
}
a.am5exporting-icon:hover,
.am5exporting-menu-open a.am5exporting-icon,
.am5exporting-item a:hover {
  background: #02fa82;
}
/* Change exporting icon svg image from 3-dot default to a download arrow image icon */
a.am5exporting-icon svg {
  display: none;
}
a.am5exporting-icon::before {
  content: url("/ARDA/images/download.png") / "Click for Export Options";
}
/* amcharts sets the exporting menu z-index to 10, which causes it to appear above mega menu, so setting it to 0 */
.am5exporting-menu {z-index: 0 !important;}

/* return to top button class */
.sp-scroll-up{display:none;position:fixed;bottom:30px;right:10px;width:36px;height:36px;line-height:36px;text-align:center;font-size:16px;color:#fff;background:#ff8b24;border-radius:3px;z-index:100}.sp-scroll-up:hover,.sp-scroll-up:active,.sp-scroll-up:focus{color:#fff;background:#233d60}

/* Increase width of sidebar slightly to reduce line-wrapping in sidebars, and reduce grid column gap to compensate for wider sidebar */
.wrapperPage-Sidebar {grid-template-columns: 345px auto; grid-column-gap: 48px;}

/* Decrease min height for overall page content (wrapperContent) as no reason to have lots of whitespace at bottom of short-content pages */
.wrapperContent {min-height: 250px;}

/* Reduce top/bottom margin on content page from 100 to 60px */
.wrapperPage-NoSidebar {margin: 60px auto;}
.wrapperPage-Sidebar {margin: 60px auto;}

/* Adjust articles addon display characteristics so title appears next to images, in 2 columns */
.sppb-addon-article {display:flex; align-items: center; padding-bottom: 20px; margin-bottom: 20px;}
.sppb-addon-articles-layout.layout-casipea .sppb-addon-article .sppb-article-info-wrap{margin-left: 15px; order:3 !important;}
.sppb-article-img-wrap{flex: 0 0 100px; order:2 !important;}

/* Define a no breaking class - used to wrap the right-arrow symbols on titles so they don't word wrap onto a line by themselves and dangle as only symbol on line */
.nobr {white-space:nowrap;}

/* Slightly reduce overall top/bottom margins on paragraphs (default is 1em) */
body p { margin-top: .75em; margin-bottom: .85em; }

/* Made tabs in article viewer have slightly larger font and in all caps */
.sppb-addon-content .sppb-nav-tabs li a {
	text-transform: uppercase;
	font-size: 16px;
}

/* Define a div container that displays horizontal scrolling when content too wide */
.horizontal-scroll-container {
	overflow-x:auto;
}

/* Magnifying glass icon made into a button - this will change its colors on hover as a highlight effect */
/* light blue: background:#7dbbf1 */
.holderSearchButton:hover,.holderSearchButton:active,.holderSearchButton:focus{color:#fff;background:#233d60}
.holderSearchButton-mobile:hover,.holderSearchButton-mobile:active,.holderSearchButton-mobile:focus{color:#fff;background:#233d60}

/* Make plain input button text bold */
input[type="submit"] { font-weight: bold; }
button[type="submit"] { font-weight: bold; }
button[type="button"] { font-weight: bold; }

/* Button classes used on some arda pages/articles */
.ardaWrapperButtonContent a {color: var(--green); text-decoration: none; border-bottom: 1px none;}
.ardaWrapperButtonContent a:visited {color: var(--green); text-decoration: none;}
.ardaWrapperButtonContent a:hover {color: var(--blue); text-decoration: none; border-bottom: 1px none;}

.ardaArticleButton {
   background-color: var(--orange);
   color: white;
   padding: 15px 32px;
   margin-right: 15px;
   text-align:center;
   display: inline-block;
   font-size: 16px;
   font-weight: bold;
   border: none;
   text-decoration: none;
}
.ardaArticleButtonLink a{
	text-decoration: none;
	border-bottom: none;
}
.ardaArticleButton:hover {
 background-color: var(--blue);
}
