.btn-cashdesk-continue {
	background-color: var(--color-02-hex);
	background-image: url(/templates/b2c/images/arrow-button-right.png);
	background-position: calc(100% - 30px) center;
	background-repeat: no-repeat;
	padding: 10px 80px 10px 50px;
	color: #ffffff;
	font-size: 17px;
	text-transform: uppercase;
	font-family: Roboto, sans-serif;
	font-weight: 700
}

.btn-cashdesk-continue .btn-content {
	color: #ffffff;
}

.btn-cashdesk-change-selectetion {
	background-color: #474747;
	margin: 10px;
	padding-left: 20px;
	padding-right: 20px;
	opacity: 0.3;
}

.btn-chashdesk-select-not-selected {
	background-color: #474747;
	margin: 10px;
	padding-left: 20px;
	padding-right: 20px;
	color: #ffffff;
}

.btn-chashdesk-select-not-selected .btn-content {
	color: #ffffff;
}

.btn-chashdesk-select-selected {
	background-color: #a1a1a1;
	margin: 10px;
	padding-left: 20px;
	padding-right: 20px;
	color: #ffffff;
}

.btn-chashdesk-select-selected .btn-content {
	color: #ffffff;
}


.btn-cashdesk-change-selectetion .btn-content {
	color: #ffffff
}

.change-selection-area {
	text-align: right;
	width: 100%;
}


#cash_desk_main_layout {
	display: grid;
	grid-template: "overview process-area";
	grid-template-columns: 0.7fr 2fr
}

#cash_desk_process_area {
	grid-area: process-area;
	padding-right: 20px;
	position: relative;
}

#cash_desk_process_area a {
	color: #000000;
	text-decoration: underline dotted 1px;
}

#cash_desk_overview_box {
	position: sticky;
	top: 0px;
	padding: 20px;
	margin: 20px;
	border: 1px solid #EAEAEA;
	box-shadow: 17px 10px 17px -23px rgba(0,0,0,0.36);
}

#cash_desk_overview {
	grid-area: overview;
}

#cash_desk_overview .item .quantity {
	position: absolute;
	display: inline-block;
	top: -5px;
	left: -5px;
	width: 22px;
	height: 22px;
	line-height: 22px;
	border-radius: 50%;
	text-align: center;
	font-size: 13px;
	color: #fff;
	background-color: #8bb813;
}

#cash_desk_overview .item .image {
	grid-area: image;
}

#cash_desk_overview .item .title {
	grid-area: title;
	font-weight: bolder;
	padding: 5px;
}

#cash_desk_overview .item .price {
	grid-area: price;
	color: #cccccc;
	font-size: 0.8rem;
	padding: 5px;
}


#cash_desk_overview .item {
	position: relative;
	display: grid;
	grid-template:
			"image title"
			"image price";
	grid-template-columns: 60px 1fr;
	border-bottom: 1px solid #dcdcdc;
	padding: 10px;
	margin-bottom: 10px;
}

#cash_desk_overview .total {
	font-size:16px;
	line-height:34px;
}
#cash_desk_overview .total .amount {
	font-size:22px; font-weight:bold; color:var(--color-03-hex);
}


@media screen and (width <= 1200px) {
	#cash_desk_main_layout {
		display: grid;
		grid-template:
				"process-area"
				"overview"
		;
		grid-template-columns: 1fr;
	}

	#cash_desk_process_area {
		padding-left: 10px;
		padding-right: 10px;
	}

	#cash_desk_overview_box {
		padding: 20px;
		margin: 0px;
		margin-bottom: 50px;
	}

	#cash_desk_overview_box .items {
		display: none;
	}

}



.method .method-radio-btn,
.method-selected .method-radio-btn
{
	grid-area: radio-btn;
}

.method .method-icon,
.method-selected .method-icon,
.method-has-been-selected .method-icon
{
	grid-area: icon;
}

.method .method-title .info,
.method-selected .method-title .info,
.method-has-been-selected .method-title .info
{
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	margin: 0 10px;
	border: 1px #cfcfcf solid;
	border-radius: 50%;
	color: #aaa;
	font-size: 13px;
	cursor: help;
}


.method .method-title,
.method-selected .method-title,
.method-has-been-selected .method-title
{
	grid-area: title;
}

.method .price,
.method-selected .price,
.method-has-been-selected .price
{
	grid-area: price;
}

.method .price
{
	color: #999999;
}

