/* BEGIN NOTIFICATION CSS */

.notification-container {
    border: 1px solid #adadad;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    position: absolute;
    top: 30px;
    max-width: 480px;
    max-height: 90%;
    overflow-y: auto;
    background: #fff;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 10001;
    padding: 10px;
    display: none;
    font-size: 12px;
}

.noty_message {
    width: auto !important;
}

.noty_header {
    color: #333;
    background-color: #e5e5e5;
    padding: 4px;
    border-bottom: 1px solid #e5e5e5;
}

.noty_text {
    padding: 4px;
}

.noty_close {
    padding: 4px;
}

.noty_button {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 4px 4px 4px 4px;
    text-decoration: none;
    font-size: 12px;
}

.noty_go {
    border: 1px solid transparent;
    color: #fff;
    background: #3c763d;
}

.noty_go:hover {
    background: #2A532B;
}

.noty_accept,
.noty_dismiss {
    border: 1px solid transparent;
    color: #fff;
    background: #337ab7;
}

.noty_accept:hover,
.noty_dismiss:hover {
    background: #286090;
}

.noty_reject,
.noty_snooze {
    border: 1px solid #adadad;
    color: #333;
    background: transparent;
}

.noty_reject:hover,
.noty_snooze:hover {
    background: #e6e6e6;
}

.noty_close_x {
    float: right;
    cursor: pointer;
    padding: 0px 5px;
    border: 1px solid #adadad;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.notification-bubble-center {
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    width: 20px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #e02424;
    border-radius: 3px;
    color: #fff;
    margin: 0 auto;
    padding: 2px 2px;
    text-align: center;
    font: bold .9em Tahoma, Arial, Helvetica;
    cursor: pointer;
    z-index: 10000;
}

.notification-bubble {
    display: inline-block;
    width: 20px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #e02424;
    border-radius: 3px;
    color: #fff;
    margin: 0 2px;
    padding: 2px 2px;
    text-align: center;
    font: bold .9em Tahoma, Arial, Helvetica;
    cursor: pointer;
    z-index: 10000;
}

.notification-bubble-animating {
    -webkit-animation: animate 1s cubic-bezier(0, 1, 1, 0);
    -moz-animation: animate 1s cubic-bezier(0, 1, 1, 0);
    -ms-animation: animate 1s cubic-bezier(0, 1, 1, 0);
    -o-animation: animate 1s cubic-bezier(0, 1, 1, 0);
    animation: animate 1s cubic-bezier(0, 1, 1, 0);
}

@-webkit-keyframes animate {
    from {
        -webkit-transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes animate {
    from {
        -moz-transform: scale(1);
    }
    to {
        -moz-transform: scale(1.5);
    }
}

@-ms-keyframes animate {
    from {
        -ms-transform: scale(1);
    }
    to {
        -ms-transform: scale(1.5);
    }
}

@-o-keyframes animate {
    from {
        -o-transform: scale(1);
    }
    to {
        -o-transform: scale(1.5);
    }
}

@keyframes animate {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.5);
    }
}


/* END NOTIFICATION CSS */


/* BEGIN VIN CHAT ALERT */

#noty_customBottomLeft_layout_container button {
    margin-right: 5px;
}

#noty_customBottomLeft_layout_container .list-group-item {
    background-color: #dff0d8;
    border-color: #002855;
}

#noty_customBottomLeft_layout_container .noty_text {
    padding: 0px;
}

#noty_customBottomLeft_layout_container .activity {
    padding: 2px;
}


/* END VIN CHAT ALERT */