/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

.hidden {
	display: none;
}

#ticketEntry {
	position:absolute;
	background-image: url("cashfrenzy/res/SD/cashfrenzy/Background.jpg");
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #3f48cc;
    top:0;
	left:0;
	right:0;
	bottom:0;
}

#ticketEntry #title img {
	margin-top: 3vh;
    max-height: 50vh;
    width: auto;
}
img.fullscreenImg {
    width: 100%;
    height: 100%;
}
#entryCode {
    background:url(cashfrenzy/res/orig_assets/Code_Window.png);
    background-size: 100% 100%!important;
    width: 70vw;
    height: 65px;
    margin-top:1vh;
    border: 0px;
    text-align: center;
    padding: 0px 20px;
    color: white;
    font-size: 7vw;
    text-transform:uppercase
}
.clickable_button {
    background: transparent;
    border:0;       
    padding: 10px;
    z-index:20;   
    width:50vw;
}
.clickable_button img{

    height: 100%;
    width: 100%;
}

.copy {
	color:white;
	font-size:22px;
	padding-top:20px;
}
#loader {
  background-color: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
}

#loader i{
  position: fixed;
  bottom: 50%;
  left: 0;
  right: 0;
  color: white;
    
}

#message
{
    background-image: url(cashfrenzy/res/SD/cashfrenzy/card_back.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0vw;
    right: 0vw;
    top: 0;
    bottom: 0;
    width: 80vw;
    height: 70vh;
    margin: auto;
    z-index: 25;
}

#message h3 {
    color: #009D48;
    font-size: 44px;
    font-family: "Arial", serif;
    margin: 5px;
    margin-top: 10vh;
}
#message p {
    color: #009D48;
    font-size: 20px;
    padding: 35px;
    line-height: 23px;
    font-family: "Arial", serif;
    font-weight: bold;
    margin-top: 2vh;
}

#accept {  
	width:40%;
	margin-top: 4vh;
}

textarea:focus, input:focus{
    outline: none;
}
*:focus {
    outline: none;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
.dontShowContainer {
    position: absolute;
    bottom: 15px;
    text-align: center;
    color: white;
    left: 0;
    right: 0;
    font-family: sans-serif;
    font-size: 12px;
}
#slideshowContainer {
	position:absolute;
	top:0;
    left:0;
    right:0;
    bottom:0;
}

button.nextButton {
    position: absolute;
    background-image: url(../../template/cashfrenzy/media/images/button.png);
    width: 131px;
    bottom: 32px;
    height: 55px;
    background-color: transparent;
    border: none;
    background-size: contain;
    color: white;
    outline: black;
    text-shadow: black 1px 0px;
    font-size: larger;
    margin: auto;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    background-repeat: no-repeat;
    right:0;
    left:0;
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
  animation-fill-mode:forwards;
}

#logo18{
    width: 19%;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}