.toast-title {
    color: #ffffff !important;
    font-size: 15px;
}

.toast-message {
    font-size: 15px;
    color: #ffffff !important;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.toast-close-button {
    position: relative;
    right: -0.3em;
    top: -0.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff !important;
    opacity: 0.9 !important;
    line-height: 1;
}

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}

#toast-container * {
    box-sizing: border-box;
}

#toast-container>div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px;
    width: 300px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    color: #ffffff !important;
    opacity: 1 !important;
}

.toast-success {
    background-color: #369b67 !important;
}

.toast-error {
    background-color: #bd362f !important;
}

.toast-info {
    background-color: #2f96b4 !important;
}

.toast-warning {
    background-color: #f89406 !important;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #ffffff !important;
    opacity: 0.4 !important;
}

.toast-top-right {
    top: 12px;
    right: 12px;
}

.toast-top-left {
    top: 12px;
    left: 12px;
}

.toast-bottom-right {
    bottom: 12px;
    right: 12px;
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px;
}

@media all and (max-width: 480px) {
    #toast-container>div {
        width: 18em;
        padding: 12px;
    }
    .toast-title,
    .toast-message {
        font-size: 14px !important;
    }
}

@media all and (max-width: 240px) {
    #toast-container>div {
        width: 11em;
    }
}