@charset "utf-8";
/* CSS Document describing the various styles for CDN. */

body {
	font-family:Lucida Grande,Lucida Sans,Arial,sans-serif;
	text-align:center;
	background-color:#000000;
}

#frmMain {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.title{
    color: white;
    text-align: center;
    font-size: 6em;
    margin-top: .4em;
}
.coupon {
	border: dashed 1em red;
    flex: 1;
    position: relative;
    cursor: default;
    border-radius: 7%;
    margin-top: 4em;
    width: 100%;
    min-width: 300px;
    max-width: 600px;
    background-color: #ffffffaa;
    color: green;
}
.coupon:before {
	content: "";
	display: block;
	padding-top: 80%;
}
.coupon > div {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
    color: inherit;
    background-color: inherit;
    border-radius: inherit;
}
.coupon .cover {
	font-weight: bold;
    border-radius: inherit;
}
.coupon .content{
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}
.coupon .content div {
	width: 80%;
    max-height: 80%;
    top: 44%;
    font-size: 1.4em;
}
.coupon button {
	position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
}
.coupon .redeemed {
	text-decoration: line-through;
	color:#6EACD0;
}

.center {
	position: absolute;
    top: 42%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 80%;
    font-size: 4em;
    word-wrap: break-word;
}
.hidden {
	opacity:0;
	overflow:hidden !important;
}
.minimized {
    height:0 !important;
	overflow:hidden !important;
}
.italic {
	font-style:italic;
}
.bold {
	font-weight:bold;
}
.left {
	display:inline-div;
	float:left;
}
.right {
	display:inline-div;
	float:right;
}
.tabbed {
	margin-left:10px;
}

@media (min-width:601px){
    .coupon{
        
    }
}

/** Basic button syling **/
button {
    position: relative;
    background-color: red;
    border: none;
    border-radius: 0.5em;
    font-size: 2em;
    color: #FFFFFF;
    padding: 0.4em 0.6em;
    width: 6em;
    text-align: center;
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}
button:after {
  content: "";
  background: #f1f1f1;
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px !important;
  margin-top: -120%;
  opacity: 0;
  transition: all 0.8s
}
button:active:after {
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s
}

/** Snowy background - code provided by thecodeplayer at http://thecodeplayer.com/walkthrough/html5-canvas-snow-effect **/
canvas {
	position:absolute;
	top:0;
	left:0;
	display: block;
	z-index: -1;
}