.checkout-redesign {
	--checkout-blue: #004d77;
	--checkout-blue-dark: #003b5c;
	--checkout-blue-soft: #e2eaef;
	--checkout-green: #21c419;
	--checkout-ink: #505050;
	--checkout-muted: #777;
	--checkout-line: #d9e4eb;
	--checkout-bg: #eaeff0;
	--checkout-white: #fff;
	--checkout-danger: #e03c42;
	box-sizing: border-box;
	color: var(--checkout-ink);
	max-width: 1220px;
	padding-top: 34px;
	padding-bottom: 72px;
	text-align: left;
}

.checkout-redesign *,
.checkout-redesign *::before,
.checkout-redesign *::after {
	box-sizing: border-box;
}

.checkout-redesign h1,
.checkout-redesign h2,
.checkout-redesign p {
	margin-top: 0;
	text-align: left;
}

.checkout-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.checkout-heading h1 {
	color: var(--checkout-ink);
	font-size: 38px;
	font-weight: 700;
	line-height: 1.12;
	margin: 5px 0 9px;
}

.checkout-heading p {
	color: var(--checkout-muted);
	font-size: 16px;
	line-height: 1.55;
	margin-bottom: 0;
}

.checkout-kicker,
.checkout-step {
	color: var(--checkout-blue);
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.4;
	text-transform: uppercase;
}

.checkout-heading-count {
	background: var(--checkout-blue-soft);
	border-radius: 999px;
	color: var(--checkout-blue-dark);
	font-size: 14px;
	padding: 10px 17px;
	white-space: nowrap;
}

.checkout-heading-count strong {
	font-size: 16px;
}

.checkout-card {
	background: var(--checkout-white);
	border: 1px solid var(--checkout-line);
	border-radius: 20px;
	box-shadow: 0 8px 28px rgba(37, 58, 82, .06);
}

.checkout-card-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 25px 28px 16px;
}

.checkout-card-heading h2,
.checkout-section-heading h2,
.checkout-summary-card h2 {
	color: var(--checkout-ink);
	font-size: 23px;
	font-weight: 700;
	line-height: 1.25;
	margin: 3px 0 0;
}

.checkout-clear-link {
	color: var(--checkout-muted);
	font-size: 14px;
	text-decoration: none;
}

.checkout-clear-link:hover {
	color: var(--checkout-danger);
	text-decoration: underline;
}

.checkout-redesign .checkout-cart-form,
.checkout-redesign .checkout-cart-form * {
	font-family: inherit;
}

.checkout-redesign .checkout-cart-items {
	border: 0;
	display: block;
	list-style: none;
	margin: 0;
	padding: 0 28px;
}

.checkout-redesign .checkout-cart-items .cart_item_head {
	display: none;
}

.checkout-redesign .checkout-cart-item {
	align-items: center;
	border: 0;
	border-top: 1px solid var(--checkout-line);
	display: grid;
	float: none;
	grid-template-columns: 100px minmax(180px, 1fr) 125px 128px 135px 40px;
	min-height: 132px;
	padding: 16px 0;
	position: relative;
	width: 100%;
}

.checkout-redesign .checkout-cart-item > div {
	box-sizing: border-box;
	float: none;
	padding: 0 10px;
	text-align: left;
	width: auto;
}

.checkout-redesign .checkout-cart-item > .checkout-product-photo {
	padding-left: 0;
}

.checkout-product-photo a {
	align-items: center;
	background: #f7f9fb;
	border-radius: 14px;
	display: flex;
	height: 96px;
	justify-content: center;
	overflow: hidden;
	width: 96px;
}

.checkout-redesign .checkout-product-photo img {
	display: block;
	height: 100%;
	max-height: 96px;
	max-width: 96px;
	object-fit: contain;
	width: 100%;
}

.checkout-redesign .checkout-product-name > a {
	color: var(--checkout-ink);
	display: inline-block;
	font-size: 16px;
	font-weight: 650;
	line-height: 1.4;
	text-decoration: none;
}

