﻿/* Remove transparency */
#toast-container > div { opacity: 1; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); filter: alpha(opacity=100); }

/* Change offset from top */
.toast-top-center { top: 100px; margin-left: auto; margin-right: auto; }
.toast-top-right { top: 150px; right: 5px; }

#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div { width: 400px; }

/* Remove icons */
#toast-container > .toast-info { background-image: none !important; }
#toast-container > .toast-error { background-image: none !important; }
#toast-container > .toast-success { background-image: none !important; }
#toast-container > .toast-warning { background-image: none !important; }

/* Override padding and width since icon has been removed */
#toast-container > div { padding: 10px; width: 400px; }

/* Override background colours */
.toast-success { background-color: #1FAADF; }
.toast-error { background-color: #BD362F; }
.toast-info { background-color: #1FAADF; }
.toast-warning { background-color: #F89406; }

/* New icon/message div class */
.toastr-iconcontainer { display: inline-block; vertical-align: top; width: 40px; }
.toastr-messagecontainer { display: inline-block; width: 315px }
    .toastr-messagecontainer.full { display: inline-block; width: 355px }
