@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");

:root {
  --rospsy-primary: #003954;
  --rospsy-primary-dark: #00283b;
  --rospsy-accent: #de9c16;
  --rospsy-accent-dark: #ab7811;
  --rospsy-surface: #ddd;
  --rospsy-border: #003954;
  --rospsy-text: #444;
}

body {
  color: var(--rospsy-text);
  background: linear-gradient(to top, #00458a 6%, #fff, #00458a);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5em;
}

h1 {
  font-size: 1.8em;
}

h2 {
  font-size: 1.6em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.4em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  color: var(--rospsy-accent);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--rospsy-accent);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus,
h5 a:focus,
h6 a:focus {
  color: var(--rospsy-accent-dark);
}

#page-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 10px 35px rgba(19, 38, 56, 0.12);
}

#header-region,
#main,
#breadcrumb-region,
#content-top-region,
#content-bottom-region,
#footer,
#footer-column {
  padding: 20px;
}

#main {
  padding-left: 0;
  padding-right: 0;
}

#footer-column {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
}

a {
  color: #005983;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: #003954;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.field__item img {
  padding: 2px;
}

.field__item p {
  text-align: justify;
}

.block > h2,
.block .block-title {
  text-transform: uppercase;
  font-size: 1.3em;
  margin: 0 0 -2px;
  padding-bottom: 5px;
  display: inline-block;
  border-bottom: 2px solid var(--rospsy-accent);
}

.block .headline {
  display: block;
  margin: 10px 0 25px;
  border-bottom: 1px dotted var(--rospsy-accent);
}

#header-region {
  padding-top: 20px;
  padding-bottom: 20px;
}

.region-header-right {
  float: right;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-branding__logo img,
.site-logo img {
  height: 50px;
  max-height: 50px;
  width: auto;
}

.site-branding__text h2,
.site-branding__text p {
  margin: 0;
}

.site-branding__text h2 a {
  color: inherit;
}

.rospsy-menu {
  background-color: var(--rospsy-primary);
  padding: 0;
}

.rospsy-menu.navbar {
  margin-bottom: 0;
  min-height: inherit;
  border-radius: 0;
  border: none;
  z-index: 500;
}

.rospsy-menu .navbar-collapse {
  padding: 0;
}

.rospsy-menu .navbar-toggler {
  background-color: #d09215;
}

.rospsy-menu .navbar-nav > li {
  border-right: 1px solid #427290;
}

.rospsy-menu .nav-link,
.rospsy-menu .dropdown-item {
  color: #fff;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
}

.rospsy-menu .nav-link:hover,
.rospsy-menu .nav-link:focus,
.rospsy-menu .nav-link.active,
.rospsy-menu .dropdown-item:hover,
.rospsy-menu .dropdown-item:focus {
  color: #fff;
  background-color: #d09215;
}

.rospsy-menu .dropdown-menu {
  background-color: #d09215;
  border: none;
  border-radius: 0;
  padding: 0;
}

.rospsy-menu .dropdown-submenu {
  position: relative;
}

.rospsy-menu .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
}

.rospsy-menu .dropdown:hover > .dropdown-menu,
.rospsy-menu .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.rospsy-menu .dropdown-submenu > .dropdown-toggle::after {
  float: right;
  margin-top: 0.45rem;
  transform: rotate(-90deg);
}

.rospsy-menu .menu-item-last > .dropdown-menu {
  left: auto;
  right: 0;
}

.rospsy-menu .menu-item-last .dropdown-submenu > .dropdown-menu {
  left: auto;
  right: 100%;
}

.rospsy-menu .dropdown-item {
  border-bottom: 1px dotted #e8ab2e;
}

#content-top-region.dark-blue-bg,
#footer.dark-blue-bg {
  background-color: var(--rospsy-primary);
  color: #fff;
}

.dark-blue-bg {
  background-color: var(--rospsy-primary);
  color: #fff;
}

.dark-blue-bg .headline {
  border-bottom-color: #fff;
}

.dark-blue-bg .block-title,
.dark-blue-bg h1,
.dark-blue-bg h2,
.dark-blue-bg h3,
.dark-blue-bg h4,
.dark-blue-bg h5,
.dark-blue-bg h6 {
  color: #fff;
  border-bottom-color: #fff;
}

.dark-blue-bg a {
  color: var(--rospsy-accent);
}

.dark-blue-bg a:hover,
.dark-blue-bg a:focus,
.dark-blue-bg a:active {
  color: var(--rospsy-accent-dark);
}

.dark-blue-bg .block-title,
.gray-bg .block-title {
  font-weight: bold;
}

.gray-bg {
  background-color: #ddd;
  color: #333;
}

.gray-bg .block .headline {
  border-bottom-color: var(--rospsy-primary);
}

