.ahura-alert-box2-element {
    display: inline-block;
    position: relative;
}

.ahura-alert-box2-element .ah-toggle-alert-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    background-color: #fff;
    border-radius: 6px;
    font-size: 17px;
    color: #333;
}

.ahura-alert-box2-element .ah-alert-box-content {
    position: absolute;
    top: 100%;
    right: 0;
    width: 270px;
    padding-top: 8px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px);
    transition: ease .17s;
}

.ahura-alert-box2-element .ah-alert-box-content.show-alerts {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.ahura-alert-box2-element .ah-alert-box-content .alert-items {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    z-index: 999;
    border-radius: 6px;
    box-shadow: 0 10px 35px #0000000d;
}

.ahura-alert-box2-element .ah-alert-box-content .alert-item {
    font-size: 14px;
    color: #3a3a3a;
    margin: 7px 0;
}

.ahura-alert-box2-element .ah-alert-box-content .alert-item .alert-meta {
    margin-top: 4px;
    font-size: 13px;
    color: #bdbdbd;
}

.ahura-alert-box2-element .ah-alert-box-content .not-found-alert {
    font-size: 14px;
}