/* ----------- Cart + Checkout page(s) ------------ */

.checkout-content {
	padding:90px 0;
	background-color:#efede2;
	font-family: 'Opensans Semibold', Helvetica, sans-serif;
	text-align: center;
	
	min-height:calc(100vh - 405px);
	
	font-size:0;
}
.checkout-content > .container > .col {
	font-size:16px;
	text-align: left;
}

.checkout-content .main {
	width:68%;
	max-width:695px;
}
.checkout-content .side {
	width:28%;
	max-width:285px;
	margin-left:3.5%;
	
	text-align: center;
}

.checkout-content .content {
	padding-top: 0;
	padding-bottom: 0;
}

/*
.checkout-content .content p:last-child {
	margin-bottom:0;
}
*/

.cart-rows {
	text-transform: uppercase;
}

.cart-rows strong {
	font-family:'Opensans Bold','Arial Bold',sans-serif;
	font-size:16px;
	line-height: 1;
	font-weight: normal;
}

.side .cart-rows {
	text-align: center;
}

.color-heading {
	position: relative;
	background-color:#F47621;
	color:#EFEDE2;
	padding:15px 40px;
	margin:35px auto;
} 

.color-heading:first-child { margin-top:0 !important; }

.checkout-form .color-heading {
	background-color: #C6C6C6 !important;
	overflow: hidden;
}

.checkout-form .color-heading:before {
	content: "";
	position: absolute;
	bottom: -100%;
	left:0px;
	height: 100%;
	width: 100%;
	background-color:#F47621;
	z-index: 0;
	transition: all 0.3s ease 0s;
}

.checkout-form .open .color-heading:before,
.checkout-form .finished .color-heading:before {
	bottom: 0;
}

.white-bg {
	background-color:#FFF;
}
.navy-bg {
	background-color:#0e1b29;
	color:#EFEDE2;
}
.gray-bg {
	background-color:#cfd1d4;
	color:#0e1b29;
}

.product-rows {
	text-align: left;
}
.product-rows > li {
	position: relative;
	padding:35px 35px 35px 35px;
	overflow: hidden;
}

.product-rows > li + li {
	margin-top:18px;
}

/* select all 'row' related items (product rows) */
[class^="row-"] {
	display: inline-block;
	vertical-align: bottom;
}

.row-img {
	width:102px;
	height:80px;
/*
	width:11%;
	height:85px;
	text-align: center;
*/
	text-align: center;
	
	display: inline-block;
	display: -webkit-inline-flex;	
	display: inline-flex;
	-webkit-flex-flow:column nowrap;
	flex-flow:column nowrap;
	-webkit-align-items:center;
	align-items:center;
	-webkit-justify-content:center;
	justify-content:center;
}

.row-img > a {
	display: inline-block;
	height:100%;
	text-align: center;
}

.row-img img {
	max-height:100%;
	vertical-align: middle;
}
.row-title {
	width:53%;
	padding-left:10px;
	max-width:310px;
	margin-bottom:8px;
	text-align: left;
}
.row-title .price {
	display: block;
}

.row-title small {
	font-size: 85%;
}

.price {
	font-family: 'Opensans Bold', 'Arial Bold', sans-serif;
}

.row-qty {
	line-height: 1;
	text-align: center;
	padding-bottom:7px;
	margin-bottom:8px;
	position: relative;
}
.row-qty input {
	vertical-align: top;
}
.small-input {
	background-color:#FFF;
	border:2px solid #A6BBCD;
	max-width:42px;
	padding:4px 5px;
	font-family: 'Opensans Bold','Arial Bold', sans-serif;
	text-align: center;
}

.product-rows .edit-link {
	position: absolute;
	top:13px;
	right:70px;
}

.delete-item {
	position: absolute;
	right:0;
	top:0;
	display: inline-block;
	width:47px;
	height:47px;
	background-color:#728840;
	background-image:url(/images/icons/x.png);
	background-position: center;
	background-repeat: no-repeat;
	border:none;
	cursor: pointer;
}

