#track-my-order {
	display: inline-block;
	max-width: 512px;
	min-width: 270px;
	text-align: left;
}

.form-bg {
	background: var(--bg-color-light);
	/* padding: 20px; */
	/* margin: 0 0 30px 0; */
}

#track-my-order #main-all_input_advice {
}

#track-my-order #main-all_input_advice ul {
	list-style-type: none !important;
	padding-left: 0;
}

#track-my-order #main-all_input_advice ul li {
	background-color: #CB2A0D !important;
	background-image: none !important;
	color: white;
}

#track-my-order .form-group a {
	margin-bottom: 25px;
}

#track-my-order .form-group label {
	margin-left: 0;
	margin-top: 10px;
}

#track-my-order .form-group input {
	margin-left: 0;
	width: 100%;
}

.track-my-order {
}

.track-my-order__heading {
	font-family: var(--font-alt1);
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.track-my-order__items-container {
	padding: 0 20px;
}

#create-account-link::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background: #ccc;
}

.u__normal {
	font-size: 1.4rem;
	font-family: helvetica-neue,Helvetica Neue,Helvetica,Arial,sans-serif;
}

#create-account-link {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}



#create-account-link span {
	display: inline-block;
	padding: 0 10px;
	background: #fff;
}

.track-my-order__item {
	align-items: flex-start;
	display: flex; /* IE 11 */
	display: grid;
	gap: 0 10px;
	grid-template-columns: 72px 1fr;
	margin-bottom: 20px;
}

@media (min-width: 600px) {
	.track-my-order__item {
		grid-template-columns: 96px 1fr;
	}
}

@media (min-width: 768px) {
	.track-my-order__item {
		grid-template-columns: 110px 1fr 1fr;
	}
}

.track-my-order__item-image {
	display: block;
	margin-right: 20px;
	max-width: 110px; /* IE 11 */
	width: 100%;
}

@supports (display: grid) {
	.track-my-order__item-image {
		margin: 0;
	}
}

.track-my-order__item-details-container {
	margin-right: 25px;
}

