
#cookie-popup {
	font-family: Arial,Verdana,Tahoma;
	font-size: 1.125rem;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  padding: 2rem var(--pageSpacing);
  background-color: #ddcf4a;  /* rgba(0,122,255,0.8); */ /* #DFB331; */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  
  padding-bottom: 1.25rem;
}

#cookie-popup.cookie-hidden {
	/* display: flex; */
  display: flex; /* none; */
}

@media screen and (max-width: 40em) {
  #cookie-popup {
    flex-direction: column;
  }
}

#cookie-popup p {
	border-color: red;
	border-style: none; /* solid; */
   /* max-width: 920px;  */
  margin-bottom: 0px;
  margin-right: 2rem;
  margin-left: 2rem;
  font-weight: normal;
  padding: 15px 15px 15px 15px;
	text-align: left;
}

@media screen and (max-width: 40em) {
  #cookie-popup p {
	font-size: 1rem;
    margin-bottom: 0.25rem;
    margin-right: 0px;
    /* text-align: center; */
	text-align: left;
  }
}

#cookie-popup p a {
  color: #004C90; /* #102A87; */
}

#cookie-popup a:hover {
  color:  #6e2c00;
}

#cookie-popup button {
  margin-bottom: 0px;
  flex-shrink: 0;
}




#cookie-button {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  margin-bottom: 2.625rem;
  margin-right:  2.625rem;
  
  text-align: center;
  /* font-family: var(--fontFamily); */
  /* font-size: var(--btnFontSize, 1.2rem); */
  /* line-height: var(--btnLineHeight, 1.625rem); */
  font-weight: bold; /* var(--btnFontWeight, 700); */
  
  color: black; /* var(--btnTxColor, #102A87); */
  background-color: white; /* var(--btnBgColor, #44C9FF); */
  border-color: black;
  border-radius: 15px; /* 35px; */
  box-shadow: 0px 0px 0px 0px #6e2c00; /* var(--btnBgColor, red); */
  outline: 4px solid transparent;
  transition: background-color 250ms ease-out, color 250ms ease-out, box-shadow 250ms ease-out;
  z-index: 1;
}

#cookie-button:after {
  content: " ";
  position: absolute;
  top:  -2px;
  left: -2px;
  width:  calc(100% + 4px);
  height: calc(100% + 4px);
  border: 2px solid #6e2c00; /* var(--btnBgColor, red); */
  border-radius: inherit;
  /*background-color: #6e2c00;* /* var(--btnBgColor, red ); */ /* #44C9FF */
  background-color: var(--btnBgColor, green );
  /*transition: 250ms ease-out;*/
  transition: 50ms ease-out;
  opacity: 0;
  z-index: -1;
}

@media (hover: hover) {
  #cookie-button:hover {
    box-shadow: 0px 0px 0px 4px  #44c9ff;  /* var(--btnBgColor, red ); /* /* #004c90 #44C9FF */
  }
  #cookie-button:hover:after {
    opacity: 1;
  }
}

#cookie-button.focus-visible, #cookie-button:focus-within {
  background-color: white;
  color: #102A87;
  box-shadow: 0px 0px 0px 4px #004C90;  /* var(--btnBgColor, red ); */ /* #44C9FF */
}

.button {
.small {
  --btnFontSize:		0.875rem;
  --btnLineHeight:		1.0625rem;
}
.yellow {
  --btnLineHeight: 		rem-calc(22);
  --btnFontWeight: 		500;
  --btnBgColor:			#DFB331;
  --btnTxColor:			#102A87;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.blue {
  --btnBgColor:			rgba(0,85,161,0.8);  /* rgba(0,122,255,0.8); */ /* #102A87; */
  --btnTxColor:			white;
}
}
