.acceptWrapper {
	margin: 40px 0;

	display: flex;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
}

.contentBox-forWebCardFrame {
	/*min-height: inherit;*/
	display: flex;
	justify-content: center;
	align-items: stretch;
	align-content: stretch;
	position: relative;
}
.webCardFrame {
	transition: opacity 0.7s ease-in-out, min-height 0.7s ease;
	min-height: 0px;

	flex: 1 1 100%;
	align-self: stretch;
	max-width: 100%;

	flex: 0 1 calc(100% - 76px);
	max-width: calc(100% - 76px);

	overflow: hidden;
	background-color: transparent;
	opacity: 0;
}
.webCardFrame.show {
	opacity: 1;
}

@media all and (max-width: 1024px) {
	.webCardFrame {
		flex: 1 1 100%;
		max-width: 100%;
	}
}
