.itemcard {
	display: block;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 30;
	transition: top 0.4s;
}
.itemcard.hide {
	top: 100vh;
}

.itemcard > .back-btn {
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 50px;
	z-index: 40;
}
.itemcard > .back-btn:after {
	content: "";
	position: absolute;
	top: 18px	;
	left: 28px;
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(-45deg);
}

.itemcard .swiper-container {
	width: 100vw;
    height: 100vw;
}

.itemcard .swiper-container .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #ccc;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	background-size: cover;
}

.itemcard .infos {
	position: absolute;
	top: 35px;
	padding: 30px;
	text-align: left;
	z-index: 40;
	color: #fff;
}

.itemcard .infos .item-name {
	font-size: 13pt;
	font-weight: bold;
}

.itemcard .infos .item-sn {
	font-size: 10.5pt;
	opacity: 0.7;
}

.itemcard .infos .item-price {
	font-size: 20pt;
    margin-top: 10px;
    color: #fff;
}

.itemcard .itemcard-footer {
	display: table;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 75px;
	padding: 10px 30px;
}

.itemcard .itemcard-footer .submit-btn {
	display: table-cell;
	width: 65%;
	height: 55px;
	line-height: 55px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	color: #fff;
	background-color: #3366ff;
	text-align: center;
	font-size: 12pt;
	font-weight: bold;
}	
.itemcard .itemcard-footer .submit-btn.unavaliable {
	background-color: #aaa;
}

.itemcard .itemcard-footer .cancel-btn {
	display: table-cell;
	width: 35%;
	height: 55px;
	line-height: 55px;
	color: #fff;
	background-color: #444;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	text-align: center;
	font-size: 12pt;
	font-weight: bold;
}

.itemcard .date-view {
	/*background-color:  #f4f4f4;*/
	background-color:  #d2f8d7;
	height: 70px;
	overflow: hidden;
}

.itemcard .date-view > .date-view-content {
	height: 90px;
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
}

.itemcard .date-table {
	display: table;
	margin: 0 auto;
}

.itemcard .date-table > .date-cell {
	display: table-cell;
	font-size: 10pt;
	width: 60px;
	height: 70px;
	/*background-color: orange;*/
	/*border:1px solid #ccc;*/
	padding-top: 15px;
	color: #666;
}
.itemcard .date-table > .date-cell > .date {
	width: 60px;
	font-size: 11pt;
	text-align: center;

}
.itemcard .date-table > .date-cell > .day {
	width: 60px;
	text-align: center;
}
.itemcard .date-table > .date-cell.booked {
	background-color: #ffd1d1;
}
.itemcard .date-table > .date-cell > .text {
	font-size: 11pt;
	text-align: center;
}
