body.cw-unified section.swimlanes > div.swimlane.cw-bezel {
  width: 100%; 
  overflow-x: hidden;
}

body.cw-unified section.swimlanes > div.swimlane.cw-bezel > div.gradient-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(to left, #1e2626ff, #12262600); 
  pointer-events: none;
  z-index: 50;
  pointer-events: none;
}

body.cw-unified section.swimlanes > div.swimlane.cw-bezel > h3 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 8px;
}

body.cw-unified section.swimlanes > div.swimlane.cw-bezel ul.swimlane-list.cw-bezel {
  display: flex;
  
  /* For Webkit browsers (Chrome, Safari, Opera) */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

body.cw-unified section.swimlanes > div.swimlane.cw-bezel ul.swimlane-list.cw-bezel::-webkit-scrollbar {
  display: none;
}

body.cw-unified section.swimlanes > div.swimlane.cw-bezel ul.swimlane-list.cw-bezel > li.cw-bezel {
  display: inline-block;
  width: auto;
  flex-shrink: 0;
  margin-right: 24px;
  border: 4px solid #FF4500;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 29px;

  /* For transition */
  background-color: #FF450000;
  background-image: linear-gradient(to right, #FF4500, #FF4500);
  background-repeat: no-repeat;
  background-position: -400px 0;
  background-size: 100% 100%;
  transition: background-position 0.3s ease-out;
}

body.cw-unified section.swimlanes > div.swimlane.cw-bezel ul.swimlane-list.cw-bezel > li.cw-bezel:hover {
  background-position: 0 0;
}

body.cw-unified section.swimlanes > div.swimlane.cw-bezel ul.swimlane-list.cw-bezel > li.cw-bezel:last-child {
  margin-right: 0;
}

body.cw-unified section.swimlanes > div.swimlane.cw-bezel ul.swimlane-list.cw-bezel > li.cw-bezel > a {
  font-size: 23px;
  min-width: 192px;
  text-align: center;
  padding: 15px 48px;
}

@media screen and (max-width: 768px) {
  body.cw-unified section.swimlanes > div.swimlane.cw-bezel ul.swimlane-list.cw-bezel > li.cw-bezel {
    border-top-left-radius: 27px;
    border-bottom-left-radius: 27px;
    border-bottom-right-radius: 23px; 
  }

  body.cw-unified section.swimlanes > div.swimlane.cw-bezel ul.swimlane-list.cw-bezel > li.cw-bezel > a {
    font-size: 18px;
    min-width: 147px;
    padding: 11px 36px;
  }

  body.cw-unified section.swimlanes > div.swimlane.cw-bezel ul.swimlane-list.cw-bezel > li.cw-bezel {
    background-position: -300px 0;
  }
}

@media screen and (max-width: 320px) {
  body.cw-unified section.swimlanes > div.swimlane.cw-bezel ul.swimlane-list.cw-bezel > li.cw-bezel {
    border: 2px solid #FF4500;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 12px; 
  }

  body.cw-unified section.swimlanes > div.swimlane.cw-bezel ul.swimlane-list.cw-bezel > li.cw-bezel > a {
    font-size: 14px;
    min-width: 99px;
    padding: 0px 20px;
  }

  body.cw-unified section.swimlanes > div.swimlane.cw-bezel ul.swimlane-list.cw-bezel > li.cw-bezel {
    background-position: -200px 0;
  }


  body.cw-unified section.swimlanes > div.swimlane.cw-bezel > div.gradient-overlay {
    display:none;
  }
}