/* 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: 100000001;
    padding: 10px;
    display: none;
    font-size: 12px;
}

.noty_message {
    width: auto !important;
}

.noty_header {
    color: #333;
    background-color: #f5f5f5;
    padding: 4px;
    border-bottom: 1px solid #e5e5e5;
}

.noty_text {
    padding: 4px;
}

.noty_close {
    padding: 4px;
}

.noty_buttons {
    min-height: 38px;
}

.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_button_remove {
    display: none !important;
}

.noty_go:hover {
    background: #2A532B;
}

.noty_accept,
.noty_dismiss {
    border: 1px solid transparent;
    color: #fff;
    background: #002855;
}

    .noty_accept:hover,
    .noty_dismiss:hover {
        background-color: #001022;
        border-color: #000;
    }

.noty_reject,
.noty_snooze {
    border: 1px solid #adadad;
    color: #333;
    background: transparent;
}

.noty_reject:hover {
    background: #e6e6e6;
}

.noty_snooze {
    border: 1px solid #d7d2cb !important;
    background-color: #fceea8 !important;
    color: #002855 !important;
    float: left;
}

    .noty_snooze:hover {
        background-color: #ffb653 !important;
    }

    .noty_snooze:focus {
        border: 1px solid #fceea8 !important;
        background-color: #ffb653 !important;
        outline: 0 !important;
    }

.noty-snooze-select {
    float: left !important;
    width: 110px !important;
    height: 27px !important;
    line-height: 27px !important;
    padding: 0 6px !important;
}

.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);
}

.noty_inline_layout_container li {
    border-color: #ccc !important;
}

.noty_inline_layout_container li:not(:last-child) {
    margin-bottom: 35px !important;
}

.noty_type_alert:hover {
    background-color: #f5f5f5 !important;
}

@-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;
}

.vinchat-badge {
    font-size: 85%;
    padding: 0px 4px;
    border-radius: 4px;
    margin-left: 2px;
    color: white;
    background: rgba(255,0,0,.85);
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

.vinchat-label {
    margin-left: 2px;
}
/* END VIN CHAT ALERT */