@charset "UTF-8";

@font-face {
    font-family: 'toast';
    src: url("../fonts/toast.eot");
    src: url("../fonts/toast.eot") format("embedded-opentype"), url("../fonts/toast.ttf") format("truetype"), url("../fonts/toast.woff") format("woff"), url("../fonts/toast.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "fontawesome";
    src: url('../fonts/font-awesome-4.7.0/css/font-awesome.min.css');
}

i {
    font-family: "toast";
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.toast-icon-error:before {
    color: red;
    content: "";
}

.toast-icon-info:before {
    content: "";
}

.toast-icon-notice:before {
    content: "";
}

.toast-icon-success:before {
    opacity: 0.8;
    color: rgb(68, 154, 58);
    content: "";
}

.toast-icon-warning:before {
    content: "";
}

.toast-item-wrapper {
    min-width: 250px;
    padding: 10px;
    box-sizing: border-box;
    color: #fff;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.toast-item-wrapper i.toast-icon {
    position: absolute;
    top: 15px;
    left: 0;
    width: 50px;
    text-align: center;
    vertical-align: middle;
    font-size: 1.5rem
}

.toast-item-wrapper .toast-close {
    color: #000;
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    text-align: center;
    cursor: pointer
}

.toast-item-wrapper.success {
    box-shadow: 0 2px 20px 0 rgba(34, 41, 47, .08);
    background-color: #fff;
}

.toast-item-wrapper.error {
    box-shadow: 0 2px 20px 0 rgba(34, 41, 47, .08);
    background-color: #fff;
}

.toast-item-wrapper.warning {
    background-color: #fff1c0;
    border: 1px solid #f0c948;
    color: #333;
}

.toast-item-wrapper.notice {
    background-color: #48a9f8;
}

.toast-item-wrapper.info {
    background-color: #7f97a3;
    border: 1px solid #6b8699
}

.toast-item-wrapper.toast-top-left {
    left: 20px;
    top: 20px;
}

.toast-item-wrapper.toast-top-right {
    right: 20px;
    top: 20px;
}

.toast-item-wrapper.toast-top-center {
    margin: 0 auto;
    top: 20px;
}

.toast-item-wrapper.toast-bottom-left {
    left: 20px;
    bottom: 20px;
}

.toast-item-wrapper.toast-bottom-center {
    margin: 0 auto;
    bottom: 20px;
}

.toast-item-wrapper p {
    margin: 0;
}

.success .toast-title {
    font-size: 17px !important;
    color: rgb(68, 154, 58);
}
.success p {
    line-height: 1.7 !important;
}
.error .toast-title {
    font-size: 17px !important;
    color: rgb(247, 4, 4) !important;
}
.toast-item-wrapper .toast-message {
    color:#666666;
    font-size: .87rem;
}

.toast-item-wrapper .toast-progress {
    width: 0;
    height: 3px;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    bottom: 0;
    right: 0;
}

.toast-item-wrapper.rtl {
    direction: rtl;
    text-align: right;
}

.toast-item-wrapper.rtl i.toast-icon {
    left: auto;
    right: 0;
}

.toast-item-wrapper.rtl .toast-close {
    right: auto;
    left: 0;
}

.toast-item-wrapper.rtl p {
    text-align: right;
}

.toast-item-wrapper.rtl .toast-progress {
    left: auto;
    right: 0;
}