.slick-dots {
 background-color: transparent !important;;
}

/* Replace banner with site banner */
#content-head{    
    background-image: linear-gradient(90deg, rgba(0,90,150,1) 0%, rgba(0,90,150,0.6124824929971988) 41%, rgba(0,90,150,0) 100%), var(--backgroundImageUrl) !important;
    background-repeat: no-repeat;
    background-size: cover; 
    
}

.ig-button_flat_gray {
  color: #fff;
  background-color: #005a96;
  border-color: #005a96;
}

.ig-button_flat {
  font-size: 18px;
}

/* Signin additional text */
a#samlsignin-submit-button::after {
  content: "Covia SSO";
}


/* Fix button hover in About Style */
.icon-addnew:not(.ig-vscroll-placeholder):not(#ig-newgroup):hover,
.ig-button_2column .ig-button_white:not(.ig-button-read):last-child:hover,
.ig-widget-type-addbutton.ig-cpt .ig-button_white:hover {
  color:#c15600 !important;
}

/* Accordion style to load open */
.open.ig-cpt .ig-cpt-body, .open.ig-cpt .ig-cpt-footer {
  display: block;
  }
  
/* Back to Top Enhancement */
#tttbutton {
    display: inline-block;
    background-color: #005a96; /* Colour of the background square */
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 10%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .9s, opacity .9s, visibility .9s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
#tttbutton::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2.25em;
    line-height: 50px;
    transition: all 0.9s ease;
    color: #fff; /* colour of the arrow */
}
#tttbutton:hover {
    cursor: pointer;
    background-color: #002e75; /* colour of the square on hover */
    text-decoration: none;
}
#tttbutton:active {
    background-color: rgb(5, 207, 99);
}
#tttbutton.show {
    opacity: 1;
    visibility: visible;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #005a96;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* 3 Column Navigation widget */
.threecol .ig-widget-navigation .ig-widget-layout-default ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  }
  
/* Style to make the image gallery carousel white */
.slideshowwhite .ig-carousel-pane-container-img {
  background-color: #ffffff !important;
}

/* Support accordions AND tabs together */
div.ps-tab.accordion .ig-cpt-title {
  display: inherit !important;
}

/*Hide the Publication Details Link */ 
a#publicationDetails{display:none;}

/* Button styling for use in articles */
/* Default button style */
a.articlebutton,
a.articlebutton:link,
a.articlebutton:visited,
a.articlebutton:active {
  display: inline-block;
  background-color: #007BFF; /* blue background */
  color: #ffffff !important; /* force white text to override global link color */
  padding: 0.5em 1em;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease, text-decoration 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

/* Hover and focus states */
a.articlebutton:hover,
a.articlebutton:focus {
  background-color: #0069d9; /* slightly darker blue */
  color: #ffffff; /* stay white on hover */
  text-decoration: underline;
  outline: none;
}

/* Keyboard accessibility focus */
a.articlebutton:focus-visible {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}




