﻿.toastR {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

#toastR-container {
    display: block;
    position: fixed;
    z-index: 10000;
    position: fixed; /* or absolute */
    top: 50%;
    left: 50%;
}

@media only screen and (max-width: 600px) {
    #toastR-container {
        min-width: 100%;
        bottom: 0%;
    }
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
    #toastR-container {
        /*left: 5%;*/
        bottom: 7%;
        max-width: 90%;
        position: fixed; /* or absolute */
        top: 50%;
        left: 50%;
    }
}

@media only screen and (min-width: 993px) {
    #toastR-container {
        top: 10%;
        /*right: 7%;*/
        max-width: 86%;
        position: fixed; /* or absolute */
        top: 50%;
        left: 50%;
    }
}

.toastR {
    border-radius: 2px;
    top: 35px;
    width: auto;
    clear: both;
    margin-top: 10px;
    position: relative;
    max-width: 100%;
    height: auto;
    min-height: 48px;
    line-height: 1.5em;
    /*word-break: break-all;*/
    background-color: #e70095;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 300;
    color: white;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: solid 1px #e70095;
}

    .toastR .btn, .toastR .btn-large, .toastR .btn-flat {
        margin: 0;
        margin-left: 3rem;
    }

    .toastR.rounded {
        border-radius: 24px;
    }

@media only screen and (max-width: 600px) {
    .toastR {
        width: 100%;
        border-radius: 0;
    }
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
    .toastR {
        /*float: left;*/
    }
}

@media only screen and (min-width: 993px) {
    .toastR {
        /*float: right;*/
    }
}
