.cart-wrap{
	position: relative;
	padding: 0 0 20px;
}

.shop-cart-expand{
	position: absolute;
    width: 290px;
    z-index: 1000;
    background: #fff;
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.10);	
    right: 50%;
    transform: translateX(50%);
    top: 100%;
    padding: 15px;
    display: none;
    border-radius: 5px;
}

.shop-cart-expand.show{
	display: block;
}

.shop-cart-expand ul{
	list-style: none;
}

.shop-cart-expand ul li{
	float: left;
	width: 100%;
	border-bottom: 1px solid #d6d6d6;
	margin-bottom: 10px;
	line-height: 1.3;
}

.shop-cart-expand ul li a.title{
	color: #434343;
	display: block;
	margin: 0 0 5px;
}

.shop-cart-expand ul li span.product-info,
.shop-cart-expand ul li span.remove-product{
	font-size: 12px;
	color: #999;
	float: left;
}

.shop-cart-expand ul li span.remove-product{
	float: right;
	cursor: pointer;
}

.shop-cart-expand a.shop-cart{
	background: #000;
	color: #fff;
	width: 100%;
	padding: 10px 0;
	text-align: center;
	display: block;
	clear: both;
}

.shop-cart-expand .price-total-widget{
	margin-bottom: 10px;
	font-weight: 700;
	text-align: right;
}

.ajax-loading{
    background: rgb(0 0 0 / 60%);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 500;
}

.ajax-loading .box{
    width: 340px;
    padding: 20px 15px;
    background: #fff;
    background-size: 25px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    display: table;
    z-index: 400;
    border-radius: 10px;
    line-height: 1.3;
}

.ajax-loading .box .top{
	text-align: center;
	margin-bottom: 10px;
	border-bottom: 1px solid #d6d6d6;
	padding-bottom: 10px;
}

.ajax-loading .box .continue,
.ajax-loading .box .shopcart a{
	border: 1px solid #434343;
	color: #434343;
	width: calc(100% - 2px);
	padding: 15px 0;
	font-weight: 700;
	float: left;
	margin: 5px 0;
	text-align: center;
	line-height: 1;
}

.ajax-loading .box .shopcart a{
	background: #00A550;
	border: 1px solid #00A550;
	color: #fff;
}

#buy-btn {
    margin: 0 10px;
}

.added-to-cart {
    padding: 0 0 0 20px;
    background: url(images/ok.png) no-repeat 0 0;
}

.add-loading {
    padding: 5px 0 0 0;
}

/*** Table shop cart ***/
.tr-heading {
	text-align: center;
}

#cart-info-table {
	width: 100%;
}

.shop-cart-table thead th,
.shop-cart-table thead td {
	background-color: #61a63c;
    color: #fff;
    padding: 15px 0;
    font-family: 'ArialB';
}

.shop-cart-table tbody td {
	border-bottom: 1px solid #ccc;
	font-family: 'Arial';
	font-size: 14px;
}

td.no {
	width: 35px;
	text-align: center;
}

td.productnum {
	width: 100px;
	text-align: center;
}

td.productprice {
	text-align: center;
}

.shop-cart-table tfoot {
	background: #0F7FC9;
	font-size: 20px;
	font-weight: 600;
	text-align: right;
	color: #fff;
}

.cart-total p span {
	font-weight: bold;
}

/*** Checkout Form ***/
.gsc-order-confirmation {
	box-sizing: border-box;
	width: calc(100% - 30px);
	max-width: 1100px;
	margin: 38px auto 60px;
	padding: 32px;
	color: #292d32;
	background: #fff;
	border: 1px solid #e2e7ec;
	box-shadow: 0 8px 28px rgba(22, 45, 72, .08);
}

.gsc-order-confirmation__header {
	position: relative;
	min-height: 62px;
	padding: 18px 20px 18px 92px;
	margin-bottom: 26px;
	background: #f1f8f2;
	border: 1px solid #d5ead8;
	border-left: 4px solid #3b9148;
}

