.cig--arrow-btn-sidebar-wrapper{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
ul.cig--arrow-btn-flex-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

a.cig--arrow-btn {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 100%;
  padding: 8px 10px;
  font-size: 16px;
  color: #112D51;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  text-align: left;
  background: #fff;
  background: linear-gradient(to right, #e0e8f5 50%, #fff 50%) repeat scroll
    right bottom / 200% 100% rgba(0, 0, 0, 0);
  transition: all 250ms ease-in-out;
}
/* a.cig--arrow-btn {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 100%;
  padding: 8px 10px;
  font-size: 16px;
  color: #112D51;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  text-align: left;
  background: #fff;
  background: linear-gradient(to top, #2867c6 50%, #fff 50%) no-repeat;
  background-size: 100% 200%;
  background-position: top;
  transition: all 100ms ease-in-out;
}

a.cig--arrow-btn:hover {
  color: #fff;
  background-position: bottom;
} */

a.cig--arrow-btn:hover {
  /* color: #fff; */
  transform: translateX(5px);
  background-position: left bottom;
}

a.cig--arrow-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

a.cig--arrow-btn::after {
  right: 10px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.33463 8.93937V11.0606H14.6843L11.3094 14.5003L12.782 16L18.668 10L12.782 4L11.3094 5.49974L14.6843 8.93937H1.33463Z' fill='%23112D51'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
/* a.cig--arrow-btn:hover::after {
  background: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 16.4091V19.591H25.0245L19.9622 24.7504L22.171 27L31 18L22.171 9L19.9622 11.2496L25.0245 16.4091H5Z' fill='white'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
} */

@media only screen and (max-width: 768px) {
  a.cig--arrow-btn:hover {
    transform: translateX(0);
    background-position: left bottom;
  }
}

