/* Basket-only rules. Shared checkout and delivery structure lives in checkout-delivery.v5.4.css. */

body#checkout-page #main-navigation #search_bar,
body#checkout-page #main-navigation nav > .shopping_cart {
	display: none !important;
}


body#checkout-page #nav-top {
    background-color: var(--offwhite);
}
body#checkout-page #checkout-wrapper {
    background: var(--offwhite, #f8f8f8);
    color: var(--text);
}

body#checkout-page #main-navigation,
body#checkout-page #main-navigation nav {
    height: 90px;
}
body#checkout-page #main-navigation nav {
    align-items: center;
}

body#checkout-page #checkout-wrapper,
body#checkout-page #checkout-wrapper > #checkout-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
body#checkout-page #checkout-wrapper > #checkout-container > div {
    float: none;
    margin: 0;
    padding: 0;
}
body#checkout-page #checkout-container {
    border-radius: 0;
    box-shadow: none;
	margin-left: auto;
	margin-right: auto;
}
body#checkout-page .basket-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 25px 40px;
    align-items: start;
}

body#checkout-page #checkout_products {
	border-radius: 5px;
    float: none;
    width: 100%;
    min-height: 0 !important;
    padding: 20px;
    background: var(--white);
}
body#checkout-page .basket-product {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 25px 0;
    border-bottom: 1px solid var(--offwhite);
}
body#checkout-page .basket-product:first-child {
    padding-top: 0;
}
body#checkout-page #checkout_products > .basket-product:last-of-type {
    border-bottom-color: var(--sky-border);
}
body#checkout-page .basket-product-image,
body#checkout-page .basket-product-image picture,
body#checkout-page .basket-product-image img {
    display: block;
    width: 160px;
    height: 110px;
}
body#checkout-page .basket-product-image img {
    object-fit: contain;
    border-radius: 5px;
    background: var(--white);
}
body#checkout-page .basket-product-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 20px;
    row-gap: 0;
    align-items: start;
}
body#checkout-page .basket-product-details h2 {
    display: contents;
    font-family: var(--typeface-titling);
    font-size: 20px;
    font-weight: 600;
	grid-column: 1;
	grid-row: 1;
    line-height: 1.35;
    letter-spacing: 0;
    margin: 0 0 5px;
    overflow-wrap: anywhere;
    padding: 0;
}
body#checkout-page .basket-product-details h2 a {
    display: contents;
    color: var(--text);
    text-decoration: none;
}
body#checkout-page .basket-availability {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}
body#checkout-page .basket-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
    margin: 5px 0 10px;
    font-size: 15px;
    line-height: 1.5;
}
body#checkout-page .basket-colour {
    margin: 0;
    overflow-wrap: anywhere;
}
body#checkout-page .basket-product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
    margin: 5px 0 10px;
}
body#checkout-page .basket-qty-control {
    display: inline-flex;
    align-items: center;
}
body#checkout-page .basket-qty {
    display: inline-flex;
    align-items: center;
    min-height: 35px;
    margin: 0;
    border: 1px solid var(--sky-border);
    border-radius: 5px;
    background: var(--white);
    overflow: hidden;
}
body#checkout-page .basket-qty-label {
    padding: 5px 10px;
    font-size: 15px;
    font-weight: 600;
}
body#checkout-page .basket-qty button,
body#checkout-page .basket-qty-value {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #30559c;
    font: inherit;
    line-height: 1;
}
body#checkout-page .basket-qty button {
    cursor: pointer;
    font-size: 20px;
}
body#checkout-page .basket-qty button:hover {
    background: #eef3f9;
}
body#checkout-page .basket-qty-value {
    border-left: 1px solid var(--sky-border);
    border-right: 1px solid var(--sky-border);
	color: var(--text);
    font-size: 15px;
    font-weight: 600;
}
body#checkout-page .basket-product-price {
    display: block;
    position: relative;
    grid-column: 2;
    grid-row: 1;
    min-width: 110px;
    font-family: var(--typeface-titling);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
    text-align: right;
	white-space: nowrap;
}
body#checkout-page .basket-sale {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    color: var(--red-sale, #a52b2b);
    font-family: var(--typeface-body);
    font-size: 15px;
    font-weight: 400;
}
body#checkout-page .basket-remove {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 35px;
    font-size: 15px;
	font-weight: 600;
    color: #30559c;
    text-decoration: none;
}
body#checkout-page .basket-remove:hover {
    text-decoration: none !important;
}
body#checkout-page #checkout-actions {
    min-width: 0px;
    padding: 0px 0px 0px 30px;
}
body#checkout-page #voucher {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: none;
    border-top: 0;
}
body#checkout-page #voucher label {
    margin: 0 0 10px;
    padding: 0 0 0 10px;
}
body#checkout-page #voucher .basket-voucher-entry {
    display: flex;
    gap: 0;
    border: 1px solid var(--sky-border);
    border-radius: 5px;
    overflow: hidden;
}
body#checkout-page #voucher input {
    flex: 1;
    width: 0;
    min-width: 0;
    height: auto;
    margin: 0;
    padding: 10px;
    border: 0;
    border-radius: 0;
}
body#checkout-page .basket-voucher-apply {
    min-height: 45px;
    padding: 10px 20px;
    background-color: var(--pale-sky-border, #eef3f9);
    color: #30559c;
    border: 0;
    border-radius: 0;
    font: inherit;
    font-weight: 600;
}
body#checkout-page #voucher-feedback {
    min-height: 15px;
    margin: 5px 0 0;
	padding-left: 10px;
    font-size: 15px;
	opacity: 0;
	transition: opacity .3s;
}
body#checkout-page #voucher.err #voucher-feedback,
body#checkout-page #voucher-feedback.is-visible {
    color: #900000;
	opacity: 1;
}
body#checkout-page .basket-voucher-product .basket-product-spacer {
	width: 160px;
	height: 1px;
}
body#checkout-page .basket-totals {
    margin: 0;
    font-size: 15px;
}
body#checkout-page #checkout_products > .basket-total-row {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    column-gap: 20px;
    margin: 0;
    padding: 20px 0 0;
    width: 100%;
    border: 0;
    background: var(--white);
}
body#checkout-page .basket-total-row .basket-totals,
body#checkout-page .basket-total-row .basket-tax {
    grid-column: 2;
}
body#checkout-page .basket-totals > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 10px;
}
body#checkout-page .basket-totals dt {
    font-weight: 400;
}
body#checkout-page .basket-totals .basket-subtotal-label {
    font-family: var(--typeface-titling);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
}
body#checkout-page .basket-totals dd {
    margin: 0;
    white-space: nowrap;
}
body#checkout-page .basket-totals .basket-total {
    color: var(--text);
    font-size: 20px;
}
body#checkout-page .basket-total dd {
    font-weight: 700;
}
body#checkout-page .basket-total:not(:first-child) {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}
body#checkout-page .basket-tax {
    margin: 0;
    text-align: right;
    font-size: 15px;
}
body#checkout-page .checkout-next-step {
    display: grid;
    gap: 15px;
}
body#checkout-page .checkout-next-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    min-height: 45px;
}
body#checkout-page .checkout-next-icons img {
    display: block;
    width: 45px;
    height: 40px;
    object-fit: contain;
}
body#checkout-page .checkout-next-icons .checkout-next-icon-delivery {
    height: 45px;
}
body#checkout-page .checkout-next-icons .checkout-next-icon-finance {
    height: 33px;
}
body#checkout-page .checkout-next-step > p {
    margin: 0;
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}
body#checkout-page .basket-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-height: 50px;
    padding: 15px 20px;
    border-radius: 5px;
    background: #30559c;
    color: var(--white);
    font-size: 16px;
    font-family: var(--typeface-titling);
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
}
body#checkout-page .basket-primary:hover {
    background: #20458c;
}
body#checkout-page .checkout-next-step .basket-primary {
    justify-content: space-between;
}
body#checkout-page .checkout-next-step .basket-primary svg {
    flex: none;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}
