/*!
 * @license rchat_widget-1.0.0.css
 * Copyright (c) 2021 Rakuten.Inc
 * Date: 2021-02-15 17:29:20
 */
#chat_widget.chat {
  position: fixed;
  background: #FFFFFF;
  border: 1px solid #BF0000;
  box-sizing: border-box;
  box-shadow: 0px 1.25px 6px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  z-index: 16000003;
  opacity: 1;
  width: 74px;
  height: 74px;
  left: 24px;
  bottom: 100px;
  cursor: pointer;
  animation: fadeInChat 1s forwards;
  /* icon display animation */ }

/* this widget is displayed as an animation, the initial position is set */
#chat_widget.chat.init {
  opacity: 0;
  width: 0px;
  height: 0px;
  left: 61px;
  bottom: 137px; }

#chat_widget .frame {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  padding: 0px;
  position: absolute;
  width: 60px;
  height: 53px;
  left: calc(50% - 60px/2);
  top: calc(50% - 53px/2); }

#chat_widget .icon {
  background-image: url(https://r.r10s.jp/com/img/rms/storefront/pc/page/chat_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 21px;
  position: static;
  width: 100%;
  height: 21px; }

#chat_widget .text {
  font-family: Hiragino Kaku Gothic ProN;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  color: #BF0000;
  width: 60px;
  height: 29px; }

@keyframes fadeInChat {
  0% {
    opacity: 0;
    width: 0px;
    height: 0px;
    left: 61px;
    bottom: 137px; }
  50% {
    opacity: 1;
    width: 84px;
    height: 84px;
    left: 19px;
    bottom: 95px; }
  100% {
    opacity: 1;
    width: 74px;
    height: 74px;
    left: 24px;
    bottom: 100px; } }

/*# sourceMappingURL=rchat_widget-1.0.0.css.map*/