.mix-n-match-list {
	width:100%;
	margin:20px auto 10px;
	font-size:0;
	text-align: left;
	
	display: block;
	display: -webkit-flex;	
	display: flex;
	-webkit-flex-flow:row wrap;
	flex-flow:row wrap;
	-webkit-align-items:stretch;
	align-items:stretch;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.mix-n-match-list > li {
	font-size:10px;
	
	display: inline-block;
	vertical-align: top;
	width:32%;
	padding:12px 10px;
	background-color:#F47621;
	color:#FFF;
}
.mix-n-match-list > li:nth-child(3n-1) {
	margin-left:2%;
	margin-right:2%;
}
.mix-n-match-list > li:nth-child(n+4) {
	margin-top:12px;
}

.product-rows.compact {
	display: block;
	width:100%;
}

.product-rows.compact > li {
	padding:20px;
	
	display: block;
	display: -webkit-flex;	
	display: flex;
	-webkit-flex-flow:row wrap;
	flex-flow:row wrap;
	-webkit-align-items:center;
	align-items:center;
	-webkit-justify-content:left;
	justify-content:left;
}

.product-rows.compact > li + li {
	margin-top:0;
	border-top:2px solid #dce4eb;
}

.row-info {
	margin-left:3.5%;
	width:calc(96% - 102px);
}

.row-info small {
	font-size: 85%;
}

.side .standard-rows + .btn {
	margin-top:25px;
}

.standard-rows > li {
	padding:12px 20px;
	font-size:14px;
}
.left-part,
.right-part {
	display: inline-block;
	vertical-align: top;
	width:49%;
}
.left-part {
	text-align: left;
}
.right-part {
	text-align: right;
}

.left-part:first-child ~ .left-part,
.left-part:first-child ~ .left-part ~ .right-part {
	margin-top:5px;
}

.standard-rows.align-split {
	display: block;
}

.standard-rows.align-split > li,
.align-split {
	display: block;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow:row wrap;
	flex-flow:row wrap;
	-webkit-align-items:stretch;
	align-items:stretch;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}

.cart-rows .total-row {
	font-size:16px;
	margin-top:25px;
	
	padding:0;
}
.total-row > div {
	padding:6px 20px;
	width:100%;
}

.cart-rows .final-total {
	font-size:18px;
	font-family:'Opensans Bold','Arial Bold', sans-serif;
}
.cart-rows .final-total,
.final-total.align-split {
	-webkit-align-items:baseline;
	align-items:baseline;
}
.big-red {
	font-size:24px;
	line-height: 1.1;
	color:#728840;
	font-family: 'Opensans Bold','Arial Bold', sans-serif;
}

.navy-texture {
	background:url(../images/layout/bg-dark.jpg) repeat center top;
}

.promo-box {
	padding:20px;
	margin:0 auto;
/* 	max-width:205px; */
	max-width:300px;
	color:#FFF;
	font-size:16px;
	text-align: center;
}

.promo-box > *:first-child {
	margin-bottom:10px;
	display: block;
	width:100%;
}
.promo-box > *:last-child { margin-bottom:0; }

.promo-box input {
	display: inline-block;
	width:100%;
	padding:5%;
	height:42px;
	margin:10px 0 20px;
}

.promo-box .btn {
	cursor:pointer;
}

.promo-sale-desc {

}

.promo-sale-desc small {
	display: block;
	padding-left: 25px;
	font-size: 85%;
}

.small-text {
	font-size:11px;
	font-family: 'Opensans', Arial, sans-serif;
	line-height:1.7;
	text-transform: none;
}
.small-text a {
	font-family:'Opensans Bold', 'Arial Bold', sans-serif;
}

.promo-box a {
	display: inline-block;
}

.promo-box p {
	margin-bottom:20px;
}
.promo-box a:not(.btn) {
	margin-bottom:10px;
}

.side .cart-rows + .promo-box {
	margin-top:50px;
}

.underline-text {
	position: relative;
	padding-bottom:10px;
	font-family:'FuturaStd', Helvetica, sans-serif;
	font-size:16px;
	text-transform: uppercase;
}
.underline-text:after {
	content:"";
	display: block;
	height:2px;
	width:96%;
	background-color:#728840;
	
	position: absolute;
	bottom:0;
	left:2%;
}

.checkout-content.steps .main {
	width:49%;
	max-width:501px;
}
.checkout-content.steps .side {
	width:47%;
	max-width:481px;
}

.checkout-form,
.checkout-form .col {
	font-size:12px;
	text-transform: uppercase;
}

.col-block {
	padding:2%;
	
	display: block;
	display: -webkit-flex;	
	display: flex;
	-webkit-flex-flow:row wrap;
	flex-flow:row wrap;
	-webkit-align-items:stretch;
	align-items:stretch;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}

.col-block.no-padding {
	padding: 0px;
}

.col-block .col {
	text-align: left;
}

body .checkout-section .col.lg-col {
	width:100%;
	max-width: none;
}

.checkout-form input,
.checkout-form select {
	display: block;
	width:100%;
	background: transparent;
	border:none;
	padding:10px 16px 10px 12px;
	font-size:16px;
}
.checkout-form input + input,
.checkout-form input + select,
.checkout-form select + input,
.checkout-form .inline-select + .select2,
.checkout-form .inline-select + .select2 + input {
	margin-top:28px;
}

.checkout-form .inline-select,
.checkout-form .inline-select + input,
.checkout-form .inline-select + .form-field,
.checkout-form .inline-select + .select2,
.checkout-form .inline-select + .select2 + input  {
	display: inline-block;
	vertical-align: middle;
}
.checkout-form .inline-select,
.checkout-form .inline-select + .select2 {
	width:66.75%;
}
.checkout-form .inline-select + input,
.checkout-form .inline-select + .form-field,
.checkout-form .inline-select + .select2 + input {
	width:30%;
	margin-left:3.25%;
}

.checkout-form .half-w,
.checkout-form .half-w.double + input {
	display: inline-block;
	vertical-align: middle;
	width:46.5%;
}
.checkout-form .half-w.double + input {
	margin-left:5.5%;
}

.form-field.disabled {
  background: rgba(255, 255, 255, 0.4);
}
/* custom select 2 styles */

.checkout-content .select2-selection__arrow {
	visibility: hidden;
}
.checkout-content .select2-container .select2-selection--single .select2-selection__rendered {
	padding-right:8px;
	padding-left: 12px;
	font-size: 16px;
	line-height: 36px;
}
.checkout-content .select2-container--default .select2-selection--single {
	border:none;
	border-radius: 0;
}

.checkout-form .select2-container--default .select2-selection--single {
	padding:4px 0 3px;
	height:auto;
}
.checkout-form li.select2-results__option:first-child {
	font-family:'Opensans Bold','Arial Bold',sans-serif;
}
.style-select select + .select2 .select2-selection--single  {
	padding:8px 0 7px;
	height:auto;
}

.select2 * {
	background: transparent !important;
}

.select2-dropdown {
	border: none !important;
	border-radius: 0px !important;
}

.select2-results__options > li:empty {
	display: none !important;
}

.checkout-form .select2 {
	height: 69px;
	display: block;
}

.disabled .select2 {
	pointer-events: none;
	touch-action: none;
}

.checkout-form .select2 > span,
.checkout-form .select2 > span > span,
.checkout-form .select2 > span > span > span {
	display: block !important;
	height: 100% !important;
}

.checkout-form .disabled-inputs {
	position: relative;
	width:100%;
	margin-top:10px;
/* 	padding:5px; */
/* 	background-color:#8B8B8B; */
}

.checkout-form input[disabled],
.checkout-form select[disabled],
.checkout-form textarea[disabled] {
	background-color:#EEE;
	color:#CCC;
}

.content-check p {
	margin-top: -20px;
}

.form-field {
	position: relative;
	background: #fff;
	margin-top:28px;
}

.form-field:after {
	content: attr(data-required);
	display: inline-block;
	right: 5px;
	top: 3px;
	color: #EA0009;
	position: absolute;
	font-size: 18px;
}

.form-field:before {
	content: attr(data-placeholder);
	display: inline-block;
	top: 50%;
	font-size: 12px;
	position: absolute;
	line-height: 12px;
	left: 10px;
	font-family: 'Opensans Bold', Arial, sans-serif;
	transform: translateY(-50%);
	transition: all 0.3s ease 0s;
}

.form-field > * {
	position: relative;
	z-index: 1;
}

.form-field.on:before {
	top:-18px;
	left: 0px;
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.cart-qty {
  display: inline-block;
  vertical-align: middle;
}

.cart-qty input {
  display: inline-block;
  vertical-align: middle;
}

.checkout-section .continue-button {
	margin-top:30px;
	width: auto;
}
.btn.orange {
	border: 4px solid #f47621;
	color: #ffffff;
	background-color: #f47621;
}
.btn.orange:hover {
    border: 4px solid #f47621;
    color: #f47621;
    background-color: #fff;
}

.checkout-section .hs-content .col {
	width:48%;
	max-width:280px;
}
.checkout-section .hs-content .col:only-child {
	width:100%;
	max-width:none;
	margin-left:0 !important;
}
.checkout-section .col + .col {
	margin-left:2.5%;
} .checkout-section .col + .col:nth-child(2n-1) {margin-left:0;}
.checkout-section br ~ .col {
	margin-top:25px;
}

.checkout-section .hs-content > .col-block:first-child {
	padding-top:0;
}

.checkout-form select,
.checkout-form option[selected] {
	font-family:'Opensans Bold', 'Arial Bold', sans-serif;
}

.checkout-form option,
.checkout-form select.font-shift {
	font-family:'Opensans', Arial, sans-serif;
}

.checkout-form ::-webkit-input-placeholder {
	/* WebKit browsers */
	opacity: 1;
	color:#0E1B29;
	font-family:'Opensans Bold', 'Arial Bold', sans-serif;
	text-transform: uppercase;
}
.checkout-form  :-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
  	opacity: 1;
	color:#0E1B29;
	font-family:'Opensans Bold', 'Arial Bold', sans-serif;
	text-transform: uppercase;
}
.checkout-form  ::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	opacity: 1;
	color:#0E1B29;
	font-family:'Opensans Bold', 'Arial Bold', sans-serif;
	text-transform: uppercase;
}
.checkout-form  :-ms-input-placeholder {
	/* Internet Explorer 10+ */
	opacity: 1;
	color:#0E1B29;
	font-family:'Opensans Bold', 'Arial Bold', sans-serif;
	text-transform: uppercase;
}

