.balCookAvisoBg{position:fixed;top:0;width:100%;height:100%;display:flex;background:rgba(0,0,0,0.80);z-index: 9999;}
.balCookAviso{width:100%;height:fit-content;display:flex;gap:2em;padding:2em;background:#fff;}
.balCookAviso1{}
.balCookAviso2{display:flex;flex-direction:column;gap:1em;}
.balCookBtn, .balCookBtn-o{padding:0.5em;1em;color:#343434;text-align:center;background:#fff;border:solid 1px #343434;}
a.balCookBtn{color:#343434;}
.balCookBtn-o{color:#fff;background:#343434;}
a.balCookBtn-o{color:#fff;}

.balCookConfigBg{position:fixed;top:0;width:100%;height:100%;padding:1em;display:flex;background:rgba(0,0,0,0.80);overflow-y:auto;z-index:99999;}
.balCookConfig{width:100%;max-width:700px;height:fit-content;display:flex;flex-direction:column;gap:2em;margin:auto;padding:2em;background:#fff;}
.balCookTitle{display:flex;justify-content:space-between;}
.balCookTitle img{width:24px;}
.balCookConfig p{display:flex;gap:2em;margin:0;}
.balCookConfBtns{display:flex;gap:2em;margin:1em 0 0 0;padding:1em 0 0 0;border-top:solid 1px #c2c2c2;}
.balCheckNo{width:50px;height:30px;flex:none;background: url("../../_cookies/img/check-ko.svg") no-repeat right top;}
.balCheckSi{width:50px;height:30px;flex:none;background: url("../../_cookies/img/check-ok.svg") no-repeat right top;}
.balCookCheck{width:50px;height:30px;flex:none;background: url("../../_cookies/img/check-ko.svg") no-repeat right top;}
.balCookCheck:checked{width:50px;height:30px;flex:none;background: url("../../_cookies/img/check-ok.svg") no-repeat right top;}
.check{display:none;}

.contCheck {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.contCheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width:50px;height:30px;flex:none;background: url("../../_cookies/img/check-ko.svg") no-repeat right top;
}
.contCheck:hover input ~ .checkmark {
  background-color: #ccc;
}
.contCheck input:checked ~ .checkmark {
  width:50px;height:30px;flex:none;background: url("../../_cookies/img/check-ok.svg") no-repeat right top;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.contCheck input:checked ~ .checkmark:after {
  display: block;
}
.contCheck .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width:900px){
   .balCookAviso, .balCookConfig p{flex-direction:column;} 
}