/* ===========================================================
   33) Cookie Banner
=========================================================== */
.cb-banner {
  position: fixed;  right: 1rem; bottom: -400px; z-index: 9999;
  background: var(--secondary-color); color: #fff; border-radius: var(--button-border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.25); width: 80%; display:flex;
  left: 50%;
  transform: translate(-50%);
	
	transition: 0.4s all ease;
	
	
}

.cb-banner.show {
	bottom:20px;
	display:flex;
}



.cb-text { font-size: 14px; color: var(--text-color-2); }


.cb-reopen {

  float: left;
margin-left:10px
}


.cookie-reopen {
  position: relative;
  width: 90%;
  height: 120px;
  margin: auto;
	display: flex;
}

.cb-reopen {
  cursor: pointer;
  border: 0;
  border-radius: var(--button-border-radius);
  padding: 0.75rem 1rem;
  background: var(--primary-color);
  color: #fff;
  font-weight: 400;
	margin: auto;
}