/*
	blue #256aa7
	teracotta #a75025
*/

#checkout section h3 {
	color: #465f56;
}

.radioOptions {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 20px;
	flex-wrap: wrap;
}
.radioOptions label {
	text-align: left;
	/*max-width: calc(50% - 20px);*/
	width: 100%;
}

.ui-checkboxradio-radio-label .ui-icon-background {
	width: 20px !important;
	height: 20px!important;
	border-radius: 1em;
	overflow: visible;
	border: none;
	margin-right: 20px !important;
	vertical-align: middle !important;
	float: left;
	margin-bottom: 2em;
	margin-top: 5px;
}

nav.sectionFooter {
	margin-top: 1em;
	padding-top: 1em;
	border-top: 1px solid #e3e8e3;
}
nav.sectionFooter a {
	color: #465f56;
	font-weight: 500;
}
nav.sectionFooter a:hover {
	color: white;
}

.ui-accordion .ui-accordion-header {
	font-weight: 700;
}

.explanation {
	margin-bottom: 1em;
	color: #414141;
	font-weight: 500;
	font-size: 1.05em;
}



.collapsed {
	display: none;
}

.sSubOpts {
	width: 100%;
}

.sSubOpts:has(.twoColForm) {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form:has(.twoColForm) {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.twoColForm {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.twoColForm label {
	display: block;
	text-align: left;
}
.twoColForm input[type='text'], input[type='password'], input[type='tel'], input[type='email'], select {
	width: 100%;
	border: #c5c5c5 solid 2px;
	border-radius: 5px;
	padding: 5px;
	color: #454545;
}

.twoColForm .compoundname {
	display: block;
}

.twoColForm.error input {
	border-bottom-color: #cd0a0a !important;
}
.twoColForm.error label {
	color: #cd0a0a !important;
}


.flexWrapCol {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	gap: 20px;
}
.flexWrapCol .thumbnail {
	border-radius: 8px;
	border: solid 1px #454545;
}
.tileGiftCard {
	
}

p.desc {

}

p.price {
	
}

hr {
	border: solid 1px #e3e8e3;
	border-width: 1px 0 0 0;
	border-collapse: collapse;
	height: 1px;
	margin: 20px 0;
}

#checkout textarea {
	width: 100%;
	height: 6em;
	border: #c5c5c5 solid 2px;
	border-radius: 5px;
	padding: 5px;
	color: #454545;
}

.blips {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
.blip {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 5px;
	background-color: #454545;
	color: white;
}

.tableFW {
	width: 100%;
}
.tableFW th {
	text-align: left;
}
.tableFW td {
	vertical-align: top;
}
.tableFW tfoot tr td {
	border-top: 1px solid #c5c5c5;
	padding-top: 5px;
}
.tableFW tfoot tr td:first-of-type {
	border-top: none;
}

.nowrap {
	white-space: nowrap;
}

main label {
	font-weight: bold;
}

label.BtnChange {
	display:inline-block;
	color: #465f56 !important;
	background-color: initial;
	padding: 5px 10px;
	border-radius: 5px;
	margin: 0px 10px 0px -10px;
	cursor: pointer;
}
label.BtnChange:hover,
label.BtnChange:active {
	background-color: #465f56;
	color: white !important;
}

label.BtnChangeInv {
	display: inline-block;
	background-color: #465f56 !important;
	color: white;
	padding: 5px 10px;
	border-radius: 10px;
	margin: 0px 10px 0px -10px;
	cursor: pointer;
	border: 4px solid #465f56;
}

label.BtnChangeInv:hover,
label.BtnChangeInv:active {
	color: #465f56;
	background-color: white !important;
}

a.BtnChange {
	display: inline-block;
	color: #a75025 !important;
	background-color: initial;
	padding: 5px 10px;
	border-radius: 5px;
	margin: 0px 10px 0px -10px;
	cursor: pointer;
	font-weight: 600;
}
a.BtnChange:hover,
a.BtnChange:active {
	background-color: #a75025;
	color: white !important;
	outline: none;
}

ul.nobullet {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
ul.nobullet li {
	break-inside: avoid-column;
}
ul.nobullet li:has(.BtnChange) {
	margin-bottom: 20px;
}

.indent {
	display: inline-block;
	width: 2.5em;
}

#orderSummaryLoading {
	opacity: 0;
	height: 500px;
	max-height: 30vh;
	background-color: transparent;
	overflow: hidden;
	display: flex;
	text-align: center;
	vertical-align: middle;
	align-items: center;
	justify-content: center;
	transition: opacity 1s;
}
#orderSummaryLoading *, #paymentLoading * {
	font-family: 'Bellefair';
	font-size: 2.5em;
	color: #465f56;
	animation: bnloading 2.5s ease-in-out;
	animation-iteration-count: infinite;
	padding: 20px;
	border-radius: 10px;
}
#paymentLoading {
	display: none;
	text-align: center;
	vertical-align: middle;
	align-items: center;
	justify-content: center;
	transition: opacity 1s;
}

@keyframes bnloading {
	0%	{opacity: 0.2; background-color: white;}
	50%	{opacity: 1; background-color: #dedede;}
	100%	{opacity: 0.2; background-color: white;}
}

.empty {
	display: block;
	color: #7f7f7f;
	font-style: italic;
}

.warning {
	margin-bottom: 1em;
	margin-top: 1em;
	color: #cd0a0a;
	font-weight: 600;
}

.gift-card-message {
	padding: 10px;
	display: inline-block;
	background-color: #e3e8e3;
	border-radius: 10px;
}

.flextable {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-top: 1px dotted #e3e8e3;
	min-width: 50%;
	max-width: 80%;
	align-items: center;
	margin: auto;
}

#sProceed {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	max-width: 100%;
	/*border: 1px solid #465f56;
	background-color: #e3e8e3;*/
	padding: 10px;
	border-radius: 10px;
	color: #006600;
}
.disabled {
	filter: grayscale(1) opacity(0.3);
}

#sLoginGuest {
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: left;
}
#sLoginGuest div {
	text-align: left;
}
#sLoginGuest .ui-checkboxradio-radio-label .ui-icon-background {
	margin-bottom: initial;
}

