.pushSubscribe {
    background: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 10px;
    box-shadow: 10px 10px 23px 0 rgba(0, 0, 0, .1);
    box-sizing: border-box;
    display: flex;
    font-size: 14px;
    left: 70%;
    max-height: 150px;
    max-width: 350px;
    opacity: .1;
    overflow: hidden;
    padding: 10px;
    position: fixed;
    top: 120%;
    transform: translate(-50%);
    transform: scale(5);
    transition-duration: .8s;
    transition-timing-function: cubic-bezier(.68, -.55, .27, 1.55);
    width: 100%;
    z-index: 99999
}

.pushSubscribe.intoview {
    opacity: 1;
    top: 20px;
    transform: scale(1) translate(-50%)
}

.pushSubscribe.intoview.closeview {
    opacity: .1;
    top: -55px;
    transform: scale(.1)
}

.pushSubscribe bell {
    flex: 1;
    max-width: 70px;
    position: relative
}

.pushSubscribe bell .frame {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%
}

.pushSubscribe bell .bell {
    fill: #1091ff;
    -webkit-animation: ring 1.5s linear -1ms infinite alternate;
    animation: ring 1.5s linear -1ms infinite alternate;
    transform-origin: top;
    width: 50px
}

.pushSubscribe button {
    background: transparent;
    border: none;
    cursor: pointer;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content
}

.pushSubscribe item {
    align-items: center;
    display: flex;
    flex: 3;
    flex-direction: column;
    padding: 0 20px 0 0
}

.pushSubscribe item > * {
    flex-grow: 1;
    width: 100%
}

.pushSubscribe item label {
    align-items: center;
    display: flex;
    margin-bottom: 10px;
    text-align: center
}

.pushSubscribe item label > * {
    flex-grow: 1
}

.pushSubscribe item button {
    background: linear-gradient(135deg, #2e7fc2, #2c75bb 33.85%, #2a66b0 67.71%, #2b5ba4);
    border: 1px solid transparent;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 1rem;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: all .3s ease;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content
}

.pushSubscribe item button:hover {
    background: transparent;
    border-color: #1091ff;
    color: #1091ff
}

.pushSubscribe .close {
    height: 12px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 12px
}

@media screen and (max-width: 415px) {
    .pushSubscribe.intoview {
        left: 5%;
        right: 5%;
        transform: scale(1);
        width: auto
    }
}

@-webkit-keyframes ring {
    0%, 50% {
        transform: rotate(0)
    }
    1%, 10%, 20%, 30%, 40% {
        transform: rotate(10deg)
    }
    5%, 15%, 25%, 35%, 45% {
        transform: rotate(-10deg)
    }
}

@keyframes ring {
    0%, 50% {
        transform: rotate(0)
    }
    1%, 10%, 20%, 30%, 40% {
        transform: rotate(10deg)
    }
    5%, 15%, 25%, 35%, 45% {
        transform: rotate(-10deg)
    }
}

