/*new style */
.tps_checkout_container {
	display: flex;
	flex-direction: column-reverse;
}

.tps_checkout {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tps_checkout_main {
	padding: 0 0 30px 0;
	background: #f7f7f7;
}

.tps_checkout_error {
	display: none;
}

.tps_checkout_errorActive {
	display: block !important;
	font-size: 18px;
	margin-bottom: 40px;
	color: red;
}

.tps_checkout_addressBox,
.tps_checkout_shippingBox,
.tps_checkout_paymentBox {
	width: 100%;
	background: #fff;
	padding: 20px;
	margin-bottom: 20px;
}

.tps_checkout_nextStep {
	display: block;
	width: 100%;
	cursor: pointer;
	padding: 15px 0;
	text-align: center;
	box-sizing: border-box;
	background: #000;
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	transition: .3s;
}

.tps_checkout_billingInput {
	padding-top: 20px;
	padding-bottom: 40px;
	padding-left: 15px;
}

.tps_checkout_nextStep:hover {
	background: #737373;
}

.tps_checkout_infoBoxActive {
	display: block !important;
}

.tps_checkout_infoBoxHidden {
	display: none;
}

.tps_checkout_shortInfo {
	justify-content: space-between;
	align-items: flex-start;
	display: flex;
	position: absolute;
	width: 100%;
	opacity: 0;
	z-index: -1;
	background: #fff;
}

.tps_checkout_shortInfoActive {
	display: flex;
	z-index: 10;
	opacity: 1;
}

.tps_checkout_shortInfoEdit {
	font-size: 14px;
	border-bottom: 1px solid;
	color: #0e0e0e;
	padding-bottom: 2px;
	transition: 0.3s;
}

.tps_checkout_shortInfoEdit:hover {
	border-bottom: 1px solid transparent;
}

.tps_checkout_shortInfoInner {
	width: 100%;
	font-size: 14px;
}

.tps_checkout_shortInfoContainer {
	display: flex;
	flex-direction: column;
	align-items: self-start;
	max-width: 90%;
}

/* inputs */
.tps_checkout_labelOnTop {
	font-size: 10px !important;
	top: 3px !important;
}


.tps_checkout_giftMessage {
	padding-bottom: 20px;
	margin: 0 auto 20px auto;
	font-size: 15px;
}

.tps_checkout_giftMessage .tps_shared_checkbox {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.tps_checkout_giftMessageBox_extra {
	padding-top: 10px;
	display: none;
}

.tps_checkout_giftMessageBox_extra div {
	font-size: 14px;
}

.tps_checkout_giftMessageBox_extra textarea {
	width: 100%;
	resize: none;
	font-family: tps_font;
	height: 60px;
	font-size: 15px;
	padding: 5px 10px;
	border: 1px solid #aaa;
	margin-top: 10px;
}

.tps_checkout_giftMessageBox_extra textarea:focus {
	border: 1px solid #0e0e0e;
}

.tps_checkout_selectedShippingDate {
	color: green;
}

.tps_checkout_content {
	position: relative;
}

.tps_checkout_infoBox {
	overflow: hidden;
	max-height: 100%;
	height: 100%;
	transition: max-height 0.3s ease;
}


.tps_checkout_inputLabel {
	position: absolute;
	pointer-events: none;
	left: 11px;
	top: 5px;
	transition: 0.2s ease all;
	font-size: 11px;
	color: gray;
	opacity: 0;
}

.tps_checkout_inputLabelShowed {
	opacity: 1;
}

.tps_checkout_addressBox,
.tps_checkout_shippingBox,
.tps_checkout_paymentBox {
	width: calc(100% + 40px);
	position: relative;
}

.tps_checkout_title {
	border-bottom: 1px solid #cdcdcd;
	font-size: 18px;
	white-space: nowrap;
	padding-bottom: 10px;
	text-transform: uppercase; /*capitalize;*/
	margin-bottom: 18px;
	font-weight: bold;
}


.tps_checkout_titleWithLogo {
	display: flex;
	width: 100%;
	margin-bottom: 20px;
	justify-content: space-between;
}

.tps_checkout_description {
	font-size: 13px;
	display: block;
	align-items: center;
	width: 100%;
	text-align: center;
	padding: 30px 0;
	padding-top: 15px;
}

.tps_checkout_titleWithLogo img {
	object-fit: contain;
	max-height: 23px;
}

.tps_checkout_titleWithLogo svg {
	height: 23px;
	width: 40px;
}



.tps_checkout_input {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	border: 1px solid #aaaaaa;
	box-sizing: border-box;
	color: #000;
	font-size: 16px;
	outline: none;
	height: 56px;
	padding: 5px 12px 5px;
	/*	padding-top: 7px;*/
	width: 100%;
	background-color: transparent;
}
.tps_checkout_input:focus,
.tps_checkout_input:active {
	border: 1px solid #000;
}

.tps_checkout_selectBox {
	position: relative;
}

.tps_checkout_selectBox select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border-radius: 0;
	border: 1px solid #aaaaaa;
	color: #000;
	font-size: 15px;
	height: 56px;
	padding: 5px 12px 5px;
	width: 100%;
	z-index: 10;
	position: absolute;
}

.tps_checkout_selectBox select:focus {
	border-color: #62564a;
}

.tps_checkout_selectBox:after {
	content: "\25BE";
	position: absolute;
	right: 5px;
	top: 16px;
	font-size: 18px;
	color: #676767;
}

.tps_checkout_input.tps_checkoutForm_controlerror,
.tps_checkout_selectBox select.tps_checkoutForm_controlerror {
	border: 1px solid red;
}

.tps_checkout_halfline {
	position: relative;
}

.tps_checkout_fullline {
	grid-column: 1 / 3;
	position: relative;
}

.tps_checkout_sign {
	position: absolute;
	top: 0px;
	right: 5px;
	width: 15px;
	height: 100%;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.tps_checkout_signError {
	background-image: url('/tps/pages/checkout/error.svg');
}

.tps_checkout_signOk {
	background-image: url('/tps/pages/checkout/ok.svg');
}

.tps_checkout_note {
	grid-column: 1 / 3;
	display: none;
	align-items: center;
	font-size: 13.5px;
	color: red;
}

.tps_checkout_note span {
	width: 24px;
	height: 24px;
	margin-right: 10px;
	display: inline-block;
	background-image: url('/tps/pages/checkout/note.svg');
}

.tps_checkout_shippingMessage {
	font-size: 13.5px;
	padding-bottom: 20px;
	color: red;
	padding-left: 15px;
	font-weight: 700;
}
.tps_checkoutCart_recalculateTax {
	text-decoration: underline;
	color: darkred;
}

.tps_checkoutCart_recalculateTax:hover {
	text-decoration: none;
}

@media (min-width: 992px) {
	.tps_checkout_title {
		font-weight: normal;
		border-bottom: 2px solid #282e2c;
		font-size: 18px;
		white-space: nowrap;
		padding-bottom: 20px;
		text-transform: uppercase;
		margin-bottom: 25px;
	}

	.tps_checkout_container {
		display: grid;
		grid-template-columns: 1.1fr 0.9fr;
		grid-gap: 30px;
	}

	.tps_checkout_addressBox,
	.tps_checkout_shippingBox,
	.tps_checkout_paymentBox {
		width: 100%;
	}

	.tps_checkout_main {
		padding: 30px 0;
	}
}

@media (min-width: 1200px) {
	.tps_checkout_container {
		grid-gap: 60px;
	}
}