.checkout-content.steps .checkout-section .color-heading {
	padding:0;
	margin:25px auto;
}

.checkout-section .color-heading { font-size:0; }
.checkout-section .color-heading > * { font-size:16px; }

.color-heading .ch-label,
.color-heading .ch-title {
	padding:15px;
}

.finished:not(.open) .color-heading .ch-label,
.finished:not(.open) .color-heading .ch-title {
	cursor: pointer;
}

.color-heading .ch-title {
	position: relative;
	z-index: 1;
}

.color-heading .ch-label {
	background-color:#728840;
	position: absolute;
	height:100%;
	top:0;
	left:0;
	z-index: 1;
}
.color-heading .ch-title {
	padding-left:106px;
	padding-right:78px;
}

.hs-trigger {
	cursor: pointer;
}
.hs-content {
	display: none;
}
.hs-trigger.color-heading {
	margin-bottom:25px;
}

.style-x-box-label {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	
	cursor: pointer;
}
.style-x-box-label + .style-x-box-label {
	margin-left:15px;
}

/* style 'pseudo' radio/checkbox */
.style-x-box {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	height:34px;
	width:34px;
	background-color:#FFF;
	border:none;
	line-height: 1;
	z-index: 0;
}
.style-x-box ~ input[type="checkbox"],
.style-x-box ~ input[type="radio"] {
    display: inline-block;
    visibility: hidden;
    height:0;
    width:0;
}

