html,
:root {
  --default: #222222;
  --accent: #c24206;
  --accent-rgb: 194, 66, 6;
  --secondary: #f9cfc0;
  --secondary-rgb: 249, 207, 192;
  --bg-default: #f6eee9;
  --bg-default-rgb: 246, 238, 233;
  --bg-primary: #ffffff;
  --bg-secondary: #f9cfc0;
  --bg-footer: #ffffff;
  --navbar-bg:  var(--bg-default);
  --navbar-bg-rgb: var(--bg-default-rgb);
  --navbar-li: #222222;
  --navbar-shadow: #f7ae00;
  --navbar-shadow-background: #ffedc0;
  --accordion-btn-focus-box-shadow: var(--bg-secondary);
}

html {
  scroll-padding-top: 120px;
}

html.ccm-toolbar-visible {
  scroll-padding-top: 168px;
}

html,
body {
  height: 100%;
}

div.ccm-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

/* Body Styles
-------------------------------------------------- */

div.ccm-page {
  background-color: var(--bg-default);
  color: var(--default);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.ccm-toolbar-visible .navbar-fixed-top {
  top: 48px;
  z-index: 4;
}

/* a
-------------------------------------------------- */

div.ccm-page a {
  color: var(--default);
  transition: all 0.3s ease;
}

div.ccm-page a:hover,
div.ccm-page a:focus,
div.ccm-page a:active {
  color: var(--accent);
}

div.ccm-page #main-section a,
div.ccm-page #main-section a:visited {
  text-decoration: underline;
}

div.ccm-page #main-section a:hover {
  text-decoration: none;
}

/* h1 h2 h3 h4 h5 h6
-------------------------------------------------- */

div.ccm-page h1,
div.ccm-page .h1 {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 600;
}

div.ccm-page h1.error {
  color: #666;
}

div.ccm-page h2,
div.ccm-page .h2 {
  position: relative;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--default);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
}

div.ccm-page h2::before {
  position: absolute;
  border-bottom: 3px solid var(--accent);
  top: 100%;
  left: 0;
  width: 3rem;
  content: "";
}

div.ccm-page h3,
div.ccm-page .h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--default);
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 3px solid var(--accent);
}

div.ccm-page h4,
div.ccm-page .h4 {
  font-size: 1.275rem;
  font-weight: 600;
  color: var(--default);
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px dotted var(--accent);
}

div.ccm-page h5,
div.ccm-page .h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--default);
  margin-bottom: 0.75rem;
}

div.ccm-page h6,
div.ccm-page .h6 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--default);
  margin-bottom: 0.75rem;
}

div.ccm-page .h1 .small,
div.ccm-page .h1 small,
div.ccm-page .h2 .small,
div.ccm-page .h2 small,
div.ccm-page .h3 .small,
div.ccm-page .h3 small,
div.ccm-page .h4 .small,
div.ccm-page .h4 small,
div.ccm-page .h5 .small,
div.ccm-page .h5 small,
div.ccm-page .h6 .small,
div.ccm-page .h6 small,
div.ccm-page h1 .small,
div.ccm-page h1 small,
div.ccm-page h2 .small,
div.ccm-page h2 small,
div.ccm-page h3 .small,
div.ccm-page h3 small,
div.ccm-page h4 .small,
div.ccm-page h4 small,
div.ccm-page h5 .small,
div.ccm-page h5 small,
div.ccm-page h6 .small,
div.ccm-page h6 small {
  font-weight: 500;
}

@media screen and (max-width: 767.98px) {
  div.ccm-page h1,
  div.ccm-page .h1 {
    font-size: 1.5rem;
  }

  div.ccm-page h2,
  div.ccm-page .h2 {
    font-size: 1.375rem;
  }

  div.ccm-page h3,
  div.ccm-page .h3 {
    font-size: 1.3rem;
  }

  div.ccm-page h4,
  div.ccm-page .h4 {
    font-size: 1.25rem;
  }

  div.ccm-page h5,
  div.ccm-page .h5 {
    font-size: 1rem;
  }

  div.ccm-page h6,
  div.ccm-page .h6 {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 479.98px) {
  div.ccm-page h1 {
    font-size: 1.375em;
  }
  div.ccm-page h2 {
    font-size: 1.3rem;
  }
  div.ccm-page h3 {
    font-size: 1.175rem;
  }
  div.ccm-page h4 {
    font-size: 1.125rem;
  }
}

/* p
-------------------------------------------------- */
div.ccm-page p,
div.ccm-page li,
div.ccm-page dt,
div.ccm-page dd,
div.ccm-page dd p,
div.ccm-page .btn {
  font-size: 1rem;
}

@media screen and (max-width: 767.98px) {
  div.ccm-page p,
  div.ccm-page li,
  div.ccm-page dt,
  div.ccm-page dd,
  div.ccm-page dd p,
  div.ccm-page .btn {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 479.98px) {
  div.ccm-page p,
  div.ccm-page li,
  div.ccm-page dt,
  div.ccm-page dd,
  div.ccm-page dd p,
  div.ccm-page .btn {
    font-size: 0.825rem;
  }
}

/* image
-------------------------------------------------- */

div.ccm-page img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

div.ccm-page .backstretch .backstretch-item img {
  inset: 0px auto auto 0px !important;
}

/* Main-header
-------------------------------------------------- */
div.ccm-page #main-header-home {
  margin-top: 120px;
  padding-bottom: 2.5rem;
  width: 100%;
  height: auto;
}

div.ccm-page #main-header-home p {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 4rem;
  font-weight: 700;
  padding-top: 2rem;
  line-height: 1.2;
}

div.ccm-page #main-header-home p small {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 0.75em;
}

