﻿/*
 * container for positioning
 */
.alert {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width:500px;
}


.notify {
    position: fixed;
    top: 10px;
    left: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 600px;
}

.notify-noshowagain {
    clear: both;
    margin-right: 2px;
    text-align: right;
    font-size: small;
    padding-top: 10px;
}

    .notify-noshowagain a {
        color: white;
    }
/* Positions
========================================================================== */
.notify-top-right,
.notify-bottom-right {
    left: auto;
    right: 10px;
}

.notify-top-center,
.notify-bottom-center {
    left: 49%;
    margin-left: -48%;
    width: 98%;
    text-align: center;
}

.notify-bottom-left,
.notify-bottom-right,
.notify-bottom-center {
    top: auto;
    bottom: 10px;
}

/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 479px) {
    /*
     * Fit in small screen
     */
    .notify {
        left: 10px;
        right: 10px;
        width: auto;
        margin: 0;
    }
}

/* Sub-object: `notify-message`
========================================================================== */
.notify-message {
    position: relative;
    cursor: pointer;
}

.notify .alert-default {
    background: #c3c3c3;
    border: 1px solid #808080;
    color: black;
}

    .notify .alert-default a {
        color: white;
    }