.style-x-box:before {
    content:"X";
    font-size:16px;
    line-height: 1;
    font-family:'Opensans Bold', 'Arial Bold', sans-serif;
    
    position: absolute;
    top:50%;left:50%;
    -webkit-transform:translate(-50%, -50%);
    -moz-transform:translate(-50%, -50%);
    -o-transform:translate(-50%, -50%);
    -ms-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    margin-top:-1px;
    
    opacity: 0;
    
    transition:none;
}
.style-x-box.checked:before {
	opacity: 1;
	
	transition:all 0.15s linear 0s;
}

.edit-link {
	font-size:14px;
	font-family:'Opensans Bold','Arial Bold',sans-serif; 
	color:#728840;
}
a.edit-link {
	text-decoration: underline;
}

.checkout-content h6 {
	display: block;
	width: 100%;
	margin-bottom: 0;
}

h6 {
	margin-bottom: 32px;
	font-size: 18px;
}

h6 span {
	font-size: 12px;
	font-weight: normal;
	text-transform: lowercase;
	font-family: 'Opensans', Arial, sans-serif;
	color:#EA0009;
} 

.info-payment-name {
	display: block;
	font-size: inherit;
	font-weight: inherit;
	text-transform: inherit;
	font-family: inherit;
	color: inherit;
}

.info-payment-card-img {
	margin-right: 20px;
}

.info-payment {
	width: 100%;
}

h6 .edit-link {
	margin-left:13px;
}

.no-margin {
	margin:0 !important;
}
.no-margin-auto {
	margin:0 auto !important;
}
.no-padding {
	padding:0 !important;
}

.checkout-section .hs-content {
	padding:10px 0 35px;
}

.plus-minus {
	display: inline-block;
	width:16px;
	height:16px;
	
	position: absolute;
	top:50%;
	margin-top:-8px;
	right:30px;
}
.plus-minus:before,
.plus-minus:after {
	content:"";
	display: inline-block;
	background-color:#FFF;
	position: absolute;
	
	transition:transform 0.3s linear 0s;
}
.plus-minus:before {
	height:16px;
	width:4px;
	
	left:50%;
	margin-left:-2px;
	top:0;
}
.plus-minus:after {
	height:4px;
	width:16px;
	
	top:50%;
	margin-top:-2px;
	left:0;
}

.open .plus-minus:before,
.open.plus-minus:before {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.small-info {
	font-family:'Opensans Bold', 'Arial Bold', sans-serif;
	line-height: 1.35;
}

.small-info p + p {
	margin-top:10px;
}

.secure {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	padding-right:20px;
}
.secure:after {
	content:"";
	display: inline-block;
	vertical-align: middle;
	height:14px;
	width:12px;
	background:url(/images/icons/lock-icons.png) no-repeat 0 0;
	margin-top:-3px;
	
	position: absolute;
	top:50%;
	margin-top:-7px;
	right:0;
}
.color-heading .secure:after { background-position:0 -15px; }

.checkout-form h5:only-child {
	margin:0 auto;
}

.style-select {
	margin:15px auto 10px;
	position: relative;
	padding-right:65px;
/* 	max-width:360px; */
	width:100%;
}

.style-select .btn {
	width:65px;
	height:43px;
	
	position: absolute;
	top:0;
	right:0;
}
.cell.month {
  width: 80px;
}

.card-types {
  margin-top: 10px;
}

.card-types img {
  height: 32px;
}

.card-types img + img {
  margin-left: 1.8%;
}

/*
#place-order {
	margin-top:25px;
}
*/
.checkout-form .checkout-section:last-child .col-block:last-child {
	margin-top:25px;
}
.cell.spacer {
	width: 18px;
}

.cell.spacer-sm {
	width: 8px;
}

.apply-btn {
	width:80px;
	vertical-align: top;
}

.apply-btn .btn {
	margin-top: 28px;
}

a.btn.dark {
	border-color: #969696;
	color: #969696;
}

a.btn.dark.alt {
	min-width: 80px;
	padding: 6px 10px;
	transition: all 0.3s ease 0s;
}

a.btn.dark.alt:hover {
	border-color: #000;
	background-color: #000;
	color: #FFF;
}

.txt-btn {
	font-family: 'Opensans Bold', Arial, sans-serif;
	font-size: 12px;
	display: block;
	vertical-align: middle;
	text-decoration: underline !important;
	position: absolute;
	text-align: center;
	bottom: -10px;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease 0s;
}

.txt-btn.show {
	opacity: 1;
	visibility: visible;
}

.txt-btn.promo-delete {
	position: static;
	display: block;
	text-align: right;
	opacity: 1;
	visibility: visible;
	text-decoration: none !important;
	color: #728840;
}

.textarea:before {
	top:10%;
}

.textarea > textarea {
	outline: none;
	resize: none;
	overflow: auto;
	height: 150px;
	width: 100%;
	border: none;
	padding: 16px 12px;
	font-size: 16px;
	background: transparent;
}

#place-order {
	white-space: nowrap;
}

