﻿/* 21/01/2-26 - accordions */

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 2 version
*/

/* Variables for the colour palette. */
*:root {
  --cecGreen: #206c49;
  --cecRed: #AA272F;
  --cecTurquoise: #0075B0;
  --cecLime: #92D400;
  --cecGold: #FFA100;
  --cecBlue: #2526A9;
  --cecPurple: #6E2585;
  --cecMagenta: #C90062;
}

/* || General styles */
html {
  font-size: 19px;
}

body {
  font-family: 'Inter', sans-serif;
}

/* || Typography */
strong,
b {
  font-weight: 700;
}

hr,
hr:not([size]) {
  height: 2px;
  color: #206c49;
}

main ul li,
main ol li {
  padding-bottom: 10px;
}

.blockquote-footer {
  color: #000;
}

.blockquote {
  font-size: inherit;
}

/* CEC backgrounds */
.bg-cec-green {
  background-color: var(--cecGreen);
}

.bg-cec-red {
  background-color: var(--cecRed);
}

.bg-cec-turquoise {
  background-color: var(--cecTurquoise);
}

.bg-cec-lime {
  background-color: var(--cecLime);
}

.bg-cec-gold {
  background-color: var(--cecGold);
}

.bg-cec-blue {
  background-color: var(--cecBlue);
}

.bg-cec-purple {
  background-color: var(--cecPurple);
}

.bg-cec-magenta {
  background-color: var(--cecMagenta);
}

/* WCAG 2.2 adjustment for target area - links in UL */
.cec-main-col-width ul li a {
  /* margin: 8px 0; */
  padding-top: 8px;
  line-height: 34px;
}

/* || Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #206c49;
  font-weight: 500;
}

p~h2 {
  margin-top: 1.5rem;
}

h1 {
  font-size: calc(1.4rem + 1.5vw);
  margin-bottom: 30px;
}

/* || CEC button */
.cec-pull-column .cec-button,
.cec-button {
  border: 3px solid #206c49;
  margin: 0.5rem 0 1.4rem 0;
  color: #000;
  text-align: left;
  position: relative;
  border-radius: 50rem !important;
  padding: .5rem 2rem .5rem 1rem;
  font-size: 1.25rem;
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  box-shadow: 0 10px 20px -6px rgb(0 0 0 / 12%);
}

.cec-button:after {
  content: ' ';
  display: inline-block;
  border-bottom: 3px solid #206c49;
  border-right: 3px solid #206c49;
  height: 10px;
  width: 10px;
  transform: rotate(-45deg);
  z-index: 10;
  margin-left: 1rem;
  vertical-align: middle;
  position: absolute;
  top: 40%;
  right: 20px;
}

.cec-button:hover:after {
  border-color: #fff;
}

.cec-button:hover {
  background-color: #206c49;
  color: #fff;
  border-color: #6c757d;
}

@media (max-width: 768px) {
  .cec-button {
    padding: .5rem 2rem .5rem 1.7rem;
    font-size: 1.2rem;
  }
}

small a.cec-button {
  font-size: 1rem;
}

/* Home page */
h1.hp-promo-heading {
  font-size: calc(1.375rem + 1.5vw);
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  h1.hp-promo-heading {
    font-size: 2.5rem;
  }
}

.cec-hero,
.hero-unit {
  padding: 1rem 1rem 1rem 1.5rem;
  border-radius: 2px;
  background-color: #f5f9fa;
  margin-bottom: 2.5rem;
  border-left: 0.9rem solid #ffa100;
}

@media (max-width: 768px) {

  .cec-hero,
  .hero-unit {
    padding-right: 1rem;
  }

  .cec-hero input,
  .hero-unit input {
    width: 100%;
  }
}

.cec-hero p:last-of-type,
.hero-unit p:last-of-type {
  margin-bottom: 0;
}

.inset-text {
  padding: 1rem 1rem 1rem 1.5rem;
  margin-bottom: 2.5rem;
  border-left: 0.9rem solid #ffa100;
}

.inset-text p:last-of-type {
  margin-bottom: 0;
}

.cec-widget {
  padding: 1.5rem;
  border-radius: 2px;
  background-color: #f5f9fa;
}

.cec-widget legend {
  font-size: 1.75rem;
  line-height: 1.2;
}

.cec-widget p:last-of-type {
  margin-bottom: 0;
}

.cec-widget__button {
  background: #206c49;
  color: #fff;
}

.cec-widget__button:hover {
  background: #1a5c3e;
  color: #fff;
}

/* || Header and Main Navigation */
.cec-header {
  padding: 15px 0 20px 0;
}

.cec-search-site input {
  border: 2px solid #206c49;
}

.cec-search-site button {
  background: #206c49;
  color: #fff;
  font-weight: 700;
}

.cec-search-site {
  clear: both;
  padding-top: 30px;
}

.cec-search-site {
  padding-top: 15px;
}

@media (min-width: 992px) {
  .cec-search-site {
    clear: right;
    width: 65%;
    float: right;
  }
}

.icon-bank ul li a span {
  color: #212529;
  border-bottom: 1px solid #878c91;
  font-weight: 700;
}

.icon-bank ul li a span:hover {
  color: #000;
  border-bottom: 1px solid #000;
}

@media (max-width: 450px) {
  a.navbar-brand {
    font-size: 80%;
  }

  a.nav-link {
    padding: 0;
    margin-right: 9px;
  }
}

@media (max-width: 1200px) {
  a.nav-link {
    text-decoration: none;
  }
}

.key-task-icon {
  font-size: 2.5rem;
  position: absolute;
  top: 25%;
  right: 7%;
  color: #206c49;
  fill: #206c49;
  max-height: 50px;
  width: 50px;
}

ul li a:hover .key-task-icon {
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(325deg) brightness(101%) contrast(135%);
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(325deg) brightness(101%) contrast(102%);
}

.key-task-icon:hover {
  color: #fff;
}

/* Icon on key tasks */
ul.cec-tile-keytask li:hover a span {
  color: #fff;
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 19px;
  }

  input.sys_searchbox {
    width: 80%;
  }
}

.cec-header {
  -webkit-box-shadow: 0px 4px 20px 0px rgb(9 61 244 / 8%);
  box-shadow: 0px 4px 20px 0px rgb(9 61 244 / 8%);
  border-bottom: 1px solid #efefef;
  position: relative;
}

.cec-header a {
  display: block;
}

.cec-main-col-width {
  max-width: 35rem;
}

