.Page_Button {
    display: inline-flex;
    vertical-align: top;
    justify-content: center;
    gap: 16px;
    border-radius: 3px;
    padding: 16px 24px;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--color_main);
}
.Page_Button.small {
    gap: 8px;
    padding: 10px 16px;
    font-weight: normal;
    line-height: 20px;
    min-height: 40px;
}
.Page_Button:hover {
    background-color: var(--color_main_dark);
}

.Page_Button-icon {
    --size: 22px;
    width: var(--size);
    height: var(--size);
    background-repeat: no-repeat;
}
.Page_Button-icon.small {
    margin-top: -1px;
    margin-bottom: -1px;
}

.Page_Button-text {
    color: white;
}
