.notify-block {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 350px;
    grid-gap: 40px;
    align-items: center;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0091CC;
    color: #FFFFFF;
    padding: 15px 35px;
    font-family: Roboto, sans-serif;
    box-sizing: border-box;
    z-index: 999;
}
.notify-block.hide {
    display: none;
}

.notify-block a {
    color: #FFFFFF;
    text-decoration: underline;
}
.notify-block a:hover {
    text-decoration: none;
}

.notify-block__text {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.notify-block__control {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 20px;
    max-height: 40px;
    max-width: 350px;
    margin: 0 auto;
}

.notify-block__control-button {
    border: 2px solid #44C69A;
    padding: 14px 26px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
}
.notify-block__control-button:hover {
    background: #44C69A;
}

.notify-block__control-button.green {
    background: #44C69A;
}

.notify-block__control-button.green:hover {
    background: none;
}

@media screen and (max-width: 768px) {
    .notify-block {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        grid-gap: 10px;
    }
}

@media screen and (max-width: 576px) {
    .notify-block__text {
        font-size: 12px;
        line-height: 14px;
    }
    .notify-block {
        padding: 15px 20px;
    }
    .notify-block__control-button {
        padding: 14px 20px;
    }
}