/* || Key tasks */
.cec-tile li a {
  font-size: 1.15rem;
  min-height: 109px;
  color: #212529;
  padding-left: 1rem;
  padding-right: 4.6rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  border: 2px solid #206c49;
  border-bottom: 5px solid #206c49;
  border-radius: .25rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  -webkit-box-shadow: 0 2px 4px 0 rgb(136 144 195 / 20%), 0 5px 15px 0 rgb(37 44 97 / 6%);
  box-shadow: 0 2px 4px 0 rgb(136 144 195 / 20%), 0 5px 15px 0 rgb(37 44 97 / 6%);
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#f9f9f9));
  background: linear-gradient(to right, #fff, #f9f9f9);
  text-decoration: none;
  -webkit-transition: color .15s, ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  transition: color .15s, ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

@media (max-width: 576px) {
  .cec-tile li a {
    padding-right: 4.8rem;
  }
}

.cec-tile li a:hover {
  background-color: #206c49;
  background: -webkit-gradient(linear, left top, right top, from(#23764F), to(#1e6544));
  background: linear-gradient(to right, #23764F, #1e6544);
  color: #fff;
}

.cec-tile li a:after {
  position: absolute;
  top: 40%;
  right: 8%;
  content: ' ';
  display: inline-block;
  border-bottom: 3px solid #212529;
  border-right: 3px solid #212529;
  height: 20px;
  width: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-color: #206c49;
  -webkit-transition: right 0.5s ease;
  transition: right 0.5s ease;
}

.cec-tile li a:hover i {
  color: #fff;
}

.cec-tile li a:hover:after {
  border-color: #fff;
  right: 7%;
}

.cec-tile.cec-tile-keytask li a {
  border-bottom: 6px solid #206c49;
  border-radius: 3px 3px 0 0;
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.cec-tile.cec-tile-keytask li a:after {
  border: none;
}

/* || Task Panels */
.key-tasks {
  padding: 60px 0;
  /* background-color: #2526a9; 
background-color: #206c49; */
  background-color: #2526a933;
  position: relative;
}

.key-task-bg {
  background-color: #ecf3ec;
  position: relative;
}

.key-tasks:before,
.key-task-bg:before,
.footer-header:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.54;
  background-image: repeating-linear-gradient(135deg, rgba(189, 189, 189, 0.1) 0px, rgba(189, 189, 189, 0.1) 2px, transparent 2px, transparent 4px), -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background-image: repeating-linear-gradient(135deg, rgba(189, 189, 189, 0.1) 0px, rgba(189, 189, 189, 0.1) 2px, transparent 2px, transparent 4px), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
  background-size: cover;
}

.border-gey2 {
  border-color: #dee9ec !important;
}

/* || Footer */
footer {
  background: #206c49;
  border-top: 2px solid #206c49;
}

.footer-header {
  background-color: #ecf3ec;
  position: relative;
}

footer .footer-header ul li a {
  color: #212529;
  font-weight: 500;
  line-height: 2rem;
  padding-top: 10px;
  padding-bottom: 11px;
  border: none;
  text-decoration: underline #878c91;
  text-underline-offset: 0.3em;
  min-width: 44px;
  transition: text-decoration-color 0.8s ease-in-out;
  display: inline-block;
}

footer .footer-header ul li a:hover {
  text-decoration: underline #000;
  border: none;
}

a.footer-copyright,
a.footer-copyright:hover,
a.footer-copyright:active {
  color: #fff;
  border-bottom: none;
  text-decoration: underline;
  min-height: 44px;
  display: inline-block;
}

ul.cec-sub-nav li {
  margin-bottom: 25px;
}

.cec-sub-nav li a {
  color: #0248b1;
  border-bottom: 1px solid #024cbb;
  text-decoration: none;
}

.cec-footer-logo {
  margin-top: -60px;
}

.nav-item a span {
  color: #024cbb;
  border-bottom: 1px solid #024cbb;
  text-decoration: none;
}

#webchat-wrapper button:focus.react-film__main__overlay {
  outline: 4px solid rbg(0, 0, 0, 0) !important;
}

#map-tab:focus,
#table-tab:focus,
.accordion-button:focus,
#webchat-wrapper button:focus,
#webchat-wrapper input:focus,
#webchat-wrapper .webchat__basic-transcript:focus,
#webchat-wrapper .webchat__basic-transcript__terminator:focus,
#webchat-wrapper div:focus,
a:focus,
.modal-pic:focus,
.btn.close:focus,
header input:focus,
button.cec-button:focus {
  outline: 4px solid #212529 !important;
  outline-offset: 0.063rem;
  -webkit-transition: outline-color 0.2s ease-out;
  transition: outline-color 0.2s ease-out;
  /* Apply a thick yellow box-shadow with
a thin dark blue indicator in the middle */
  box-shadow: 0 0 0 4px #f9f9d1, 0 0 0 4px #396196, 0 0 4px 8px #f9f9d1;
}

/* WCAG 2.2 adjustment to stop black oulne on green */
ol.breadcrumb.cec-breadcrumb li.breadcrumb-item a:focus,
a.footer-copyright:focus {
  outline: 4px solid #f1f36d !important;
}

a {
  color: #0248b1;
}

p a,
main a,
.breadcrumb li a,
a.skip-to-content,
.cec-promo a,
main ul li a,
main ul a,
main ol a,
ul.sys_itemslist li a,
.usr_cec-menu-item a,
.usr_cec-menu-currentitem a,
td a,
.hero-unit ul li a,
.bg-light-purple a,
.bg-light-green a,
#SearchResults_List a,
div#PromotedSearch_List a {
  color: #0248b1;
  border-bottom: 1px solid #024cbb;
  text-decoration: none;
}

main a {
  padding-top: 2px;
}

a:hover {
  color: #0248b1;
}

.skip-to-content {
  top: 1em;
  left: 1em;
  background-color: White;
  z-index: 100;
}

/* || Video */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

/* || User table styles */
.usr_TableDefault {
  /* margin-bottom: 3rem!important; removed 11.02.22 */
  padding: .5rem .5rem;
  border-color: #dee2e6;
  border-collapse: collapse;
  width: 100%;
}

/* Adjust headings that follow on from tables */
.usr_TableDefault+h2,
.usr_TableDefault+h3 {
  margin-top: 3rem;
}

.usr_TableDefault tr:nth-child(even) {
  background-color: #f5f9fa;
}

table.usr_TableDefault th[scope=col] {
  border-bottom: 3px solid #206c49;
  padding-left: 0.4rem;
}

table.usr_TableDefault th[scope=row] {
  border-right: 3px solid #206c49;
  border-bottom-width: 1px;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

table.usr_TableDefault th:first-of-type {
  padding-left: 0;
}

.usr_TableDefault td {
  padding: .5rem .5rem;
  border-bottom-width: 1px;
}

/* || Table responsive styles */
td {
  vertical-align: top;
}

.table-responsive {
  margin-bottom: 2rem;
  overflow: initial;
}

table caption {
  caption-side: top;
  color: #212529;
}

@media screen and (max-width: 770px) {
  .table-responsive {
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
    border-top: 3px solid #206c49;
    border-bottom: 3px solid #206c49;
    padding: 10px 0;
    margin: 20px 0 25px 0;
  }

  .table-responsive:before {
    content: "Horizontal scroll to view more of the table";
    color: #206c49;
    font-size: 0.95rem;
    line-height: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='grey' class='bi bi-chevron-double-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M3.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L9.293 8 3.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3Cpath fill-rule='evenodd' d='M7.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L13.293 8 7.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: right center;
    width: 100%;
    display: block;
    padding: 10px 50px 0 0;
  }

  .table-responsive:after {
    content: "Horizontal scroll to view more of the table";
    color: #206c49;
    font-size: 0.95rem;
    line-height: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='grey' class='bi bi-chevron-double-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M3.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L9.293 8 3.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3Cpath fill-rule='evenodd' d='M7.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L13.293 8 7.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: right center;
    width: 100%;
    display: block;
    padding: 10px 50px 10px 0;
  }
}

.table-responsive .usr_TableDefault {
  margin-bottom: 5px;
}

/* || CSS Accordion */
.access-acc-container {
  text-align: left;
  margin: 30px auto 50px auto;
  position: relative;
}

.access-acc-container input[type=checkbox],
.access-acc-container input[type=radio] {
  background-color: transparent;
  border: 1px solid transparent;
  /* height changed from 1px so that focus-visible doesn't show it */
  height: 0;
  position: absolute;
  width: 1px;
  margin: 4px 0 0 0;
}

.access-acc-container input[type=checkbox]+label,
.access-acc-container input[type=radio]+label {
  border-bottom: 1px solid #206c49;
  color: #0b0c0c;
  cursor: pointer;
  display: block;
  font-size: inherit;
  font-weight: 700;
  line-height: 32px;
  padding: 10px 100px 10px 0;
  position: relative;
  z-index: 20;
  background: #ecf3ec;
  padding-left: 15px;
}

.access-acc-container input[type=checkbox]+label:before,
.access-acc-container input[type=checkbox]+label:after {
  display: inline-block;
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}

/* view and close message next to the chevron */
.access-acc-container input[type=checkbox]+label:after {
  position: absolute;
  font-size: 80%;
  font-family: inherit;
  color: #000;
  content: url('/images/SVG/chevron-down.svg');
  right: 25px;
  top: 10px;
}

.access-acc-container input[type=checkbox]:checked+label:after {
  -webkit-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  content: url('/images/SVG/chevron-up.svg');
  right: 25px;
  top: 10px;
}

/* Spacebar message before the accordion starts */
.access-acc-container:before {
  content: "Keyboard navigation: use the spacebar to expand the accordion.";
  font-size: 90%;
  color: #1c5e43;
  display: block;
  margin-bottom: 2rem;
}

.access-acc-container input[type=checkbox]+label:first-of-type {
  margin-top: 20px;
}

.access-acc-container input[type=checkbox]+label:hover,
.access-acc-container input[type=radio]+label:hover {
  background: #c0d8c0;
}

.access-acc-container input[type=checkbox]:checked+label,
.access-acc-container input[type=radio]:checked+label {
  background: #c0d8c0;
}

.access-acc-container input[type=checkbox]:focus+label,
.access-acc-container input[type=radio]:focus+label {
  background: #fff;
  outline: 4px solid #212529 !important;
  outline-offset: 0.063rem;
  -webkit-transition: outline-color 0.2s ease-out;
  transition: outline-color 0.2s ease-out;
}

.access-acc-container input[type=checkbox]:checked+label:hover,
.access-acc-container input[type=radio]:checked+label:hover {
  background: #fff;
}

.access-acc-container input[type=checkbox]:checked+label:after,
.access-acc-container input[type=radio]:checked+label:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.access-acc-container input[type=checkbox]+label+article {
  width: 0;
  height: 0;
  max-height: 0;
  overflow: hidden;
  /* 0, 0, hidden; - Content is ignored by screen readers, but tab key still steps through hidden elements */
  padding: 2rem 0;
}

.access-acc-container input[type=checkbox]:checked+label+article,
.access-acc-container input[type=radio]:checked+label+article {
  height: auto;
  width: auto;
  max-height: 60000px;
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

.access-acc-container input[type=checkbox]+label+article {
  padding: 0.5rem 0;
}

.access-acc-container article {
  border-bottom: 1px solid rgba(32, 108, 73, 0.25);
}

.icon-chevron-down {
  float: right;
  margin-top: 7px;
}

.access-acc-container.resp-table input[type=checkbox]+label+article {
  overflow-x: scroll;
  /* Added to combat large tables not scrolling inside the accordion */
}

/* Expand all button styles */
.btn-outline-success {
  color: #206c49;
  border-color: #206c49;
  border-width: 2px;
}

.expand-all {
  color: #333333;
}

/* || Promotional Elements */
.promo-heading {
  /* font-family: 'Roboto', sans-serif; */
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 500;
}

.promo-heading--cec-green {
  color: #206c49;
}

.cec-green {
  color: #206c49;
}

.cec-cent-promo-txt {
  overflow: hidden;
}

.bg-beige {
  background-color: #FCF1E3;
}

.bg-light-purple {
  background-color: #d5c8e3;
}

.bg-light-green {
  background-color: #ecf3ec;
}

.bg-tog-for-chil-green {
  background-color: rgb(1 85 57 / 100%);
}

.bg-cec-green {
  background-color: #206c49;
}

div.bg-cec-green a:focus {
  outline: 3px #fff solid !important;
}

.bg-cec-central-promo-section {
  background: radial-gradient(circle, rgba(157, 184, 157, 0) 0%, rgba(236, 243, 236, 1) 100%);
}

@media (min-width: 768px) {
  .cec-cent-promo-txt-wrap {
    position: absolute;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }

  .cec-cent-promo-txt {
    border-radius: 5px;
  }

  .bg-tog-for-chil-green {
    background-color: rgb(1 85 57 / 92%);
  }
}

/* Pull columns */
@media screen and (min-width: 1600px) {
  .cec-pull-column {
    margin-left: 87px;
  }

  .cec-pull-column.cec-pull-column-right {
    margin: 0 87px 0 0;
  }
}

.cec-pull-column ul {
  list-style: none;
  /* Remove default bullets */
}

/*
.cec-pull-column ul li::before {
content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
/* color: #206c49; /* Changing the color */
/* font-weight: 700; /* If you want it to be bold */
/* display: inline-block; /* Needed to add space between the bullet and the text */
/* width: 1em; /* Also needed for space (tweak if needed) */
/* margin-left: -1em; /* Also needed for space (tweak if needed) */
/*} */
.cec-meta-content {
  -webkit-box-shadow: 1px 4px 15px 0 rgb(0 0 0 / 15%);
  box-shadow: 1px 4px 15px 0 rgb(0 0 0 / 15%);
  border-radius: 4px;
  margin: -20px auto;
  position: relative;
  background-color: #fff;
}

.cec-meta-content-b {
  -webkit-box-shadow: 1px 4px 15px 0 rgb(0 0 0 / 15%);
  box-shadow: 1px 4px 15px 0 rgb(0 0 0 / 15%);
  border-radius: 4px;
  position: relative;
  background-color: #fff;
}




@media (min-width: 1200px) {
  .cec-meta-content:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 35%;
    width: 20%;
    height: 20%;
    background-image: url("/images/non_user/svg/columns-gap.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: -10em;
    opacity: 0.10;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .cec-meta-content:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 35%;
    width: 20%;
    height: 20%;
    background-image: url("/images/non_user/svg/columns-gap.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    right: -10em;
    opacity: 0.10;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

/* Full width image with side overlay */
@media (min-width: 992px) {
  .side-overlay {
    width: 400px;
    position: absolute;
  }

  .side-overlay-section {
    min-height: 340px;
  }
}

@media (min-width: 1200px) {
  .side-overlay {
    width: 600px;
  }
}

@media (min-width: 1300px) {
  .side-overlay {
    margin-top: 8rem !important;
  }
}

@media (min-width: 1400px) {
  .side-overlay {
    margin-top: 8.5rem !important;
  }

  .side-overlay-section {
    min-height: 355px;
  }
}

@media (min-width: 1600px) {
  .side-overlay {
    margin-top: 11rem !important;
  }

  .side-overlay-section {
    min-height: 395px;
  }
}

/* BUTTON TEST STYLES */
.btn-example-1 {
  border: 2px solid #206c49;
  color: #000;
  text-align: left;
  position: relative;
  padding-right: 2em;
}

@media (max-width: 768px) {
  .btn-example-1 {
    padding: .5rem 2rem .5rem 1.7rem;
    font-size: 1.2rem;
  }
}

.btn-example-1:hover {
  background-color: #206c49;
}

.btn-chevron:after {
  content: ' ';
  display: inline-block;
  border-bottom: 2px solid #206c49;
  border-right: 2px solid #206c49;
  height: 10px;
  width: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 10;
  margin-left: 1rem;
  vertical-align: middle;
  position: absolute;
  top: 40%;
  right: 20px;
}

.btn-chevron:hover:after {
  border-color: #fff;
}

/* || Home page news */
.list-group-item.active {
  background-color: #206c49;
  border-color: #206c49;
}

.featured-campaign a {
  padding: 20px 0 20px 15px;
  ;
  text-decoration: none;
  border: none;
  color: black;
  display: block;
  background-color: #fff;
  border-bottom: 2px solid #206c49;
  border-top: 2px solid #fff;
  -webkit-transition: border-top .4s;
  transition: border-top .4s;
}

.featured-campaign a:hover {
  background-color: #f8f9fa;
}

.featured-campaign a:focus {
  outline-offset: -0.999rem;
}

.cec-latest-news {
  list-style-type: none;
}

ul.cec-latest-news li a {
  border: none;
  border-bottom: 2px solid #206c49;
}

.cec-latest-news li a p:first-of-type {
  font-weight: 700;
}

.key-tasks h2 {
  border-bottom: 2px solid #206c49;
  padding-bottom: 20px;
}

/* Contensis user select styles */
.usr_CaptionHide {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Rate this page example */
.hide {
  display: none;
}

.hide.show {
  display: block;
}

/* Additional styles for breadcrumb */
ol.cec-breadcrumb li a {
  color: #fff;
  font-weight: 700;
  line-height: 2rem;
  padding-top: 10px;
  padding-bottom: 11px;
  border: none;
  text-decoration: underline #e7e4e4;
  text-underline-offset: 0.3em;
  transition: text-decoration-color 0.5s;
  min-height: 44px;
}

ol.cec-breadcrumb li a:hover {
  text-decoration-color: #fff;
}

.cec-breadcrumb-bg {
  background: #206c49;
}

ol.cec-breadcrumb li.breadcrumb-item {
  color: #fff;
  font-weight: 700;
  line-height: 2rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

@media (max-width: 768px) {

  ol.cec-breadcrumb li a,
  ol.cec-breadcrumb li.breadcrumb-item {
    font-size: 16px;
  }
}

/* ----------- Contensis Search controls ------------- */
.sys_search-query-control {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sys_search-query-control label {
  position: absolute;
  top: -1000em;
  color: #000;
}

#SearchQueryControl_SearchButton,
#SearchQueryControl_SearchButton:visited,
#SearchQueryControl_SearchButton:active {
  color: #fff;
  background-color: #206c49;
  border-color: #206c49;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  padding: .375rem .75rem;
  font-size: 1rem;
  border-radius: .25rem;
  -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  margin-left: .5rem !important;
  width: 100px;
}

#SearchQueryControl_SearchButton:hover {
  background-color: #1C5E41;
  border-color: #1C5E41;
}

input.sys_searchbox {
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: .25rem;
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.hidden,
.sr-only,
.gdw_widget li.pub_date {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  display: inline;
  clip: rect(0, 0, 0, 0);
  padding: 0;
}

/* User selectable styles in Contensis CMS editor */
.usr_ImageRight {
  float: right;
  margin: 0 0 20px 20px;
}

.usr_ImageLeft {
  float: left;
  margin: 0 20px 20px 0;
}

.usr_ImageCenter {
  float: none;
  display: block;
  margin: 0 auto;
}

.usr_CaptionHide {
  position: relative;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media screen and (max-width: 670px) {

  .usr_ImageRight,
  img.pull-right {
    float: none;
    display: block;
    margin: 20px auto;
  }
}

/* User style select for image border */
.usr_img-polaroid {
  padding: 4px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Next and previous links for The Voice */
@media screen and (max-width: 768px) {
  div.cec-next-prev {
    display: inline-block;
    width: 49% !important;
  }
}

div.cec-next-prev {
  margin-top: 20px;
}

/* Break a long URL or email adress link */
.cec-address,
a {
  word-wrap: break-word;
}

/* Eco Consultant content type formatting */
.ecologicalConsultants p {
  margin: 0;
}

.ecoConHeading {
  padding-top: 15px;
}

div.ecConEmail>p,
div.ecConEmail {
  display: inline;
}

div.ecoConAddInfo {
  margin-top: 15px;
}

.ecoConBorderTop {
  border-top: 1px solid #206c49;
}

.ecologicalConsultants table.table tbody tr td {
  width: 47%;
  display: inline-block;
}

/* Corona Virus Banner */
.cec-corona-banner {
  background-color: #ffa100;
}

.cec-corona-banner-heading {
  color: #000;
  font-size: 25px;
  line-height: 33px;
  margin: 8px 0 5px 0;
  padding: 0;
  font-weight: normal;
  font-style: normal;
  display: block;
}

a.cec-corona-banner-link {
  color: #000;
  border-bottom: 1px solid black;
}

a.cec-corona-banner-link:visited {
  color: #000;
  border-bottom: 1px solid black;
}

a.cec-corona-banner-link:hover {
  color: #000;
  border-bottom: 1px solid black;
}

@media (max-width: 768px) {
  .cec-corona-banner {
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
  }
}

/* Browsealoud listen and translate header toggle */
#__ba_panel {
  display: none !important
}

#baToggleText {
  font-size: 1em;
  color: #212529;
  border-bottom: 1px solid #878c91;
  margin-right: 30px;
  text-decoration: none;
}

#baToggleText:hover {
  border-bottom: 1px solid #000;
}

#baToggleText:focus {
  background-color: transparent;
}

.listenTranslateIcons svg {
  fill: #fff;
  display: inline;
  max-height: 20px !important;
}

.ba_listenTranslateToggle {
  display: inline;
}

@media (max-width: 576px) {
  .ba_listenTranslateToggle {
    display: block;
  }

  #baToggleText {
    margin-right: 0;
  }

  a#baToggleText {
    display: inline-block;
    margin-bottom: 15px;
  }
}

/* Cookie control */
#ccc-icon.ccc-icon--dark {
  fill: rgb(0 0 37 / 46%) !important;
}

#ccc-icon:focus {
  outline: 3px solid #ffa100 !important;
}

/* START STYLES FOR CECILIA CHAT*/
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.chatLauncher {
  animation-duration: 0.5s;
  transition-duration: 0.5s;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  opacity: 0;
  background-color: transparent;
  border: none;
}

.chatLauncher.open {
  animation-name: slideInRight;
  opacity: 1;
}

.chatLauncher:focus {
  border: 4px solid #ffa100;
}

#WACContainer.WACContainer #chatalertbanner {
  background-color: #f2dede;
  padding: 15px;
  border: 1px solid #ab5967;
}

#WACContainer.WACContainer .ceciliaprivacy {
  margin-left: 20px !important;
  margin-bottom: 10px !important;
}

#WACContainer.WACContainer #hidechatalert {
  text-align: center;
  width: 35%;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  background: #333;
  color: #fff;
  display: block;
}

#WACContainer.WACContainer .WAC__homeScreenOriginal .WAC__header {
  background: radial-gradient(circle, #f4f4f4 0%, #a4ca84 100%) !important;
}

#WACContainer.WACContainer.WACContainer,
#WACContainer.WACContainer .WACWidget {
  box-shadow: rgb(0 0 0 / 40%) 0px 0px 12px !important;
  border-radius: 15px;
}