.cart .shipping-notice {
	font-size: 80%;
	padding: 1em 0;
}

.checkout-form #delivery h6 {
	margin-bottom: .6em;
}

.checkout-form .shipping-notice {
/* 	padding: 0 0 1.5em; */
	text-transform: none;
}

/* Credit Card */
#payment-card-num-box.valid {
  background-color: #CCFFCC;  
}

#payment-card-num-box.invalid {
  background-color: #FFCCCC;  
}

#promo-code-box.valid {
  background-color: #CCFFCC;  
}

#promo-code-box.invalid {
  background-color: #FFCCCC;  
}

.card-types.has-card img {
  opacity: .5;
}

.card-types.has-card img.sel {
  opacity: 1;
}

.checkout-content.steps .mix-n-match-list > li,
.checkout-content.order-success .mix-n-match-list > li {
	padding:7px;
	line-height: 1.35;
}

/* ---- Order Success/Confirmation Page ---- */

.checkout-content.order-success .container {
	text-align: left;
}

.checkout-content.order-success .main:only-child {
	display: inline-block;
}

.checkout-content.order-success h5 {
/* 	font-size:18px; */
	margin-bottom:15px;
}

.checkout-content.order-success h6 {
/* 	font-size:16px; */
	font-size:18px;
	margin-bottom:15px;
}

.order-success .checkout-section .col {
	width:48%;
	max-width:314px;
}
.order-success .checkout-section .col + .col {
	margin-left:2.5%;
}

.color-heading.secure:after {
	position: relative;
	top:auto;
	right:auto;
	margin-top:-3px;
	background:url(/images/icons/lock-icons.png) no-repeat 0 -15px;
}

.order-success .checkout-section h5:only-child,
.order-success .checkout-section h6:only-child {
	margin:0 auto;
}

.order-success .checkout-section .color-heading {
	display: block;
	font-size:16px;
	padding:15px 40px;
}

.order-success .mix-n-match-list > li {
	width:100%;
}
.order-success .mix-n-match-list > li {
	margin-left:0 !important;
	margin-right:0 !important;
	margin-top:6px !important;
}

#loading-box {
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.75);
	
	opacity: 0;
	visibility: hidden;
	z-index: 99999;
}
body.order-submitted {
	overflow: hidden;
}
.order-submitted #loading-box {
	opacity: 1;
	visibility: visible;
}

#loading-box > div {
	position: absolute;
	top:50%;
	left:50%;
	margin-top:-83px;
	margin-left:-73px;
	
	font-size:24px;
	font-weight: bold;
	line-height:32px;
	color:#FFF;
	text-shadow: 1px 1px 1px #222;
}

.loading-icon {
	position: relative;
	display: inline-block;
	width:130px;
	height:130px;
/* 	background:url(/images/icons/spinner.gif) no-repeat center center; */
	background-size:102% 102%;
}

#loading-box > div .loading-icon {
	margin-bottom:15px;
	display: block;
}

