.text-input-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.text-input-wrap label {
  font-weight: 700;
  font-size: 1rem;
}
.text-input-wrap textarea {
  padding-left: 20px;
  width: 100%;
  min-height: 45px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid lightgrey;
}

.shadow {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-out;
}

.shadow:hover {
  transform: translateY(5px);
}

:root {
  --evo-brand-secondary: #0a89c3;
  --evo-brand-accent: #b5ebff;
  --evo-header-background: #fff;
}

.header-full .logo img {
/* Change this for desktop */
    max-width: 250px !important;
    height: auto !important;
    max-height: none !important;
}

.productimage_container .productimagesolo {
border-radius: 90px;
  border: solid 10px #000;
}
.productspecs_container .panel-border {
  border-left-color: #000 !important;
}

.productimage_container .productimagesolo {
    border-radius: 90px;
    border: NONE;
}

/* Start of add Sticky header EvoX */
@media only screen and (min-height: 768px) {
.menubarStick {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 15;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.headersection-3.menubarStick > .row-3 {
    max-width: 1450px;
    margin: 0 auto;
}

/* change me to the height of the sticky row */
.menubarHeader {
    padding-top:40px;
}
}
/* end of add Sticky header EvoX */

.costcentre .smaller  {
display: none !important;
}

.timeline-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: inherit;
}

.timeline-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.timeline-entry {
  background-color: #f9f9f9;
  border-left: 4px solid #005baa;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  max-width: 600px;
}

.timeline-entry.left {
  margin-left: 0;
  margin-right: auto;
}

.timeline-entry.right {
  margin-left: auto;
  margin-right: 0;
  border-left: none;
  border-right: 4px solid #005baa;
  text-align: right;
}

.timeline-entry h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #005baa;
}

.timeline-entry p {
  margin: 0;
  font-size: 1rem;
  color: #444;
}

.timeline-entry {
  background-color: #f9f9f9;
  border-left: 4px solid #005baa;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  max-width: 600px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 91, 170, 0.2);
}