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

.checkout-content {
	padding:90px 0;
	background: url(../images/layout/bg-texture-dark.png) #f3f3f4;
	font-family: 'Montserrat-SemiBold', Helvetica, sans-serif;
	text-align: left;
	
	min-height:calc(100vh - 405px);
}
.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;
}

.main-content.checkout-content .col-right.sidebar .cta-banner {
	margin-left:0;
}

.main-content.checkout-content .col-right.sidebar .cta-banner a {
	margin-bottom: 10px;
}

.cart-container {
	border-spacing: 10px 0;
}

.cart-container .col-left {
	width: 75%;
}

.cart-container .color-heading {
	margin: 10px auto;
}

.login-required-note {
	font-style: italic;
	padding-top: 20px;
	font-size: 15px;
}

.login-required-note a {
	color: darkgreen;
}

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

.cart-rows {
	text-transform: uppercase;
	/* margin-top: 20px; */
}

.cart-rows strong {
	font-size:16px;
	line-height: 1;
	font-weight: normal;
}

.cart-rows .button-list {
	margin-top: 20px;
}

.color-heading {
	position: relative;
	background-color:#162543;
	color:#FFFFFF;
	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:#162543;
	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-title {
	/* padding:10px; */
	margin-bottom:8px;
	text-align: left;
}
.row-title .price {
	display: block;
}

.row-title small,
.product-rows .item-info {
	font-size: 80%;
	margin: 5px 0 0;
}

.product-rows .price {
	margin-top: 5px;
	font-weight: bold;
}

.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: 'Montserrat-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: #5eb438;;
	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:#4E789B;
	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%;
	margin-right:3.5%;
}

.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:'Montserrat-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: #5eb438;
	font-family: 'Montserrat-Bold', sans-serif;
}

.navy-texture {
	background:url(/images/layout/bg-testimon.png) 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: 'Montserrat-Regular', Arial, sans-serif;
	line-height:1.7;
	text-transform: none;
}
.small-text a {
	font-family:'Montserrat-Bold', sans-serif;
}

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

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

#promo-code-btn {
/* 	margin-top: 37px; */
	font-size: 13pt;
}

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

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

.checkout-content.steps .main {
	width:49%;
	max-width:501px;
}
.checkout-content.steps .sidebar {
	padding-top: 0px;
}

.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:'Montserrat-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: 40px;
	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: 'Montserrat-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;
}

.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:'Montserrat-Bold', sans-serif;
}

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

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

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

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

.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:#5eb438;
	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;
}

.checkout-section.open .hs-content {
	display: block;
}

.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:'Montserrat-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:'Montserrat-Bold',sans-serif; 
	color:#6d231d;
}
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: 'Montserrat-Regular', 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:'Montserrat-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;
}

.promo {
	width: 87%;
}

.apply-btn {
	vertical-align: top;
	padding: 9px 10px;
	display: block;
	background: #5eb438;
	margin-top: 28px;
	width: 80px;
}

.apply-btn:hover {
	color: #fff;
	background: #162543;
}

.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: 'Montserrat-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: #6d231d;
}

.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;
}

@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:900px) {
	.main-content .col-right.sidebar {
		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;
	}
	
	/*=== Checkout ===*/
	.cart-container {
		border-spacing: 0;
	}
	.cart-container .col-left,
	.cart-container .col-right {
		display: block;
		height: auto;
		width: 100%;
	}
	.cart-container .col-left {
		margin-bottom: 40px;
	}

}

@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: 28px;
    }
	
  	.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 .col-block .table:nth-child(3) .table .cell.month,
  #payment .col-block .table:nth-child(3) .table .cell.spacer-sm,
  #payment .col-block .table:nth-child(3) .table .cell {
		display: block;
		height: auto;
		width: 100%;
  }
	#payment .col-block .table:nth-child(3) .table .cell > div {
		margin-top: 10px;
	}
  #payment .cell.month {
    margin-top:26px !important;
  }
    
	.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;
	}
	
	.auto-all .cell {
		display: block;
		height: auto;
		width: 100%;
	}
	.auto-all .cell:first-child {
		margin-bottom: 15px;
	}
	
}