.confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(100vh - 278px);
}

.confirm-pane {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 500px;
    background-color: #fafafa;
    box-shadow: 0 0 20px rgba(0,0,0,.05), 0 20px 40px rgba(0,0,0,.05);
    height: 400px;
    padding: 20px;
}

.confirm-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-animation-delay: 800ms;
    animation-delay: 800ms;
}

.confirm-message-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #b3b3b3;
    color: #b3b3b3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.confirm-message-icon.success {
    border-color: #4cd964;
    color: #4cd964;
}

.confirm-message-icon.danger {
    border-color: #ff3b30;
    color: #ff3b30;
}

.confirm-message-text {
    color: #111;
    text-align: center;
    line-height: 1.4;
}

.confirm-message-title {
    color: #111;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.confirm-message-description {
    font-size: 14px;
    color: #787878;
    text-align: center;
    line-height: 1.4;
}

.confirm-message-button {
    display: block;
    width: 100%;
    background-color: #07f;
    color: #fff;
    border-radius: 6px;
    margin-top: 16px;
    padding: 12px 16px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color .1s ease-out;
}

.confirm-message-button:hover {
    background-color: #05f;
    color: #fff;
}