/* new loading icon */
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.lds-spinner {
  position: relative;
}
.lds-spinner div {
  left: 95px;
  top: 51px;
  position: absolute;
  -webkit-animation: lds-spinner linear 0.9s infinite;
  animation: lds-spinner linear 0.9s infinite;
/*   background: #BAFFE2; */
/*   background: #FFFF68; */
  background: #FFF;
  width: 10px;
  height: 26px;
  border-radius: 40%;
  box-shadow: 3px 3px 3px 0 #222;
  -webkit-transform-origin: 5px 49px;
  -ms-transform-origin: 5px 49px;
  transform-origin: 5px 49px;
}
.lds-spinner div:nth-child(1) {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation-delay: -0.825s;
  animation-delay: -0.825s;
}
.lds-spinner div:nth-child(2) {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation-delay: -0.75s;
  animation-delay: -0.75s;
}
.lds-spinner div:nth-child(3) {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-animation-delay: -0.675s;
  animation-delay: -0.675s;
}
.lds-spinner div:nth-child(4) {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(5) {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
  -webkit-animation-delay: -0.525s;
  animation-delay: -0.525s;
}
.lds-spinner div:nth-child(6) {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
  -webkit-animation-delay: -0.45s;
  animation-delay: -0.45s;
}
.lds-spinner div:nth-child(7) {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-delay: -0.375s;
  animation-delay: -0.375s;
}
.lds-spinner div:nth-child(8) {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(9) {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
  -webkit-animation-delay: -0.225s;
  animation-delay: -0.225s;
}
.lds-spinner div:nth-child(10) {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
}
.lds-spinner div:nth-child(11) {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
  -webkit-animation-delay: -0.075s;
  animation-delay: -0.075s;
}
.lds-spinner div:nth-child(12) {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.lds-spinner {
	width: 130px !important;
	height: 130px !important;
	-webkit-transform: translate(-65px, -65px) scale(0.65) translate(65px, 65px);
	-ms-transform: translate(-65px, -65px) scale(0.65) translate(65px, 65px);
	transform: translate(-65px, -65px) scale(0.65) translate(65px, 65px);
}

.print-icon {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	padding:8px 8px 14px;
	height:52px;
	width:49px;
	border-radius: 2px;
	background:url(/images/icons/print_icon.png) no-repeat center 5px #0E1B29;
	line-height: 1;
	text-align: center;
	
	overflow: hidden;

	cursor: pointer;
}
.print-icon:after {
	content:"Print";
	color:#FFF;
	text-align: center;
	display: block;
	width:100%;
	font-size:12px;
	font-style:normal;
	
	position: absolute;
	bottom:5px;
	left:0;
}

#shipping-zip {
	min-width: 100%;
	color: #171816;
}

#shipping-phone {
	min-width: 100%;
	padding: 25px 15px 21px;
	vertical-align: top;
	color: #171816;	
}
.sq-field-wrapper {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 16px;
}

.sq-field {
  margin-bottom: 16px;
  width: 100%;
}

.sq-field:first-child {
  margin-left: 0;
}

.sq-field:last-child {
  margin-right: 0;
}

.sq-field--in-wrapper {
  flex-grow: 1;
  margin: 0 8px;
}

.sq-label {
  margin-bottom: 8px;
  text-transform: uppercase;
}

.sq-input {
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  transition: border-color 0.25s ease;
  width: 100%;
}

.sq-input--focus {
  background-color: #fbfdff;
}

.sq-input--error {
  background-color: #fbfdff;
}

/*
.sq-button {
  color: #fff;
  padding: 16px;
  width: 100%;
}

.sq-button:active {
  color: #fff;
}

.sq-button {
  background: #4A90E2;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.sq-button:active {
  background: #4A90E2;
}

.sq-button:hover {
  cursor: pointer;
  background-color: #4281CB;
}
*/

.sq-button {
    border: 4px solid #f47621;
    color: #ffffff;
    background-color: #f47621;
    padding: 10px 16px 10px 12px;
}
.sq-button:hover {
    border: 4px solid #f47621;
    color: #f47621;
    background-color: #fff;
}


.sq-payment-form {
  max-width: 100%;
  padding: 20px 20px 5px;
  width: 380px;
}

.sq-label {
  color: #000000;
  font-size: 14px;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.sq-input {
  border-color: #E0E2E3;
  border-radius: 4px;
}

.sq-input--focus {
  border-color: #4A90E2;
}

.sq-input--error {
  border-color: #e02e2f;
}

.sq-wallet-divider {
  margin: 24px 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.sq-wallet-divider:after, .sq-wallet-divider::after, .sq-wallet-divider:before, .sq-wallet-divider::before {
  background: #bbb;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 9px;
}

.sq-wallet-divider:after, .sq-wallet-divider::after {
  right: 65%;
}

.sq-wallet-divider:before, .sq-wallet-divider::before {
  left: 65%;
}

.sq-wallet-divider__text {
  color: #bbb;
  padding: 10px;
  text-transform: uppercase;
}

/* Indicates how Google Pay button will appear */
.button-google-pay {
  width: 100%;
  min-height: 40px;
  padding: 11px 24px;
  margin-bottom: 18px;
  background-color: #000;
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%22103%22%20height%3D%2217%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M.148%202.976h3.766c.532%200%201.024.117%201.477.35.453.233.814.555%201.085.966.27.41.406.863.406%201.358%200%20.495-.124.924-.371%201.288s-.572.64-.973.826v.084c.504.177.912.471%201.225.882.313.41.469.891.469%201.442a2.6%202.6%200%200%201-.427%201.47c-.285.43-.667.763-1.148%201.001A3.5%203.5%200%200%201%204.082%2013H.148V2.976zm3.696%204.2c.448%200%20.81-.14%201.085-.42.275-.28.413-.602.413-.966s-.133-.684-.399-.959c-.266-.275-.614-.413-1.043-.413H1.716v2.758h2.128zm.238%204.368c.476%200%20.856-.15%201.141-.448.285-.299.427-.644.427-1.036%200-.401-.147-.749-.441-1.043-.294-.294-.688-.441-1.183-.441h-2.31v2.968h2.366zm5.379.903c-.453-.518-.679-1.239-.679-2.163V5.86h1.54v4.214c0%20.579.138%201.013.413%201.302.275.29.637.434%201.085.434.364%200%20.686-.096.966-.287.28-.191.495-.446.644-.763a2.37%202.37%200%200%200%20.224-1.022V5.86h1.54V13h-1.456v-.924h-.084c-.196.336-.5.611-.91.826-.41.215-.845.322-1.302.322-.868%200-1.528-.259-1.981-.777zm9.859.161L16.352%205.86h1.722l2.016%204.858h.056l1.96-4.858H23.8l-4.41%2010.164h-1.624l1.554-3.416zm8.266-6.748h1.666l1.442%205.11h.056l1.61-5.11h1.582l1.596%205.11h.056l1.442-5.11h1.638L36.392%2013h-1.624L33.13%207.876h-.042L31.464%2013h-1.596l-2.282-7.14zm12.379-1.337a1%201%200%200%201-.301-.735%201%201%200%200%201%20.301-.735%201%201%200%200%201%20.735-.301%201%201%200%200%201%20.735.301%201%201%200%200%201%20.301.735%201%201%200%200%201-.301.735%201%201%200%200%201-.735.301%201%201%200%200%201-.735-.301zM39.93%205.86h1.54V13h-1.54V5.86zm5.568%207.098a1.967%201.967%200%200%201-.686-.406c-.401-.401-.602-.947-.602-1.638V7.218h-1.246V5.86h1.246V3.844h1.54V5.86h1.736v1.358H45.75v3.36c0%20.383.075.653.224.812.14.187.383.28.728.28.159%200%20.299-.021.42-.063.121-.042.252-.11.392-.203v1.498c-.308.14-.681.21-1.12.21-.317%200-.616-.051-.896-.154zm3.678-9.982h1.54v2.73l-.07%201.092h.07c.205-.336.511-.614.917-.833.406-.22.842-.329%201.309-.329.868%200%201.53.254%201.988.763.457.509.686%201.202.686%202.079V13h-1.54V8.688c0-.541-.142-.947-.427-1.218-.285-.27-.656-.406-1.113-.406-.345%200-.656.098-.931.294a2.042%202.042%200%200%200-.651.777%202.297%202.297%200%200%200-.238%201.029V13h-1.54V2.976zm32.35-.341v4.083h2.518c.6%200%201.096-.202%201.488-.605.403-.402.605-.882.605-1.437%200-.544-.202-1.018-.605-1.422-.392-.413-.888-.62-1.488-.62h-2.518zm0%205.52v4.736h-1.504V1.198h3.99c1.013%200%201.873.337%202.582%201.012.72.675%201.08%201.497%201.08%202.466%200%20.991-.36%201.819-1.08%202.482-.697.665-1.559.996-2.583.996h-2.485v.001zm7.668%202.287c0%20.392.166.718.499.98.332.26.722.391%201.168.391.633%200%201.196-.234%201.692-.701.497-.469.744-1.019.744-1.65-.469-.37-1.123-.555-1.962-.555-.61%200-1.12.148-1.528.442-.409.294-.613.657-.613%201.093m1.946-5.815c1.112%200%201.989.297%202.633.89.642.594.964%201.408.964%202.442v4.932h-1.439v-1.11h-.065c-.622.914-1.45%201.372-2.486%201.372-.882%200-1.621-.262-2.215-.784-.594-.523-.891-1.176-.891-1.96%200-.828.313-1.486.94-1.976s1.463-.735%202.51-.735c.892%200%201.629.163%202.206.49v-.344c0-.522-.207-.966-.621-1.33a2.132%202.132%200%200%200-1.455-.547c-.84%200-1.504.353-1.995%201.062l-1.324-.834c.73-1.045%201.81-1.568%203.238-1.568m11.853.262l-5.02%2011.53H96.42l1.864-4.034-3.302-7.496h1.635l2.387%205.749h.032l2.322-5.75z%22%20fill%3D%22%23FFF%22%2F%3E%3Cpath%20d%3D%22M75.448%207.134c0-.473-.04-.93-.116-1.366h-6.344v2.588h3.634a3.11%203.11%200%200%201-1.344%202.042v1.68h2.169c1.27-1.17%202.001-2.9%202.001-4.944%22%20fill%3D%22%234285F4%22%2F%3E%3Cpath%20d%3D%22M68.988%2013.7c1.816%200%203.344-.595%204.459-1.621l-2.169-1.681c-.603.406-1.38.643-2.29.643-1.754%200-3.244-1.182-3.776-2.774h-2.234v1.731a6.728%206.728%200%200%200%206.01%203.703%22%20fill%3D%22%2334A853%22%2F%3E%3Cpath%20d%3D%22M65.212%208.267a4.034%204.034%200%200%201%200-2.572V3.964h-2.234a6.678%206.678%200%200%200-.717%203.017c0%201.085.26%202.11.717%203.017l2.234-1.731z%22%20fill%3D%22%23FABB05%22%2F%3E%3Cpath%20d%3D%22M68.988%202.921c.992%200%201.88.34%202.58%201.008v.001l1.92-1.918c-1.165-1.084-2.685-1.75-4.5-1.75a6.728%206.728%200%200%200-6.01%203.702l2.234%201.731c.532-1.592%202.022-2.774%203.776-2.774%22%20fill%3D%22%23E94235%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);
  background-origin: content-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.30), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  outline: 0;
  cursor: pointer;
  display: none;
}


.sq-apple-pay {
  -webkit-appearance: -apple-pay-button;
  border: none;
  height: 48px;
  margin-bottom: 12px;
  width: 100%;
  display: none;
}
.sq-masterpass {
  background-color: #000;
  background-image: url(https://masterpass.com/dyn/img/btn/global/mp_chk_btn_384x048px.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  border-radius: 5px;
  height: 42px;
  margin-bottom: 16px;
  width: 100%;
  display: none;
}


#error {
  width: 100%;
  margin-top: 16px;
  font-size: 14px;
  color: red;
  font-weight: 500;
  text-align: center;
  opacity: 0.8;
}


@media screen and (max-width:1000px) {
	
  	.checkout-content.order-success .product-rows .row-img {
  		margin:0 auto 15px;
  		display: block;
  		display: -webkit-flex;
  		display: flex;
	}
	.checkout-content.order-success .product-rows .row-info {
		margin-left:0;
		display: block;
		width:100%;
	}
	
}

@media screen and (max-width:770px) {
	
	.order-success .container {
		padding-left:2%;
		padding-right:2%;
	}
	
    .checkout-content {
		padding:40px 0;
    }
    
    .color-heading .ch-title {
	    padding-left:100px;
    }
    
    #payment .cell.month ~ .cell:last-child {
	    display: table-footer-group;
    }
    #payment .cell.month ~ .cell:last-child .form-field {
	    margin-top:26px;
    }
    
	.order-success .checkout-section .color-heading {
		padding:15px 30px;
	}

}

