.mnt-primary-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    background-color: #6e0038;
    padding: 20px 24px 20px 16px;
    text-decoration: none !important;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    width: fit-content
}

.mnt-secondary-button {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none !important;
    color: #1f1e1f;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    width: fit-content
}

.mnt-secondary-button:hover {
    text-decoration: underline !important
}

.mnt-primary-button:hover {
    color: #fff;
    background-color: #620032;
    text-decoration: underline !important;
}

.mnt-chevron-right-btn {
    opacity: .5
}

.mnt-primary-button:hover .mnt-chevron-right-btn,
.mnt-secondary-button:hover .mnt-chevron-right-btn {
    opacity: 1
}

.mnt-primary-button:disabled {
    background-color: #6e0038;
    opacity: .4;
    cursor: not-allowed
}