.method-selected .price,
.method-has-been-selected .price
{
	color: #E61717;
	font-weight: bolder;
}

.method,
.method-selected {
	background-color: #F6F6F6;
	cursor: pointer;
	display: grid;
	grid-template: "radio-btn icon title price";
	grid-template-columns: 35px 80px 1fr 90px;
	align-items: center;
	padding: 10px;
	margin: 0px;
	gap: 5px;
	border-bottom: 1px solid #EAEAEA;
}

.method-has-been-selected {
	display: grid;
	grid-template: "icon title price";
	grid-template-columns: 80px 1fr 90px ;
	align-items: center;
	padding: 10px;
	margin: 0px;
	gap: 5px;
}


.method-selected {
	background-color: #EAEAEA;
}

@media screen and (width <= 1000px) {
	.method,
	.method-selected {
		grid-template:
				"radio-btn icon title"
				". . price";
		grid-template-columns: 20px 70px 1fr;
	}
}


.method-selected {
	background-color: #dcdbdb;
}

.option, .option-selected {
	display: grid;
	grid-template-columns: 20px 40px 1fr;align-items: center;
	padding: 5px;
	margin: 5px;
	gap: 5px;
}

.option-selected {
	background-color: #969696;
}


.step-title {
	display: block;
	font-weight: bolder;
	font-size: 1.3rem;
	background-color: #ffffff;
	padding: 20px;
	border: 1px solid #EAEAEA;
}


.step-block {
	background-color: #ffffff;
	border: none;
	padding: 0px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.step-form {
	background-color: #efefef;
	border: 1px solid #EAEAEA;
	padding: 20px;
}

.selected-contact {
	background-color: #fefefe;
	border: 1px solid #EAEAEA;
	align-items: center;
	justify-content: center;
	padding: 20px;
	display: grid;
	grid-template:  "title info change-btn";
	grid-template-columns: 150px 1fr auto;
	gap: 10px;
	margin-bottom: 25px;
}

@media screen and (width <= 1000px) {

	.selected-contact {
		grid-template:  "title"
						"info"
						"change-btn";
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 25px;
	}

}


.selected-contact .title {
	grid-area: title;
	font-weight: bolder;
}
.selected-contact .info {
	grid-area: info;
	overflow: hidden;
}
.selected-contact .change-btn {
	grid-area: change-btn;
	text-align: right;
}





.continue-button-area {
	padding: 5px;
	text-align: right;
}

.price-standard {
	text-decoration: line-through;
	font-size: 0.6rem;
}

.price-final {
}

.method-icon {
	padding: 5px;
}

.method-title {
	padding: 5px;
}

.method-title>div{
	font-size: 0.8rem;
}

.addresses {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-gap: 10px;
	margin-bottom: 20px;
}

.address {
	padding: 10px;
	background-color: #ffffff;
	border: 1px solid #dedede;
}

.address-selected {
	padding: 10px;
	background-color: #bebebe;
	border: 1px solid #dedede;
}

.address-field {
}


@media screen and (width <= 900px) {
	.address-field {
		grid-template-columns: 1fr;
	}
}



/*
#cash_desk_customer .form-field {
	display: grid;
	justify-content: center;
	grid-template-columns: 150px 1fr;
	align-items: center;
	gap: 20px;
	margin: 50px;
	margin-top: 20px;
	margin-bottom: 20px;
}

/*

#cash_desk_customer .form-field>label {
	width: 150px;
}


#cash_desk_customer .form-field>div {
	width: 350px;
}

@media screen and (width <= 700px) {
	#cash_desk_customer .form-field {
		display: grid;
		grid-template-columns: 1fr;
		align-items: center;
		margin-left: 2%;
		margin-right: 2%;
		margin-top: 20px;
		margin-bottom: 20px;
	}

	#cash_desk_customer .form-field>label {
		width: 100%;
	}

	#cash_desk_customer .form-field>div {
		width: 100%;
	}

}
 */



.phone-field {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 0px;
	align-items: center;
}

.company-or-person-switch {
	margin: 20px;
	text-align: center;
}

.different-address-switch {
	padding-top: 10px;
	padding-bottom: 10px;
}

.disabled-delivery-address {
	opacity: 0.5;
}

#select_personal_takeover_point_dialog {
	width: 100%;
	height: 100vh;
}

#personal_takeover_filter {
	grid-area: filter;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 100px 1fr;
	overflow: hidden;
}



