/*
 * Globals
 */


html,
body {
  height: 100%;
  background-color: #ffffff;
}
body {
    color: #464646;
    text-align: center;
    font-family: Arial, sans-serif;
}
a,
a:focus,
a:hover {
  color: #fff;
}
ul {
    text-align: left;
    list-style-type: disc;
}

ul li{
    padding-bottom: 6px;
}
figure {
    position: relative;
}
figure {
       width: 220px;
    height: 78px;
    margin: 0;
    border-radius: 6px;
    padding: 0;
    /* background: #fff; */
    overflow: hidden;
}

.store-icon{
 width:216px;   
}

/* Custom default button */
.btn-default,
.btn-default:hover,
.btn-default:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: 1px solid #fff;
}


/*
 * Base structure
 */

.storeLinkDiv{
    position: relative;
    width: 220px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    padding: 0;
}
figure:hover img {
	opacity: 0.9;
}

figure:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}

figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}



/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
  display: table;
  width: 100%;
  height: 100%; /* For at least Firefox */
  min-height: 100%;
  -webkit-box-shadow: inset 9px -27px 100px 10px  rgba(0,0,0,.3);
          box-shadow: inset 9px -27px 100px 10px  rgba(0,0,0,.3);
}

.cover-container {
  margin-right: auto;
  margin-left: auto;
}

.qr-image{
    width: 200px;
    margin-left: auto;
    margin-right: auto;
	padding: 15px;
}
.app-icon{
    vertical-align: bottom;
    padding-bottom: 27px;
    width: 150px;
}
.inner{
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

/*
 * Affix and center
 */
@media (max-width: 767px) {
    .qr-image,.app-icon{
        display: none;
    }
}
@media (min-width: 768px) {
  /* Start the vertical centering */
  .site-wrapper-inner {
    vertical-align: middle;
  }
  /* Handle the widths */
 
  .cover-container {
    width: 100%; /* Must be percentage or pixels for horizontal alignment */
  }
}