.track-my-order__item-details {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.track-my-order__item-detail:not(:last-child) {
	margin: 0 15px 0 0;
}

.track-my-order__item-detail--price {
	font-weight: bold;
	margin: 0;
}

.track-my-order__item-title {
	font-weight: bold;
	margin-bottom: 2px;
	text-transform: uppercase;
}

.track-my-order__reorder-container {
	align-items: center;
	background-color:var(--color-text-light);
	display: flex;
	justify-content: flex-end;
	margin-left: auto;
	/*max-width: 310px;*/
	min-height: 80px;
	/*min-width: 310px;*/
	padding: 10px;
	position: relative;
}

@media (max-width: 767px) {
	.track-my-order__reorder-container {
		grid-column: span 2;
		margin: 0;
		max-width: none;
		min-height: auto;
		width: 100%;
	}
}

.track-my-order__reorder-container::before {
	border-bottom: 40px solid transparent;
	border-right: 20px solid var(--color-text-light);
	border-top: 40px solid transparent;
	content: '';
	display: block;
	left: -20px;
	position: absolute;
	top: 0;
}

@media (max-width: 767px) {
	.track-my-order__reorder-container::before {
		display: none;
	}
}

.track-my-order__reorder-sale-price {
	color: var(--color-theme-dark);
}
.track-my-order__reorder-strike-price,
.track-my-order__reorder-sale-price,
.track-my-order__reorder-unavailable {
	margin-right: 20px;
}

.track-my-order__item-reorder-button {
	background-color: var(--color-primary);
	border: 0;
	color: #FFFFFF;
	flex-shrink: 0;
	font-weight: bold;
	padding: 10px;
	text-transform: uppercase;
}

.track-my-order__item-reorder-button:focus,
.track-my-order__item-reorder-button:hover {
	background-color: var(--color-primary);
}

.track-my-order__item-reorder-button[disabled] {
	background-color: #DAE0E4;
	cursor: not-allowed;
}

.track-my-order__item-reorder-button[disabled]:focus,
.track-my-order__item-reorder-button[disabled]:hover {
	background-color: #DAE0E4;
}

.track-my-order__totals {
	padding: 20px 0;
	display: flex;
	justify-content: flex-end;
	color: var(--color-theme-dark);
	font-size: 16px;
}

@media (min-width: 768px) {
	.track-my-order__totals {

		padding: 20px 0 50px 0;
	}
}

.track-my-order__totals-table {
	background-color: var(--bg-color-light);
	width: 100%;
}

@media (min-width: 768px) {
	.track-my-order__totals-table {
		width: auto;
	}
}

.exit-button {
	color: var(--greyish);
}

.track-my-order__totals-table td {
	padding: 5px 20px;
}

.track-my-order__totals-table tr:first-child td {
	padding-top: 10px;
}

.track-my-order__totals-table tr:last-child td {
	padding-bottom: 10px;
}

.track-my-order__total-amount {
	text-align: right;
	width: 100px;
}

table.shipping-info th {
	text-align: right;
}

table.shipping-info td {
	padding-left: 30px;
	text-align: left;
}

table.order-detail th {
	padding-right: 5px;
	text-align: center;
	vertical-align: top;
}

table.order-detail td,
table.order-detail th {
	border: none;
}

table.order-detail .top-row {
	border-top: 2px solid #DDDDDD;
}

.total-container {
	display: inline-block;
	padding: 10px;
	width: 100%;
}

table.total-info {
	clear: both;
	float: right;
}

table.total-info th,
table.total-info td {
	padding-top: 0;
	text-align: right;
}

table.total-info th {
	width: 200px;
}

table.total-info td {
	padding-right: 0;
	width: 100px;
}

table.total-info .total-row {
	border-top: 2px solid black;
}

.receipt-footer-wrapper {
	clear: both;
	padding-top: 50px;
}

.receipt-footer {
	padding: 20px 0;
}

.order-recipient {
	max-width: 200px;
	min-width: 180px;
}

.detail div {
	padding: 0 0 0 10px;
}

.order-status-details {
	border-bottom: 1px solid #CCCCCC;
	margin-bottom: 20px;
}

.order-status-view-details {
	color: var(--color-primary);
	text-decoration: underline;
}

.close-status {
	position: relative;
	top: -2px;
}

.order-details-main-head {
	font-weight: 300;
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
}

.billing-information,
.recipient-information {
	align-items: stretch;
	display: flex;
	flex-direction: row;
	flex-grow: 1;
	flex-wrap: nowrap;
	justify-content: space-around;
	margin-bottom: 20px;
	padding: 20px;
}

.billing-information > div,
.recipient-information > div {
	text-align: left;
	width: 100%;
}

.gift-message .detail {
	font-size: 13px;
}

.recipient-spacer {
	display: block;
	padding: 0 0 10px 0;
	position: relative;
	text-align: center;
}

.recipient-divider {
	border-bottom: 3px dotted #CCCCCC;
	display: inline-block;
	width: 100%;
}

.back-button {
	padding: 10px 20px 10px 20px;
}

.order-status-form {
	padding: 10px;
	text-align: center;
}

.order-status-header {
	font-weight: 300;
	font-family: var(--font-alt1);
	text-transform: uppercase;
}

.spacer-lg {
	height: 256px;
}

.order-detail-box {
	background: #FFFFFF !important;
	border: 0;
	padding: 0;
}

.back-link {
	text-transform: capitalize;
}

.order-number {
	font-size: 18px;
	margin-top: -4px;
}

@media (min-width: 1260px) {
	.sub_total {
		max-width: 160px;
	}
}

@media (max-width: 1260px) {
	.sub_total {
		max-width: 90px;
	}
}

@media (max-width: 1024px) {
	.order-recipient {
		max-width: 100%;
		min-width: 100%;
	}

	.detail div {
		padding: 0 10px 0 10px;
	}

	.sub_total {
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.order-recipient {
		min-width: 100%;
	}

	.order-status-second {
		flex-direction: row;
		justify-content: stretch;
	}

	.sub_total {
		max-width: 100%;
	}

	.billing-information,
	.recipient-information {
		flex-direction: column;
	}

	.billing-information .body,
	.recipient-information .body {
		margin-bottom: 20px;
	}

	.main {
		margin: 0;
		padding: 0;
	}

	.billing-information,
	.recipient-information {
		padding: 20px;
	}

	.recipient-information {
		padding-bottom: 0;
	}
}

@media print {
	.col-md-6 {
		float: left;
		width: 50%;
	}

	table.billing-info th {
		padding-right: 5px;
		text-align: right;
		vertical-align: top;
	}

	table.order-detail th {
		padding-right: 5px;
		text-align: center;
		vertical-align: top;
	}

	.total-container {
		display: inline-block;
		padding: 10px;
		width: 100%;
	}

	table.total-info {
		clear: both;
		float: right;
	}

	table.total-info th,
	table.total-info td {
		padding-top: 5px;
		text-align: right;
		width: 100px;
	}

	table.total-info td {
		padding-right: 5px;
	}

	table.total-info .total-row {
		border-top: 2px solid black;
	}

	.receipt-footer-wrapper {
		clear: both;
		padding-top: 50px;
	}

	.receipt-footer {
		padding: 20px 0;
	}
}
