.notificate-wrapper {
    bottom: 0px;
    right: 0px;
    position: fixed;
    padding: 15px;
    overflow: hidden;
    transform: translate3d(0,0,0);
}

.notice-block {
    color: #000;
    display: none;
    position: relative;
    padding: 20px;
    /*max-width: 340px;*/
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #ffffff;
    margin-top: 15px;
    z-index: 9999;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    1px 1px 10px 0px rgba(50, 50, 50, 0.75);
    box-shadow:         1px 1px 10px 0px rgba(50, 50, 50, 0.75);
}

.notice-block > a {
    text-decoration: none;
    color: #000!important;
    border-bottom: none;
}

.notice-block > a:hover {
    border-bottom: none;
}

.notice-data,
.notice-image {
    display: inline-block;
    vertical-align: top;
}

.notice-data {
    padding-left: 15px;
    width: 250px;
}

.notice-title {
    font-size: 16px;
    font-weight: bold;
}

.notice-close {
    background: url("../images/close-x.png");
    background-size: 12px;
    height: 12px;
    width:12px;
    position: absolute;
    top: 7px;
    right: 7px;
    font-size:12px;
    cursor: pointer;
    color: #999;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .notificate-wrapper {
        left: 0px;
        text-align: center;
    }
    .notice-image {
        float: none;
    }
    .notice-data {
        padding-left: 0;
        display: block;
        width: auto;
    }

}

.notificate-wrapper_vk {
    left: 0;
    right: auto;
}

@media (max-width: 480px) {
    .notificate-wrapper_vk {
        right: 0;
    }
}

.notificate-wrapper_vk .notice-data {
    color: #fff;
    width: 200px;
    padding-left: 8px;
}

@media (max-width: 480px) {
    .notificate-wrapper_vk .notice-data {
        width: auto;
    }
}

.notificate-wrapper_vk .notice-block {
    background: rgba(0, 0, 0, 0.7);
    left: 0;
    padding: 8px;
    border: 0;
    box-shadow: none;
}

.notificate-wrapper_vk .notice-title {
    color: #fff;
    font-size: 14px;
}

.notificate-wrapper_vk .notice-text {
    font-size: 12px;
    margin-top: 10px;
}

.notificate-wrapper_vk .notice-close {
    background-image: url("../images/vk-close-x.svg");
    background-size: 6.25px;
    background-repeat: no-repeat;
    background-position: left 50% center;
    border: 2px solid #fff;
    border-radius: 4px;
    height: 16px;
    width: 16px;
}