div.ccm-page #main-header-home span {
  display: block;
}

div.ccm-page #main-header-page {
  margin-top: 136px;
}

div.ccm-page #main-header-page>.container {
  height: 100px;
  margin-right: auto;
  margin-left: auto;
  background-image: url(../images/oie-support01.png);
  background-repeat: no-repeat;
  background-position: right 0;
  background-size: auto 120px;
  background-color: var(--accent);
  border-radius: 1.5rem;
}

div.ccm-page #main-header-page h1 {
  color: #ffffff;
  margin: 0;
  padding-top: 2rem;
  padding-left: 1rem;
}

/* max-width: 1399.98px
-------------------------------------------------- */
@media screen and (max-width: 1399.98px) {
  div.ccm-page #main-header-home p {
    font-size: 3.5rem;
  }
}

/* max-width: 1199.98px
-------------------------------------------------- */
@media screen and (max-width: 1199.98px) {
  div.ccm-page #main-header-home {
    margin-top: 90px;
  }
  div.ccm-page #main-header-home p {
    font-size: 3rem;
  }
  div.ccm-page #main-header-page {
    margin-top: 106px;
  }
}

/* max-width: 767.98px
-------------------------------------------------- */
@media screen and (max-width: 767.98px) {
  div.ccm-page #main-header-home p {
    font-size: 2.5rem;
  }
  div.ccm-page #main-header-page > .container {
    height: 88px;
    background-size: auto 100px;
  }
  div.ccm-page #main-header-page h1 {
    padding-top: 1.75rem;
  }
}

/* max-width: 575.98px
-------------------------------------------------- */
@media screen and (max-width: 575.98px) {
  div.ccm-page #main-header-home {
    margin-top: 96px;
  }
  div.ccm-page #main-header-page {
    margin-top: 112px;
    margin-right: 10px;
    margin-left: 10px;
  }
  div.ccm-page #main-header-page > .container {
    height: 78px;
    background-size: auto 80px;
  }
  div.ccm-page #main-header-page h1 {
    padding-top: 1.5rem;
  }
}

/* max-width: 479.98px
-------------------------------------------------- */

@media screen and (max-width: 479.98px) {
  div.ccm-page #main-header-home {
    margin-top: 90px;
  }
  div.ccm-page #main-header-home p {
    font-size: 1.5rem;
    padding-top: 1.5rem;
  }
  div.ccm-page #main-header-page {
    margin-top: 106px;
  }
  div.ccm-page #main-header-page > .container {
    height: 68px;
    background-size: auto 70px;
  }
  div.ccm-page #main-header-page h1 {
    font-size: 1.25rem;
  }
}

/* site-logo
-------------------------------------------------- */
.ccm-page #site-logo img {
  max-height: 52px;
}
@media screen and (max-width: 575.98px) {
  .ccm-page #site-logo img {
    max-height: 80px;
  }
}
@media screen and (max-width: 479.98px) {
  .ccm-page #site-logo img {
    max-height: 72px;
  }
}

/* Top Navigation
-------------------------------------------------- */

div.ccm-page nav.navbar {
  margin-bottom: 0px;
  padding: 1rem 0;
  min-height: 80px;
  align-items: normal;
  vertical-align: center;
  background-color: rgba(var(--navbar-bg-rgb), 1);
}

div.ccm-page .navbar-nav {
  display: flex;
  justify-content: space-around;
}

div.ccm-page .navbar-nav > li {
  text-align: initial;
  vertical-align: top;
}

div.ccm-page .navbar-nav > li > a {
  border-bottom: 1px solid #ccc;
  position: relative;
  transition: background-color 0.5s ease 0s;
}

div.ccm-page .navbar-nav li.nav-item > a,
div.ccm-page .navbar-nav li.nav-item > a small {
  display: block;
  color: var(--navbar-li);
}

div.ccm-page .navbar-toggler {
  color: var(--bs-navbar-color) !important;
  border: none !important;
  padding: 0.25rem 0.5rem;
}

@media screen and (max-width: 991.98px) {
  div.ccm-page .navbar-nav li.nav-item > a small {
    display: inline;
    padding-left: 1em;
  }
}

div.ccm-page #seren-masthead {
  display: flex;
  justify-content: space-between;
  align-content: center;
}

div.ccm-page #seren-masthead-right {
  display: flex;
  justify-content: flex-end;
  align-self: center;
}

div.ccm-page #language-switcher {
  text-align: center;
}

div.ccm-page a.lang-btn {
  font-size: 0.875rem;
  padding: 2px 12px;
  text-decoration: none;
  text-align: center;
  text-decoration: none !important;
  color: #fff !important;
  border: 1px solid var(--accent);
  background-color: var(--accent);
  white-space: nowrap;
  border-radius: 2rem;
  display: inline-block;
  max-width: 100px;
  position: relative;
  overflow: hidden;
  z-index: 10;
  transition: all 0.3s ease-in;
}

div.ccm-page a.lang-btn:hover,
div.ccm-page a.lang-btn:focus,
div.ccm-page a.lang-btn:active {
  color:  var(--accent) !important;
  border: 1px solid var(--accent);
  background-color: #fff;
}

div.ccm-page a.contact-btn {
  font-size: 0.875rem;
  padding: 2px 12px;
  text-decoration: none;
  text-align: center;
  text-decoration: none !important;
  color: var(--default) !important;
  border: 1px solid var(--default);
  background-color: color-mix(in srgb, var(--bg-primary) 100%, transparent);
  white-space: nowrap;
  border-radius: 2rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 10;
  font-feature-settings: "palt";
  transition: all 0.3s ease-in;
}

div.ccm-page a.contact-btn i {
  color: var(--accent) !important;
}

