/** 03.09 Toastr */
/* Toastr */
#toast-container { position: fixed; z-index: 999999; margin-top: 22px; margin-bottom: 16px; }
#toast-container .toast { opacity: 1; }
.toast { font-size: 1em; }
.toast-top-center { top: 0; right: 0; width: 100%; }
.toast-bottom-center { bottom: 0; right: 0; width: 100%; }
.toast-top-full-width { top: 0; right: 0; width: 100%; }
.toast-bottom-full-width { bottom: 0; right: 0; width: 100%; }
.toast-top-left { top: 0; left: 16px; }
.toast-top-right { top: 0; right: 16px; }
.toast-bottom-right { right: 16px; bottom: 0; }
.toast-bottom-left { bottom: 0; left: 16px; }
.toast-top-center > div, .toast-bottom-center > div { width: 650px; max-width: 90%; margin-left: auto; margin-right: auto; }
.toast-top-full-width > div, .toast-bottom-full-width > div { width: 96%; margin-left: auto; margin-right: auto; }
.toast { background: #fff; color: #fff; overflow: hidden; margin: 0 0 8px; padding: 15px 51px 15px 15px; width: 300px; border-radius: 5px; border: none; display: flex; align-items: center; box-shadow: 0px 2px 18px 2px rgba(18, 24, 58, 0.25); background: #1f1f1f; position: relative; }
.toast-close-button { margin-top: 0; cursor: pointer; position: absolute; text-align: left; right: 15px; text-indent: -9999em; overflow: hidden; background: none; border-radius: 50%; border: none; height: 36px; width: 36px; transition: all .3s; }
.toast-close-button:after { position: absolute; font-family: 'Font Awesome 5 Pro'; font-weight: 700; content: "\f00d"; top: 0; right: 0px; text-indent: 0; display: block; font-size: 1em; line-height: 38px; height: 36px; width: 36px; text-align: center; color: #fff; transition: all .3s; }
.toast-close-button:hover, .toast-close-button:focus { padding: 0; background: rgba(246, 250, 253, 0.15); box-shadow: none; outline: none; }
.toast-message { position: relative; flex-grow: 1; font-size: 1em; line-height: 17px; display: flex; align-items: center; padding-left: 10px; min-height: 30px; color: white; font-weight: 400; }
.toast-message strong{ font-weight: 500; color: white; }
.toast-message-icon { display: inline-block; font-size: 1em; margin-right: 15px; margin-left: -10px; text-align: center; height: 30px; width: 30px; line-height: 29px; border-radius: 50%; min-width: 30px; padding: 1px; }
.toast-message-icon.ti-alert:before { position: relative; top: -2px; }
.toast-info .toast-message-icon { background: #026bfb; }
.toast-warning .toast-message-icon { background: #ff9800 !important; }
.toast-success .toast-message-icon { background: #02c0ce !important; }
.toast-error .toast-message-icon { background: transparent !important; }