/**
 * cosyAlert
 * @author Jan Ebsen <xicrow@gmail.com>
 * @version 1.0.0
 * @date 2013-04-09
 * @copyright Jan Ebsen 2013
 */
.cosyAlert-container {
    margin: 10px;
    padding: 0;
    position: fixed;
    /*width: 500px;*/
    font-weight: normal;
    font-size: 115%;
    font-family: Tahoma, Geneva, sans-serif;
    z-index: 9999;
    /*opacity: 0.95;*/
}

.cosyAlert-container.top {
    top: 0;
}

.cosyAlert-container.middle {
    top: 40%;
}

.cosyAlert-container.bottom {
    bottom: 0;
}

.cosyAlert-container.left {
    left: 0;
}

.cosyAlert-container.center {
    margin: 10px auto;
    left: 0;
    right: 0;
}

.cosyAlert-container.right {
    right: 0;
}

.cosyAlert {
    border-radius: 4px;
    box-shadow: 4px 3px 16px #888;
    margin: 5px 0;
    padding: 10px;
    position: relative;
    top: 0;
    left: 0;
    border-width: 1px;
    border-style: solid;
    z-index: 9999;
    border-color: #888;
    background-color: #FFF;
}

.cosyAlert.alert {
    color: #373E42;
    background-color: #FFF8D5;
}

.cosyAlert.notice {
    color: #373E42;
    background-color: #D8F2FF;
}

.cosyAlert.success {
    color: #373E42;
    background-color: #9CFF74;
    border-radius: 4px;
}

.cosyAlert.error {
    color: #FFF3F3;
    background-color: #FF4C4C;
}

.cosyAlert .close {
    margin: 0;
    padding: 2px 0.5em;
    position: absolute;
    top: 5px;
    right: 5px;
    font-weight: bold;
    /*font-size: 150%;*/
    line-height: 35px;
    color: #fff;
    border-radius: 4px;
    background-color: #000;
    cursor: pointer;
}

.cosyAlert .close:hover {
    color: #fff;
}

.cosyAlert .loader {
    margin-top: 15px;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    clear: both;
}

.cosyAlert .loader-bar {
    width: 100%;
    height: 2px;
    /*border-radius: 2px;*/
    background: #888;
    /*box-shadow: 1px 1px 4px #888;*/
}

.cosyAlert.error .loader-bar {
    width: 100%;
    height: 2px;
    background: #fff;
}

.cosyAlert.error {
    border-radius: 4px;
    box-shadow: 4px 3px 16px #888;
    margin: 5px 0;
    padding: 10px;
    position: relative;
    top: 0;
    left: 0;
    border-width: 1px;
    border-style: solid;
    z-index: 9999;
    border-color: #fff;
}


@media only screen and (min-width: 991px) {
    .cosyAlert-container {
        min-width: 800px;
    }
}

@media only screen and (min-width: 767px) {
    .cosyAlert-container {
        min-width: 600px;
    }
}


@media only screen and (min-width: 520px) {
    .cosyAlert-container {
        min-width: 500px;
    }
}