/**
* Below adds navigation icons to slider block
*/
.navigation-wrapper {
    position: relative;
  }
  

  .arrow {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    fill: #005876;
    cursor: pointer;
  }
  
  .arrow--left {
    left: 5px;
    fill: #005876;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' stroke='white' fill='rgb(0,88,118)' viewBox='0 0 24 24' %3E%3Cpath d='M16.67 0l2.83 2.829-9.339 9.175 9.339 9.167-2.83 2.829-12.17-11.996z' %3E%3C/path%3E%3C/svg%3E");
  }
  
  .arrow--right {
    left: auto;
    right: 5px;
    fill: #005876;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' stroke='white' fill='rgb(0,88,118)' viewBox='0 0 24 24' %3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z'%3E%3C/path%3E%3C/svg%3E");
  }
  
  .arrow--disabled.arrow--left {
    display: none;
    /* background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24' %3E%3Cpath d='M16.67 0l2.83 2.829-9.339 9.175 9.339 9.167-2.83 2.829-12.17-11.996z' %3E%3C/path%3E%3C/svg%3E"); */
  }
  
  .arrow--disabled.arrow--right {
    display: none;
    /* background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24' %3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z'%3E%3C/path%3E%3C/svg%3E"); */
  }
  @media (max-width: 768px) {
    .arrow {
      display: none;
    }
  }

  /* sticky slider styles removed to avoid affecting site-wide sliders */