.post-type-archive-notiser,
.single-notiser {
    background: #f0f0f0;
}

.notice {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

.notice .date {
    color: #777;
    margin-bottom: 10px;
}

.notice .title {
    margin-bottom: 10px;
    font-size: 44px;
}

@media(max-width: 767px) {
    .notice .title {
        margin-bottom: 10px;
        font-size: 26px;
    }
}

.notices-wrapper {
    height: 100%;
    border: 1px solid #f0f0f0;
}

.notices-list {
    list-style: none;
    overflow-y: scroll;
    padding: 10px 20px;
    margin: 10px 0 0;
    height: calc(100% - 68px);
}

/* width */
.notices-list::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.notices-list::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.notices-list::-webkit-scrollbar-thumb {
    background: #555;
	border-radius: 5px;
}

.notices-list .notice-item {
    border-bottom: 1px solid #c2c2c2;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.notices-list .notice-item .category a {
    color: rgb(90, 90, 90);
    text-transform: uppercase;
    display: inline-block;
}

.notices-list .notice-item a {
    color: #000;
    text-decoration: none;
    display: block;
}

.notices-list .notice-item a:hover {
    color: #000;
    text-decoration: underline;
}

.notices-list .notice-item .notice-title {
    display: block;
}

.notices-list .notice-item .notice-title:before {
    content: "";
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: #dd2400;
    display: inline-block;
    margin-right: .333em;
}

.notices-list .notice-item .notice-title strong {
    color: #dd2400;
    font-weight: bold;
}

.notices-list .notice-item .notice-title .title {
    font-size: 18px;
    font-weight: bold;
    display: block;
}

.notices-list .notice-item img {
    max-width: 400px;
    width: 100%;
    margin-bottom: 10px;
}

.notices-wrapper .notice-header {
    background: #dd2400;
    text-align: center;
    display: block;
    margin: auto;
    width: 100px;
    color: #fff;
    padding: 2px;
    position: relative;
    bottom: 15px;
}

.notices-wrapper .notices-footer {
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

.article-list-title::before,
.notices-wrapper.notices-widget .notice-header::before {
    content: '';
    background: url(feed.svg) 50% no-repeat;
    height: 26px;
    width: 22px;
    top: 0;
    position: absolute;
    left: 10px;
    animation: pulse 2s infinite;
}

.notices-wrapper.notices-widget .notice-header::after {
    content: '';
    top: 8px;
    position: absolute;
    left: 16px;
    animation: pulseborder 2s infinite;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.notices-wrapper.notices-widget .notice-header {
    width: 100%;
    bottom: 0;
    text-align: left;
    padding: 2px 20px 2px 40px;
    font-weight: bold;
}

@keyframes pulseborder {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.1);
    }

    40% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}