/*!
 * 2025-06-18T15:27:12+00:00
 * css/common.css,css/sidebar.css,site/bolton-sign/css/main.css
 */

/*! css/common.css */

/*
 * Do not place rules that alter the structure/layout of the page in this file.  In general, if your desired rule causes
 * the size or position of ANY element to change, it is not a good candidate for this file.  Place them in the main.css
 * or admin.css files instead.
 */

.disabled,
[disabled],
:disabled {
  opacity: 0.8;
  pointer-events: none;
  user-select: none;
}

.disabled .disabled,
.disabled [disabled],
.disabled :disabled,
[disabled] .disabled,
[disabled] [disabled],
[disabled] :disabled,
:disabled .disabled,
:disabled [disabled],
:disabled :disabled {
  /* Stops opacity cascading downwards, causing elements to become progressively more translucent */
  opacity: 1;
}

.pointer-events-all {
  pointer-events: all;
}

.pointer-events-none {
  pointer-events: none;
}


/*! css/sidebar.css */

body .overlay-tinter {
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.5s;
  top: 0;
  left: 0;
  z-index: 50;
  position: fixed;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

body.menu-open .overlay-tinter {
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

body.menu-open #sidebar {
  left: 0;
}

.sidenav h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #545454;
}

.sidenav {
  height: 100%;
  width: 100%;
  max-width: 320px;
  position: fixed;
  z-index: 4000;
  top: 0;
  left: -100%;
  background-color: #FFF;
  overflow-x: hidden;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
}

.sidenav .close-holder {
  padding: 1rem;
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-offset-grey);
  cursor: pointer;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  padding: 70px 30px;
  flex: 1;
}

.sidebar-content h2, .sidebar-content .menu-text {
  color: #f3f1ee;
}

.sidenav .profile-name {
  font-weight: 700;
  font-size: 1.2rem;
}

.sidenav .profile-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 10px;
}

.sidenav .profile-stat-holder {
  text-align: center;
}

.sidenav .profile-stat-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.sidenav h2  {
  text-align: left;
  line-height: 40px !important;
}

.sidenav .sidebar-navigation {
  padding-top: 40px;
}

.sidebar-navigation button.btn {
  padding: unset;
  margin: unset;
}

.sidenav .sidebar-navigation a,
.sidenav .sidebar-navigation button {
  /* margin-bottom: -6px; */
  text-decoration: none;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0px;
  color: var(--c-offset-grey);
  display: block;
  transition: right 0.5s;
  /* padding: 5px 0; */
  line-height: 46px;
}

.toggle-sidenav {
  cursor: pointer;
}

.sidenav .social-content {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.sidenav .social-content i {
  font-size: 32px;
  margin: 1rem;
  color: #9c9c9c;
}

.sidenav .social-content a:hover i {
  color: var(--c-brand-colour);

}

.sidenav .sidebar-navigation .sub-list a,
.sidenav .sidebar-navigation .sub-list button {
  font-size: 18px;
  line-height: 21px;
  /* margin-bottom: .4rem; */
  letter-spacing: .4px;
}

.sidebar-list-item i {
  font-size: 18px;
}

.sidenav .sidebar-navigation a:hover, .sidenav.btn-form .btn, .btn-form:hover .btn, .sidenav .btn-form .btn:hover {
  color: var(--c-brand-colour);
}

.sidebar-list {
  list-style-type: none;
  padding-left: 0;
}

.sidebar-list .sidebar-list a,
.sidebar-list .sidebar-list button {
  font-size: 18px;
  line-height: 21px;
  /* margin-top: .2rem; */
}

.sidebar-list-item:not(:last-child) {
  margin-bottom: 1rem;
}

.sidebar-list-item-link {
  margin: 0;
}

.sidebar-list-item > .sidebar-list {
  opacity: 0.75;
}

.sidebar-list-item .sidebar-list-item-expand {
  opacity: 0.5;
}

.sidebar-list-item .sidebar-list-item-collapse {
  color: #eea70f;
}

.sidebar-list-item.--is-expanded .sidebar-list-item-expand {
  display: none;
}

.sidebar-list-item:not(.--is-expanded) .sidebar-list-item-collapse {
  display: none;
}

.scrollbox {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.scrollbox > .scrollbox-scroll {
  flex: 1;
  overflow-y: scroll;
  scroll-behavior: smooth;

  scrollbar-width: none;
}

.scrollbox > .scrollbox-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.scrollbox > .scrollbox-up,
.scrollbox > .scrollbox-down {
  align-self: center;
}

.menu-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #545454;
}


/*! site/bolton-sign/css/main.css */

@import url('//fonts.googleapis.com/css2?family=Exo:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('//fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@100;200;300;400;500;600;700;800&display=swap');

:root {
  --c-brand-colour: #d5c00b;
  --c-offset-grey: #535353;
  --c-button-grey: #555;
  --font-family-body: 'Source Sans Pro', sans-serif;
  --font-family-heading: 'Exo', sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: var(--font-family-body);
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #ececec;
}

::-webkit-scrollbar-thumb {
  background-color: var(--c-brand-colour);
}

::-webkit-scrollbar-track {
  background-color: #ececec;
}

body {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  overflow: hidden;
}

body > .outer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  height: 100%;
  position: relative;
}

body > .outer-body .inner-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
}

