.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.indent {
    text-indent: 1%;
}

img {
    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
}

.center-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 50px;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}    

.completed {
    font-family: Copperplate,Copperplate Gothic Light,fantasy; 
    font-size: 24px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 700; 
    line-height: 26.4px;
}   

.heading-font {
    font-family: Brush Script MT,cursive; 
    font-size: 49px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 700; 
    line-height: 53.9px;
} 

.noHover{
    pointer-events: none;
}  
.right {
    float: right;
}    
.left {
    float: left;
}
.center {
    margin: auto;
    width: 50%;
    padding: 10px;
}
.clearfix {
    overflow: auto;
}
.center-vertical {
    padding-top: 50%;
    vertical-align: middle;
    text-align: center;
}

/**
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
 */
 .StripeElement {
    box-sizing: border-box;
  
    height: 40px;
  
    padding: 10px 12px;
  
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;
  
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
  }
  
  .StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
  }
  
  .StripeElement--invalid {
    border-color: #fa755a;
  }
  
  .StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
  }

  /** drag drop region */
  .drop-region {
      background-color: #fff;
      border-radius: 20px;
      box-shadow: 0 0 35px rgba(0,0,0,0.05);
      width: 400px;
      padding: 60px 40px;
      text-align: center;
      cursor: pointer;
      transition: .3s;
  }
  .drop-region:hover {
      box-shadow: 0 0 45px rgba(0,0,0,0.1);
  }
  .image-preview {
      margin-top: 20px;
  }
  .image-preview .image-view {
      display: inline-block;
      position: relative;
      margin-right: 13px;
      margin-bottom: 13px;
  }
  .image-preview .image-view img {
      max-width: 100px;
      max-height: 100px;
  }
  .image-preview overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
      z-index: 2;
      background: rgba(255,255,255,0.5);
  }


  /** from: https://stackoverflow.com/questions/16586104/how-show-button-hovering-above-an-image-or-pressing-over-it */

div.show-image {
  position: relative;
  float:left;
  margin:5px;
}

div.show-image:hover input {
  display: block;
}

div.show-image input {
  position:absolute;
  top:0;
  left:0;
  display:none;
}