#WACContainer.WACContainer .WACWidget .WACWidget__animationContainer {
  border-radius: 15px !important;
}

#WACContainer.WACContainer .WAC__inputContainer .WAC__TextArea textarea.WAC__TextArea-textarea {
  background: #fff !important;
  color: #0b0c0c;
  border: 2px solid #a2a2a2;
}

#WACContainer.WACContainer .WAC__inputContainer .WAC__TextArea textarea.WAC__TextArea-textarea::placeholder {
  color: #0b0c0c;
}

#WACContainer.WACContainer .WAC__button-holder ul li button {
  border: 2px solid #92d400;
  font-weight: bold;
}

#WACContainer.WACContainer .WAC__sent {
  border: 2px solid #ffa100 !important;
}

#WACContainer.WACContainer .WAC__header-name {
  text-align: center !important;
}

#WACContainer.WACContainer .WAC__homeScreenOriginal-greeting {
  color: #333 !important;
}

#WACContainer.WACContainer .WAC__RichText button:enabled:hover,
#WACContainer.WACContainer button.WAC__button--round:enabled:hover {
  background: #e6fbb7;
}

#WACContainer.WACContainer .WAC__message a:focus {
  outline: 2px solid #ffa100;
}

#WACContainer.WACContainer .ibm-web-chat--card-home-screen {
  box-shadow: none !important;
}

