.modal-footer {
    padding: $modal-inner-padding * .5;
}

.couponmodal {
    .custom-check {
        position: relative;
        display: inline-block;
        width: 100%;
        padding: 0;

        .form-check-input {
            display: none;
            position: absolute;
            top: -12px;
            right: -6px;
            border-radius: 50%;
            border: none;
            background-color: var(--bs-primary);
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");

            &:checked {
                display: block;
                z-index: 1;

                &+.form-check-label {
                    border-color: var(--bs-primary);
                }
            }
        }

        .form-check-label {
            display: inline-block;
            width: 100%;
            text-align: center;
            cursor: pointer;
            padding: 10px 15px;
            border: 1px solid transparent;
            background-color: var(--bs-light);
            border-radius: var(--bs-border-radius-lg);
        }
    }
}