service.detailtable_wev8.css 1.68 KB
.wev-detailtable-page-content.page-content{
	max-height:80%;
	min-height:50%;
	top:auto;
	bottom:42px;
	background-color:#efefef;
	border-top: 10px solid #efefef;
	box-shadow: 0 -5px 7px 0 rgba(0, 0, 0, 0.2);
	z-index:2;
}
.wev-detailtable-page-footer.page-footer{
	display:block;
	box-sizing: border-box;
}
.wev-detailtable-page-footer .wev-btn-wrapper.wev-btn-block{
	border-spacing:0px;
	background-color: #fff;
}
.wev-detailtable-page-footer .wev-btn{
	height:40px;
	line-height:40px;
	padding:0px;
	box-sizing:border-box;
	border-radius:0px;
	background-clip: unset;
}

.wev-detailtable-page,
.wev-detailtable-mask,
.wev-detailtable-innermask{
	position: fixed; 
	left: 0; 
	bottom: 0;
	top: 0;
	right: 0;
	overflow: hidden;
}
.wev-detailtable-mask.in{
	animation: detailtable_bgfadein 250ms;
	animation-fill-mode: both;
	z-index: 2 !important;
}
.wev-detailtable-page.in,
.wev-detailtable-page.out{
	animation-timing-function: ease-in-out;
	animation-duration: 250ms;
	animation-delay: 1ms;
	z-index: 3 !important;
}
.wev-detailtable-page.animation.in {
	animation-name: detailtable_slidepartupin;
}
.wev-detailtable-page.out {
	animation-name: detailtable_slidepartupout;
}
.wev-detailtable-innermask.in{
	z-index: 2 !important;
	background-color: transparent;
}
.wev-detailtable-innermask.out, 
.wev-detailtable-mask.out{
	display:none;
}
@keyframes detailtable_slidepartupin {
	from { transform: translate3d(0,100%,0); }
	to {transform: translate3d(0, 0, 0);}
}
@keyframes detailtable_slidepartupout {
	from { transform:translate3d(0, 0, 0);}
	to {transform: translate3d(0, 100%, 0);}
}
@keyframes detailtable_bgfadein {
	from { background-color: transparent; }
	to {background-color: rgba(0, 0, 0, 0.6);}
}