div.ccm-page a.contact-btn:hover,
div.ccm-page a.contact-btn:focus,
div.ccm-page a.contact-btn:active {
  color: #fff !important;
  background-color: var(--accent);
  border: 1px solid var(--accent);
}
div.ccm-page a.contact-btn:hover i,
div.ccm-page a.contact-btn:focus i,
div.ccm-page a.contact-btn:active i {
  color: #fff !important;
}

@media screen and (min-width: 1200px) {

  div.ccm-page .navbar-nav {
    margin: 0;
    width: 100%;
    border-bottom: none;
  }

  div.ccm-page .navbar-nav > li {
    float: none;
    display: inline-block;
    text-align: center;
  }

  div.ccm-page .navbar-nav > li > a {
    border: none;
    line-height: 1.25;
    margin-right: 1px;
    margin-left: 1px;
    padding: 15px !important;
  }

  div.ccm-page .navbar-nav > li > a.active {
    color: var(--navbar-li);
    box-shadow: 0 -3px var(--accent) inset;
  }

  div.ccm-page .navbar-nav > li > a:hover,
  div.ccm-page .navbar-nav > li > a:active {
    color: var(--navbar-li);
    background-position: center center;
    box-shadow: 0 -3px var(--accent) inset;
    overflow: hidden;
    transition: all 0.5s 0s ease;
  }
}

@media screen and (max-width: 1399.98px) {
  div.ccm-page .navbar-nav > li > a {
    padding: 15px 10px !important;
  }
}

@media screen and (max-width: 1199.98px) {
  div.ccm-page .navbar-nav > li > a {
    padding: 15px 5px !important;
  }
  div.ccm-page #seren-masthead-right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-self: center;
  }
  a.lang-btn {
    font-size: 0.825rem;
    padding: 0.125em 0.5em;
  }
  a.contact-btn {
    font-size: 1rem;
    padding: 0.5em 1.5em;
  }
  div.ccm-page .navbar-nav > li > a > div {
    margin: 0;
  }
}

/* max-width: 1199.98px
-------------------------------------------------- */

@media screen and (max-width: 1199.98px) {
  div.ccm-page nav.navbar {
    margin-bottom: 0px;
    min-height: 70px;
  }
}

/* max-width: 991.98px
-------------------------------------------------- */
@media screen and (max-width: 991.98px) {
  div.ccm-page .navbar-nav > li > a {
    padding: 12px 4px !important;
  }
}
}

/* max-width: 575.98px
-------------------------------------------------- */

@media screen and (max-width: 575.98px) {
  div.ccm-page nav.navbar {
    margin-bottom: 0px;
    padding: 0.5rem 0;
    min-height: 56px;
  }
}

/* dropdown
-------------------------------------------------- */

div.ccm-page .nav .open > a,
div.ccm-page .nav .open > a:hover,
div.ccm-page .nav .open > a:focus {
  background-color: transparent;
}

div.ccm-page .navbar-inverse .navbar-nav > .open > a,
div.ccm-page .navbar-inverse .navbar-nav > .open > a:hover,
div.ccm-page .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: transparent;
  color: #000;
}

div.ccm-page .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  border-bottom: 1px solid #ccc;
  line-height: 1.6;
  font-size: 0.875rem;
  background-color: #ffffff;
}

div.ccm-page .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
div.ccm-page .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  background-color: var(--accent);
  color: #000;
  transition: background-color 2s ease 0s;
}

div.ccm-page .nav .open > a,
div.ccm-page .nav .open > a:hover,
div.ccm-page .nav .open > a:focus {
  border-color: #666;
}

div.ccm-page .dropdown-menu {
  background-color: #ffffff;
  border-radius: 0;
  padding: 0;
}

div.ccm-page .dropdown-menu > li > a {
  color: #000;
}

div.ccm-page .dropdown-menu > li > a:hover,
div.ccm-page .dropdown-menu > li > a:focus {
  color: #fff;
  background-color: var(--accent);
  background-position: center center;
  box-shadow: none;
  transition: background-color 2s ease 0s;
}

div.ccm-page .navbar-nav .open .dropdown-menu > li > a,
div.ccm-page .navbar-nav .open .dropdown-menu .dropdown-header {
  padding: 5px 15px 5px 40px;
}

@media screen and (min-width: 1200px) {
  div.ccm-page .dropdown-menu {
    font-size: 0.875rem;
    text-align: center;
    padding: 0;
  }

  div.ccm-page .navbar-nav .open .dropdown-menu > li > a,
  div.ccm-page .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 3px 20px;
  }
}

/* home
-------------------------------------------------- */
div.ccm-page :is(.home-OIE, .home-staff, .home-info) {
  padding-bottom: 2.5rem;
}

div.ccm-page .home-OIE small {
  font-weight: 600;
  padding-bottom: 0.125em;
}

div.ccm-page .home-OIE h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 0.25em;
  margin-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  div.ccm-page .home-OIE h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 479.98px) {
  div.ccm-page .home-OIE h2 {
    font-size: 1.5rem;
  }
}

div.ccm-page .home-OIE h2::before {
  border-bottom: none;
}

div.ccm-page .home-OIE h2 small {
  font-size: 0.5em;
  font-weight: 600;
  color: #999999;
  padding-bottom: 0.125em;
  display: inline-block;
}

div.ccm-page :is(.home-OIE, .home-staff, .home-info) h3 {
  color: var(--accent);
  border-bottom: none;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
        &::after {
            content: "";
            display: inline-block;
            position: relative;
            width: 100%;
            height: 1px;
            left: 1rem;
            bottom: 0.25rem;
            background-color: #999999;
        }
}

