@charset "utf-8";
/* CSS Document */

/***********************reset css start***********************/

html {
	width:100%;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	overflow-x: hidden;
}
*, ::before, ::after {
	background-repeat: no-repeat;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
}
::before, ::after {
	color: inherit;
}
* {
	padding: 0;
	margin: 0;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
	display: block;
}
main{
	position: relative;
	margin-bottom: 0px;	
}
h1, h2, h3, .h1, .h2, .h3 {
	display: block;
	font-weight: normal;
	line-height: normal;
}
a {
	color: #d2151c;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all .15s;
	transition: all .15s;
}
a:hover {
	color: #c31f22;
	text-decoration: underline;
}
a:not([href]) {
	color: inherit;
}
i {
	font-size: inherit;
	font-weight: normal;
}
i[class*="icon-"]{
	font-style: normal;	
}
img {
	vertical-align: middle;
	border-style: none;
}
ol, ul {
	list-style: none;
}
b, strong {
	font-weight: bolder; /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}
input {
	border: none;
	outline: none;
}
 [type="button"], [type="reset"], input[type="image"], [type="submit"], [role="button"] {
 cursor: pointer;
}
 [disabled] {
 cursor: default;
}
/***********************reset css end***********************/
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
}
h2 {
	color: #333;
	margin-bottom: 10px;
}
.row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.hidding {
	display: none;
}

.mt-checkout-header {
	position: relative;
    width: 100%;
    background-color: #000;
	z-index: 100;
}
.mt-checkout-header .row {
    line-height: 50px;
}

.mt-checkout-main {
    min-height: calc(100vh - 140px);
}
#loading {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 1);
	z-index: 99;
}
@keyframes spin {
	from {
	  	transform: rotate(0deg);
	}
	to {
	  	transform: rotate(360deg);
	}
}
#loading::before {
	position: absolute;
	display: block;
	content: '';
	border: 10px solid #f3f3f3; /* Light grey */
	border-top: 10px solid #999;
	border-radius: 50%;
	width: 110px;
	height: 110px;
	top: calc(50% - 60px);
	left: calc(50% - 60px);
	animation: spin 1s linear infinite;
}
#global-error {
	padding: 15px 10px;
	font-size: 1.125rem;
}
.checkout-container {
    display: flex;
    width: 100%;
    min-height: 100%;
}
.checkout-form {
    width: 100%;
    flex-basis: 60%;
    min-height: calc(100vh - 140px);
}
.fastspring .checkout-form {
    padding: 0 40px 80px 40px;
}
.paddle .checkout-form {
    padding: 80px 40px 80px 40px;
}
.checkout-info {
    width: 100%;
    flex-basis: 40%;
	font-size: .875rem;
	color: #5d6161;
    padding: 80px 40px 60px 40px;
	border-left: 1px solid #e4e4e4;
	background-color: #f5f5f5;
}
.checkout-info .products {
	margin-bottom: 15px;
}
.checkout-info .item {
	display: flex;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #e4e4e4;
}
.checkout-info .icon {
	flex-basis: 68px;
} 
.checkout-info .icon>img {
	max-width: 100%;
}
.checkout-info .infos {
	flex-basis: 100%;
	padding: 0 10px 0 10px;
}
.checkout-info .name {
	color: #4e5151;
	font-weight: 700;
	margin-bottom: 10px;
}
.checkout-info .qty {
	flex-basis: 45px;
}
.checkout-info .product-quantity {
	width: 50px;
    height: 20px;
	color: #5d6161;
	padding: 0 5px;
    text-align: center;
    border: 1px solid #c4c4c4;
	border-radius: 4px;
}
.checkout-info .product-quantity:active,
.checkout-info .product-quantity:focus {
	color: #000;
	border-color: #0096ff;
	box-shadow: 0 0 5px #0096ff;
}
.checkout-info .price {
	flex-basis: 100px;
	font-weight: 700;
	text-align: right;
}
.checkout-info .price del {
	display: block;
	font-size: .75rem;
	color: #828787;
	margin-top: 5px;
}
.checkout-info .totals .total-item {
	display: flex;
	justify-content: space-between;
	align-items: start;
	padding: 10px 0;
}
.checkout-info .totals .total {
	font-size: 1.25rem;
	font-weight: 700;
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid #c4c4c4;
}
.checkout-info .text {
	text-align: left;
}
.checkout-info .total {
	color: #4e5151;
}
.checkout-info .total .price {
	font-size: 2rem;
	color: #06c668;
}
.checkout-info .total .price del {
	font-size: 1rem;
}

.mt-checkout-footer {
	position: relative;
    font-size: .75rem;
    background-color: #000;
	z-index: 100;
}
.footer-copyright-wrapper {
    position: relative;
    padding: 1rem 0;
    line-height: 1.125rem;
    border-top: 1px solid #313131;
    color: #888;
    text-align: center;
}

.footer-copyright-wrapper .footer-copyright-link {
    margin-bottom: .625rem;
}

@media screen and (max-width: 1023px) {
	.checkout-container {
		flex-direction: column-reverse;
		flex-wrap: wrap;
	}
	.checkout-form, .checkout-info {
		flex-basis: 100%;
	}
	.checkout-form {
		border: none;
	}
}