.mock {
  width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.cover {
	display: inline-block;
	height: calc(896px / 1.2);
	width: calc(414px / 1.2);
	margin: 15px;
  border-radius: 25px;
}

.card {
	border-radius: 25px;
	transform-style: preserve-3d;
  -webkit-tap-highlight-color: rgba(#000,0);
}

.card img {
	border-radius: 25px;
  box-shadow: 0 2px 8px rgba(14,21,47,0.25);
}

.card-container {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 25px;
  box-shadow: 1rem 1rem 1rem var(--shadowDark), -1rem -1rem 1rem var(--shadowLight);
  transition: all 0.1s ease-out;
}

.card-container:hover, .card-container:focus {
  outline: none;
  box-shadow: 1.5rem 1.5rem 1.5rem var(--shadowDark), -1.5rem -1.5rem 1.5rem var(--shadowLight);
}

.card-container.over .card-shadow {
	box-shadow: 0 45px 100px rgba(14,21,47,0.4), 0 16px 40px rgba(14,21,47,0.4);
}

.card-layers {
  position: relative;
  /* width: 100%;
  height: 100%; */
	width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
	overflow: hidden;
  transform-style: preserve-3d;
}

.card-rendered-layer {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0%; 
	left: 0%;
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
	background-size: cover;
	transition: all 0.1s ease-out;
	overflow: hidden;
	border-radius: 25px;
}

/* .card-shadow {
	position: absolute;
	top: 5%; 
	left: 5%;
	width: 90%;
	height: 90%;
	transition: all 0.2s ease-out;
	box-shadow: 0 8px 30px rgba(14,21,47,0.6);
} */

.card-shine {
	position: absolute;
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0;
	border-radius: 25px;
	background: linear-gradient(135deg, rgba(255,255,255,.15) 0%,rgba(255,255,255,0) 70%);
}

@media only screen and (max-width: 450px) {
  .cover {
		height: calc(896px / 1.7);
		width: calc(414px / 1.7);
	}
}