.my-ticket-fab {
  position: absolute;
  right: 32px;
  bottom: 124px;
  z-index: 1032;

  width: 172px;
  height: 160px;

  border: none;
  border-radius: 10px;

  background: linear-gradient(
    180deg,
    #fcfcc7 0%,
    #a29778 35.58%,
    #ffffca 73.08%,
    #9d9274 100%
  );

  box-shadow: 0px 4px 8px 0px #00000080;
}

.my-ticket-fab::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 6px;
  background: linear-gradient(180deg, #af0000 0%, #78000a 72.6%, #6c1018 100%);
}

.my-ticket-container {
  width: 100%;
  height: 100%;

  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;

  font-size: 40px;
}

.my-notification {
  position: absolute;
  right: -16px;
  top: -16px;

  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: linear-gradient(
    180deg,
    #fcfcc7 0%,
    #a29778 35.58%,
    #ffffca 73.08%,
    #9d9274 100%
  );
}

.my-notification::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, #af0000 0%, #78000a 72.6%, #6c1018 100%);
}

.my-notification span {
  font-size: 28px;
  z-index: 1;
}

@media (max-width: 1200px) {
  .my-ticket-fab {
    bottom: 272px;
  }
}
