body {
  /* Location of the image */
  background-image: none;
  
  /* Image is centered vertically and horizontally at all times */
  /* background-position: center center; */
  
  /* Image doesn't repeat */
  /* background-repeat: no-repeat; */
  
  /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
  /* background-attachment: fixed; */
  
  /* This is what makes the background image rescale based on its container's size */
  /* background-size: cover;
   */
  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color:#1c41d0 !important;
  
  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}
html,body { height:100%; 
color:black;}
.download:hover {
	border-color:#07198a;
	background-color: #07198a;
    -webkit-transition: background-color 300ms linear;
    -ms-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
}

button {
    background-color: #1b4fed;
    color: #00ffff !important;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    font-weight: 900;
    margin: 4px 2px;
    cursor: pointer;
    min-width: 210px;
    letter-spacing: 2px;
    border-radius: 10px;
    border-color: #1b4fed;
    border-width: 5px;
}
.presave{
    width:35%;
    padding:10px;
    font-size:18px;
    color:#00ffff;

}
#login{
    margin-top: 100px;
}
#loggedin{
    margin-top: 100px;
}
.titleimg {
    margin-left: 187px !important;
}
.popuptext {
    visibility: hidden;
    width: 160px;
    background-color: #1b4fed;
    color: #00ffff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
  }
  .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
  }
  
  /* Add animation (fade in the popup) */
  @-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
  }
/*Cookie Consent Begin*/
#cookieConsent {
    background-color: rgba(20,20,20,0.8);
    min-height: 26px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: "Trebuchet MS",Helvetica,sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}
#cookieConsent a {
    color: #4B8EE7;
    text-decoration: none;
}
#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}
#closeCookieConsent:hover {
    color: #FFF;
}
#cookieConsent a.cookieConsentOK {
    background-color: #1b4fed;
    color: #00ffff;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 60px 0 10px;
}
#cookieConsent a.cookieConsentOK:hover {
    background-color: #E0C91F;
}
@media (max-width: 540px) and (min-width: 400px){
    body {
        /* Location of the image */
        /* background-image: url("/img/mbbackground.jpg"); */
        background-image: none !important;
        background-color:#1c41d0 !important;
      }
    .titleimg {
        margin-left: -19px !important;
        max-width: 280px !important;
    }
    .presave{
        width:35%;
        padding:10px;
        font-size:18px;
        color:#00ffff;
    
    }
    #login{
        position:fixed;
        bottom: 20%;
        margin-left:0px;
    }
    #loggedin{
        position:fixed;
        bottom: 15%;
    }
}
@media (max-width: 399px){
    body {
        /* Location of the image */
        /* background-image: url("/img/mbbackground.jpg"); */
        background-image: none !important;
        background-color:#1c41d0 !important;
      }
    .titleimg {
        margin-left: -19px !important;
        max-width: 280px !important;
    }
    .presave{
        width:35%;
        padding:10px;
        font-size:18px;
        color:#00ffff;
    
    }
    #login{
        position:fixed;
        bottom: 20%;
        margin-left:0px;
    }
    #loggedin{
        position:fixed;
        bottom: 15%;
    }
}
