.confirm {
    display: flex;
    flex-direction: column;

    height: 100%;
    box-sizing: border-box;
    padding: 16px 32px 25px 32px;
    background: white;
    overflow: hidden;
}

.confirm__message {
    text-align: center;
    font-size: 14px;
}

.confirm__message:last-of-type {
    margin-top: 10px;
}

.confirm__messages {
    overflow-y: auto;

    flex: 1 1 0;

    margin: 15px 0;
    padding: 0 15px;
}

.confirm__indicator {
    display: flex;
    align-items: center;

    margin: 20px auto;
    text-align: center;
    flex: 1 1 0;
}

.confirm__icon {
    display: block;
    margin: 0 auto 0 auto;

    fill: none;
    width: 52px;
    height: 52px;
    min-height: 52px;
}

.confirm__button {
    display: block;
    margin: auto auto 0 auto;
    min-height: 40px;
}

.confirm__button:not(.is-visible) {
    opacity: 0;
    pointer-events: none;
}
