/*!
 * Bootoast CSS
 * @author odahcam
 */

.bootoast {
    opacity: 0;
    filter: alpha(opacity=0)
}

.bootoast>.glyphicon {
    display: inline-block;
    /* yeah, this float is a "hack" */
    float: left;
    font-size: 20px;
    margin-right: 14px;
}

.bootoast>.bootoast-alert-container {
    display: block;
    max-width: 100%;
    overflow: auto;
}

.bootoast>.bootoast-alert-container>.bootoast-alert-content {
    display: table;
    width: 100%;
    height: 100%
}

.bootoast.alert-default {
    background: #eee;
}

.bootoast>.progress.progress-bottom {
    width: auto;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
}

.bootoast>.progress.progress-bottom {
    margin-bottom: -.75rem;
}

.bootoast>.progress.progress-top {
    margin-top: -.75rem;
}

.bootoast>.progress.progress-background {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .35;
}

.bootoast-container {
    position: fixed;
    left: 20px;
    right: 20px;
    top: initial;
    bottom: initial;
    width: 390px;
    max-width: 95%;
    z-index: 999999
}

.bootoast-container.top {
    top: 20px
}

.bootoast-container.bottom {
    bottom: 120px
}

.bootoast-container.right {
    left: initial
}

.bootoast-container.left {
    right: initial
}

.bootoast-container.center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}

.bootoast-container .alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.bootoast-container .alert-success hr {
  border-top-color: #b1dfbb;
}

.bootoast-container .alert-success .alert-link {
  color: #0b2e13;
}

.bootoast-container .alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.bootoast-container .alert-info hr {
  border-top-color: #abdde5;
}

.bootoast-container .alert-info .alert-link {
  color: #062c33;
}

.bootoast-container .alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.bootoast-container .alert-warning hr {
  border-top-color: #ffe8a1;
}

.bootoast-container .alert-warning .alert-link {
  color: #533f03;
}

.bootoast-container .alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.bootoast-container .alert-danger hr {
  border-top-color: #f1b0b7;
}

.bootoast-container .alert-danger .alert-link {
  color: #491217;
}

.bootoast-container .alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.bootoast-container .alert-light hr {
  border-top-color: #ececf6;
}

.bootoast-container .alert-light .alert-link {
  color: #686868;
}

.bootoast-container .alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.bootoast-container .alert-dark hr {
  border-top-color: #b9bbbe;
}

.bootoast-container .alert-dark .alert-link {
  color: #040505;
}