body#checkout-page #checkout-wrapper a:focus-visible,
body#checkout-page #checkout-wrapper button:focus-visible,
body#checkout-page #checkout-wrapper input:focus-visible {
    outline: 2px solid #30559c;
    outline-offset: 3px;
}
body#checkout-page #checkout-wrapper > #checkout_vp {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 35px 25px;
    margin: 40px auto 50px;
    max-width: 1200px;
    padding: 25px 20px;
}
body#checkout-page #checkout-wrapper > #checkout_vp::before,
body#checkout-page #checkout-wrapper > #checkout_vp::after {
    content: none;
    display: none;
}
body#checkout-page #checkout_vp > div,
body#checkout-page #checkout_vp > div > a {
    display: flex;
    align-items: center;
    gap: 10px;
    float: none;
    width: auto;
}
body#checkout-page #checkout_vp > div {
    margin: 0;
    padding: 0;
}
body#checkout-page #checkout_vp > div > a {
    color: inherit;
}
body#checkout-page #checkout_vp > div > img,
body#checkout-page #checkout_vp > div > a > img {
    flex: none;
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin: 0;
}
body#checkout-page #checkout_vp > div p {
    margin: 0;
}
body#checkout-page #checkout-info {
    background: var(--offwhite);
}
body#checkout-page #checkout_products .basket-empty {
    display: block;
    padding: 25px 0;
    background: none;
    border: 0;
}
body#checkout-page .basket-empty .basket-primary {
    width: max-content;
    max-width: 100%;
}