.checkout-redesign .checkout-product-name > a:hover {
	color: var(--checkout-blue);
}

.checkout-redesign .checkout-product-name > span {
	color: var(--checkout-muted);
	display: block;
	font-size: 13px;
	line-height: 1.45;
	margin-top: 5px;
}

.checkout-redesign .checkout-unit-price,
.checkout-redesign .checkout-line-total {
	color: var(--checkout-ink);
	font-size: 15px;
	line-height: 1.4;
	white-space: nowrap;
}

.checkout-redesign .checkout-line-total {
	font-weight: 700;
	text-align: right;
}

.checkout-redesign .checkout-quantity {
	align-items: center;
	background: #f3f6f9;
	border-radius: 12px;
	display: grid;
	grid-template-columns: 36px 42px 36px;
	height: 44px;
	justify-content: center;
	margin: 0;
	padding: 0;
	width: 114px;
}

.checkout-redesign .checkout-quantity input[type="button"],
.checkout-redesign .checkout-quantity input[type="text"] {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--checkout-ink);
	float: none;
	font-size: 17px;
	height: 44px;
	line-height: 44px;
	margin: 0;
	min-width: 0;
	padding: 0;
	text-align: center;
	width: 100%;
}

.checkout-redesign .checkout-quantity input[type="button"] {
	cursor: pointer;
	font-size: 21px;
}

.checkout-redesign .checkout-quantity input[type="button"]:hover {
	color: var(--checkout-blue);
}

.checkout-redesign .checkout-product-delete {
	padding-right: 0;
	text-align: right;
}

.checkout-redesign .checkout-product-delete .cart_delete {
	align-items: center;
	background: #f6f8fa;
	border-radius: 50%;
	color: #8290a0;
	display: inline-flex;
	font-size: 22px;
	font-weight: 400;
	height: 34px;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	width: 34px;
}

.checkout-redesign .checkout-product-delete .cart_delete:hover {
	background: #fff0f1;
	color: var(--checkout-danger);
}

.checkout-mobile-label {
	display: none;
}

.checkout-gift-heading {
	background: #f7fbff;
	border-radius: 12px;
	color: var(--checkout-blue-dark);
	font-size: 14px;
	font-weight: 700;
	list-style: none;
	margin: 6px 0;
	padding: 12px 16px;
}

.checkout-redesign .checkout-gift-item {
	grid-template-columns: 100px minmax(180px, 1fr) 135px 1px 1px 1px;
}

.checkout-gift-choice label {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 14px;
	gap: 8px;
}

.checkout-gift-choice input {
	accent-color: var(--checkout-blue);
}

.checkout-cart-footer {
	align-items: flex-end;
	background: #f8fafc;
	border-radius: 0 0 20px 20px;
	display: flex;
	gap: 28px;
	justify-content: space-between;
	margin-top: 3px;
	padding: 20px 28px 23px;
}

.checkout-promo {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.checkout-promo > span:first-child {
	color: var(--checkout-muted);
	font-size: 13px;
	font-weight: 600;
}

.checkout-promo-control {
	display: flex;
	gap: 8px;
}

.checkout-promo-control input[type="text"] {
	background: var(--checkout-white);
	border: 1px solid var(--checkout-line);
	border-radius: 10px;
	font-size: 14px;
	height: 42px;
	margin: 0;
	padding: 0 13px;
	width: 180px;
}

.checkout-promo-control input[type="submit"] {
	background: var(--checkout-white);
	border: 1px solid var(--checkout-blue);
	border-radius: 10px;
	color: var(--checkout-blue);
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	height: 42px;
	margin: 0;
	padding: 0 16px;
}

.checkout-promo-control input[type="submit"]:hover {
	background: var(--checkout-blue-soft);
}

.checkout-promo-message:empty {
	display: none;
}

.checkout-cart-total {
	align-items: baseline;
	color: var(--checkout-muted);
	display: flex;
	font-size: 14px;
	gap: 12px;
}

.checkout-cart-total strong {
	color: var(--checkout-ink);
	font-size: 24px;
	white-space: nowrap;
}

.checkout-message {
	border-radius: 12px;
	margin: 16px 0;
	padding: 14px 18px;
}

.checkout-message-error {
	background: #fff1f2;
	color: #b62e3a;
}

.checkout-redesign .checkout-main-form {
	background: transparent;
	border: 0;
	box-shadow: none;
	float: none;
	margin: 24px 0 0;
	padding: 0;
	text-align: left;
	width: 100%;
}

.checkout-redesign .checkout-form-grid {
	align-items: start;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) 340px;
	margin: 0;
	padding: 0;
	width: 100%;
}

