.occasionCard {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  z-index: 10;

  transition: background 0.3s ease-in-out;
  border: 2.5px solid #e9ffec;
  border-radius: 16px;
  background: #fff;
  padding: 30px;
  width: 100%;

  .icon {
    svg {
      react {
        transition: all 0.3s ease-in;
      }
    }
  }

  .arrowUpIcon {
    // position: absolute;
    display: none;
  }

  .active,
  &:hover {
    box-shadow: 10px 10px 20px 0px rgba(233, 255, 236, 0.2);
    background-color: #b7e9bd;

    .RightCarrrotIcon {
      display: none;
    }
    .arrowUpIcon {
      display: block;
    }
    .icon {
      svg {
        rect {
          fill: #2a6933;
        }
        path {
          fill: #fff;
        }
      }
    }
  }

  .icon {
    width: 40px;
    height: 40px;
  }
}
