

@media only screen and (max-width: 500px) {
  .d-toasts {
    position: fixed;
    top: 5px;
    left: 0;
    z-index: 99999;
    padding-top: 5px;
  }
  .d-toasts .d-toast {
    display: block;
    height: 74px;
    margin: 5px;
    cursor: pointer;
  }
  .d-toasts .d-toast .area {
    float: right;
    height: 74px;
  }
  .d-toasts .d-toast .area.area-left {
    width: 33px;
    background: url(../assets/img/bg_toast_1.png) no-repeat;
    background-size: cover;
  }
  .d-toasts .d-toast .area.area-center {
    width: calc(100vw - 94px);
    background: url(../assets/img/bg_toast_2.png);
    background-size: 100% 74px;
    height: 64px;
    padding-top: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    color: #ffe4a9;
    line-height: 22px;
    font-size: 16px;
    text-align: center;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }
  .d-toasts .d-toast .area.area-right {
    width: 31px;
    background: url(../assets/img/bg_toast_3.png) no-repeat;
    background-size: cover;
  }
}