.checkout-form-main {
	display: grid;
	gap: 24px;
	min-width: 0;
}

.checkout-form-card {
	padding: 28px;
}

.checkout-section-heading {
	display: flex;
	gap: 15px;
	margin-bottom: 24px;
	text-align: left;
}

.checkout-section-heading p {
	color: var(--checkout-muted);
	font-size: 14px;
	line-height: 1.5;
	margin: 5px 0 0;
}

.checkout-section-number {
	align-items: center;
	background: var(--checkout-blue-soft);
	border-radius: 11px;
	color: var(--checkout-blue);
	display: flex;
	flex: 0 0 40px;
	font-size: 17px;
	font-weight: 700;
	height: 40px;
	justify-content: center;
}

.checkout-fields {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	min-width: 0;
	text-align: left;
}

.checkout-field-wide {
	grid-column: 1 / -1;
}

.checkout-field > span {
	color: var(--checkout-ink);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.35;
}

.checkout-field > span em {
	color: var(--checkout-muted);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	margin-left: 5px;
}

.checkout-redesign .checkout-field input[type="text"],
.checkout-redesign .checkout-field textarea,
.checkout-redesign .checkout-field select,
.checkout-redesign .checkout-pvz-select select {
	background: var(--checkout-white);
	border: 1px solid #cfd9e3;
	border-radius: 11px;
	box-shadow: none;
	color: var(--checkout-ink);
	float: none;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.35;
	margin: 0;
	max-width: none;
	outline: none;
	padding: 0 14px;
	transition: border-color .15s ease, box-shadow .15s ease;
	width: 100%;
}

.checkout-redesign .checkout-field input[type="text"],
.checkout-redesign .checkout-field select,
.checkout-redesign .checkout-pvz-select select {
	height: 50px;
}

.checkout-redesign .checkout-field textarea {
	height: 92px;
	min-height: 92px;
	padding-bottom: 12px;
	padding-top: 12px;
	resize: vertical;
}

.checkout-redesign .checkout-field input[type="text"]:focus,
.checkout-redesign .checkout-field textarea:focus,
.checkout-redesign .checkout-field select:focus,
.checkout-redesign .checkout-pvz-select select:focus {
	border-color: var(--checkout-blue);
	box-shadow: 0 0 0 3px rgba(22, 116, 209, .12);
}

.checkout-redesign input::placeholder,
.checkout-redesign textarea::placeholder {
	color: #9aa7b5;
	opacity: 1;
}

.checkout-checkbox {
	align-items: flex-start;
	color: var(--checkout-muted);
	cursor: pointer;
	display: flex;
	font-size: 13px;
	gap: 10px;
	line-height: 1.45;
	margin-top: 18px;
}

.checkout-checkbox input {
	accent-color: var(--checkout-blue);
	flex: 0 0 auto;
	height: 17px;
	margin: 1px 0 0;
	width: 17px;
}

.checkout-city-field {
	margin-bottom: 22px;
	max-width: 420px;
}

.checkout-city-field > small {
	color: var(--checkout-muted);
	font-size: 11px;
	line-height: 1.45;
	text-align: left;
}