div.ccm-page .card h4 {
  color: var(--default);
  margin-top: 0 !important;
}
div.ccm-page .card h4 small {
  color: var(--default);
  font-size: 0.75em;
  font-weight: 400;
}

div.ccm-page .card {
  background-color: transparent;
  border: none;
}
div.ccm-page .card:hover h4:has(+a),
div.ccm-page .card:hover h4:has(+a) small {
  color: var(--accent);
  transition: all 0.5s ease 0s;
}
div.ccm-page .card img {
  margin-right: auto;
  margin-left: auto;
  border-radius: 1em;
}
div.ccm-page .home-OIE .card h4 {
  border-bottom: none;
}
div.ccm-page .home-OIE .card img {
   max-width: 404px;
}
div.ccm-page .home-staff :is(h5, p) {
  margin-bottom: 0;
}
div.ccm-page .home-staff img {
  width: 80px;
  height: 80px;
  margin-right: 1rem;
}

div.ccm-page .card h4:has(.badge) {
  margin-top: 0 !important;
  padding-left: 3.5em;
}
div.ccm-page .card h4 .badge {
  margin-left: -3em;
  margin-right: 0.25em;
  width: 2.75em;
}

/* main-section
-------------------------------------------------- */

div.ccm-page #main-section {
  color: var(--default);
  padding: 3.75rem 0;
}

div.ccm-page #main-section :is(h2, h3, h4, h5, h6) {
  margin-top: 1.75rem;
}

div.ccm-page #main-section .container:first-child :is(h2, h3, h4, h5, h6):first-child {
  margin-top: 0;
}

div.ccm-page #main-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

div.ccm-page #main-section p .fa,
div.ccm-page #main-section p .fab,
div.ccm-page #main-section p .fal,
div.ccm-page #main-section p .far,
div.ccm-page #main-section p .fas {
  display: inline;
}

div.ccm-page #main-section li {
  font-size: 1rem;
}

@media screen and (max-width: 767.98px) {
  div.ccm-page #main-section {
    padding: 1.875rem 0;
  }
  div.ccm-page #main-section p,
  div.ccm-page #main-section li,
  div.ccm-page blockquote {
    font-size: 0.875rem;
  }
}

/* section --------------------------------------- */

div.ccm-page section {
  padding-bottom: 1.25rem;
}

/* footer
-------------------------------------------------- */
div.ccm-page #footer {
  margin-top: auto;
  background-color: var(--bg-footer);
}

div.ccm-page .footer h5 {
  color: var(--default);
  margin-bottom: 0.5rem;
}

div.ccm-page .footer h5 small {
  font-weight: 400;
  font-size: 0.75em;
}

div.ccm-page .footer p {
  margin: 0;
  padding: 0;
}

div.ccm-page .footer p,
div.ccm-page .footer a {
  color: var(--default);
  transition: color 0.5s 0s ease;
}

div.ccm-page .footer a {
  text-decoration: none;
}

div.ccm-page .footer a:hover {
  color: var(--secondary);
  text-decoration: none;
}

@media screen and (max-width: 767.98px) {

  div.ccm-page .footer .banner {
    display: flex;
    flex-direction: column;
    padding: 0px 15px;
  }
}

div.ccm-page #top-footer {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

div.ccm-page #bottom-footer {
  color: #fff;
  background-color: #584C4C;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

div.ccm-page #bottom-footer h5,
div.ccm-page #bottom-footer .copyright {
  color: #fff;
}

div.ccm-page #bottom-footer .copyright {
  font-size: 0.75rem;
  line-height: 1.2;
  margin-top: 1rem;
}

div.ccm-page #bottom-footer .ccm-block-social-links a > .fa {
  color: #fff;
}

div.ccm-page #bottom-footer .ccm-block-social-links a > .fa:hover,
div.ccm-page #bottom-footer .ccm-block-social-links a > .fa:active,
div.ccm-page #bottom-footer .ccm-block-social-links a > .fa:focus {
  color: var(--secondary);
}

div.ccm-page #bottom-footer .logo {
  display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 767.98px) {
  div.ccm-page #bottom-footer .logo {
    justify-content: flex-start;
    margin-top: 0.5rem;
  }
}

div.ccm-page .footer .banner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  gap: 1.5rem;
}

div.ccm-page .footer .banner img {
  max-height: 40px;
}

@media screen and (max-width: 1199.98px) {
  div.ccm-page .footer .banner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  div.ccm-page .footer .banner img {
    max-height: 32px;
  }
}

/* side nav menu
-------------------------------------------------- */

div.ccm-page #sidebar h3 {
  color: var(--default);
  font-size: 1.125rem;
  margin-bottom: 2px;
  padding: 20px 10px 20px 1.25rem;
  border-top: 5px solid var(--accent);
}

div.ccm-page ul.seren-vertical-menu {
  margin-bottom: 20px;
  border-top: 1px solid #ccc;
}

div.ccm-page ul.seren-vertical-menu > li {
  position: relative;
  z-index: 0;
  border-bottom: 1px solid #ccc;
  transition: all 0.5s;
  width: 100%;
}

div.ccm-page ul.seren-vertical-menu > li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--secondary) 25%, transparent),
    color-mix(in srgb, var(--secondary) 5%, transparent)
  );
  opacity: 0;
  transition: opacity 0.5s;
}

div.ccm-page ul.seren-vertical-menu > li:hover::before {
  opacity: 1;
}

div.ccm-page ul.seren-vertical-menu > li > a {
  color: var(--default);
  margin-left: 2rem;
  padding: 13px 10px;
  text-decoration: none !important;
  display: block;
}

div.ccm-page ul.seren-vertical-menu > li > a:focus,
div.ccm-page ul.seren-vertical-menu > li > a:hover {
  background-color: transparent !important;
  text-decoration: none;
  transition: color 0.5s ease 0s;
}