.gsc-order-confirmation__header:before {
	position: absolute;
	top: 18px;
	left: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	content: "\2713";
	background: #3b9148;
	border-radius: 50%;
}

.gsc-order-confirmation__header h2,
.gsc-order-confirmation h3 {
	margin-top: 0;
}

.gsc-order-confirmation__header h2 {
	margin-bottom: 5px;
	color: #217235;
	font-size: 26px;
	line-height: 1.3;
}

.gsc-order-confirmation__header p {
	margin: 0;
	color: #4f5c54;
	font-size: 16px;
}

.gsc-order-confirmation h3 {
	margin-bottom: 16px;
	padding-bottom: 10px;
	color: #174e82;
	font-size: 20px;
	line-height: 1.35;
	border-bottom: 2px solid #e8edf2;
}

.gsc-order-confirmation__meta,
.gsc-order-confirmation__customer {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 12px 24px;
	margin: 0 0 28px;
}

.gsc-order-confirmation__meta {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.gsc-order-confirmation__meta p {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 16px;
	background: #f5f8fb;
	border: 1px solid #e2e9f0;
}

.gsc-order-confirmation__meta span {
	color: #627080;
}

.gsc-order-confirmation__meta strong {
	color: #0b67ad;
	text-align: right;
}

.gsc-order-confirmation__meta p,
.gsc-order-confirmation__customer dt,
.gsc-order-confirmation__customer dd {
	margin: 0;
}

.gsc-order-confirmation__customer dt {
	font-weight: 700;
	color: #505b66;
}

.gsc-order-confirmation__customer dd {
	color: #20262d;
}

.gsc-order-confirmation__table-wrap {
	overflow-x: auto;
	margin-bottom: 18px;
}

.gsc-order-confirmation__table {
	width: 100%;
	min-width: 600px;
	border-collapse: collapse;
	background: #fff;
}

.gsc-order-confirmation__table th,
.gsc-order-confirmation__table td {
	padding: 12px;
	border: 1px solid #dce3e9;
	text-align: right;
}

.gsc-order-confirmation__table th {
	color: #fff;
	font-weight: 700;
	background: #176cae;
}

.gsc-order-confirmation__table tbody tr:nth-child(even) {
	background: #f7f9fb;
}

.gsc-order-confirmation__table th:first-child,
.gsc-order-confirmation__table td:first-child {
	text-align: left;
}

.gsc-order-confirmation__totals {
	width: 100%;
	max-width: 420px;
	margin-left: auto;
	padding: 14px 18px;
	background: #f7f9fb;
	border: 1px solid #e1e7ed;
}

.gsc-order-confirmation__totals p {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin: 0;
	padding: 8px 0;
}

.gsc-order-confirmation__grand-total {
	margin-top: 6px !important;
	padding-top: 14px !important;
	color: #0b67ad;
	font-size: 20px;
	border-top: 2px solid #176cae;
}

@media (max-width: 700px) {
	.gsc-order-confirmation {
		width: calc(100% - 20px);
		margin: 20px auto 40px;
		padding: 18px;
	}

	.gsc-order-confirmation__header {
		padding: 18px 16px 18px 76px;
	}

	.gsc-order-confirmation__header:before {
		left: 16px;
		width: 42px;
		height: 42px;
		font-size: 24px;
	}

	.gsc-order-confirmation__header h2 {
		font-size: 22px;
	}

	.gsc-order-confirmation__meta,
	.gsc-order-confirmation__customer {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.gsc-order-confirmation__meta p {
		align-items: flex-start;
		flex-direction: column;
		gap: 3px;
	}

	.gsc-order-confirmation__meta strong {
		text-align: left;
	}

	.gsc-order-confirmation__table-wrap {
		overflow: visible;
	}

	.gsc-order-confirmation__table {
		min-width: 0;
		border: 0;
	}

	.gsc-order-confirmation__table thead {
		display: none;
	}

	.gsc-order-confirmation__table tbody,
	.gsc-order-confirmation__table tr,
	.gsc-order-confirmation__table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}

	.gsc-order-confirmation__table tr {
		margin-bottom: 12px;
		border: 1px solid #dce3e9;
	}

	.gsc-order-confirmation__table td,
	.gsc-order-confirmation__table td:first-child {
		display: grid;
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 12px;
		padding: 10px 12px;
		border: 0;
		border-bottom: 1px solid #e7ecf0;
		text-align: right;
	}

	.gsc-order-confirmation__table td:last-child {
		border-bottom: 0;
	}

	.gsc-order-confirmation__table td:before {
		color: #52606e;
		font-weight: 700;
		text-align: left;
		content: attr(data-label);
	}

	.gsc-order-confirmation__customer dd {
		margin-bottom: 10px;
	}
}

.gsc-checkout-loading {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: blur(2px);
}

.gsc-checkout-loading__box {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 100%;
	max-width: 360px;
	padding: 30px 24px;
	color: #263545;
	text-align: center;
	background: #fff;
	border: 1px solid #dce5ed;
	box-shadow: 0 12px 36px rgba(20, 50, 80, .14);
}

.gsc-checkout-loading__box strong {
	margin: 14px 0 4px;
	color: #174e82;
	font-size: 20px;
}

.gsc-checkout-loading__box > span:last-child {
	color: #657383;
}

.gsc-checkout-loading__spinner {
	box-sizing: border-box;
	width: 42px;
	height: 42px;
	border: 4px solid #d9e7f3;
	border-top-color: #176cae;
	border-radius: 50%;
	animation: gsc-checkout-spin .75s linear infinite;
}

@keyframes gsc-checkout-spin {
	to {
		transform: rotate(360deg);
	}
}

#checkout-form {
	clear: both;
	margin: 0 0 10px;
}