header i {
  color: #d9d9d9;
  font-size: 30px;
}

header .logo-holder {
  line-height: 24px;
  text-align: center;
  background: #555;
  position: absolute;
  left: 0;
  right: 0;
  width: 220px;
  height: 100px;
  top: 0;
  z-index: 2;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .logo-holder img {
  height: 90px;
  margin: -20px;
}

.main-logo {
  color: var(--c-brand-colour);
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-family-heading);
}

.main-logo span {
  color: var(--c-offset-grey);
}

.main-logo-subtitle {
  color: var(--c-offset-grey);
  font-size: 16px;
  font-family: var(--font-family-heading);
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: unset;
  padding: 10px 20px;
}

footer .left-content {
  display: flex;
  flex-direction: column;
}

footer .footer-email {
  margin-left: 2rem;
  margin-bottom: 0.6rem;
}

footer i {
  color: #d9d9d9;
  font-size: 24px;
  padding-left: 10px;
}

.body-content-holder {
  flex: 1;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}

.body-content-holder .swiper-slide {
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.homepage-carousel,
.e2es-web-carousel-homepage-carousel {
  height: 100%;
}

.body-content-holder .swiper-pagination {
  position: absolute;
  bottom: 0;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  bottom: 0;
}

.swiper-pagination-bullet {
  width: 50%;
  border-radius: unset;
  height: 46px;
  border: 2px solid var(--c-brand-colour);
  border-left: unset;
  background: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin: unset !important;
  opacity: 1;
  position: relative;
}

a.bg-brand.swiper-pagination-bullet.swiper-pagination-bullet-active:first-child::after {
  width: calc(100% + 4px);
  border-radius: unset;
  height: 48px;
  border: 2px solid var(--c-button-grey);
  background: var(--c-button-grey);
  top: 0;
  content: 'On: 01204 594 700';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin: unset !important;
  opacity: 1;
  position: absolute;
  z-index: -1;
  transition: all 1s ease;
}

a.bg-brand.swiper-pagination-bullet.swiper-pagination-bullet-active.open:first-child::after {
  top: -51px;
}

.fakeSwiper .swiper-pagination-bullet {
  width: 220px;
}

.swiper-pagination-bullet:hover {
  background: var(--c-brand-colour);
}

.swiper-pagination-bullet:first-child {
  border-left: 2px solid var(--c-brand-colour);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--c-brand-colour);
}

.swiper-pagination-bullet.bg-grey,
.swiper-slide button.bg-grey,
.bg-grey {
  background: var(--c-button-grey);
  color: #fff;
  border-color: var(--c-button-grey);
}

.swiper-pagination-bullet.bg-grey:hover,
.swiper-slide button.bg-grey:hover,
.bg-grey:hover {
  color: #fff;
  background-color: var(--c-brand-colour);
  border-color: var(--c-brand-colour);
}

.swiper-pagination-bullet.bg-brand,
.swiper-slide button.bg-brand,
.bg-brand {
  background: var(--c-brand-colour);
  color: #efefef;
  font-size: 18px;
  font-weight: 600;
  border-color: var(--c-brand-colour);
  width: 100%;
  height: 3rem;
}

.swiper-pagination-bullet.bg-brand:hover,
.swiper-slide button.bg-brand:hover,
.bg-brand:hover {
  color: #fff;
  background-color: var(--c-button-grey);
  border-color: var(--c-button-grey);
}

.swiper-pagination-bullet.double {
  width: 220px;
}

.form-control {
  display: block;
  height: 3rem;
  padding-left: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: unset;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
}

.form-width {
  max-width: 800px;
}

a.btn.case-study-image:hover {
  color: #fff;
}