#personal_takeover_map {
	grid-template: "map";
}


#personal_takeover_filter .search-dialog {
	display: grid;
	grid-template-columns: 1fr 60px;
	grid-template-rows: 40px;
	margin-top: 5px;
}

#personal_takeover_filter .search-dialog>button {
	box-sizing: border-box;
	border: 1px solid #c9c9c9;
	border-left: none;
	height: 40px;
	background-color: #ffffff;
	font-size: 30px;
	font-weight: bolder;
}

#personal_takeover_filter .search-dialog input {
	box-sizing: border-box;
	width: 100%;
	height: 40px;
	border: 1px solid #c9c9c9;
	border-right: none;
}

#personal_takeover_filter>div {
	padding: 10px;
}

#personal_takeover_filter .methods-title {
	border: 1px solid #c9c9c9;
	border-bottom: none;
	padding: 10px;
	font-weight: bolder;
}

#personal_takeover_filter .methods {
	border: 1px solid #c9c9c9;
}

#personal_takeover_buttons {
	grid-area: buttons;
	overflow: hidden;
}


#select_personal_takeover_point_dialog_body {
	display: grid;
	grid-template: "filter buttons map";
	grid-template-columns: 1fr 0px 2fr;
	grid-template-rows: 1fr;
	height: calc(100vh - 150px);
}

@media screen and (width <= 1000px) {
	#select_personal_takeover_point_dialog_body:not(.filter-visible) {
		grid-template: "filter buttons map";
		grid-template-columns: 0px 40px 1fr;
	}
	#select_personal_takeover_point_dialog_body.filter-visible {
		grid-template: "filter buttons map";
		grid-template-columns: 1fr 40px 0px;
	}
}

#personal_takeover_buttons>button {
	height: 100%;
	background-color: #eeeeee;
	border: 1px solid #c9c9c9;
	font-weight: bolder;
	font-size: 35px;
}


#personal_takeover_buttons>button:not(.opened):after {
	content: '›';
}

#personal_takeover_buttons>button.opened:after {
	content: '‹';
}

#select_personal_takeover_point_search_result {
	width: 100%;
}

.whisperer-items {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	background-color: #ffffff;
	overflow: auto;
	z-index: 999999;
	border: 1px solid #a1a1a1;
}

.whisperer-item {

}

.whisperer-item-selected {
	background-color: #b2b2b2
}

#personal_takeover_filter .method .checkbox {
	grid-area: checkbox;
}

#personal_takeover_filter .method .icon {
	grid-area: icon;
}

#personal_takeover_filter .method .icon img {
	width: 100%;
	height: auto;
}

#personal_takeover_filter .method .title {
	grid-area: title;
}

#personal_takeover_filter .method .price {
	grid-area: price;
}


#personal_takeover_filter .method {
	display: grid;
	grid-template: "checkbox icon title price";
	grid-template-columns: 20px 50px 1fr 100px;
	align-items: center;
	gap: 10px;
}

@media screen and (width <= 1200px) {
	#personal_takeover_filter .method {
		display: grid;
		grid-template:
				"checkbox icon title"
				"checkbox icon price";
		grid-template-columns: 20px 50px 1fr;
		align-items: center;
		gap: 10px;
	}
}

.place_search_result_item .image {
	grid-area: image;
}

.place_search_result_item .image>img {
	width: 100%;
	height: auto;
}

.place_search_result_item .address {
	grid-area: address;
	white-space: nowrap;
	overflow: hidden;
	background: transparent;
	border: none;
}

.place_search_result_item .price {
	grid-area: price;
	color: #6c6c6c;
	padding: 10px;
}

.place_search_result_item {
	display: grid;
	grid-template:
				"image address"
				"price address";
	grid-template-columns: 100px 1fr;
	align-items: center;
	gap: 5px;
	margin: 5px;
}


.pto-header {
	align-items: center;
	margin: 5px;
	display: grid;
	grid-template:
			"image title price"
			"image info info";
	grid-template-columns: 100px 1fr 80px;
	min-width: 300px;
	max-width: 90%;
}

.pto-header .image {
	grid-area: image;
}

.pto-header .title {
	grid-area: title;
	font-size: 1.2rem;
	font-weight: bolder;
}

.pto-header .info {
	grid-area: info;
	padding: 5px;
	padding-left: 10px;
}

.pto-header .price {
	grid-area: price;
	font-size: 1.2rem;
}

