@charset "UTF-8";
/* CSS Document */
body .chatai {
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 9;
  display: inline-block;
}
body .chatai a {
  width: 60px;
  height: 54px;
  display: inline-block;
  transition: all 200ms ease-out;
}
body .chatai img {
  width: 60px;
}
body .chatai a:hover {
  text-decoration:none;
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.ai-detail {
  position:fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 0 5px;
}
.ai-detail .bt-close {
  /* position:absolute; */
  right:15px;
  top:0;
}
.ai-detail .ai-shadow {
    box-shadow: 1px 0px 10px 1px rgba(0,0,0,0.5);
    -webkit-box-shadow: 1px 0px 10px 1px rgba(0,0,0,0.5);
    -moz-box-shadow: 1px 0px 7px 1px rgba(0,0,0,0.5);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.ai-detail .modal-header {
  align-items:center;
  padding: 8px 10px;
  background-color: #acdce3;
  border-top-left-radius: calc(.5rem - 1px);
  border-top-right-radius: calc(.5rem - 1px);
  overflow: hidden;
  font-size: 85%;
}

.ai-detail .modal-header .ai-booth {
    background-color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 5px 0 0;
    position: relative;
}

.ai-detail .modal-header .ai-booth img {
    width: 35px;
    height: 35px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.ai-detail .modal-header p {
  font-size: 70%;
  font-weight:initial;
  line-height: 100%;
}
.ai-detail .close {
  color: #000;
  padding: 0;
  margin: 0;
  width: 35px;
  height: 35px;
  position: relative;
}

.ai-detail .close img {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0, -50%);
}
.ai-detail .card {
  border:none;
  padding: 0;
  display: block;
  /* max-width: 500px; */
  height: 500px;
  background-color: #f6f6f7;
  border-radius: 0;
}
.ai-detail.zoomed {
  width: 100%
}
@media screen and (min-width: 575px) {
.ai-detail {
  width: 500px;
}
}