ul.addressSelector {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.addressSelector li {
	border-top: 1px solid #d1d5d1;
	padding: 10px 0;
	border-radius: 0;
}
ul.addressSelector li:hover {
	cursor: pointer;
	background-color: #63756f;
	color: white;
	font-weight: 500;
	border-radius: 10px;
}
ul.addressSelector li address {
	font-style: normal;
	padding: 0 5px;
}

.vl {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.vl section {
	padding: 10px 0;
}
.vl section + section {
	border-top: 1px solid #d1d5d1;
}

#po_barclays {
	order: 2;
}
#po_paypal {
	order: 1;
}
#po_cheque {
	order: 3;
}
#po_phone {
	order: 4;
}


@media (min-width: 1031px) {
	ul.nobullet {
		column-count: 2;
		column-gap: 20px;
	}

	#sLoginGuest {
		flex-direction: row;
	}

	#sProceed {
		max-width: 32%;
	}


	.twoColForm {
		width: 100%;
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 20px;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.twoColForm label {
		display: inline;
		/* max-width: 33vw; */
		min-width: 25%;
		text-align: right;
		width: auto;
	}

	.twoColForm input[type='text'],
	input[type='password'],
	input[type='tel'],
	input[type='email'],
	select {
		width: 33vw;
		max-width: 70%;
		border: #c5c5c5 solid 2px;
		border-radius: 5px;
		padding: 5px;
		color: #454545;
	}

	.twoColForm .compoundname {
		display: inline-flex;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 10px;
		width: 33vw;
		max-width: 70%;
	}

	.twoColForm .compoundname input {
		width: 35%;
	}

	.twoColForm .compoundname input:first-of-type {
		width: 20%;
	}

	.twoColForm .compoundname input:last-of-type {
		width: 45%;
	}

	#po_barclays {
		order: 1;
	}

	#po_paypal {
		order: 2;
	}
}

@media (max-width: 1030px) {
	.ui-accordion .ui-accordion-content {
		padding: 5px;
	}
}
