@font-face {
  font-family: "Myriad Pro Condensed";
  src: url("../fonts/MYRIADPRO-COND.OTF");
}

:root{
    --bs-body-font-family: "Myriad Pro Condensed", Inter, sans-serif;
    --bs-body-font-size: 20px;
    --bs-btn-hover-color: #f5ca99 !important;
    --bs-body-bg: rgb(248, 248, 248);
    --bs-light-rgb: 248, 248, 248;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body{
    font-family: var(--bs-body-font-family) !important;
    font-size: var(--bs-body-font-size) !important;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
}

.parallax {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center center;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  z-index: 0;
}


.card-flush .card-body {
  padding-left: .5rem;
  padding-right: .5rem;
}

.text-justify{
  text-align: justify;
}

.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0 !important;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
  padding: 0.75rem;
  color: #ecf0f1;
  background: #212327;
}

  .cookiealert.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0%);
      transition-delay: 1000ms;
  }

  .cookiealert a {
      text-decoration: underline
  }

  .cookiealert .acceptcookies {
      margin-left: 10px;
      vertical-align: baseline;
  }
  .cc-nb-main-container{
    padding: 1.5rem !important;
    border: 1px var(--bs-primary) solid !important;
  }

  .cc-nb-text{
    font-size: 1rem !important;
  }

  .cc-nb-title{
    font-size: 1.25rem !important;
  }

  .cc-nb-buttons-container .cc-nb-okagree, .cc-cp-foot-save {
    background-color: var(--bs-primary) !important;
  }

  .cc-nb-buttons-container .cc-nb-reject{
    background-color: var(--bs-danger) !important;
  }

  .cc-pc-head-close:focus{
    border: 2px solid var(--bs-primary) !important;
    border-radius: 0.5rem !important;
  }

  #open_preferences_center{
    cursor: pointer;
  }
.glow {
    color: #fff;
    text-align: center;
    /*-webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;*/
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 0px rgb(var(--bs-primary-rgb)), 0 0 0px rgb(var(--bs-primary-rgb)), 0 0 0px rgb(var(--bs-primary-rgb)), 0 0 0px rgb(var(--bs-primary-rgb)), 0 0 0px rgb(var(--bs-primary-rgb));
    /* -webkit-text-stroke: 1px #fff; */
  }
  
  @-webkit-keyframes glow {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px rgb(var(--bs-primary-rgb)), 0 0 40px rgb(var(--bs-primary-rgb)), 0 0 50px rgb(var(--bs-primary-rgb)), 0 0 60px rgb(var(--bs-primary-rgb)), 0 0 70px rgb(var(--bs-primary-rgb));
    }
    to {
      text-shadow: 0 0 0px #fff, 0 0 30px #f5ca99, 0 0 40px #f5ca99, 0 0 50px #f5ca99, 0 0 60px #f5ca99, 0 0 70px #f5ca99, 0 0 80px #f5ca99;
    }
  }