#checkout-form .form-details-pc {
	width: 100%;
	float: left;
	height: auto;
}

#checkout-form p {
	margin-bottom: 15px;
	width: 100%;
	float: left;
}

#checkout-form p.info:first-child{
	float: left;
	width: 100%;
}

#checkout-form .form-details-pc p.info:nth-child(n+2)  {
    float: left;
    width: calc(50% - 15px);
    margin-right: 15px;
}

#checkout-form .form-details-pc select {
    padding: 0 15px;
    height: 40px;
    margin-right: 5px;
    font-size: 16px;
    background: #fff;
    color: #444444;
    outline: none;
    float: left;
    border: 1px solid #E0E0E0;
    width: calc(100% - 2px);
}

#checkout-form p.info input{
	margin: 0;
}

#checkout-form p.info:nth-child(n+5) {
    float: left;
    width: calc(50% - 15px);
    margin-right: 15px;
}

#info-customer{
	float: left;
	width: 100%
}

#info-customer input[type="reset"]{
	text-transform: uppercase;
    display: block;
    background-color: #fff;
    text-align: center;
    font-weight: 700;
    color: #363636;	
	padding: 10px 20px;
	border: 1px solid #d6d6d6;
	border-radius: 20px;
	float: right;
}

#info-customer h2{
	font-size: 24px;
	margin-bottom: 20px;
	float: left;
	width: 100%;
}

#checkout-form p input#full-name,
#checkout-form p input#address,
#checkout-form p input#phone,
#checkout-form p input#email {
	height: 45px;
    padding: 0 15px;
    width: calc(100% - 32px);
	background: #f6f6f6;
	border-radius: 5px;
	border: none;
}

#checkout-form p.messagearea {
	width: 100%;
	margin: 0;
}

.messagearea {
	float: right;
}

.messagearea textarea {
    width: calc(100% - 35px);
    height: 90px;
    background: #fff;
    padding: 15px 0 0 15px;
}

