.Page_Confirm {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: hsl(0, 0%, 0%, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border: 1px solid #898989;
    z-index: 11;
    overflow: auto;
}

.Page_Confirm-frame {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    margin-top: auto;
    margin-bottom: auto;
    background-color: white;
    max-width: 400px;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
}

.Page_Confirm-icon {
    width: 38px;
    height: 38px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 3px;
    background-color: #e0e0e0;
    background-position: center center;
    background-repeat: no-repeat;
}

.Page_Confirm-text-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}

.Page_Confirm-text-description {
    color: #7f7f7f;
    font-size: 14px;
    line-height: 21px;
}

.Page_Confirm-buttons {
    display: flex;
    gap: 8px;
}

.Page_Confirm-button {
    width: 100%;
    display: flex;
    flex-direction: column;
}
