.subscribe-mini {
    display: none;
    background: #1b1b20 url('../img/background.svg') no-repeat center;
    width: 305px;
    height: 150px;
    text-align: center;
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 25;
}

.subscribe-container {
    position: relative;
}

.subscribe-mini .close-button {
    background-image: url("../img/close.svg");
    position: absolute;
    top: 3px;
    right: 12px;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.subscribe-mini .close-button:hover {
    transform: rotate(180deg);
    transition: transform .5s ease-out;
}

.subscribe-header {
    margin-top: 10px;
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 900;
}

.subscribe-header_first-line {
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
}

.subscribe-header_second-line {
    font-size: 30px;
    line-height: 35px;
    text-transform: uppercase;
    color: #ffd800;
    margin-bottom: 4px;
    position: relative;
}

.subscribe-header_second-line::after {
    content: '';
    width: 200px;
    height: 20px;
    background-color: rgba(27, 27, 32, .3);
    position: absolute;
    bottom: 0;
    left: 17%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.subscribe-header_third-line {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    margin-bottom: 4px;
}

.subscribe-mini_button {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    padding: 8px 16px;
    background: #c30c0d;
    border-radius: 4px;
    position: relative;
    border: none;
    outline: none;
}

.subscribe-mini_button:focus {
    outline: none;
}

.subscribe-mini_button:hover {
    background-color: #af0c0d;
}

.subscribe-mini_button:active {
    background-color: #c30c0d;
}

.subscribe-mini_button::after {
    content: url("../img/cursor.svg");
    position: absolute;
    bottom: -12px;
    right: -8px;
}