.mt-inspiration {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  font-family: 'Gill Sans', sans-serif;
  font-size: 12px;
  color: #fff;
}
.mt-left {
  position: absolute;
  left: 0;
  width: 60vw;
  height: 100vh;
  background-image: linear-gradient(to right, #202020, #808080);
}
.mt-right {
  position: absolute;
  right: 0;
  width: 60vw;
  height: 100vh;
  overflow: hidden;
}
.mt-right .mt-strip-top {
  width: calc(50vw + 90px);
  transform: skewX(20deg) translateX(160px);
}
.mt-right .mt-strip-bottom {
  width: calc(50vw + 40px);
  transform: skewX(-15deg) translateX(90px);
}
.mt-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mt-card {
  width: 320px;
  height: 220px;
}
.mt-flip {
  width: inherit;
  height: inherit;
  transition: 0.7s;
  transform-style: preserve-3d;
  -webkit-animation: flip 2.5s ease;
          animation: flip 2.5s ease;
}
.mt-front,
.mt-back {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: 15px;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
  box-shadow: 0 1px 10px 1px rgba(0,0,0,0.3);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background-image: linear-gradient(to right, #111, #555);
  overflow: hidden;
}
.mt-front {
  transform: translateZ(0);
}
.mt-strip-bottom,
.mt-strip-top {
  position: absolute;
  right: 0;
  height: inherit;
  background-image: linear-gradient(to bottom, #ff9900, #ff9900);
  box-shadow: 0 0 10px 0px rgba(0,0,0,0.5);
}
.mt-strip-bottom {
  width: 170px;
  transform: skewX(-15deg) translateX(50px);
}
.mt-strip-top{
  width: 180px;
  transform: skewX(20deg) translateX(50px);
}
.mt-logo {
  position: absolute;
  top: 15px;
  right: 15px;
}
.mt-investor {
  position: relative;
  top: 15px;
  left: 15px;
  text-transform: uppercase;
}
.mt-chip {
  position: relative;
  top: 33px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 35px;
  border-radius: 5px;
  background-image: linear-gradient(to bottom left, #ffecc7, #d0b978);
  overflow: hidden;
}
.mt-chip .mt-chip-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #333;
}
.mt-chip .mt-chip-line:nth-child(1) {
  top: 13px;
}
.mt-chip .mt-chip-line:nth-child(2) {
  top: 20px;
}
.mt-chip .mt-chip-line:nth-child(3) {
  top: 28px;
}
.mt-chip .mt-chip-line:nth-child(4) {
  left: 25px;
  width: 1px;
  height: 50px;
}
.mt-chip .mt-chip-main {
  width: 20px;
  height: 25px;
  border: 1px solid #333;
  border-radius: 3px;
  background-image: linear-gradient(to bottom left, #efdbab, #e1cb94);
  z-index: 1;
}
.mt-wave {
  position: relative;
  top: 1px;
  left: 70px;
}
.mt-card-number {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px 15px 15px;
  font-size: 18px;
  font-family: 'cc font', monospace;
}
.mt-end{
  margin-left: 15px;
  text-transform: uppercase;
  font-family: 'cc font', monospace;
}
.mt-end .mt-end-text {
  font-size: 8px;
  color: rgba(255,255,255,0.8);
}
.mt-end .mt-end-date{
  font-size: 10px;
}
.mt-card-holder {
  margin: 20px 15px;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'cc font', monospace;
}
.mt-master {
  position: absolute;
  right: 8px;
  bottom: 1px;
  display: flex;
}
.mt-master .mt-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.mt-master .mt-master-red {
  background-color: #ff9900;
}
.mt-master .mt-master-yellow {
  margin-left: -10px;
  background-color: rgba(255,209,0,0.7);
}
.mt-card {
  perspective: 1000;
}
.mt-card:hover .mt-flip {
  transform: rotateY(180deg);
}
.mt-back{
  transform: rotateY(180deg) translateZ(0);
  background: #9e9e9e;
}
.mt-back .mt-strip-black {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 50px;
  background: #000;
}
.mt-back .mt-ccv {
  position: absolute;
  top: 110px;
  left: 0;
  right: 0;
  height: 36px;
  width: 90%;
  padding: 10px;
  margin: 0 auto;
  border-radius: 5px;
  text-align: right;
  letter-spacing: 1px;
  color: #000;
  background: #fff;
}
.mt-back .mt-ccv label {
  display: block;
  margin: -30px 0 15px;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
}
.mt-back .mt-terms {
  position: absolute;
  top: 130px;
  padding: 20px;
  font-size: 10px;
  text-align: justify;
}

@-webkit-keyframes mt-flip {
  0%, 100% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
}
@keyframes mt-flip {
  0%, 100% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
}