.checkout-redesign .checkout-city-field .chosen-container,
.checkout-redesign .checkout-pvz-select .chosen-container {
	font-size: 15px;
	width: 100% !important;
}

.checkout-redesign .checkout-city-field .chosen-container-single .chosen-single,
.checkout-redesign .checkout-pvz-select .chosen-container-single .chosen-single {
	align-items: center;
	background: var(--checkout-white);
	border: 1px solid #cfd9e3;
	border-radius: 11px;
	box-shadow: none;
	color: var(--checkout-ink);
	display: flex;
	font-size: 15px;
	height: 50px;
	line-height: 50px;
	padding: 0 40px 0 14px;
}

.checkout-redesign .chosen-container-single .chosen-single div {
	top: 13px;
}

.checkout-redesign .chosen-container .chosen-results li.highlighted {
	background: var(--checkout-blue);
}

.checkout-delivery-methods {
	display: grid;
	gap: 12px;
}

.checkout-redesign .checkout-delivery-option {
	background: var(--checkout-white);
	border: 1px solid var(--checkout-line);
	border-radius: 15px;
	float: none;
	margin: 0;
	overflow: visible;
	padding: 0;
	position: relative;
	transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
	width: 100%;
}

.checkout-redesign .checkout-delivery-option:hover,
.checkout-redesign .checkout-delivery-option.is-selected {
	border-color: var(--checkout-blue);
}

.checkout-redesign .checkout-delivery-option.is-selected {
	background: #fafdff;
	box-shadow: 0 0 0 3px rgba(0, 77, 119, .08);
	z-index: 20;
}

.checkout-local-pickup.is-city-unavailable {
	display: none !important;
}

