.product-bopis {
	display: flex;
	flex-flow: column;
	line-height: 1.2;
}

.product-bopis-prompt {
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 12px;
}

.product-bopis-options {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 8px;
	width: 100%;
}

.product-bopis-option {
	border: 1px solid #505579;
	border-radius: 2px;
	display: flex;
	flex-flow: column;
	font-size: 12px;
	gap: 4px;
	overflow: hidden;
	padding: 16px 16px 18px 16px;
	position: relative;

	&:after {
		border-left: 13px solid transparent;
		border-top: 13px solid #5DE087;
		content: "";
		height: 0;
		opacity: 0;
		position: absolute;
		right: 0;
		top: 0;
		width: 0;
	}

	input[ type="radio" ] {
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		white-space: nowrap;
		width: 1px;
	}

	&:not(:has(input[ type="radio" ]:disabled)) {
		cursor: pointer;
	}

	&:has(input[ type="radio" ]:checked:disabled) {
		border-color: #FF6C74;

		&:after {
			border-top-color: #FF6C74;
			opacity: 1;
		}
	}

	&:has(input[ type="radio" ]:checked) {
		background-color: #333962;
		border-color: #5DE087;

		&:after {
			opacity: 1;
		}
	}

	.product-bopis-option__top {
		align-items: center;
		display: flex;
		flex-flow: row nowrap;
		font-weight: 700;
		gap: 10px;
	}
}

.product-bopis-footer {
	color: #BEC1D7;
	font-size: 12px;
}

.warning-message {
	background: #F8F8E1;
	border-radius: 2px;
	color: #65602E;
	font-size: 12px;
	margin-top: 14px;
	padding: 10px;
	text-align: center;
}

.delivery-method-conflict {

	.c-dialog__container {
		background-color: #FFF;
		border-radius: 4px;
		color: #161C40;
		max-width: 90vw;
		position: relative;
		width: 530px;
	}

	.c-dialog__close {
		position: absolute;
		right: calc(var(--default-spacing-unit) * 2);
		top: calc(var(--default-spacing-unit) * 2);
	}

	.c-dialog__header {
		display: block;
	}

	.c-dialog__title {
		color: inherit;
		text-align: center;
	}

	.c-dialog__content {
		text-align: center;
	}

	.delivery-method-conflict-footer {
		align-items: center;
		display: flex;
		flex-flow: column;
		gap: 8px;
		margin-top: calc(var(--default-spacing-unit) * 1.5);
	}
	
	.delivery-method-conflict-primary,
	.delivery-method-conflict-secondary {
		align-items: center;
		border: 1px solid #2B438B;
		cursor: pointer;
		display: flex;
		font-family: var(--primary-font-family);
		font-size: 14px;
		font-style: normal;
		font-weight: 700;
		justify-content: center;
		max-width: 100%;
		overflow-wrap: normal;
		padding-bottom: 18px;
		padding-left: 28px;
		padding-right: 28px;
		padding-top: 18px;
		text-decoration: none;
		text-transform: none;
		transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out, box-shadow 150ms ease-in-out, text-decoration 150ms ease-in-out;
		user-select: none;
		white-space: nowrap;
		width: 250px;
	}
	
	.delivery-method-conflict-primary {
		background-color: #2B438B;
		color: #FFF;
	
		&:hover,
		&:focus {
			background-color: #161C40;
			border-color: #2B438B;
		}
	}
	
	.delivery-method-conflict-secondary {
		background-color: #FFF;
		color: #2B438B;
	
		&:hover,
		&:focus {
			color: #161C40;
		}
	}
}