/*sticky footer*/
html {
    position: relative;
    min-height: 100%;  
      background: #181818 no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
body {
    background-color: transparent;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
    font-weight: inherit;
    font-style: normal;
}

.container-fluid {
  /* Set the spacing to the footer*/
   padding-bottom: 130px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 100px;
}
/*end sticky footer*/

.footer {
    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;
    color: #ffffff;
    text-align: center;
}

.footer a{
    background-color: transparent;
}

.footer a, footer a:hover {
    color: #ffffff;
}
.footer a:visited {
    color: #ffffff;
}

#overlay {
  position: absolute; /* Sit on top of the page content */
  display: block; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(232,45,135,0.7); /* Black background with opacity */
  color: #ffffff;
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}

#disclaimer {
  position: absolute;
  width: 85%;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  
  padding: 20px;
  color: #ffffff;
}

.btn-outline-secondary, .btn-outline-secondary:hover, .btn-outline-secondary:active, .btn-outline-secondary:visited {
    color: #ffffff;
    background-color: #e82d87 !important;
    border-color: #e82d87 !important; 
}

@media (min-width: 768px) {
    .footer {
        padding:0 100px;
    }
    
  #overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(232,45,135,0.7); /* Black background with opacity */
    color: #ffffff;
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
  }

  #disclaimer {
    width: 30%;
    top: 3%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    
    padding: 20px;
    color: #ffffff;
  }
}

/*----------------------*/
.good-box {
    margin-top: 2%;
}

@media (min-width: 1024px) {
   html {
         background: #181818 no-repeat right bottom fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover; 
   }
   
   #logo {display: inline;}
}



.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}