/*================================================
  toast-box
=================================================*/
.toast_box {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-20%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #1d1d1f;
  color: #fff;
  border-radius: 4px;
  padding: 18px 20px;
  min-width: 327px;
}

.toast_box ul {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.toast_box ul li:first-of-type {
  margin-right: 0.8em;
}

.toast_box button {
  background: transparent;
  padding: 0;
  width: auto;
  line-height: 100%;
}