#WACContainer.WACContainer .WAC__homeScreenOriginal-starter button.WAC__button--ghost:enabled {
  color: #333 !important;
}

#WACContainer.WACContainer .ibm-web-chat--card-home-screen .WAC__homeScreenOriginal-starter,
#WACContainer.WACContainer .ibm-web-chat-card-home-screen .WAC__homeScreenOriginal-starter {
  background: #ffcd75 !important;
  border-bottom: 2px solid #ffa100 !important;
  font-size: 14px !important;
  line-height: 14px !important;
}

#WACContainer.WACContainer button.WAC__button--ghost:enabled:active,
#WACContainer.WACContainer button.WAC__button--ghost:enabled:hover {
  background-color: #ffa100 !important;
}

#WACContainer.WACContainer .WAC__homeScreenOriginal .ibm-web-chat--card-home-screen__title-outer {
  color: #333 !important;
}

/* END STYLES FOR CECILIA CHAT*/

/* START STYLES FOR CECILIA MARK 2 CHAT*/
#webchat-wrapper {
  position: fixed;
  height: calc(100% - 160px);
  z-index: 9999;
  width: 95%;
  max-width: 400px;
  top: 60px;
  right: 8px;
  box-shadow: rgb(0 0 0 / 40%) 0px 0px 12px;
  border-radius: 15px 15px 0 0;
  font-size: .94em;
  font-family: 'Inter', sans-serif;
}

