/*=======================================
	Cookies Styling
=======================================*/

/* COOKIE POPUP STYLES */
.cookie-popup {
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: fixed;
  bottom: -6.25rem;
  left: 1.25rem;
  right: 1.25rem;
  padding: 1.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(136, 133, 133, 0.5);
  line-height: 150%;
  transition: opacity .5s;
  opacity: 0;
  z-index: 9999;
}

.cookie-popup--short {
  right: none;
  width: 34rem;
}

.cookie-popup--dark {
  background: white;
  color: #000;
}

.cookie-popup--not-accepted {
  opacity: 1;
  animation: cookie-popup-in .5s ease forwards;
}

.cookie-popup--accepted {
  opacity: 0;
}

.cookie-popup a {
  color: #6EA5FF;
}

.cookie-popup a:visited {
  color: #6EA5FF;
  text-decoration: none;

}

.cookie-popup-actions {
  flex: 1;
  text-align: right;

}

.cookie-popup-actions button {
  color: white;
  border: none;
  background: yellowgreen;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 10px;
  cursor: pointer;
}

.cookie-popup-actions button:hover {
  text-decoration: underline;
}

@keyframes cookie-popup-in {
  from {
    bottom: -6.25rem;
  }

  to {
    bottom: 1.25rem;
  }
}

.close {
  height: 20px;
  background-color: #777;
  border: none;
  color: white;
  border-radius: 2px;
  cursor: pointer;
  opacity: 1;
}

/*=======================================
	Cookies Styling
=======================================*/

.hiddenLinks{
  color: #3b3636;
}