div.ccm-page ul.seren-vertical-menu > li > a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f105";
  margin-left: -1.5rem;
  padding-right: 0.5rem;
  transition: color 0.5s ease 0s;
}

div.ccm-page ul.seren-vertical-menu > li > a:hover:before {
  color: var(--accent) !important;
}

div.ccm-page ul.seren-vertical-menu > li.selected,
div.ccm-page ul.seren-vertical-menu > li.selected a {
  font-weight: 600;
  background: var(--secondary);
}

div.ccm-page ul.seren-vertical-menu > li.selected a:before {
  color: var(--accent) !important;
}

div.ccm-page ul.seren-vertical-menu > li > ul > li {
  text-align: right;
  list-style: none;
  padding: 0 0.5rem 0.5rem;
}

div.ccm-page ul.seren-vertical-menu > li > ul > li > a {
  text-decoration: none !important;
  padding: 0.5rem 0;
}

div.ccm-page ul.seren-vertical-menu > li > ul > li > a:hover:after {
  color: var(--accent) !important;
  transition: color 1s ease 0s;
}

div.ccm-page ul.seren-vertical-menu > li > ul > li.selected {
  color: var(--accent);
  font-weight: 600;
}

div.ccm-page ul.seren-vertical-menu > li > ul > li.selected > a {
  color: var(--accent);
}

div.ccm-page ul.seren-vertical-menu > li > ul > li.selected > a:after,
div.ccm-page ul.seren-vertical-menu > li > ul > li.selected > a:focus:after,
div.ccm-page ul.seren-vertical-menu > li > ul > li.selected > a:hover:after {
  color: var(--accent) !important;
}

div.ccm-page .seren-vertical-menu .collapse > li {
  border: none;
}

div.ccm-page .seren-vertical-menu .collapse > li > a:focus,
div.ccm-page .seren-vertical-menu .collapse > li > a:hover {
  background-color: transparent !important;
  text-decoration: none;
}

div.ccm-page .vertical-menu-title > small:before {
  content: "\A";
  white-space: pre;
}

div.ccm-page .vertical-menu-title > small {
  font-size: inherit;
}

@media screen and (max-width: 767.98px) {
  div.ccm-page .vertical-menu-title > small:before {
    content: " ";
    white-space: pre;
  }
}

/* btn
-------------------------------------------------- */

div.ccm-page .btn {
  border-radius: 50px;
  font-weight: 500;
  padding: 0.725rem 1.75rem 0.5rem;
}

div.ccm-page #main-section a.btn,
div.ccm-page #main-section .btn {
  text-decoration: none;
}

div.ccm-page .btn-group-lg > .btn,
div.ccm-page .btn-lg {
  border-width: 2px;
}

div.ccm-page .btn-sm {
  font-size: 0.875rem;
}

div.ccm-page .btn-xlg {
  padding: 16px 24px;
  line-height: 1.3333333;
  border-width: 3px;
}

div.ccm-page a.btn-normal,
div.ccm-page .btn-normal {
  border-color: var(--default);
  color: var(--default);
  background-color: #fff;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
}

div.ccm-page a.btn-normal:hover,
div.ccm-page a.btn-normal:focus,
div.ccm-page a.btn-normal:active,
div.ccm-page .btn-normal:hover,
div.ccm-page .btn-normal:focus,
div.ccm-page .btn-normal:active {
  color: #fff;
  background-color: var(--accent);
  border-color: var(--accent);
  transition: all 0.3s ease-in;
}

div.ccm-page a.btn-normal i,
div.ccm-page .btn-normal i {
  color: var(--accent);
}

div.ccm-page a.btn-normal:hover i,
div.ccm-page a.btn-normal:focus i,
div.ccm-page a.btn-normal:active i,
div.ccm-page .btn-normal:hover i,
div.ccm-page .btn-normal:focus i,
div.ccm-page .btn-normal:active i {
  color: #fff;
}

div.ccm-page .btn-primary {
  border-radius: 50px;
  border-color: var(--accent);
  color: #ffffff;
  background-color: var(--accent);
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
}