#webchat {
  height: 95%;
}

#webchat-header {
  border-radius: 15px 15px 0px 0px;
  background: #206c49;
  color: #fff;
  font-weight: bold;
  padding: 15px;
}

.chat-popup {
  display: none;
}

.openwebchatbutton {
  animation-duration: 0.5s;
  transition-duration: 0.5s;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: none;
}

.minimisechatbutton {
  float: right;
}

a.minimisechatbutton {
  border-bottom: none;
}

#webchat-footer {
  border-radius: 0;
  background: #206c49;
  color: #fff;
  padding: 5px 10px 5px 10px;
  border-top: 2px solid #206c49;
  border-bottom: 5px solid #206c49;
  text-align: right
}

#webchat-footer a {
  color: #fff;
  border-bottom: none;
}

/* END STYLES FOR CECILIA MARK 2 CHAT*/

/* CEC panels - taken from CEIAS */
ul.cec-category-list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px -15px;
  display: flex;
  flex-wrap: wrap;
}

li.cec-category-link {
  width: calc(100% * (1/3) - 30px) !important;
  margin: 30px 0 0 25px;
}

@media (max-width: 1200px) {
  li.cec-category-link {
    width: calc(100% * (1/2) - 30px) !important;
  }
}

@media (max-width: 768px) {
  li.cec-category-link {
    width: calc(100%) !important;
  }

  ul.cec-category-list {
    margin-left: -25px;
  }
}

li.cec-category-link a {
  padding: 30px;
  display: block;
  border-radius: 2px;
  background-image: linear-gradient(-39deg, #ffffff 0%, #fafcff 100%);
  border-color: #6c757d;
  font-weight: 600;
  border: 1px solid #6c757d;
  text-transform: none;
  text-decoration: none;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  box-sizing: border-box;
  font-size: 20px;
  text-align: center;
  height: 100%;
}

.cec-category-link a:hover {
  background-color: #92d400;
  background-image: none;
  color: #000;
}

/* Covid-19 panels - taken from CEIAS */
ul.cec-cov-category-list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px -15px;
  display: flex;
  flex-wrap: wrap;
}

li.cec-cov-category-link {
  width: calc(100% * (1/2) - 30px) !important;
  margin: 30px 0 0 25px;
}

@media (max-width: 1200px) {
  li.cec-cov-category-link {
    width: calc(100% * (1/2) - 30px) !important;
  }
}

@media (max-width: 768px) {
  li.cec-cov-category-link {
    width: calc(100%) !important;
  }

  ul.cec-cov-category-list {
    margin-left: -25px;
  }
}

li.cec-cov-category-link a {
  padding: 30px;
  display: block;
  border-radius: 2px;
  background-image: linear-gradient(-39deg, #ffffff 0%, #fafcff 100%);
  border-color: #6c757d;
  font-weight: 600;
  border: 1px solid #6c757d;
  text-transform: none;
  text-decoration: none;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  box-sizing: border-box;
  font-size: 20px;
  text-align: center;
  height: 100%;
}

.cec-cov-category-link a:hover {
  background-color: #92d400;
  background-image: none;
  color: #000;
}

/* add a border-right to a column - used on Covid-19 pages */
@media (min-width: 768px) {
  .cec-col-sep {
    border-right: 1px solid #cee4af;
    box-sizing: border-box;
    padding-right: 20px;
  }
}

/* styles for the Vue / Axios generated eco consultants table and pagination */
table.usr_TableDefault.eco-cons-table {
  width: 100% !important;
}

table.usr_TableDefault.eco-cons-table p {
  margin-bottom: 0;
}

table.usr_TableDefault.eco-cons-table th {
  width: 20%;
  border-bottom: 0;
}

table.usr_TableDefault.eco-cons-table:first-of-type {
  margin-top: 0;
}

.api-results-info p {
  display: inline-block;
  margin-right: 35px;
}

.pagination ul li button {
  margin: 0 20px 16px 0 !Important;
  background-color: #fff;
  border: 1px solid #0264f7;
  border-radius: 3px;
  padding: .375rem .75rem;
  color: #0250C5;
}

.pagination ul li button:hover {
  z-index: 2;
  color: #0242A2;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.pagination ul li button:focus {
  outline: 3px solid #ffa100;
}

/* Pagination for 'What waste goes where' */
ol.pagination li.page-item button,
ol.pagination li.page-item.disabled button {
  border: 2px solid #4b5458;
  margin-right: 22px;
}

ol.pagination li.page-item button:focus,
ol.pagination li.page-item.disabled button:focus {
  background-color: #f0f3f4;
}

ol.pagination li.page-item button {
  color: #0248b1;
}

ol.pagination li {
  margin-bottom: 22px;
}

/* WCAG 2.2 enhanced contrast */
ol.pagination li button {
  color: #0250c5
}

ol.pagination li.page-item.disabled button.page-link {
  color: #212529;
}

ol.pagination li button:focus {
  /* ensure high-contrast mode still has an indicator */
  outline: 2px black solid;
  /* Apply a thick yellow box-shadow with 
a thin dark blue indicator in the middle */
  box-shadow: 0 0 0 4px #F9F9D1, 0 0 0 4px #396196, 0 0 4px 8px #F9F9D1;
}

/* WCAG 2.2 adjustments for generic list pagination */
.cec-gen-list .sys_navigation {
  margin-top: 30px;
}

.cec-gen-list .sys_navigation span a,
.cec-gen-list .sys_navigationprevious.sys_disabled,
.cec-gen-list .sys_page.sys_selected {
  border: 2px solid #4b5458;
  padding: 9px 15px;
  margin-right: 22px;
  line-height: 70px;
}

.cec-gen-list .sys_navigation span span {
  padding: 0;
  border: none;
}

/* WCAG 2.2 improvements to generic list SB June 2024 */
.sys_flickrpager .sys_navigation a,
.sys_navigationprevious.sys_disabled,
.sys_page.sys_selected {
  border: 2px solid #4b5458;
  margin-right: 22px;
  border-radius: 0.375rem;
  padding: 10px 20px;
  line-height: 70px;
}

.sys_flickrpager {
  margin: 30px 0;
  display: block;
}

.sys_flickrpager .sys_navigation a:hover {
  background-color: #f8f9fa;
}

.sys_navigationprevious.sys_disabled {
  background-color: #f8f9fa;
}

.sys_page.sys_selected {
  background-color: #206c49;
  color: #fff;
}

/* Included as BS2 does not have the spinner CSS - no need to copy in BS5 */
.spinner-grow.text-success {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: .75s linear infinite spinner-grow;
  animation: .75s linear infinite spinner-grow;
  color: #198754 !important;
}

/*  || Live Well in Cheshire East styles  */
.lw-logo {
  margin: 5px 0 15px 5px;
}

a.lw-logo-link {
  border: none;
  display: inline-block;
}

a.lw-logo-link:active,
a.lw-logo-link:focus {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .lw-logo {
    display: block;
    margin: 0 auto 15px auto;
  }
}

/* || Make all images responsive by default */
img {
  max-width: 100%;
  height: auto;
}

.figure-caption {
  color: #545658;
}

/* || Media Hub */
.featuredImage img {
  display: block;
  margin: 20px auto;
}

.soc-med-page-icon {
  float: left;
  margin-right: 10px;
}

/* Section home generic list styles */
#sectionHomeInfoList_List ul.sys_itemslist,
#sectionHomeCatList_List ul.sys_itemslist {
  margin: 1.5rem 0 1rem 0;
  padding-left: 0;
  list-style: none;
}

