@charset "UTF-8";

@font-face {
    font-family: toast;
    src: url(assets/fonts/toast.eot?76tjxy);
    src: url(assets/fonts/toast.eot?76tjxy#iefix) format("embedded-opentype"), url(assets/fonts/toast.svg?76tjxy#toast) format("svg");
    font-weight: 400;
    font-style: normal
}

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 {
    content: "!"
}

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

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

.toast-icon-success:before {
    content: "✓"
}

.toast-icon-warning:before {
    content: "!"
}

.toast-item-wrapper {
    min-width: 250px;
    max-width: 90%;
    padding: 12px 10px;
    box-sizing: border-box;
    color: #fff;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 30%), 0 4px 6px -4px rgb(0 0 0 / 30%);
    z-index: 9999999 !important;
}

.toast-item-wrapper i.toast-icon {
    position: absolute;
    top: 10px;
    left: 5px;
    right: 9px !important;
    width: 30px;
    text-align: center;
    vertical-align: middle;
    font-size: 23px;
    font-weight: bold;
    border: 3px solid;
    border-radius: 44px;
}

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

.toast-item-wrapper.success {
    background-color: #35b40ee6;
    border: 1px solid #21d121;
}

.toast-item-wrapper.error {
    border: 1px solid #ff4747;
    background-color: #ef4444;
}

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

.toast-item-wrapper.notice {
    background-color: #48a9f8;
    border: 1px solid #208ce4
}

.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-right {
    right: 20px;
    bottom: 20px
}

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

.toast-item-wrapper.fullscreen {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px)
}

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

.toast-item-wrapper .toast-message {
    font-size: .87rem;
    font-size: 13px;
}

.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
}