@charset "UTF-8";

@media screen and (max-width:799px) {
  .MessagePopupArea{
    width: 100%;
  }
  .MessagePopupAreaFrame{
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .MessagePopup{
    margin-right: 10px;
  }
}
@media screen and (min-width:800px) {
  .MessagePopupArea{
    width: 100vw;
  }
  .MessagePopup{
    margin-right: 100px;
  }
}

.MessagePopupArea{
  position: fixed;
  top: 100px;
  left: 0px;
  z-index: 20;
}
.MessagePopupAreaFrame{
  display: flex;
  flex-direction: column;
}
.MessagePopup{
  align-self: end;
  margin-top: 5px;
  margin-right: 100px;
}
.MessagePopup{
  display: none;
}
.MessagePopup.Active{
  display: block;
}
.MessagePopup .MessagePopupFrame{
  width: fit-content;
  height: 40px;
  border-width: 1px;
  border-style: solid;
  border-radius: 15px;
}
.MessagePopup .MessagePopupContents{
  height: 100%;
  display: flex;
  align-items: center;
}
.MessagePopup .MessagePopupFrame[data-message-type="1"]{
  background-color: #e1e5ef;
}
.MessagePopup .MessagePopupFrame[data-message-type="2"]{
  background-color: #fed9d9;
}
.MessagePopupContents .InformationImage{
  width: 30px;
  height: fit-content;
  margin-left: 10px;
  margin-right: 10px;
}
.MessagePopupContents .InformationImage img{
  margin-top: 4px;
}
.MessagePopupContents .MessageText{
  margin-right: 10px;
}
.MessagePopupContents .MessageText p span[data-message]::after{
  white-space: nowrap;
  content: attr(data-message);
}
.MessagePopupContents .MessageText p{
  font-size: 14px;
  color: #666;
}