#sectionHomeInfoList_List ul li,
#sectionHomeCatList_List ul li {
  margin-bottom: 1rem;
}

/* Ensure long email addresses and links break onto multiple lines */
a[href^="mailto"] {
  word-wrap: break-word;
}

main a {
  word-wrap: break-word;
}

/* Right-hand razor navigation / related content */
.usr_cec-menu-item,
.usr_cec-menu-currentitem {
  margin-bottom: 0.5rem;
}

.usr_cec-menu-item a {
  min-height: 44px;
  display: block;
  border: none;
  text-decoration: underline #024cbb;
  text-underline-offset: 0.3em;
  transition: text-decoration-color 0.5s;
}

.usr_cec-menu-item a:hover {
  text-decoration-color: #0248b1;
}

.usr_cec-menu-currentitem:after {
  content: ' ';
  display: inline-block;
  border-bottom: 3px solid #212529;
  border-right: 3px solid #212529;
  height: 12px;
  width: 12px;
  transform: rotate(-220deg);
  border-color: #206c49;
  transition: right 0.5s ease;
  margin-left: 10px;
}

.usr_cec-menu-currentfolder {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.siteMap ul {
  padding-left: 1rem;
}

.siteMap ul li {
  word-wrap: break-word;
  margin-bottom: 22px;
}

.sys_folder ul {
  margin-top: 22px;
}

/* Temporary style for Power Bi Covid-19 stats iframe */
.covid-stats-bi {
  width: 100%;
  height: 100vw;
}

@media (min-width: 768px) {
  .covid-stats-bi {
    width: 100%;
    height: 60vw;
  }
}

/* || iFrame responsive styles */
.iframe-responsive {
  margin-bottom: 2rem;
}

.iframe-dimensions {
  min-height: 1030px;
  min-width: 100%;
}

@media screen and (max-width: 770px) {
  .iframe-responsive {
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
  }

  .iframe-responsive:before {
    content: "Horizontal scroll to view more of the frame";
    color: #206c49;
    font-size: 0.8rem;
  }

  .iframe-responsive:after {
    content: "Horizontal scroll to view more of the frame";
    color: #206c49;
    font-size: 0.8rem;
  }

  .iframe-dimensions {
    min-height: 800px;
    min-width: 1330px;
  }
}

/* Gov delivery hidden date element */
div.story_nav ul.gdw_menu li.pub_date {
  color: #000;
}

/* Making even li elements have light green background */
.alternatingList li:nth-child(even) {
  padding-bottom: .5rem;
  border-top: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
  background-color: #f5f9fa;
}

.alternatingList li {
  padding-left: .5rem;
  padding-bottom: .5rem;
  padding-top: .5rem;
}

/* addition to Contensis feedback plugin - book of condolence */
#FeedbackControlDoE_AddComment_TextBoxEmail {
  margin-left: 5px;
  margin-top: 5px;
}

.sys_addcomments-row.sys_addcomments-comments {
  margin-top: 20px;
}

.sys_addcomments-row.sys_addcomments-name {
  margin-top: 30px;
  padding-top: 35px;
  border-top: 2px solid #c8dbd2;
}

a.condolence-link {
  border-bottom: 1px solid #fff;
}

/* For the library events pages. */
.tags,
.soldOut {
  color: black;
  font-size: 0.8rem;
  margin-left: 5px;
  margin-right: 5px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  background-color: LightGray;
}

.soldOut {
  background-color: Pink;
}


.consultation_panel:hover {
  background-color: #206c49;
  color: white;
}

.figText {
  font-size: .75rem;
}


.greenSpacesPanel {
  background-color: #0075B0;
  color: white;
  border-radius: 10px;
  height: 100%;
}

button.rangerAcc:not(.collapsed),
button.rangerAcc {
  background: #DfF0D8 !important;
  color: black !important;
}

/* For sortable tables. */


.tableHead {
  cursor: pointer;
  min-width: 10rem;
}

.tableHead:hover {
  background: PaleGreen;
}

.hmoDownIcon,
.hmoUpIcon,
.entryUpIcon,
.entryDownIcon,
.upIcon,
.downIcon {
  color: gray;
  position: relative;
}

.upIcon {
  position: relative;
  top: 0.3rem;
  right: 1rem;

}



.downIcon {
  position: relative;
  bottom: 0.3rem;
  right: 1rem;
}

.entryUpIcon {
  top: 0.3rem;
}

.entryDownIcon {
  bottom: 0.4rem;
}


.hmoUpIcon {
  top: -.6rem;
  right: 0rem;
}

.hmoDownIcon {
  bottom: -0.3rem;
  right: .96rem;
}

/* For making cards clickable */
.clickableDiv,
.linkDiv {
  cursor: pointer;
  position: relative;
}

.innerLink,
.link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.link:hover {
  border: solid 4px #206c49;
}

.linkDiv a {
  border: none;
}

.clickableDiv:hover,
.linkDiv.ranger-event-card:hover {
  background: #DfF0D8;
}

.clickableDiv:focus,
.linkDiv.ranger-event-card:focus {
  outline: 3px solid #1b1f28;
}

.form-check-input:focus {
  outline: 2px transparent solid;
  box-shadow: 0 0 0 2px #F9F9D1, 0 0 0 4px #396196, 0 0 4px 8px #F9F9D1;
}

.card.cec-card:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

/* Styling for the Contensis comment. */

.sys_comments-title,
.sys_addcomments-title {
  color: #206c49;
  font-weight: 500;
  font-size: 1.5rem;
}

#FeedbackControl_AddComment_TextBoxName,
#FeedbackControl_AddComment_TextBoxEmail,
#FeedbackControl_AddComment_TextBoxUrl,
#FeedbackControl_AddComment_TextBoxComments {
  display: block;
}

#FeedbackControl_AddComment_ButtonSubmit {
  margin-top: 0.5rem;
}

.sys_addcomments-row {
  margin-top: 0.5rem;
}

.sys_addcomments-comments {
  margin-top: 0rem !important;
}

#FeedbackControl_AddComment_TextBoxComments {
  width: 100%;
}

.sys_addcomments-row.sys_addcomments-name {
  margin-top: 1rem;
  padding-top: .5rem;
}

/* Hide the URL input */
.sys_addcomments-url {
  display: none;
}

/* Connected communities */
.charityOuter {
  background: #DfF0D8;
}

.businessOuter {
  background: #DfF0D8;
}

.inner {
  background: white;
  padding: .5rem;
  margin-bottom: .5rem;
}

.inner p {
  margin-bottom: 0;
  margin-top: 0;
}

.fakeLink {
  cursor: pointer;
  color: #0248b1 !important;
  position: relative;
}

.fakeLink:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  content: "";
}

li.a-z:hover {
  cursor: pointer !important;
}


/* WCAG 2.2 adjustment for the page feedback */
h2.accordion-header button.accordion-button.collapsed.bg-light.fw-bold:focus,
h2.accordion-header button.accordion-button.bg-light.fw-bold:focus,
button.expand-all:focus {
  outline: 4px solid #212529 !important;
}