body#checkout-page #footer {
	background-color: var(--green-soft);
}

body#checkout-page #svgh-all-products-footer {
	fill: var(--green-soft);
	margin-bottom: -1px;
}

body#checkout-page #svgh-icon-dhc-white,
body#checkout-page #bosch-yamaha svg {
	fill: var(--text);
}

body#checkout-page #footer *, 
body#checkout-page #footer-contact #footer-social label, 
body#checkout-page #footer-contact > div > a > label {
    color: var(--text);
}

#footer-link-lists > div:not(:last-of-type) {
	border: none;
}


@media (min-width: 992px) {
	body#checkout-page .basket-totals {
		padding-left: 30px;
	}

	body#checkout-page #v_code,
	body#checkout-page .basket-voucher-apply {
		transition: background-color .3s;
	}

	body#checkout-page #v_code:hover {
		background-color: var(--white);
	}

	body#checkout-page .basket-voucher-apply:hover {
		background-color: var(--blue-focus);
	}

	body#checkout-page #main-navigation nav > .phone-icon,
	body#checkout-page #main-navigation nav > button,
	body#checkout-page #main-navigation nav > .dropdown {
		display: none !important;
	}

	#checkout-breadcrumbs {
		top: 50px;
	}
	
	body#checkout-page #checkout-container {
		padding-top: 20px;
	}
	
	body#checkout-page #checkout_products {
		box-shadow: 0px 0px 150px #5551;
	}

	body#checkout-page .basket-product-details {
		padding-left: 2vw;
		padding-top: 10px;
	}
	
	body#checkout-page .checkout-next-step {
		margin-top: 20px;
	}
}


@media (min-width: 1921px) {
	body#checkout-page #checkout-wrapper > #checkout-container {
		width: calc(100% - 18vw);
		padding: 20px 4vw;
	}
	
	body#checkout-page #checkout_products {
		padding: 20px 2vw;
	}
}




@media (max-width: 1920px) {
	body#checkout-page #checkout-wrapper > #checkout-container {
		margin: 0px auto 25px auto;
		width: calc(100% - 120px);
	}
	
	body#checkout-page #checkout_products {
		padding: 20px 4vw;
	}
}