.body-content h1,
.swiper-slide h1 {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.homepage-carousel .banner-text .btn {
  background: transparent;
  border-radius: unset;
  padding: 5px 20px;
  margin-bottom: 0.5rem;
}

.body-content h2,
.swiper-slide h2 {
  font-size: 40px;
  font-weight: 800;
}

.swiper-slide .read-more {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: unset;
  padding: 5px 20px;
  margin-bottom: 0.5rem;
}

.swiper-slide p {
  color: #fff;
}

.swiper-slide p a {
  color: var(--c-brand-colour);
}

.page-holder,
.body-content-holder .swiper-slide.light,
.body-content-holder .body-content {
  background: #f4f4f4;
  justify-content: unset;
  padding: 3rem 1rem 4rem;
  text-align: center;
  overflow: auto;
  background-position: center;
  background-size: contain;
}

.body-content-holder .body-content {
  height: 100vh;
  max-height: 100%;
}

.body-content-holder .swiper-slide.light {
  height: 100%;
}

.swiper-slide.light h1,
.swiper-slide.light h2,
.body-content.light h1,
.body-content.light h2 {
  color: var(--c-offset-grey);
}

.swiper-slide.light p {
  color: #888;
  font-size: 18px;
  max-width: 800px;
}

.swiper-slide.light ul {
  max-width: 800px;
  color: #888;
  font-size: 18px;
}

.left-power {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  height: 50px;
  transform: rotateZ(-90deg);
  left: -50px;
  margin: auto;
  border-radius: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 15px;
  z-index: 2;
}

.right-power {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -50px;
  width: 150px;
  height: 50px;
  transform: rotateZ(90deg);
  margin: auto;
  border-radius: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 15px;
  z-index: 2;
}

.right-power strong,
.left-power strong {
  font-size: 21px;
  font-weight: 700;
}

.case-study-wrapper {
  position: absolute;
  bottom: 0;
  width: calc(100%);
  padding-right: 1.5rem;
  height: 35px;
  overflow: hidden;
  transition: height 1s;
  background-color: #f4f4f4;
}

.btn {
  padding: 0.66rem 0.75rem;
}

.case-study-wrapper.open {
  height: 100%;
}

.case-study-wrapper .text-open {
  display: inline-block;
}

.case-study-wrapper.open .text-open {
  display: none;
}

.case-study-wrapper.open .text-close {
  display: inline-block;
}

.case-study-wrapper .text-close {
  display: none;
}

.case-study-wrapper.open .case-study-gallery-wrapper {
  overflow: scroll;
  height: 100%;
}

.case-study-gallery-holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.5rem;
}

.case-study-gallery-holder > .case-study-gallery {
  height: 150px;
}

.case-study-gallery-holder.small > .case-study-gallery {
  height: 100px;
}

.case-study-gallery-holder {
  width: 100%;
  max-width: 800px;
}

.toggle-gallery span {
  font-weight: 700 !important;
}

.case-study-image {
  margin-bottom: 30px;
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-weight: 600;
  line-height: 21px;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: multiply;
}

.side-image {
  background-position: center;
  background-size: cover;
  border-radius: 0.5rem;
}

.right-text {
  overflow: hidden;
  text-align: left;
  height: calc(100% - 35px);
  margin-top: 3rem;
}

.right-text iframe {
  width: 100%;
}

.scrollable {
  overflow-y: scroll;
  height: 70%;
}

.right-text .scrollable {
  height: calc(100% - 80px);
}

.case-study-gallery-holder .case-study-image {
  height: 100%;
  width: 100%;
}

.swiper-slide.light p span {
  color: var(--c-offset-grey) !important;
  font-weight: 300;
  cursor: pointer;
}

.right-text p span {
  color: #888 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.row.case-study-gallery-holder.small {
  position: absolute;
  bottom: 0;
  height: 165px;
  overflow: hidden;
}

.row.case-study-gallery-holder.small {
}

@media (min-width: 768px) {
  .body-content-holder .swiper-slide.light {
    padding-bottom: 4rem;
  }

  .body-content h2,
  .swiper-slide h2 {
    font-size: 40px;
  }

  .case-study-wrapper {
    height: 180px;
  }

  .swiper-pagination-bullet.bg-brand,
  .swiper-slide button.bg-brand,
  .bg-brand {
    width: 18rem;
  }

  .right-power {
    width: 150px;
  }

  .right-text {
    height: calc(100% - 180px);
  }

  .swiper-pagination-bullet.double {
    width: 300px;
  }

  .case-study-gallery-holder {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.5rem;
  }

  header {
    padding: 20px 50px;
  }

  header .logo-holder {
    line-height: 29px;
  }

  .main-logo-subtitle {
    font-size: 20px;
  }

  .main-logo {
    font-size: 26px;
  }

  .body-content-holder {
    margin: 0 50px;
  }

  footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: unset;
    justify-content: space-between;
    padding: 10px 50px;
    color: #7d7b7c;
  }

  footer .left-content {
    display: flex;
    flex-direction: unset;
  }

  .body-content h1,
  .swiper-slide h1 {
    font-size: 60px;
  }

  footer .footer-email {
    margin-bottom: unset;
  }

  .swiper-pagination-bullet {
    width: 150px;
  }
}

.banner-image {
  position: relative;
}

.blog-options {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.social-sharing-wrapper li a {
  color: #777;
  font-size: 1.4rem;
  padding: 0.25rem;
  margin-right: 0.5rem;
  background-color: var(--c-brand-colour);
}

.img-banner {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