.checkout-cart-info {
	border-top: 1px solid #ddd;
	padding: 10px 0 0;
}

.cart-total {
	float: left;
	padding-top: 15px;
}

.cart-summary .button {
	display: block;
	background-color: #61a63c;
	text-align: center;
	font-weight: 700;
	color: #ffffff;
	background-image: none;
	border-radius: 20px;
	float: right;
	margin-left: 15px;
}

.cart-summary .button {
	padding: 10px 20px;
}

.cart-summary a.checkout {
	font-size: 18px;
}

p.submit {
	padding-top: 15px;
}

.cart-summary p.submit {
	float: right;
}

.cart-summary .update-cart {
	padding: 5px;
	background-color: #268dbd;
}

.gsc-action {
	float: right;
	padding-top: 35px;
}

.gsc-action a,
.gsc-action a:visited {
	margin-left: 20px;
	color: #333;
	font-weight: bold;
}

.gsc-action a.gsc-export-excel,
.gsc-action a.gsc-export-excel:visited {
	background-color: #0f7fc9;
    color: #fff;
    padding: 7px;
}

.message.error {
	color: #C8151A;
	font-size: 16px;
	font-weight: bold;
}

#gsc-shopcart-table{
	float: left;
	width: 100%;
}

#gsc-shopcart-table ul.title-shopcart,
#gsc-shopcart-table ul.li-products{
    float: left;
    width: 100%;
    border: none;
}

#gsc-shopcart-table ul.title-shopcart li{
	margin: 0;
	float: left;
	list-style: none;
}

#gsc-shopcart-table ul.li-products li{
	margin: 0;
	float: left;
	list-style: none;
}	

#gsc-shopcart-table ul.li-products li.type-products span{
	border: 1px solid #d6d6d6;
	padding: 10px;
}

#gsc-shopcart-table ul.li-products li.images-products,
#gsc-shopcart-table ul.li-products li.number-products{
	padding: 0;
}

#gsc-shopcart-table ul.li-products li.images-products img{
	width: 100%;
	display: block;
	margin: 0;
}

#gsc-shopcart-table .cart-total{
	float: left;
	width: 100%;
	margin: 15px 0;
}

#gsc-shopcart-table .cart-total .notice-cart {
    float: left;
    color: #898989;
    font-style: italic;
    width: 240px;
    font-size: 14px;
    text-align: left;
}

#gsc-shopcart-table .cart-total p.total-price{
	float: right;
	color: #599f44;
	font-size: 18px;
}

#gsc-shopcart-table .cart-total span.total-price{
	margin-right: 20px;
	color: #333;
}

#gsc-shopcart-table .remove-product{
	color: #898989;
	font-size: 14px;
}

#gsc-shopcart-table .remove-product span{
	color: #333;
	font-size: 11px;
	font-weight: bold;
}
#gsc-shopcart-table ul.li-products li.delete_g .remove-product{
	background: url(images/delete.svg) no-repeat left center;
    display: inline-block;
    padding: 5px 0;
   	padding-left: 20px;
   	text-transform: uppercase;
   	font-size: 13px;
    border-right: none;
    line-height: 1;
}

#gsc-shopcart-table ul.li-products li.delete_g{
	text-align: right;
}

#gsc-shopcart-table ul.li-products li.types-products .change-type{
	background: url(images/write.svg) no-repeat center center;
	text-indent: -9999px;
	width: 15px;
	display: inline-block;
	margin-left: 10px;
	cursor: pointer;
}

span.ptype-ok, 
span.ptype-cancel{
	margin-left: 0.6em;
	padding: 1px 4px;
	border: 1px solid lightgray;	
    text-align: center;
    border-radius: 5px;
    cursor: pointer;    
    text-decoration: none;    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}
span.ptype-ok:hover,
span.ptype-cancel:hover{
    background-color: whitesmoke;
}
