.my-button {
    width: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #db1e27;
    box-shadow: 0px 1px 0px 0px #db1e27 inset,
    0px 2px 0px 0px rgba(255, 255, 255, 0.25) inset,
    0px -1px 0px 0px rgba(0, 0, 0, 0.08) inset;
    min-height: 40px;
    padding: 9px 12px;
    gap: 8px;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.my-button:hover{
    background: #BB0D15;
}
.my-button:disabled{
    background-color: #A6A19B;
    box-shadow: unset;
}

.btn-text {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: -0.2px;
    line-height: 20px;
    align-self: stretch;
    margin: auto 0;
    padding-top: 2px;
    gap: 8px;
}

.tertiary-button {
    width: 85px;
    border-radius: 12px;
    background-color: rgba(83, 56, 24, 0.07);
    display: flex;
    padding: 8px 12px;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    font-family: "Gotham", sans-serif;
    font-size: 16px;
    color: #46413b;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: -0.2px;
    line-height: 20px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.tertiary-text {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 2px;
}
@media (max-width: 991px) {
    .my-button {
        white-space: initial;
    }
    .tertiary-button {
        width: auto;
        min-width: 120px;
    }
    .btn-text {
        white-space: initial;
    }
}