.bg-light-green {
  background: #ecf3ec;
}

#JSNASearchQueryControl_SearchButton {
  width: 5rem;
}

div.hero-unit ul li.alternating a {
  font-size: 1.2em;
  font-weight: 500;
}

/*accessibility adjustments to the generic list for 'Related pages' */
.sys_itemslist li {
  margin-bottom: 10px;
}

.sys_itemslist li:first-of-type {
  margin-top: 20px;
}

ul.sys_itemslist {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}

/*accessibility: trying to get Silktide to pass the hidden submit button */
input.visually-hidden[type="submit"][value="Submit"] {
  background-color: White;
  color: Black;
  border: 4px solid Black;
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  z-index: -1 !important;
}

input::placeholder,
#contentTypeSearchBtn,
#contentTypeSearchInput::placeholder {
  color: Black !important;
  opacity: unset;
}



#contentTypeSearchBtn:hover {
  color: White;
}


.jsna li li {
  list-style-type: square;
  padding-bottom: .1rem !important;
}

html {
  background: White;
}

.cec-hidden {
  background-color: White;
  color: Black;
  position: absolute !important;
  z-index: -1 !important;
  padding: 0.5rem;
  cursor: default !important;
  top: 0;
}

/*
.linkDiv >  a:focus {
outline: none!important;
box-shadow: none!important;
} */

li.alternating {
  padding: 0.25rem 0.5rem;
}

li.alternating:nth-child(even) {
  background-color: rgb(245, 245, 245);
}

.noticeboard-button {
  min-width: 12.2rem;
}

.bin-options fieldset,
.no-bpm {
  border: none;
  padding: 0;
  margin: 0;
}

.content-type-search {
  max-width: 800px;
}

.content-type-search input {
  border: 2px solid #000;
}

.no-bpm input[type="checkbox"] {
  outline: 2px solid Black;
  accent-color: #206c49;
  box-shadow: 0 0 0 2px Black;
  color: Black;
  padding-right: 3px;
}

#contentTypeSearchBtn,
#contentTypeSearchInput {
  border: 1px solid Black;
  border-radius: 5px;
}

#contentTypeSearchBtn:focus,
#contentTypeSearchInput:focus,
button.btn-outline-secondary:focus {
  outline: 2px solid Black;
}

#contentTypeSearchBtn:hover {
  color: White !important;
}

.nav-link span {
  border-bottom: 1px solid #878c91;
  color: Black;
}

/* tabs */
.nav-tabs .nav-link {
  color: #024EC0;
}

button#table-tab:focus {
  outline: 2px #1b1f28 solid;
}

/* Adjustment for WCAG 2.2 tap target height */
.nav-link {
  padding-bottom: 18px;
}

ul.sys_itemslist li {
  margin-bottom: 22px;
}

li.sys_0 a,
li.sys_16 a {
  line-height: 22px;
}

.btn-outline-secondary {
  color: rgb(33, 37, 41);
}

.open-space dt.sys_generic_list-description {
  display: none;
}

/* Hide the avatar and the "External" div */
#feedback-hide-avatar .sys_comment-profileimage,
#feedback-hide-avatar .sys_comment-commenttype {
  display: none;
}

/* Pagination for contents list next and previous */
.cec-contents-list-heading {
  font-size: 20px;
  margin-bottom: 15px;
  color: #212529;
}

ul.cec-contents-list {
  list-style-type: none;
  padding-left: 0;
}

ul.cec-contents-list li:before {
  content: "—";
  margin: 6px 10px 0 0;
}

ul.cec-contents-list li {
  display: flex;
  padding-bottom: 0;
  min-height: 44px;
  align-items: center;
}

ul.cec-contents-list li a {
  border: none;
  text-decoration: underline;
  text-underline-offset: 5px;
  min-height: 44px;
}

.cec-pagination-next a:hover,
.cec-pagination-previous a:hover {
  background-color: #f3f2f1;
}

.cec-pagination-next a,
.cec-pagination-previous a {
  border-bottom: none;
  display: block;
  margin-bottom: 30px;
  padding: 15px 0;
  text-decoration: none;
}

.cec-pagination-next a {
  padding-top: 10px;
}

.cec-pagination-previous a {
  margin: 25px 0 0 0;
}

.cec-pagination-link-title {
  font-weight: 700;
  border-bottom: none;
}

span.cec-pagination-link-label {
  margin-left: 37px;
  border-bottom: 1px solid #024cbb;
}

.cec-pagination-group {
  display: block;
}

.cec-pagination-previous+.cec-pagination-next {
  border-top: 1px solid #b1b4b6
}

/* Expandable table */
.expand-table {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}

.expand-table thead,
.expand-table tbody {
  margin: 0;
}

.expand-table tr {
  display: flex;
  margin: 0;
  width: 100%;
  flex-flow: row;
  flex-wrap: wrap;
}

.expand-table th,
.expand-table td {
  align-items: flex-start;
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  margin: 0;
  text-overflow: ellipsis;
}

th.expanding-panel,
td.expanding-panel {
  flex-basis: 100%;
  max-width: 100%;
}

th.expanding-panel[aria-hidden='true'],
td.expanding-panel[aria-hidden='true'] {
  display: none;
}

.expand-table th.expanding-panel .row,
.expand-table td.expanding-panel .row {
  max-width: 100%;
  padding: 0;
  width: 100%;
}

.expand-table th[aria-hidden='true'],
.expand-table td[aria-hidden='true'] {
  display: none;
}

.action {
  max-width: 5rem;
}

/* Register calendar */
#reg-cal:not(.modal-body)table,
#reg-cal:not(.modal-body)th,
#reg-cal:not(.modal-body)td {
  border: 1px solid;
  background-color: white;
}

#reg-cal:not(.modal-body)table {
  width: auto !important;
}

#reg-cal:not(.modal-body)th,
#reg-cal:not(.modal-body)td {
  padding: 0.5rem 0.25rem 0.5rem 0.25rem;
  width: 8rem !important;
}

#reg-cal:not(.modal-body)table {
  border-collapse: collapse;
}

#reg-cal .available {
  background-color: LightGreen;
}

#reg-cal .unavailable {
  background-color: LightRed;
}

#reg-cal .month-span {
  min-width: 11rem;
}

#reg-cal .cec-button {
  padding: 0.5rem 1rem 0.5rem 1rem;
}

#reg-cal .cec-button::after {
  display: none;
}

#reg-cal .btn-close:focus,
#reg-cal .nav-btn:focus,
#reg-cal .reg-cal-td:focus {
  outline: 4px solid #212529 !important;
  -webkit-transition: outline-color 0.2s ease-out;
  transition: outline-color 0.2s ease-out;
}

.align-top td {
  vertical-align: top;
}

.hireserve {
  background-color: #f5f9fa;
  padding: .5rem;
  font-weight: 500;
}

/* Hide 'description' in the generic list for generic lists & statutory public notices */
div.gen-list dl dt,
div.stat-pub-note dl dt {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

div.gen-list ul li,
div.stat-pub-note ul li {
  margin-bottom: 0;
}


/* Make "Tuesday" column on library hours a fixed width */
.library-hours td:nth-child(3) {
  max-width: 200px;
}

/* Make first column fixed on library hours table */
.library-hours tr:nth-child(odd) {
  background-color: White;
}

.library-hours td:first-child,
.library-hours th:first-child {
  position: sticky;
  width: 200px;
  left: 0;
  background-color: inherit;
  z-index: 5;
}

/* Fixing an odd button on a promo page */
.pagination .current button {
  color: white !important;
  background-color: #206c49 !important;
}

/* Right align numbers on the footfall tables */
.rt-align-nums td:nth-child(n+2),
.rt-align-nums th:nth-child(n+2),
.footfall td:nth-child(n+2) {
  text-align: right;
}

.rt-align-nums th {
  padding: 0.5rem, 0.5rem;
}

/* Hides descriptions in generic lists. */
.no-desc .sys_generic_list-description {
  display: none;
}

.bin-options input,
#contentTypeSearchInput,
#contentTypeSearchBtn {
  border: 2px solid #212529;
}