div.ccm-page .btn-primary:hover,
div.ccm-page .btn-primary:focus,
div.ccm-page .btn-primary:active {
  border-color: var(--accent);
  color: var(--accent);
  background-color: transparent;
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

div.ccm-page a.btn-transparent,
div.ccm-page .btn-transparent {
  border-color: var(--accent);
  color: var(--accent);
  background-color: transparent;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
}

div.ccm-page a.btn-transparent:hover,
div.ccm-page a.btn-transparent:focus,
div.ccm-page a.btn-transparent:active,
div.ccm-page .btn-transparent:hover,
div.ccm-page .btn-transparent:focus,
div.ccm-page .btn-transparent:active {
  color: #fff;
  background-color: var(--accent);
  border-color: var(--accent);
  transition: all 0.3s ease-in;
}

div.ccm-page a.btn-light-transparent,
div.ccm-page .btn-light-transparent {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
  transition: all 0.2s ease-out;
}

div.ccm-page a.btn-light-transparent:hover,
div.ccm-page a.btn-light-transparent:focus,
div.ccm-page a.btn-light-transparent:active,
div.ccm-page .btn-light-transparent:hover,
div.ccm-page .btn-light-transparent:focus,
div.ccm-page .btn-light-transparent:active {
  color: #333;
  background-color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 1);
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

div.ccm-page a.btn-dark-transparent,
div.ccm-page .btn-dark-transparent {
  border-color: #000;
  color: #000;
  background-color: transparent;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
}

div.ccm-page a.btn-dark-transparent:hover,
div.ccm-page a.btn-dark-transparent:focus,
div.ccm-page a.btn-dark-transparent:active,
div.ccm-page .btn-dark-transparent:hover,
div.ccm-page .btn-dark-transparent:focus,
div.ccm-page .btn-dark-transparent:active {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.8);
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

/* spacer
-------------------------------------------------- */

div.ccm-page .spacer-10 {
  height: 10px;
}

div.ccm-page .spacer-20 {
  height: 20px;
}

div.ccm-page .spacer-30 {
  height: 30px;
}

div.ccm-page .spacer-40 {
  height: 40px;
}

div.ccm-page .spacer-50 {
  height: 50px;
}

div.ccm-page .spacer-60 {
  height: 60px;
}

div.ccm-page .spacer-70 {
  height: 70px;
}

div.ccm-page .spacer-80 {
  height: 80px;
}

div.ccm-page .spacer-90 {
  height: 90px;
}

div.ccm-page .spacer-100 {
  height: 100px;
}

/* social-links
-------------------------------------------------- */

div.ccm-page .ccm-block-social-links a > .fa {
  color: #000;
  transition: color 1s ease-in-out;
  font-size: 18px;
}

div.ccm-page .ccm-block-social-links a > .fa:hover,
div.ccm-page .ccm-block-social-links a > .fa:active,
div.ccm-page .ccm-block-social-links a > .fa:focus {
  color: var(--accent);
  font-size: 18px;
}

/* form
-------------------------------------------------- */

div.ccm-page input[type="text"],
div.ccm-page input[type="email"],
div.ccm-page input[type="tel"],
div.ccm-page input[type="search"],
div.ccm-page input[type="url"],
div.ccm-page input[type="password"],
div.ccm-page input,
div.ccm-page input.form-control,
div.ccm-page .ui-autocomplete-input,
div.ccm-page textarea,
div.ccm-page .uneditable-input {
  border-radius: 0;
}

div.ccm-page div.ccm-block-type-form span.text-muted {
  color: #ccc;
}

/* pagenation
-------------------------------------------------- */

div.ccm-page .pagination > li:first-child > a,
div.ccm-page .pagination > li:first-child > span {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: 0;
}

div.ccm-page .pagination > li:last-child > a,
div.ccm-page .pagination > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

div.ccm-page .pagination > .active > a,
div.ccm-page .pagination > .active > a:focus,
div.ccm-page .pagination > .active > a:hover,
div.ccm-page .pagination > .active > span,
div.ccm-page .pagination > .active > span:focus,
div.ccm-page .pagination > .active > span:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

div.ccm-page .pagination a {
  color: #333;
}

/* list
-------------------------------------------------- */

div.ccm-page .list {
  counter-reset: counter-name;
  padding: 0;
  margin: 0;
}
div.ccm-page ul.list {
  counter-reset: counter-name;
  padding-left: 0;
  margin-bottom: 2rem;
}
div.ccm-page ul.list li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 0.25rem 1.75rem;
}

div.ccm-page .list li::before {
  content: "";
  background-color: var(--accent);
  width: 5px;
  height: 5px;
  border-radius: 10px;
  position: absolute;
  left: 0.5rem;
  top: 0.625rem;
  margin: auto 0;
  padding: 4px;
}

div.ccm-page ul.bordered {
  counter-reset: counter-name;
  padding-left: 0;
  margin-bottom: 2rem;
}

div.ccm-page ul.bordered li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 1rem 0 1rem 1.75rem;
  border-bottom: 1px dotted var(--accent);
}

div.ccm-page ul.bordered li::before {
  content: "";
  background-color: var(--accent);
  width: 5px;
  height: 5px;
  border-radius: 10px;
  position: absolute;
  left: 0.5rem;
  top: 1.625rem;
  margin: auto 0;
  padding: 4px;
}

div.ccm-page ol {
  counter-reset: counter-name;
  padding-left: 0;
}

div.ccm-page ol li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 0.25rem 2.4rem;
}

div.ccm-page ol.bordered {
  counter-reset: counter-name;
  padding-left: 0;
}

div.ccm-page ol.bordered li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 1rem 0 1rem 2.4rem;
  border-bottom: 1px dotted var(--accent);
}

div.ccm-page ol.bordered li:last-child {
  border-bottom: none;
}

div.ccm-page ol.no-border {
  counter-reset: counter-name;
  padding-left: 0;
}

div.ccm-page ol.no-border li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 0 2.4rem;
  border-bottom-style: none !important;
}

div.ccm-page ol li:before,
div.ccm-page ol.bordered li:before,
div.ccm-page ol.no-border li:before {
  counter-increment: counter-name;
  content: counter(counter-name) ".";
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
  display: block;
  width: 1.6rem;
  text-align: right;
}

/* news, history
-------------------------------------------------- */

div.ccm-page .news-wrapper {
  margin-bottom: 2rem;
}

