<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.bottomLightBox {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  min-height: 100px;

  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #000000 0%, #2A2A2A 100%);
  box-shadow: 0px -1px 8px rgba(27, 27, 27, 0.8);

  box-sizing: border-box;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  
  z-index: 10;
}

.bottomLightBox .content {
  display: flex;
}

.bottomLightBox .content .message .title {
  font-weight: 500;
  color: #FF6B00;
}

.bottomLightBox .content .message .description {
  font-weight: normal;
  margin-top: 4px;
}

.bottomLightBox .action .reject {
  font-size: 13px;
}

@media screen and (min-width: 320px) {
  .bottomLightBox {
    flex-direction: column;

    max-width: 100%;
    min-width: 100%;  

    padding: 15px 10px;
  }

  .bottomLightBox .content .giftBox {
    width: 30px;
    height: 30px;
  }

  .bottomLightBox .content .message {
    margin: 0 0 0 5px;
  }  
  
  .bottomLightBox .content .message .title {
    font-size: 15px;
    line-height: 22px;
  }

  .bottomLightBox .content .message .message {
    font-size: 12px;
  }

  .bottomLightBox .action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row-reverse;

    align-self: flex-end;

    margin-top: 10px;
  }

  .bottomLightBox .action .reject {
    margin-top: 0;
    margin-right: 10px;
  }  
}

@media screen and (min-width: 540px) {
  .bottomLightBox {
    flex-direction: row;

    max-width: 600px;
    min-width: 540px;  

    padding: 20px;
  }

  .bottomLightBox .content .giftBox {
    width: 38px;
    height: 40px;
  }

  .bottomLightBox .content .message {
    margin: 0 10px;
  }
  
  .bottomLightBox .content .message .title {
    font-size: 18px;
    line-height: 25px;
  }

  .bottomLightBox .content .message .message {
    font-size: 13px;
  }

  .bottomLightBox .action {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;

    margin-top: 0;
  }

  .bottomLightBox .action .reject {
    margin-top: 8px;
    margin-right: 0;
  }
}</pre></body></html>