.box-cookies.hide {
  display: none !important;
}

.box-cookies {
  position: fixed; 
  opacity:1;
   background-color: rgba(0, 0, 0, .9);
   border-top: 1px solid #fff;
   bottom: 0;
   width: 100%;
   color: #fff;
   z-index: 999999;
   display: flex;
   gap: 10px;
   justify-content: center;
   align-items: center;
   padding: 3rem 1rem 3rem 3rem;
   box-sizing: border-box;
}

@media (max-width: 767px) {
  .box-cookies {
    flex-flow: column;
    text-align: center;
  }
}

.box-cookies p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
  color: #fff;
}

.box-cookies a {
  color: #fff;
}

.box-cookies .bt-aceitar {
  border: 2px solid #fff;
  border-radius: 20px;
  color: #fff;
  padding: 10px 50px;
  box-sizing: border-box;
  cursor: pointer;
  font-family: var(--font-family-p);
  margin-top: 0rem;
  display: inline-block;
  font-size: 18px;
  text-decoration: none;
}

.box-cookies .bt-aceitar:hover {
  border: 2px solid #fff;
  background-color: #fff;
  color: #000;
}

/*Pop Up*/
.html-popup-hidden {
  overflow: hidden;
}

.html-popup-auto {
  overflow-y: auto;
}

#alertaPopUp {
  position: absolute;
  z-index: 9999999;
}
#alertaPopUp p,
#alertaPopUp a {
  font-size: 14px;
  line-height: 18px;
}
#alertaPopUp span {
  font-family: var(--font-family-p);
}
#alertaPopUp h2 {
  font-family: var(--font-family-p);
  font-size: 30px;
  margin-bottom: 5px;
  margin-top: 20px;
  color: #2e4553;
}


#alertaPopUp .popupFixed {
  position: fixed;
  background: rgb(82 82 82/90%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#alertaPopUp .boxPopUp { 
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 1100;
  _filter: alpha(opacity=90);
  -moz-opacity: 0.95;
  opacity: 0.95;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}
#alertaPopUp .boxPopUp .box {
  padding: 1px;
  background: #fff;
  max-width: 920px;
  width: 100%;
}
#alertaPopUp .boxPopUp .topPop {
  width: 100%;
  background: #000;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#alertaPopUp .boxPopUp .topPop span {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 26px;
  padding: 8px 3px 0 9px;
}
#alertaPopUp .boxPopUp .btClose {
  cursor: pointer;
  color: #fff;
  padding: 20px;
  font-family: arial;
  font-size: 19px;
  text-align: center;
  background: #2b4352;
}
#alertaPopUp .boxPopUp .btClose:hover {
  background: #fff;
  color: #2b4352;
}
#alertaPopUp .boxPopUp .mainPop {
  padding: 10px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: calc(629px + 10vw);
  overflow: auto;
  /* background: url(../images/bg-club.webp) no-repeat top center; */
  background-size: contain;
}