.container--toast {
    right: 5px;
    top: 10px;
    width: 100%;
    position: fixed;
    z-index: 9999999;
    height: auto
}

.container--toast div {
    border-radius: 30px;
    -ms-border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -khtml-border-radius: 30px;
    width: calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: -webkit-calc(100% - 20px);
    width: -o-calc(100% - 20px);
    width: expression(100% - 20px);
    max-width: 360px;
    border: 3px solid #cfa150;
    box-sizing: border-box;
    box-shadow: 3px 3px 10px 0 rgba(0,0,0,.4);
    background: #7c2e0e;
    color: #ffc95e;
    font-family: "special_elite",sans-serif;
    font-size: 17px;
    float: right;
    min-height: 46px;
    padding: 5px 0 0 20px;
    display: block;
    margin: 0 5px 10px 0;
    line-height: 35px
}

@media only screen and (min-width: 768px) {
    .container--toast {
        width:450px;
        top: 20px;
        right: 20px
    }

    .container--toast div {
        float: none;
        width: 100%;
        max-width: 100%
    }
}