.toastContainer {
    opacity: 0;
    visibility: hidden;
    width: calc(100% - 2em);
    max-width: 400px;
    position: fixed;
    top: 3em;
    right: 1em;
    z-index: 900;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.closeBtn {
    cursor: pointer;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: rgba(35,31,32,0.85);
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.closeBtn hr {
    width: 75%;
    height: 2px;
    margin: 0 !important;
    padding: 0;
    border: 0;
    background: #ca6245;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: translate(-50%,-50%) rotate(-45deg);
    transform: translate(-50%,-50%) rotate(-45deg)
}

.closeBtn hr+hr {
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transform: translate(-50%,-50%) rotate(45deg)
}


.toastContainer .closeBtn {

    background: #bf5436;
    position: absolute;
    right: 0;
    z-index: 2
}

.toastContainer .closeBtn hr {
    background: #ecc7bc
}

.toastContainer.active {
    opacity: 1;
    visibility: visible;
    top: 1em
}

.toast {
    padding: 48px 2em 2em 2em;
    background: #ecc7bc;
    border-radius: 0;
    -webkit-box-shadow: 0 12px 48px rgba(132,58,37,0.3);
    box-shadow: 0 12px 48px rgba(132,58,37,0.3);
    max-height: calc(100vh - 2em);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    color: #231f20;
    position: relative;
    z-index: 1
}

.toast h2 {
    margin-top:0;
    color: #bf5436;
    text-align:left;
}

.toast .redText {
    color: #bf5436
}
