#show-smile {
  cursor: pointer;
  background-color: antiquewhite;
  padding: 10px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
}

#smile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}
#smile-overlay #smile-popup {
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc(90vw - 120px);
  max-width: 720px;
  height: auto;
  margin: 50px auto auto;
  background-color: #fff;
  z-index: 9999;
  border-radius: 20px;
  border: 1px solid grey;
  padding: 0 0 60px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 480px) {
  #smile-overlay #smile-popup {
    width: 100%;
  }
}
#smile-overlay #smile-popup .top {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  height: 60px;
  background-color: #fff;
  padding: 0 16px 16px 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  min-height: 20px;
}
#smile-overlay #smile-popup .top .close-btn {
  width: 24px;
  height: 24px;
  background-image: url("/img/site/smile/close_icon.svg");
  margin-left: auto;
  cursor: pointer;
}
#smile-overlay #smile-popup .body {
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  max-width: 376px;
  width: 90%;
  height: auto;
}
#smile-overlay #smile-popup .body .header {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 36px;
}
#smile-overlay #smile-popup .body .text {
  text-align: center;
}
#smile-overlay #smile-popup .body img {
  width: 220px;
  height: 64px;
  margin: 60px auto;
}
#smile-overlay #smile-popup .body .btn {
  background-color: #FF6622;
  border-radius: 25px;
  width: 280px;
  height: 46px;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 480px) {
  #smile-overlay #smile-popup .body .btn {
    width: 90%;
  }
}/*# sourceMappingURL=smile.css.map */