a {
    color: inherit;
}

button {
    margin: 0;
    padding: 0;
    appearance: auto;
    text-rendering: auto;
    letter-spacing: normal;
    word-spacing: normal;
    text-indent: 0;
    text-shadow: none;
    text-align: inherit;
    cursor: default;
    background: 0 0;
    box-sizing: border-box;
    border: none;
    outline: 0;
}

.default-button {
    max-width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    letter-spacing: normal;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background .1s linear;
}

.default-button--lg {
    height: 56px;
    padding: 14.5px 16px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.default-button--md {
    height: 44px;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.default-button--rounded {
    border-radius: 8px;
}

.default-button:active,
.default-button:focus,
.default-button:hover {
    text-decoration: none;
}

.default-button--orange {
    background-color: #FF7A1C;
}

.default-button--orange:focus,
.default-button--orange:hover {
    background-color: #FF7A1C;
}

.default-button--orange:active {
    background-color: #FF6B00;
}


.default-link {
    color: #6FA722;
    text-decoration: underline;
}

.default-link:hover {
    text-decoration: none;
}


.buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.buttons-group-justify-center {
    justify-content: center;
}

.buttons-group-align-center {
    align-items: center;
}