.pto-body {
	display: grid;
	justify-content: left;
	gap: 10px;
	grid-template-columns: 1fr;
	margin: 10px;
}


.pto-openong-hours {
	font-size: 0.9rem;
}

.pto-images {
	display: grid;
	grid-template-columns: repeat(auto-fill, 100px);
	gap: 10px;
}

.pto-images>div {
	text-align: center;
}

.pto-images>div img {
	width: 100px;
	height: auto;
}

.method-description {
	max-width: 500px;
	margin: 30px;
}

.agree-flag {
	display: grid;
	justify-content: left;
	align-items: center;
	grid-template-columns: auto 1fr;
	gap: 5px;
	margin: 20px;
}

.agree-flag-error {
	color: red;
	margin: 5px;
	padding-left: 30px;
}


.checkout-success-steps {background-color:#4c4c4c; color:#999; font-size:18px; font-family:Roboto, sans-serif; font-weight:700}
.checkout-success-steps .content {display:-webkit-flex; display:-ms-flexbox; display:flex; margin:0 auto; padding:35px 0; width:1280px}
.checkout-success-steps .content > div {flex:0 0 25%}
.checkout-success-steps .check {display:table-cell; color:#fff; width:50px; height:50px; line-height:50px; text-align:center; text-transform:uppercase; border:1px #999 dashed; border-radius:50%}
.checkout-success-steps .title {display:table-cell; vertical-align:middle; padding:0 20px}
.checkout-success-steps .phone {color:#fff; margin-top:5px}
.checkout-success-steps .phone span {display:inline-block; vertical-align:middle; margin-right:10px; width:16px; height:16px; background-image:url(/templates/b2c/images/phone.png)}
.checkout-success-steps .text {font-size:15px; margin:5px 0 0 27px; font-family:Roboto, sans-serif; line-height:20px}
.checkout-success {border-bottom:1px #bebebe dotted; padding:80px 5% 110px 5%; text-align:center}
.checkout-success .title {font-family:Roboto, sans-serif; font-weight:700; font-size:32px; text-transform:uppercase}

.checkout-success .info {margin-top:60px; padding:0 110px; font-size:15px; color:#aaa}
.checkout-success .payment {display:grid; justify-content:center; margin-top:40px;align-items: center;grid-template-columns: auto auto;}
.checkout-success .payment .qr {}

.checkout-success .payment .data {
	text-align: left;
	line-height: 26px;
	padding: 50px 0 0 30px;
	font-size: 14px;
	display: grid;
	grid-template-columns: auto auto;
	gap: 10px
}

.checkout-success .payment .data div.title {
	font-weight: bolder;
	grid-column: span 2;
	font-size: 16px;
	color: #000000;
	text-wrap: nowrap;
}

.checkout-success .payment .data div.label {
	color: #aaa;
	text-wrap: nowrap;
}

.checkout-success .payment .data span {
	color: #000;
	font-weight: 700;
	text-wrap: nowrap;
}
.checkout-success a.button {color:#fff; background-color:var(--color-01-hex);  text-decoration:none; text-transform:uppercase; padding:20px 35px}
.checkout-success a {color:inherit}
.checkout-success .fail {color:#ed163c}
.checkout-success .success {color:#69ac24}
.checkout-success .help {margin-top:60px; font-size:18px; color:#69ac24;border: 1px solid red}
.checkout-success .help strong {font-size:20px}
.checkout-success .help a {color:#69ac24;text-wrap: nowrap}

.checkout-success .try-again-area {
	margin-top: 50px;margin-bottom: 50px;
}

.checkout-success .try-again {
	background-color: #86d718;
	color: #000000;
	font-size: 25px;
	padding: 20px;
	font-weight: bolder;
	text-decoration: none;
	border-radius: 20px;
	margin-top: 50px;
	margin-bottom: 50px;
}

.qr-payment-container {
	text-align: left;
	width: 100%;
	padding-left: 25%;
	padding-right: 25%;
}

.checkout-success .number-area {

	margin: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: bolder;
	font-size: 1.3rem;
	justify-content: center;
}

.checkout-success .number {
	background-color: #d9d9d9;
	border-radius: 10px;
	padding: 10px 40px;
}


@media only screen and ( width <= 680px) {
	.checkout-success .payment {
		grid-template-columns: 1fr;
	}
	.qr-payment-container {
		padding-left: 5%;
		padding-right: 5%;
	}
}