.checkout-redesign .checkout-delivery-option > input[type="radio"] {
	height: 1px;
	left: -10000px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.checkout-redesign .checkout-delivery-option > label {
	align-items: center;
	color: var(--checkout-ink);
	cursor: pointer;
	display: flex;
	float: none;
	gap: 13px;
	margin: 0;
	min-height: 74px;
	padding: 14px 17px;
	width: 100%;
}

.checkout-radio-mark {
	background: var(--checkout-white);
	border: 2px solid #bac6d2;
	border-radius: 50%;
	box-shadow: inset 0 0 0 4px var(--checkout-white);
	display: block;
	flex: 0 0 20px;
	height: 20px;
	transition: background-color .15s ease, border-color .15s ease;
	width: 20px;
}

.checkout-delivery-option.is-selected .checkout-radio-mark {
	background: var(--checkout-blue);
	border-color: var(--checkout-blue);
}

.checkout-method-copy {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	font-weight: 400;
	gap: 3px;
	min-width: 0;
	text-align: left;
}

.checkout-method-copy strong {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.checkout-method-copy small {
	color: var(--checkout-muted);
	font-size: 13px;
	line-height: 1.4;
}

.checkout-method-price,
.checkout-method-price span {
	color: var(--checkout-green);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.checkout-redesign .checkout-pvz-select {
	border-top: 1px solid var(--checkout-line);
	display: block !important;
	margin: 0;
	padding: 15px 17px 17px;
	position: relative;
	width: 100%;
	z-index: 30;
}

.checkout-redesign .checkout-pvz-select .select {
	margin: 0;
	width: 100%;
}

.checkout-redesign .checkout-pvz-select select {
	display: block;
}

.checkout-redesign .checkout-pvz-select .chosen-container {
	position: relative;
	z-index: 40;
}

.checkout-redesign .checkout-pvz-select .chosen-container.chosen-with-drop {
	margin-bottom: 250px;
	z-index: 1000;
}

.checkout-redesign .checkout-pvz-select .chosen-drop {
	background: var(--checkout-white);
	border-color: #cfd9e3;
	border-radius: 0 0 11px 11px;
	box-shadow: 0 10px 24px rgba(0, 77, 119, .16);
	z-index: 1100;
}

.checkout-redesign .checkout-city-field .chosen-search,
.checkout-redesign .checkout-pvz-select .chosen-search {
	padding: 9px;
}

.checkout-redesign .checkout-city-field .chosen-search input[type="text"],
.checkout-redesign .checkout-pvz-select .chosen-search input[type="text"] {
	background-color: var(--checkout-white);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f7c88' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cpath d='m16 16 4 4'/%3E%3C/svg%3E") !important;
	background-position: right 12px center !important;
	background-repeat: no-repeat !important;
	background-size: 18px 18px !important;
	border: 1px solid #cfd9e3;
	border-radius: 8px;
	box-shadow: none;
	box-sizing: border-box;
	color: var(--checkout-ink);
	font-family: inherit;
	font-size: 15px;
	height: 42px;
	line-height: normal;
	margin: 0;
	outline: none;
	padding: 0 36px 0 12px;
	text-align: left;
	width: 100%;
}

.checkout-redesign .checkout-city-field .chosen-search input[type="text"]:focus,
.checkout-redesign .checkout-pvz-select .chosen-search input[type="text"]:focus {
	border-color: var(--checkout-blue);
	box-shadow: 0 0 0 3px rgba(0, 77, 119, .1);
}

.checkout-redesign .checkout-pvz-select .chosen-results {
	margin: 0 5px 7px;
	max-height: 190px;
	padding: 3px 0;
}

.checkout-redesign .checkout-pvz-select .chosen-results li {
	border-radius: 7px;
	line-height: 1.4;
	padding: 9px 11px;
	text-align: left;
}

.checkout-redesign .checkout-address-fields {
	border-top: 1px solid var(--checkout-line);
	display: none !important;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	padding: 17px;
	width: 100%;
}

.checkout-redesign .checkout-delivery-option.is-selected .checkout-address-fields {
	display: grid !important;
}

.checkout-pickup-tools {
	background: #f5f8fb;
	border: 1px solid var(--checkout-line);
	border-radius: 15px;
	margin-top: 18px;
	overflow: hidden;
	padding: 9px;
}

.checkout-courier-selected .checkout-pickup-tools {
	display: none;
}

.checkout-redesign .pvz_map_info {
	background: var(--checkout-white);
	border-radius: 9px;
	color: var(--checkout-muted);
	font-size: 13px;
	line-height: 1.45;
	margin: 0 0 8px;
	padding: 10px 12px;
}

.checkout-redesign .pvz_map_info:empty {
	display: none;
}

.checkout-redesign #pvz_map {
	border-radius: 11px;
	height: 420px !important;
	margin: 0;
	overflow: hidden;
	width: 100% !important;
}

.checkout-summary {
	min-width: 0;
	position: sticky;
	top: 18px;
}

.checkout-summary-card {
	padding: 25px;
	text-align: left;
}

.checkout-summary-card h2 {
	font-size: 26px;
	margin: 4px 0 20px;
}

.checkout-redesign .checkout-result {
	background: transparent;
	border: 0;
	color: var(--checkout-ink);
	display: block !important;
	font-size: 14px;
	margin: 0;
	padding: 0;
	width: 100%;
}

.checkout-summary-note {
	background: var(--checkout-blue-soft);
	border-radius: 9px;
	color: var(--checkout-blue-dark);
	font-size: 12px;
	line-height: 1.45;
	margin: 0 0 10px;
	padding: 9px 11px;
}

.checkout-summary-note:empty {
	display: none;
}

.checkout-summary-row,
.checkout-summary-total {
	align-items: baseline;
	display: flex;
	gap: 15px;
	justify-content: space-between;
}

.checkout-summary-row {
	color: var(--checkout-muted);
	margin: 12px 0;
}

.checkout-summary-row strong {
	color: var(--checkout-ink);
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.checkout-summary-total {
	border-top: 1px solid var(--checkout-line);
	color: var(--checkout-ink);
	font-size: 16px;
	font-weight: 700;
	margin-top: 17px;
	padding-top: 18px;
}

.checkout-summary-total strong {
	font-size: 24px;
	white-space: nowrap;
}

.checkout-redesign .checkout-hours {
	background: #f7f9fb;
	border-radius: 10px;
	color: var(--checkout-muted);
	float: none;
	font-size: 12px;
	line-height: 1.5;
	margin: 18px 0 0;
	padding: 10px 12px;
	width: 100%;
}

.checkout-redesign .checkout-rules {
	color: var(--checkout-muted);
	font-size: 12px;
	line-height: 1.45;
	margin: 15px 0 0;
	padding: 0;
}

.checkout-redesign .checkout-rules a {
	color: var(--checkout-blue);
}

.checkout-redesign .checkout-rules input[type="checkbox"] {
	accent-color: var(--checkout-blue);
	height: 16px;
	margin: 1px 6px 0 0;
	vertical-align: top;
	width: 16px;
}

.checkout-redesign .checkout-submit {
	background: var(--checkout-green);
	border: 0;
	border-radius: 12px;
	box-shadow: 0 7px 18px rgba(32, 168, 107, .2);
	color: #fff;
	cursor: pointer;
	float: none;
	font-size: 15px;
	font-weight: 700;
	height: 54px;
	line-height: 54px;
	margin: 20px 0 0;
	padding: 0 20px;
	transition: background-color .15s ease, transform .15s ease;
	width: 100%;
}

.checkout-redesign .checkout-submit:hover {
	background: #178e59;
	transform: translateY(-1px);
}

.checkout-redesign .checkout-submit:disabled {
	cursor: wait;
	opacity: .65;
}

.checkout-redesign .checkout-main-form input.checkout-submit[type="submit"] {
	background: var(--checkout-green);
	color: var(--checkout-white);
}

.checkout-redesign .checkout-main-form input.checkout-submit[type="submit"]:hover {
	background: #1aa114;
}

.checkout-secure-note {
	color: var(--checkout-muted);
	font-size: 12px;
	line-height: 1.5;
	margin: 13px 0 0;
	text-align: left;
}

.checkout-state-card {
	margin: 34px auto 70px;
	max-width: 680px;
	padding: 58px 40px;
	text-align: center;
}

.checkout-state-icon {
	align-items: center;
	background: var(--checkout-blue-soft);
	border-radius: 50%;
	color: var(--checkout-blue);
	display: flex;
	font-size: 28px;
	height: 72px;
	justify-content: center;
	margin: 0 auto 20px;
	width: 72px;
}

.checkout-success-card .checkout-state-icon {
	background: #eaf9f2;
	color: var(--checkout-green);
	font-size: 36px;
}

.checkout-state-card h1 {
	color: var(--checkout-ink);
	font-size: 30px;
	margin: 5px 0 12px;
}

.checkout-state-card p {
	color: var(--checkout-muted);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 10px;
}

.checkout-state-button {
	background: var(--checkout-blue);
	border-radius: 11px;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	margin-top: 17px;
	padding: 14px 23px;
	text-decoration: none;
}

.checkout-state-button:hover {
	background: var(--checkout-blue-dark);
	color: #fff;
}

@media (max-width: 1100px) {
	.checkout-redesign .checkout-cart-item {
		grid-template-columns: 90px minmax(170px, 1fr) 108px 118px 125px 36px;
	}

	.checkout-product-photo a,
	.checkout-redesign .checkout-product-photo img {
		height: 84px;
		max-height: 84px;
		max-width: 84px;
		width: 84px;
	}

	.checkout-redesign .checkout-form-grid {
		grid-template-columns: minmax(0, 1fr) 310px;
	}
}

@media (max-width: 900px) {
	.checkout-redesign {
		padding-top: 26px;
	}

	.checkout-redesign .checkout-form-grid {
		grid-template-columns: 1fr;
	}

	.checkout-summary {
		position: static;
	}

	.checkout-redesign .checkout-cart-item {
		grid-template-columns: 88px minmax(160px, 1fr) 112px 125px 36px;
	}

	.checkout-redesign .checkout-unit-price {
		display: none;
	}
}

@media (max-width: 680px) {
	.checkout-redesign {
		padding-bottom: 42px;
		padding-top: 20px;
	}

	.checkout-heading {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 18px;
	}

	.checkout-heading h1 {
		font-size: 30px;
	}

	.checkout-heading p {
		font-size: 14px;
	}

	.checkout-card {
		border-radius: 16px;
	}

	.checkout-card-heading {
		align-items: flex-start;
		padding: 20px 18px 12px;
	}

	.checkout-card-heading h2,
	.checkout-section-heading h2 {
		font-size: 20px;
	}

	.checkout-clear-link {
		font-size: 12px;
	}

	.checkout-redesign .checkout-cart-items {
		padding: 0 18px;
	}

	.checkout-redesign .checkout-cart-item {
		align-items: start;
		gap: 8px 12px;
		grid-template-columns: 72px minmax(0, 1fr) 34px;
		min-height: 0;
		padding: 16px 0;
	}

	.checkout-redesign .checkout-cart-item > div {
		padding: 0;
	}

	.checkout-redesign .checkout-product-photo {
		grid-column: 1;
		grid-row: 1 / span 3;
	}

	.checkout-product-photo a,
	.checkout-redesign .checkout-product-photo img {
		height: 72px;
		max-height: 72px;
		max-width: 72px;
		width: 72px;
	}

	.checkout-redesign .checkout-product-name {
		grid-column: 2;
		grid-row: 1;
	}

	.checkout-redesign .checkout-product-name > a {
		font-size: 14px;
	}

	.checkout-redesign .checkout-unit-price {
		display: none;
	}

	.checkout-redesign .checkout-quantity {
		grid-column: 2;
		grid-row: 2;
		margin-top: 2px;
	}

	.checkout-redesign .checkout-line-total {
		font-size: 14px;
		grid-column: 2;
		grid-row: 3;
		text-align: left;
	}

	.checkout-mobile-label {
		color: var(--checkout-muted);
		display: inline;
		font-size: 12px;
		font-weight: 400;
		margin-right: 6px;
	}

	.checkout-redesign .checkout-product-delete {
		grid-column: 3;
		grid-row: 1;
	}

	.checkout-redesign .checkout-product-delete .cart_delete {
		height: 32px;
		width: 32px;
	}

	.checkout-cart-footer {
		align-items: stretch;
		border-radius: 0 0 16px 16px;
		flex-direction: column;
		padding: 17px 18px 20px;
	}

	.checkout-promo-control input[type="text"] {
		min-width: 0;
		width: 100%;
	}

	.checkout-promo-control input[type="submit"] {
		padding: 0 12px;
	}

	.checkout-cart-total {
		justify-content: space-between;
	}

	.checkout-cart-total strong {
		font-size: 21px;
	}

	.checkout-form-card,
	.checkout-summary-card {
		padding: 20px 18px;
	}

	.checkout-fields,
	.checkout-redesign .checkout-address-fields {
		grid-template-columns: 1fr;
	}

	.checkout-field-wide {
		grid-column: auto;
	}

	.checkout-section-heading {
		margin-bottom: 20px;
	}

	.checkout-section-number {
		flex-basis: 36px;
		height: 36px;
	}

	.checkout-redesign .checkout-delivery-option > label {
		align-items: flex-start;
		min-height: 0;
		padding: 14px;
	}

	.checkout-redesign .checkout-pvz-select .chosen-container.chosen-with-drop {
		margin-bottom: 225px;
	}

	.checkout-method-price {
		display: none;
	}

	.checkout-redesign #pvz_map {
		height: 330px !important;
	}

	.checkout-summary-total strong {
		font-size: 21px;
	}

	.checkout-state-card {
		margin-top: 20px;
		padding: 40px 20px;
	}

	.checkout-state-card h1 {
		font-size: 25px;
	}
}
