.pushSubscribe {
    display: flex;
    position: fixed;
    left: 70%;
    transform: translate(-50%, 0);
    max-height: 150px;
    border-radius: 10px;
    padding: 10px 20px 10px 10px;
    box-sizing: border-box;
    border: 1px solid #bdbdbd;
    box-shadow: 10px 10px 23px 0px #000;
    overflow: hidden;
    width: 100%;
    max-width: 330px;
    background: #fff;
    z-index: 99999;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition-duration: 0.8s;
    transform: scale(5);
    opacity: 0.1;
    top: 120%;
    font-size: 14px;
}
.pushSubscribe.intoview {
    top: 20px;
    transform: scale(1) translate(-50%, 0);
    opacity: 1;
}
.pushSubscribe.intoview.closeview {
    transform: scale(0.1);
    top: -55px;
    opacity: 0.1;
}
.pushSubscribe bell {
    position: relative;
    width: 40px;
    fill: #15754c;
}
.pushSubscribe bell .frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
}
.pushSubscribe bell .bell {
    width: 50px;
    fill: #15754c;
    transform-origin: top;
    animation: ring 1.5s linear -1ms infinite alternate;
}
.pushSubscribe button {
    width: min-content;
    cursor: pointer;
    background: transparent;
    border: none;
}
.pushSubscribe item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 3;
    padding: 0 20px 0 0;
}
.pushSubscribe item > * {
    flex-grow: 1;
    width: 100%;
}
.pushSubscribe item label {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
}
.pushSubscribe item label > * {
    flex-grow: 1;
}
.pushSubscribe item button {
    width: min-content;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    background: #15754c;
    border: none;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    transition: 0.3s ease;
}
.pushSubscribe item button:hover {
    color: #15754c;
    background: transparent;
}
.pushSubscribe .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
}
@media screen and (max-width: 415px) {
    .pushSubscribe.intoview {
        transform: scale(1);
        left: 5%;
        right: 5%;
        width: auto;
    }
}
/*keyframes*/
@keyframes ring {
    0%, 50% {
        transform: rotate(0);
    }
    1%, 10%, 20%, 30%, 40% {
        transform: rotate(10deg);
    }
    5%, 15%, 25%, 35%, 45% {
        transform: rotate(-10deg);
    }
}