@media (max-width: 991px) {
    body#checkout-page #nav-props {
        display: none;
    }
		
    body#checkout-page #checkout-wrapper > #checkout-container {
		margin: 0;
        padding: 20px 20px 20px 20px;
        width: 100%;
    }
    body#checkout-page .basket-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
	
    body#checkout-page .basket-product {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 10px 15px;
        padding: 20px 0;
    }
    body#checkout-page .basket-product-image,
    body#checkout-page .basket-product-image picture,
    body#checkout-page .basket-product-image img,
	body#checkout-page .basket-voucher-product .basket-product-spacer {
        width: 110px;
    }
	body#checkout-page .basket-product-image,
    body#checkout-page .basket-product-image picture,
    body#checkout-page .basket-product-image img {
        height: 80px;
    }
    body#checkout-page .basket-product-details h2 {
        font-size: 20px;
    }
    body#checkout-page .basket-product-price {
        min-width: 0;
    }
    body#checkout-page #checkout_products > .basket-total-row {
        grid-template-columns: 110px minmax(0, 1fr);
        column-gap: 15px;
    }
    body#checkout-page #checkout-actions {
        padding: 0px;
    }
    body#checkout-page #voucher {
        max-width: none;
		padding: 0px 20px;
    }
	
	
    body#checkout-page #voucher,
	body#checkout-page .checkout-next-step > p,
	body#checkout-page .checkout-next-step .basket-primary {
        font-size: 2rem;
    }
	
	
	body#checkout-page #voucher input {
		width: 60%;
	}
	body#checkout-page .basket-voucher-apply {
		width: 40%;
	}
	
	
	body#checkout-page .checkout-next-step {
		background-color: var(--white);
		border-radius: 5px;
		padding: 20px;
	}	
	
    body#checkout-page .checkout-next-step .basket-primary {
		-webkit-justify-content: center;
		justify-content: center;
		font-size: 2.4rem;
		font-weight: 700;
	}
	
	body#checkout-page .checkout-next-step .basket-primary svg {
		margin-top: 5px;
		stroke-width: 4px;
	}
	
    body#checkout-page #checkout-wrapper > #checkout_vp {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 20px;
		padding: 20px 40px;
    }
    body#checkout-page #checkout_vp > div,
    body#checkout-page #checkout_vp > div > a {
        align-items: flex-start;
    }
    body#checkout-page #checkout_vp > div > img,
    body#checkout-page #checkout_vp > div > a > img {
        width: 50px;
        height: 50px;
    }
    body#checkout-page #delivery-notes {
        flex-wrap: wrap;
    }
    body#checkout-page #delivery-notes .col_a,
    body#checkout-page #delivery-notes .col_c {
        width: 100%;
    }
}


@media (max-width: 520px) {
    body#checkout-page #main-navigation nav > .navbar-brand svg {
        width: 85px;
    }
    body#checkout-page #checkout_products {
        padding: 20px;
    }
    body#checkout-page .basket-product {
        grid-template-columns: 90px minmax(0, 1fr);
    }
    body#checkout-page #checkout_products > .basket-total-row {
        grid-template-columns: 90px minmax(0, 1fr);
    }
    body#checkout-page .basket-product-image,
    body#checkout-page .basket-product-image picture,
    body#checkout-page .basket-product-image img,
	body#checkout-page .basket-voucher-product .basket-product-spacer {
        width: 90px;
    }
	body#checkout-page .basket-product-image,
    body#checkout-page .basket-product-image picture,
    body#checkout-page .basket-product-image img {
        height: 70px;
    }
    body#checkout-page .basket-product-heading {
        column-gap: 10px;
    }
    body#checkout-page .basket-product-details h2,
    body#checkout-page .basket-totals .basket-subtotal-label,
    body#checkout-page .basket-product-price {
        font-size: 18px;
    }
    body#checkout-page .checkout-next-icons {
        gap: 25px;
    }
    body#checkout-page #checkout-wrapper > #checkout_vp {
        grid-template-columns: minmax(0, 1fr);
    }
}