div.ccm-page dl.news,
div.ccm-page dl.history {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

div.ccm-page dl.news dt,
div.ccm-page dl.news dd,
div.ccm-page dl.history dt,
div.ccm-page dl.history dd {
  padding: 1.25rem 0.25rem;
  border-bottom: 1px dotted #ccc;
  box-sizing: border-box;
}

div.ccm-page dl.news dt,
div.ccm-page dl.history dt {
  color: var(--accent);
  width: 16%;
  font-variant-numeric: tabular-nums;
}

div.ccm-page dl.news dd,
div.ccm-page dl.history dd {
  margin: 0;
  width: 84%;
}

div.ccm-page dl.news dd p,
div.ccm-page dl.history dd p {
  font-size: inherit !important;
  line-height: inherit !important;
}

div.ccm-page dl.news dd p:last-of-type,
div.ccm-page dl.history dd p:last-of-type {
  margin-bottom: 0 !important;
}

div.ccm-page dl.history dt:last-of-type,
div.ccm-page dl.history dd:last-of-type {
  border-bottom: none;
}

@media screen and (max-width: 1199.98px) {
  div.ccm-page dl.news dt,
  div.ccm-page dl.history dt {
    width: 20%;
  }

  div.ccm-page dl.news dd,
  div.ccm-page dl.history dd {
    width: 80%;
  }
}

@media screen and (max-width: 991.98px) {
  div.ccm-page .news-wrapper {
    margin-bottom: 24px;
  }
  div.ccm-page dl.news dt,
  div.ccm-page dl.history dt {
    width: 100%;
    padding: 0.75rem 0.25rem 0;
    border-bottom: none;
  }

  div.ccm-page dl.news dd,
  div.ccm-page dl.history dd {
    width: 100%;
    padding: 0.25rem 0.25rem 0.75rem;
  }
}

/* faq
-------------------------------------------------- */
div.ccm-page dl.faq {
  border-bottom: 1px dotted #666666;
}

div.ccm-page dl.faq dt,
div.ccm-page dl.faq dd {
  position: relative;
  padding-top: 0.875rem;
  padding-left: 2.5rem;
}

div.ccm-page dl.faq dt::before,
div.ccm-page dl.faq dd::before {
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}

div.ccm-page dl.faq dt::before {
  content: "Q";
  color: var(--accent);
}

div.ccm-page dl.faq dd::before {
  content: "A";
  color: var(--secondary);
}

div.ccm-page dl.faq p:last-child {
  margin-bottom: 0 !important;
}

/* blog
-------------------------------------------------- */

.blog-page-list {
  padding: 1.2rem 0;
  border-bottom: 1px dotted #ccc;
}

.blog-page-list h4 {
  margin-bottom: 5px !important;
  margin-top: 0 !important;
}

div.blog-page-title {
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 40px;
}

div.blog-page-title h3 {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

div.blog-page-title span.page-date {
  margin-right: 2rem;
}

div.blog-page-title span.page-date,
div.blog-page-title span.page-author {
  font-style: italic;
  font-size: 0.85rem;
}

/* block
-------------------------------------------------- */

div.ccm-page .ccm-block-page-list-rss-feed .fa-rss {
  background-color: var(--accent);
  color: #000;
  padding: 3px 5px;
  margin-bottom: 15px;
}

div.ccm-page .ccm-block-page-list-rss-feed .fa-rss:hover {
  background-color: var(--accent);
}

div.ccm-page ul.ccm-block-date-navigation-dates {
  list-style-type: none;
  padding-bottom: 0;
  padding-left: 0;
}

div.ccm-page .ccm-block-date-navigation-dates a {
  text-decoration: none;
}

div.ccm-page .ccm-block-date-navigation-dates a:focus,
div.ccm-page .ccm-block-date-navigation-dates a:active {
  text-decoration: none;
}

div.ccm-page .ccm-block-tags-wrapper a:hover,
div.ccm-page ccm-block-tags-wrapper a:focus {
  text-decoration: none;
}

div.ccm-page .ccm-block-tags-wrapper .ccm-block-tags-tag,
div.ccm-page .ccm-block-tags-wrapper label {
  border-radius: 0;
}

div.ccm-page .ccm-block-tags-wrapper .ccm-block-tags-tag {
  background-color: var(--accent);
  color: #fff;
  padding: 0.125rem 0.25rem;
  transition: all 0.5s 0s ease;
}

div.ccm-page .ccm-block-tags-wrapper a:hover .ccm-block-tags-tag {
  background-color: var(--secondary);
  color: #fff;
}

div.ccm-page .ccm-block-tags-wrapper .label {
  font-size: 100%;
}

/* breadcrumb
-------------------------------------------------- */

div.ccm-page .breadcrumb {
  margin-bottom: 0;
  padding: 0.5rem 0 0;
}

div.ccm-page .breadcrumb li {
  font-size: 0.875rem;
}

div.ccm-page .breadcrumb > li + li:before {
  padding: 0 0.275rem;
  color: #ccc;
  content: "/\00a0";
}

div.ccm-page .breadcrumb li a {
  text-decoration: none;
}

div.ccm-page .breadcrumb a.home::before {
  content: url("../images/icon-home-breadcrumbs.svg");
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.8);
}

/* Page-top
-------------------------------------------------- */

div.ccm-page #back-top {
  width: 46px;
  height: 46px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

div.ccm-page #back-top a {
  background: rgba(88, 76, 76, 0.75);
  text-decoration: none;
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 46px;
  transition: 0.5s;
  position: relative;
}

div.ccm-page #back-top a > i {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

div.ccm-page #back-top a:hover {
  background: rgba(88, 76, 76, 1);
  text-decoration: none;
}

/* Link
-------------------------------------------------- */

div.ccm-page ul.link {
  list-style: none;
  padding-left: 0;
}

div.ccm-page ul.link > li {
  border-bottom: 1px solid #ccc;
}

div.ccm-page ul.link > li:first-child {
  border-top: 1px solid #ccc;
}

div.ccm-page ul.link ul {
  list-style: none;
  padding-left: 0;
}

div.ccm-page ul.link li {
  color: var(--default);
  display: block;
  padding: 3px 0px 3px 22px;
  position: relative;
}

div.ccm-page ul.link li a {
  display: block;
  padding: 5px 0;
  text-decoration: none !important;
}

div.ccm-page ul.link li a:focus,
ul.link li a:hover {
  background-color: transparent !important;
  text-decoration: underline !important;
}

div.ccm-page ul.mini-bar {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}