.gray-bg .block .block-title,
.gray-bg h1,
.gray-bg h2,
.gray-bg h3,
.gray-bg h4,
.gray-bg h5,
.gray-bg h6 {
  color: var(--rospsy-primary);
  border-bottom-color: var(--rospsy-primary);
}

.sidebar .block {
  margin-bottom: 20px;
  border: 1px solid var(--rospsy-primary);
}

.sidebar .headline {
  margin-top: 0;
  padding: 10px;
  background-color: var(--rospsy-primary);
}

.sidebar .block-title {
  text-align: center;
  display: block;
  border: none;
  padding: 0;
  color: #fff;
}

.sidebar .block-content,
.sidebar .content,
.sidebar .block > div:not(.headline) {
  padding-left: 10px;
  padding-right: 10px;
}

.view-comments-recent ul li,
.view-content-recent ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.view-comments-recent ul li::before,
.view-content-recent ul li::before {
  font-family: "Glyphicons Halflings";
  font-size: 10px;
  float: left;
  font-weight: bold;
  margin-right: 5px;
}

.view-content-recent ul li::before {
  content: "+";
}

.view-comments-recent ul li::before {
  content: "*";
}

.view-comments-recent .views-field-subject,
.view-content-recent .views-field-title {
  padding-right: 3px;
  font-size: 1.1em;
}

.view-comments-recent .views-field-subject,
.view-comments-recent .views-field-changed,
.view-content-recent .views-field-title,
.view-content-recent .views-field-changed {
  display: inline-block;
}

.view-comments-recent .views-field-changed,
.view-content-recent .views-field-changed {
  font-size: 0.8em;
}

.views-row {
  clear: both;
}

.node--view-mode-teaser {
  padding-bottom: 20px;
  border-bottom: 5px solid #ccc;
  margin-bottom: 20px;
  overflow: auto;
}

.node__meta {
  margin-bottom: 10px;
  color: #888;
  font-size: 0.95em;
}

.comment-wrapper .profile,
.node__meta .profile {
  display: inline-block;
}

.comment-wrapper .profile .field--name-user-picture + a,
.node__meta .profile .field--name-user-picture + a {
  display: none;
}

.comment-wrapper .profile img,
.node__meta .profile img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.comment-wrapper .submitted,
.node__meta .node__submitted {
  display: inline-block;
}

.node__links {
  margin-top: 10px;
}

.node__links li {
  padding: 0 10px 0 0;
  display: inline-block;
}

.node__links li a {
  padding: 5px;
  border-radius: 5px;
  background-color: #005983;
  color: #fff;
}

.node__content .node__links li a::before {
  color: #de9c16;
  margin-right: 5px;
}

.field--name-field-blog-tags .field__label,
.field--name-field-tags .field__label,
.field--name-field-blog-tags .field__items,
.field--name-field-tags .field__items {
  display: inline-block;
}

.field--name-field-blog-tags .field__items,
.field--name-field-tags .field__items {
  margin-left: 10px;
}

.field--name-field-blog-tags .field__items .field__item,
.field--name-field-tags .field__items .field__item {
  display: inline-flex;
  margin-right: 5px;
}

.breadcrumb {
  padding: 0;
  margin: 0;
  background-color: transparent;
}

.comment-wrapper .title {
  padding: 5px;
  background-color: #de9c16;
  color: #fff;
}

.action-links a.button-action {
  background-color: #5cb85c;
  color: #fff;
  border-radius: 5px;
  border-color: #5cb85c;
}

.action-links a.button-action:hover,
.action-links a.button-action:focus {
  background-color: #449d44;
  color: #fff;
}

.button,
.btn,
input[type="submit"],
input[type="button"] {
  border-radius: 4px;
}

#footer hr {
  margin: 1rem 0 0.75rem;
  border-color: rgba(255, 255, 255, 0.35);
}

#footer .credits {
  display: inline-block;
}

#footer .credits a {
  color: #fff;
}

.btn-btt {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: auto;
  height: auto;
  border-radius: 50%;
  padding: 4px 11px;
  z-index: 9999;
  transition: all 0.5s;
  color: #ab7811;
  background-color: #de9c16;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.btn-btt:hover,
.btn-btt:focus {
  background-color: #de9c16;
  color: #674d19;
}

@media (max-width: 991.98px) {
  .site-branding {
    flex-direction: column;
    align-items: flex-start;
  }

  .rospsy-menu .navbar-collapse {
    margin-top: 0.75rem;
  }

  .rospsy-menu .navbar-nav > li {
    border-right: 0;
  }

  .rospsy-menu .dropdown-submenu > .dropdown-menu,
  .rospsy-menu .menu-item-last .dropdown-submenu > .dropdown-menu {
    left: 0;
    right: auto;
  }

  .rospsy-content,
  .sidebar {
    width: 100%;
  }
}