/* Right align nums in ward profile table. */
.ward-profiles td:nth-child(n + 4),
.ward-profiles th:nth-child(n + 4) {
  text-align: right;
}

@media (max-width: 205px) {
  body {
    word-break: break-all;
  }
}

/* Questions */
.questions .question {
  min-height: 10rem;
}

.questions fieldset {
  border: 1px solid Black;
}

.questions legend {
  float: none;
  width: auto;
  font-size: 1.5rem;
  margin-left: 20px;
}

/* stop Facebook feeds from 2D scrolling */
.fb-page {
  overflow: scroll;
}


.modal-footer .cec-button {
  margin-bottom: 0px;
}

@media screen and (max-width: 992px) {
  .side-overlay-section .my-side-overlay {
    position: relative !important;
  }
}

/* Guide local razor menu */
div.chapters-container ol {
  list-style-type: none;
  padding-left: 0;
  /*
border-bottom: 2px solid rgba(32, 108, 73, 0.25); /* #206c49 with 0.25 opacity */
  /* padding-bottom: 30px;
margin-bottom: 30px; */
}

div.chapters-container ol li:before {
  content: "—";
  margin: 0 10px 0 0;
}

div.chapters-container ol li {
  display: flex;
  padding-bottom: 0;
  min-height: 44px;
}

div.chapters-container ol li a {
  border: none;
  text-decoration: underline;
  text-underline-offset: 5px;
  min-height: 44px;
}

div.chapters-container ol li.chapter-currentitem a {
  color: #000;
  font-weight: 700;
}

/* Details styles based on GOV.UK */
.access-acc-container.details input[type=checkbox]+label:before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  border-color: transparent;
  border-style: solid;
  border-width: 7px 0 7px 12.124px;
  border-left-color: inherit;
  color: #2526a9;
}

.access-acc-container.details input[type=checkbox]:checked+label:before {
  display: block;
  width: 0;
  height: 0;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  border-color: transparent;
  border-style: solid;
  border-width: 12.124px 7px 0;
  border-top-color: inherit;
  color: #2526a9;
}

.access-acc-container.details:before {
  content: "";
}

.access-acc-container.details input[type=checkbox]+label:after,
.access-acc-container.details input[type=checkbox]:checked+label:after {
  content: "";
}

.access-acc-container.details input[type=checkbox]+label:after,
.access-acc-container.details input[type=checkbox]:checked+label:after {
  content: "";
}

.access-acc-container.details input[type=checkbox]:checked+label:hover,
.access-acc-container input[type=radio]:checked+label:hover {
  background: none;
  color: inherit;
}

.access-acc-container.details input[type=checkbox]+label,
.access-acc-container input[type=radio]+label {
  background: none;
  border: none;
  color: #2526a9;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: max(1px, .0625rem);
  text-underline-offset: .1578em;
  text-decoration-color: #2526a9;
  padding-left: 25px;
}

.access-acc-container.details input[type=checkbox]:focus+label,
.access-acc-container.details input[type=radio]:focus+label {
  outline: 2px solid #0075b0;
}

.access-acc-container.details input[type=checkbox]:checked+label {
  outline: none;
}

/* Print styles */
@media print {

  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a4;
  }

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  header div.icon-bank,
  header div.cec-search-site,
  div.cec-breadcrumb-bg,
  div.accordion.pb-4,
  footer div.footer-header {
    display: none;
  }

  a.footer-copyright {
    color: #212529;
    text-decoration: none;
  }
}

.funded-logo {
  max-width: 200px;
}

/* Content types - avoid 2D scrolling */
#contentTypesContainer ul li {
  word-break: break-word;
}

/* Scroll Spy */
nav.lw-scrollspy ul li a.nav-link {
  color: #6d0c74;
}

nav.lw-scrollspy ul li a.nav-link.active {
  color: #fff !important;
  background-color: #6d0c74;
  font-weight: 700;
}

/* Needed to rotate an awkward image on UKREiiF page */
@media (max-width: 768px) {
  .mobile-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 1rem 0;
  }

  .mobile-rotate {
    transform: rotate(90deg);
    max-height: 70vw;
    display: block;
    padding: 0;
    margin-top: -25vw;
    margin-bottom: -25vw;
  }
}

/* Enhanced a11y */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Experiment using image to launch modal */
.modal-pic img {
  cursor: pointer;
  border: 2px solid black;
  border-radius: 10px;
}

.modal-pic img:hover {
  border: 2px solid #0248b1;
}

.modal-pic {
  border: 4px solid rgba(0, 0, 0, 0);
  background: none;
}

div#app.container {
  word-wrap: break-word;
}

/* --- Classic Responsive Iframe Container --- */
.powerbi-report-container {
  position: relative;
  /* This is crucial for positioning the iframe inside */
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  /* This is the magic number for 16:9 ratio (9 / 16 = 0.5625) */
}

.powerbi-report-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Inclusion toolkit */
div.container.inc-toolkit div.row div.col-12.col-lg-9 ul li {
  padding-bottom: 10px;
}

div.container.inc-toolkit div.row div.col-12.col-lg-9 ul li a {
  min-height: 24px;
  /* make vertical size at least 24px */
  line-height: 24px;
  /* keep text vertically centred */
  display: inline-block;
}

.inc-toolkit-pot-cat a.innerLink:hover {
  border: 3px solid #6d6c6c;
  border-radius: 6px;
}

.cecGreen {
  color: var(--cecGreen);
}

.cecRed {
  color: var(--cecRed);
}

.cecTurquoise {
  color: var(--cecTurquoise);
}

.cecLime {
  color: var(--cecLime);
}

.cecGold {
  color: var(--cecGold);
}

.cecBlue {
  color: var(--cecBlue);
}

.cecPurple {
  color: var(--cecPurple);
}

.cecMagenta {
  color: var(--cecMagenta);
}

.cecMagentaBg {
  background-color: var(--cecMagenta) !important;
}

.cecTurquoiseBg {
  background-color: var(--cecTurquoise) !important;
}

.cecPurpleBg {
  background-color: var(--cecPurple) !important;
}

.cecGreenBg {
  background-color: var(--cecGreen) !important;
}

.light-pink-bg {
  background-color: #f6d5cd !important;
}

.light-blue-bg {
  background-color: #CAEEFB !important;
}

.light-green-bg {
  background-color: #d2efbb !important;
}

.light-purple-bg {
  background-color: #f2cfee !important;
}

.values-head {
  font-size: 2.5rem;
  font-family: 'Arial Black', sans-serif;
  margin-bottom: 2rem;
  word-break: break-all;
}

.values .card-header {
  color: white !important;
}

.values .card-header h3 {
  color: white !important;
}

.values .card-body {
  padding: 0.3rem;
}

.values .card-header h3 {
  font-family: 'Arial Black', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.values .card {
  margin-bottom: 5rem;
}

/* Card borders matching header colors */
.values .card-drive {
  border: 2px solid var(--cecMagenta) !important;
}

.values .card-integrity {
  border: 2px solid var(--cecTurquoise) !important;
}

.values .card-respect {
  border: 2px solid var(--cecPurple) !important;
}

.values .card-collaboration {
  border: 2px solid var(--cecGreen) !important;
}

/* Remove default card border radius to match panel style */
.values .card {
  border-radius: 0.375rem;
}

.break-all {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* Used to hide code while Vue apps load */
[v-cloak] {
  display: none;
}

/* For grant funded projects */
td.description-of-service {
  min-width: 15rem;
}

td.grant-fund-name {
  min-width: 200px;
}

img.grant-fund-logo {
  max-width: 175px;
}