div.ccm-page ul.mini-bar > li {
  border-bottom: 1px solid #ccc;
  color: var(--default);
  display: block;
  padding: 8px 5px 8px 10px;
  position: relative;
}

div.ccm-page ul.mini-bar > li:first-child {
  border-top: 1px solid #ccc;
}

div.ccm-page ul.mini-bar > li > a {
  display: block;
  position: relative;
  text-decoration: none !important;
}

div.ccm-page ul.mini-bar > li > a:focus,
.ccm-page ul.mini-bar > li > a:hover {
  background-color: transparent !important;
  text-decoration: none;
}

div.ccm-page ul.mini-bar > li.selected {
  color: #888;
  background-color: #fdeaeb;
}

div.ccm-page ul.mini-bar > li.selected > a {
  color: #888 !important;
}

div.ccm-page ul.mini-bar > li.selected > a:focus,
.ccm-page ul.mini-bar > li.selected > a:hover {
  color: #1f1f1f !important;
}

div.ccm-page ul.mini-bar > li.selected > a:before {
  color: #fff !important;
}

div.ccm-page ul.mini-bar > li.selected > a:focus:before,
.ccm-page ul.mini-bar > li.selected > a:hover:before {
  color: #fff !important;
}

/* Horizontal Navigation
----------------------------------------------------------------- */
div.ccm-page .horizontal-nav {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}

div.ccm-page .horizontal-nav > li {
  display: inline;
  margin: 0px;
  padding: 0px;
}

div.ccm-page .horizontal-nav > li > a {
  border: 1px solid #222;
  border-top: none;
  border-bottom: none;
  padding: 0 1.25rem;
  margin-left: -1px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  float: left;
}

div.ccm-page .horizontal-nav > li > a:hover {
  transition: all 0.3s ease;
}

div.ccm-page .horizontal-nav > li:first-child > a {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: 0;
}

div.ccm-page .horizontal-nav > li:last-child > a {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

div.ccm-page .horizontal-nav > .active > a,
div.ccm-page .horizontal-nav > .active > a:focus,
div.ccm-page .horizontal-nav > .active > a:hover {
  font-weight: 600;
}

/* original
----------------------------------------------------------------- */

/* nav-pills
----------------------------------------------------------------- */
div.ccm-page .nav-pills {
  margin-bottom: 1.5rem;
  gap: 8px;
}

div.ccm-page .nav-pills div.nav-item,
div.ccm-page .nav-pills li.nav-item {
  font-weight: 500;
}

div.ccm-page .nav-pills div.nav-item h6,
div.ccm-page .nav-pills li.nav-item h6 {
  font-size: 1.25rem !important;
  margin: 0.125rem 0 0 !important;
}

div.ccm-page .nav-pills div.nav-item:not(:first-child),
div.ccm-page .nav-pills li.nav-item:not(:first-child) {
  margin-left: 2px;
}

div.ccm-page .nav-pills div.nav-item:not(:last-child),
div.ccm-page .nav-pills li.nav-item:not(:last-child) {
  margin-right: 2px;
}

div.ccm-page .nav-pills div.nav-item a,
div.ccm-page .nav-pills li.nav-item a {
  color: #666666;
  background-color: rgb(255, 255, 255, 0.3);
  text-align: left;
  text-decoration: none !important;
  padding: 0.725rem 1.75rem;
  border-radius: 1rem;
  border: 2px solid var(--accent);
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
div.ccm-page .nav-pills div.nav-item a h6,
div.ccm-page .nav-pills li.nav-item a h6 {
  color: #666666;
}
div.ccm-page .nav-pills div.nav-item a i,
div.ccm-page .nav-pills li.nav-item a i {
  color: rgb(var(--accent-rgb), 0.7);
}

div.ccm-page .nav-pills div.nav-item a:hover,
div.ccm-page .nav-pills li.nav-item a:hover {
  color: var(--default);
  background-color: rgb(var(--secondary-rgb), 0.3);
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

div.ccm-page .nav-pills div.nav-item :is(a.active, a.active:focus, a.active:hover),
div.ccm-page .nav-pills li.nav-item :is(a.active, a.active:focus, a.active:hover) {
  color: var(--default);
  background-color: var(--secondary);
  cursor: default;
  pointer-events: none;
}

div.ccm-page .nav-pills div.nav-item a:hover h6,
div.ccm-page .nav-pills li.nav-item a:hover h6,
div.ccm-page .nav-pills div.nav-item :is(a.active, a.active:focus, a.active:hover) h6,
div.ccm-page .nav-pills li.nav-item :is(a.active, a.active:focus, a.active:hover) h6 {
  color: var(--default);
}

div.ccm-page .nav-pills div.nav-item a:hover i,
div.ccm-page .nav-pills li.nav-item a:hover i,
div.ccm-page .nav-pills div.nav-item :is(a.active, a.active:focus, a.active:hover) i,
div.ccm-page .nav-pills li.nav-item :is(a.active, a.active:focus, a.active:hover) i {
  color: var(--accent);
}

div.ccm-page .nav-pills div.nav-item:has(small) > a,
div.ccm-page .nav-pills li.nav-item:has(small) > a {
  flex-grow: 1;
  line-height: 1;
}

div.ccm-page .nav-pills div.nav-item a small::before,
div.ccm-page .nav-pills li.nav-item a small::before {
  content: "\A";
  white-space: pre;
}

@media only screen and (max-width: 767.98px) {
  div.ccm-page .nav-pills {
    flex-flow: column;
  }
}

/* orange
-------------------------------------------------- */
div.ccm-page .text-accent {
  color: var(--accent);
}
div.ccm-page .border-accent {
  border-color: var(--accent) !important;
}
div.ccm-page .bg-accent {
  background-color: var(--accent);
}