.notify_top_wrapper {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 62px;
    z-index: 99999;
}
.notify_button {
    box-sizing: border-box;
    height: 40px;
    width: 40px;
    background: gainsboro url(images/notifications.png);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.31);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.31);
    cursor: pointer;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #B7BCBB;
	margin-right:20px;
}
.notify_button_unread {
    background: gainsboro url(images/notifications_new.png) !important;
}
.notify_message_wrapper {
    box-sizing: border-box;
    border: 1px solid #4267D6;
	border-radius: 6px;
    padding: 10px;
    width: 380px;
    height: 500px;
    position: relative;
    background: gainsboro;
    margin-top: 40px;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.31);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.31);
    overflow-y: scroll;
    display: none;
}
.notify_message_wrapper::-webkit-scrollbar {
    width: 6px;
}
.notify_message_wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.notify_message_wrapper::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.notify_message_wrapper a {
    color: #292929 !important;
    font-weight: normal;
    text-decoration: none;
}
.notify_message_box {
    box-sizing: border-box;
    background-color: white;
    padding: 10px;
    width: 100%;
    margin: 3px 0;
    position: relative;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    vertical-align: top;
    border: 1px solid #4267D6;
}
.notify_message_box_link {
    cursor: pointer;
}
.notify_message_box_link:hover {
    background-color: floralwhite;
}
.notify_message_box_image {
    box-sizing: border-box;
    display: inline-block;
    width: 50px;
    vertical-align: top;
}
.notify_message_box_image img {
    box-sizing: border-box;
    max-width: 70%;
}
.notify_message_box_main {
    box-sizing: border-box;
    display: inline-block;
    padding-top: 2px;
    padding-left: 5px;
    width: calc(100% - 50px);
    vertical-align: top;
}
.notify_message_box_date {
    margin-top: 5px;
    color: #888887;
    font-size: 10px;
}