.window {
    height: auto;
    z-index: 101;
    width: 74%;
    max-width: 651px;
    position: absolute;
    top: 41%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #000;
    text-align: center;
}

.window__content {
    border-radius: 12px;
    background: white;
    animation: show linear 2s;
    animation-timing-function:  cubic-bezier(1.000, -0.030, 1.000, -0.500);
    overflow: hidden;
    position: relative;
    z-index: inherit;
}

.window__img {
    width: 140px;
    height: 140px;
    margin: 10px auto 0;
    position: relative;
}
.window__img img {
    width: 100%;
    height: 100%;
}

.window__img::before {
    content: "1";
    position: absolute;
    width: 25px;
    height: 25px;
    font-family: system-ui;
    color: white;
    background: red;
    text-align: center;
    line-height: 25px;
    top: 25px;
    font-size: 16px;
    right: 25px;
    border-radius: 50%;
    animation: flashing 1s cubic-bezier(1.000, -0.325, 1.000, -0.305) infinite;
}

.window__title {
    font-family: inherit;
    margin: 0;
    font-weight: bold;
    line-height: 25px;
    font-size: 20px;
    margin-bottom: 15px;
}

.window__text {
    font-size: 16px;
    margin: 0 20px 0;
}

.window-btn__wrapper {
    border-top: 2px solid #bfbfbf;
    padding: 10px 0;
}
.window__btn {
    background: transparent;
    border: none;
    font-weight: 600;
    text-decoration: none;
    color: #1996f4;
    font-size: 20px;
    border-top: 1px solid #ececec;
    height: 50px;
    line-height: 44px;
    margin-top: 20px;
    width: 100%;
}

.window__btn:hover {
    cursor: pointer;
}

@keyframes flashing {
    50% {
        opacity: 0;
    }
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