@media screen and (max-width:770px) and (min-width:670px) {
	.mix-n-match-list > li {
		width:49%;
	}
	.mix-n-match-list > li:nth-child(3n-1) {
		margin-left:0;
		margin-right:0;
	}
	.mix-n-match-list > li:nth-child(2n) {
		margin-left:2%;
	}
	.mix-n-match-list > li:nth-child(n+4) {
		margin-top:0;
	}
	.mix-n-match-list > li:nth-child(n+3) {
		margin-top:7px;
	}
}
	
@media screen and (max-width:670px) {
	
	.order-success .container {
		padding-left:2.5%;
		padding-right:2.5%;
	}
  	
  	.checkout-content .main,
  	.checkout-content .side,
  	.checkout-content.steps .main,
  	.checkout-content.steps .side,
  	.checkout-button {
    	display: block;
    	width:100%;
    	max-width:none;
    	margin-left:0 !important;
  	}
  	
  	.checkout-content .side,
  	.checkout-content.steps .side {
	  	margin-top:40px;
  	}
  	
    #payment .cell.month ~ .cell:last-child {
	    display: table-cell;
    }
    #payment .cell.month ~ .cell:last-child .form-field {
	    margin-top:0;
    }
	
  	.checkout-content.order-success .product-rows .row-img {
  		margin:0;
  		display: inline-block;
  		display: -webkit-inline-flex;
  		display: inline-flex;
	}
	.checkout-content.order-success .product-rows .row-info {
		margin-left:3.5%;
		display: inline-block;
		width:calc(96% - 102px);
	}
	
	.color-heading {
		margin:20px auto;
	}
	
	.order-success .checkout-section .color-heading {
		padding:15px 20px;
	}
	
	.order-success .mix-n-match-list > li {
		width:49%;
	}
	.order-success .mix-n-match-list > li {
		margin-top:0 !important;
	}
	
	.order-success .mix-n-match-list > li:nth-child(2n) {
		margin-left:2% !important;
	}
	
	.order-success .mix-n-match-list > li:nth-child(n+3) {
		margin-top:10px !important;
	}
}

