/*
Lav gift product
*/
.lav-boost.lav-boost-gift {

  /*Gift Section*/
  display: block;
  position: fixed;
  width: 4em;
  height: 4em;
  z-index: 91;
  bottom: 1em;
  right: 1em;
  color: #fff;
  background: linear-gradient(135deg, #0cebeb, #20e3b2, #29ffc6);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  min-width: unset;
  overflow: unset;
  padding-bottom: unset;
  &.red {
    background: linear-gradient(135deg, #eb0cac, #e3208b, #ff2930);
  }

  &.yellow {
    background: linear-gradient(135deg, #eb400c, #e39c20, #ffb829);
  }

  &.left {
    right: unset;
    left: 1em;
    .action-button-content {
      right: unset;
      left: 1%;
      transform-origin: bottom left;
    }
  }

  .action-button-icon {
    display: inline;
    height: 100%;
    max-width: 20px;
    text-align: center;
  }

  .action-button-content {
    background-color: white;
    width: 0;
    height: 0;
    position: absolute;
    z-index: 15;
    bottom: 2em;
    right: 1%;
    transform-origin: bottom right;
    transition: box-shadow 50ms ease-out, border-radius 50ms ease-out 25ms, width 90ms ease-in, height 60ms ease-in;
  }

  .action-button-content-inner {
    opacity: 0;
  }

  .p-sell-gift-title{
    @include adaptive-headings(18, 18, 18);
    padding: 10px 40px 10px 15px;
    background: $lav-boost-wc__color-error;
    color: $white;
    font-weight: 500;
    margin-bottom: 0;
  }

  .up-sell-card-title{
    @include adaptive-headings(14, 14, 14);
    color: $lav-boost-main;
    font-weight: 500;
    text-align: left;
  }

  .action-button-content-inner .btn {
    display: block;
    padding: 10px 0;
    text-align: center;
    color: #0cebeb;
    border: 1px solid #0cebeb;
    border-radius: 3px;
    margin-bottom: 1.5em;
    text-decoration: none;
  }

  .action-button-content-inner .btn:hover {
    color: white;
    background: #0cebeb;
  }

  .action-button-content-inner {
    &:after, &:before{
      content: " ";
      position: absolute;
      top: 18px;
      right: 15px;
      color: $white;
      pointer-events: auto;
      transform: rotate(45deg);
      cursor: pointer;
      transition: all 400ms ease-out;
      height: 15px;
      width: 1px;
      background-color: $white;
    }
    &:before {
      transform: rotate(45deg);
    }
    &:after {
      transform: rotate(-45deg);
    }
  }

  &.actionsBoxOpen::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5em;
    height: 1.5em;
    padding: 0.25em;
    transform-origin: 50%;
    transform: translate(-50%, -50%);
    font-size: 200%;
    font-weight: 100;
    line-height: 0.95em;
    text-align: center;
    border-radius: 50%;
    transition: all 400ms ease-out;

  }

  &.actionsBoxOpen .action-button-content {
    width: unset;
    height: unset;
    pointer-events: none;
    max-width: 400px;
    min-width: 300px;
    cursor: default;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 0;
    bottom: 1.5em;
    right: 1.5em;
    transform-origin: bottom right;
    transition: box-shadow 50ms ease-in 100ms, border-radius 50ms ease-in 100ms, width 150ms ease-in, height 150ms ease-in;
  }

  &.actionsBoxOpen .action-button-content-inner {
    opacity: 1;
    transition: opacity 100ms ease-out 200ms;
  }

  &.actionsBoxOpen .action-button-content-inner .btn {
    pointer-events: auto;
  }

  .gift-item{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    gap: 15px;
    border: none;
    border-radius: 0;
    img{
      max-width: 100px;
    }
  }
}
