/**
 * @file
 * This file is used to style the footer.
 *
 * It styles the footer as a global component; it does not style individual
 * footer items, such as a menu, which are styled by their own CSS files.
 */

.footer {
  padding: 2rem 1rem;
  text-align: center;
  color: #343a40;
  position: relative;
  font-size: 0.9rem;
  opacity: 0.98;
  box-shadow: 0px -1px 2px #c0ccd5;
  background-color: #90caf9;
  /* background: url(../../../../../../../../../sites/default/files/white-noise.png); */
  /* margin-bottom: 0.25rem; */
  border-bottom: 1px solid #f2f2f2;
}



/* .footer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left,#fff,#fff);
  opacity: 0.6;

} */

.footer .container {
    position: relative;
}


@media screen and (min-width: 60rem) {
  .footer {
    padding: 1rem;
    text-align: left; /* LTR */
  }
  [dir="rtl"] .footer {
    text-align: right;
  }
  .region-footer {
    display: flex;
    justify-content: space-between;
  }
}

.footer a {
  color: #343a40;
  background-color: inherit;
  font-weight: 400;
}

.footer a:active,
.footer a:focus,
.footer a:hover {
  outline-color: #fff;
  text-decoration: none;
  border-bottom: solid 0.1rem;
  border-bottom-color: #2196F3;
  padding-bottom: 0.1rem;
}
