/* CSS Document */
.carrier-info {
	font-size:0.8em;
	margin-top:5px;
	line-height:1em
	}
#carrierOverlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carrierOverlayBox {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
}

#carrierOverlayText {
    margin-top: 20px;
}

.cart-icon {
    position: relative;
}

.notification-count {
    display: inline-block;
    background: #28a745;
    color: #fff !important;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    padding: 0 4px;
    margin-left: -7px;
    vertical-align: super;
}
.cart-mobile-icon {
    position: relative;
}

.cart-count-mobile {
    position: absolute;
    top: 2px;
    right: 22%;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    padding: 0 4px;
}
#mobileBottomBar {
    display: none;
}

@media screen and (max-width: 736px) {

    body {
        padding-bottom: 70px;
    }

    #mobileBottomBar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 58px;
        background: #111;
        z-index: 99;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
    }

    #mobileBottomBar a {
        flex: 1;
        color: #fff;
        text-align: center;
        font-size: 0.75em;
        padding-top: 15px;
        text-decoration: none;
        border: 0;
    }

    #mobileBottomBar i {
        display: block;
        font-size: 1.35em;
        margin-bottom: 2px;
    }

    #mobileBottomBar span {
        display: block;
        line-height: 1.2em;
    }
}

@media screen and (min-width: 737px) {
    #mobileBottomBar {
        display: none !important;
    }
}


.wrapper > .innercart {
	margin: 0 auto;
	width: 90%;
	max-width: 90em;
}

/* Large desktop */
@media screen and (min-width: 981px) {
	.wrapper > .innercart {
		width: 50%;
		max-width: 50%;
	}
}

/* Tablet */
@media screen and (max-width: 980px) {
	.wrapper > .innercart {
		width: 75%;
		max-width: 75%;
	}
}

/* Mobile */
@media screen and (max-width: 736px) {
	.wrapper > .innercart {
		width: 95%;
		max-width: 95%;
	}
}

/* =========================
   Clean Shopify-like Checkout
========================= */

table.checkout {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;

	border-radius: 14px;

	box-shadow:
		0 1px 2px rgba(0,0,0,0.03),
		0 8px 24px rgba(0,0,0,0.04);

	overflow: hidden;

	font-family:
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Helvetica,
		Arial,
		sans-serif;
		font-size: 1.2em;
}


/* Header */

table.checkout thead {
	background: #fafafa;
}

table.checkout thead th {
	padding: 1em 1.25em;

	font-size: 0.78em;
	font-weight: 600;

	text-transform: uppercase;
	letter-spacing: 0.05em;

	color: #6b7280;

	border: 0;
	text-align: left;
}

/* Rows */

table.checkout tbody tr {
	background: #fff;

	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

/* Soft row separation */

table.checkout tbody tr + tr td {
	box-shadow: inset 0 1px 0 rgba(0,0,0,0.04);
}

table.checkout tbody tr:hover {
	background: #fafafa;
}
@media screen and (max-width: 736px) {
.table-wrapper table.checkout {
		width: 100%;
		font-size: 1.4em;
	}
}
/* Cells */

table.checkout tbody tr td {
	padding: 1.15em 1.25em;

	border: 0;

	vertical-align: middle;

	font-size: 0.95em;
	line-height: 1.45em;

	color: #222;
}

/* Remove zebra */

table.checkout tbody tr:nth-child(2n + 1) {
	background: #fff;
}

/* Product image */

table.checkout tbody tr td img {
	border-radius: 10px;

	background: #fff;

	box-shadow:
		0 1px 2px rgba(0,0,0,0.06),
		0 4px 10px rgba(0,0,0,0.04);

	padding: 0.15em;

	max-width: 72px;
	height: auto;
}

/* Totals/Footer */

table.checkout tfoot {
	background: #fafafa;
}

table.checkout tfoot td {
	padding: 1.1em 1.25em;

	font-size: 0.95em;

	border: 0;

	color: #333;
}

/* Total line */

table.checkout tfoot tr:last-child td {
	font-size: 1.08em;
	font-weight: 700;
	color: #111;
}

/* Buttons */

table.checkout .button,
table.checkout button,
table.checkout input[type="submit"] {

	background: #111827;
	color: #fff !important;

	border: 0;
	border-radius: 12px;

	padding: 0.95em 1.5em;

	font-size: 0.95em;
	font-weight: 600;

	transition: all 0.2s ease;

	box-shadow:
		0 1px 2px rgba(0,0,0,0.06),
		0 4px 12px rgba(0,0,0,0.08);
}

table.checkout .button:hover,
table.checkout button:hover,
table.checkout input[type="submit"]:hover {

	background: #000;

	transform: translateY(-1px);

	box-shadow:
		0 2px 6px rgba(0,0,0,0.08),
		0 10px 24px rgba(0,0,0,0.12);
}

/* Inputs */

table.checkout input[type="text"],
table.checkout input[type="email"],
table.checkout input[type="tel"],
table.checkout select {

	width: 100%;

	border: 0;

	background: #f5f5f5;

	border-radius: 10px;

	padding: 0.9em 1em;

	font-size: 0.95em;

	transition:
		background 0.2s ease,
		box-shadow 0.2s ease;
}

table.checkout input:focus,
table.checkout select:focus {

	background: #fff;

	box-shadow:
		0 0 0 2px rgba(17,24,39,0.08),
		0 2px 8px rgba(0,0,0,0.05);

	outline: none;
}

/* Prices */

table.checkout .price,
table.checkout .amount {
	font-weight: 600;
	color: #111;
	white-space: nowrap;
}

/* Mobile */

@media screen and (max-width: 768px) {

	table.checkout tbody tr td,
	table.checkout tfoot td {
		padding: 0.9em;
		font-size: 0.82em;
	}

	table.checkout tbody tr td img {
		max-width: 56px;
	}

	table.checkout .button,
	table.checkout button,
	table.checkout input[type="submit"] {
		width: 100%;
	}
}

/* Extra Small */

@media screen and (max-width: 480px) {

	table.checkout {
		border-radius: 10px;
	}

	table.checkout tbody tr td,
	table.checkout tfoot td {
		font-size: 0.74em;
		line-height: 1.25em;
		padding: 0.75em;
	}

	table.checkout thead th {
		font-size: 0.64em;
		padding: 0.7em;
	}
}