
.web-push-container {
    right: 0;
    left: 50%;
    width: 90%;
    opacity: 0;
    bottom: -150px;
    z-index: 99999;
    position: fixed;
    max-width: 400px;
    overflow: hidden;
    border-radius: 5px;
    pointer-events: none;
    background-color: #ffffff;
    transform: translateX(-50%);
    transition: all 300ms;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.web-push-container.active {
    opacity: 1;
    bottom: 10px;
    pointer-events: auto;
}
.web-push-container .web-push-header {
    display: flex;
    align-items: center;
}
.web-push-container .web-push-icon {
    width: 55px;
    height: 55px;
    object-fit: cover;
    object-position: center;
}
.web-push-container .web-push-content {
    color: #212121;
    padding: 4px 8px;
    line-height: 1.4;
}
.web-push-container .web-push-content-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
}
.web-push-container .web-push-content-text {
    font-size: 14px;
}
.web-push-container .web-push-footer {
    display: flex;
}
.web-push-container .web-push-btn {
    width: 50%;
    line-height: 1;
    padding: 12px 6px;
    border-left: 0;
    border-right: 0;
    outline: 0;
}
.web-push-container .web-push-btn-allow {
    color: #ffffff;
    background-color: #0284c7;
    background-image: linear-gradient(#0ea5e9,#0284c7);
    border-top: 2px solid #38bdf8;
    border-bottom: 2px solid #0369a1;
}
.web-push-container .web-push-btn-later {
    color: #212121;
    background-color: #d1d5db;
    background-image: linear-gradient(#e5e7eb,#d1d5db);
    border-top: 2px solid #ebebeb;
    border-bottom: 2px solid #9ca3af;
}

@media(min-width:380px){
    .web-push-container .web-push-content-title {
        font-size: 18px;
    }
    .web-push-container .web-push-content-text {
        font-size: 15px;
    }
}
@media(min-width:400px){
    .web-push-container .web-push-icon {
        width: 65px;
        height: 65px;
    }
    .web-push-container .web-push-content {
        padding: 8px 12px;
    }
}
@media(min-width:410px){
    .web-push-container .web-push-content-title {
        font-size: 19px;
    }
}
@media(min-width:768px){
    .web-push-container {
        top: -150px;
        bottom: auto;
    }
    .web-push-container.active {
        bottom: auto;
        top: 10px;
    }
}