@media screen and (max-width:480px) {
	
    #payment .cell.month ~ .cell:last-child {
	    display: table-footer-group;
    }
    #payment .cell.month ~ .cell:last-child .form-field {
	    margin-top:26px;
    }
    
	.mix-n-match-list > li {
		width:49%;
	}
	.mix-n-match-list > li:nth-child(3n-1) {
		margin-left:0;
		margin-right:0;
	}
	.mix-n-match-list > li:nth-child(2n) {
		margin-left:2%;
	}
	.mix-n-match-list > li:nth-child(n+4) {
		margin-top:0;
	}
	.mix-n-match-list > li:nth-child(n+3) {
		margin-top:7px;
	}
    
}

@media screen and (max-width:420px) {
	.product-rows > li {
		padding-top:45px;
	}
}

@media screen and (max-width:380px) {
	
	.mix-n-match-list li {
		display: block !important;
		width:100% !important;
		margin:10px auto 0 !important;
	}
	
	.style-x-box-label {
		font-size:10px;
	}
	.style-x-box-label + .style-x-box-label {
		margin-left:6px;
	}
	.style-x-box-label input {
		border:none !important;
		outline:none !important;
		padding:0 !important;
		-moz-appearance: none;
		-webkit-appearance: none;
		appearance: none;
	}
	
	.style-x-box-label input {
		border:none !important;
	}
	
	.main-nav li.cart-link:before {
		width:220px;
	}
	
}