/* mostly copied from similar coupon code in Kadence shop kit, this is based on the
 * same types. also similar to validate-pin in checkout form */
.c2b-reg-label-link {
    cursor: pointer;
}
.c2b-reg-label-content {
    padding-right: 0px;
}
#c2b-reg-label .kt-modal-container {
    margin: 10px;
}
.c2b-reg-label-modal {
	display: none;
	text-align: left;
}
.c2b-reg-label-modal .kt-modal-container,
.c2b-reg-label-modal .c2b-reg-label-overlay {
    will-change: transform;
}
.c2b-reg-label-modal.is-open {
	display: block;
}
.c2b-reg-label-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
.c2b-reg-label-close {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--global-palette4, #444444);
    -webkit-appearance: none;
    position: absolute;
    top: 4px;
    right: 4px;
    box-shadow: none;
    text-shadow: none;
}
.c2b-reg-label-close:hover {
	outline: none;
	box-shadow: none;
}
.c2b-reg-label-close:focus {
	outline: none;
	box-shadow: none;
}
.c2b-reg-label-close svg {
	width: 24px;
	height: 24px;
	pointer-events: none;
}
/* animation same as kadence coupon */
.c2b-reg-label-modal[aria-hidden="false"] .c2b-reg-label-overlay {
	animation: kbmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.c2b-reg-label-modal[aria-hidden="true"] .c2b-reg-label-overlay {
	animation: kbmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
