/*
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
GDPR css
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/
.gdpr_banner{
  position: fixed;
  width: 100%;
  bottom: 0;
  background: #E07D26;
  color: #fff;
  z-index: 9999999;
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.gdpr_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gdpr_message{
  position: relative;
  padding-left: 40px;
  padding-right: 10px;
  text-shadow: 1px 2px 3px rgba(0,0,0,0.07);
  font-size: 0.81rem;
}
.gdpr_message .icon{
  position: absolute;
  top: -0.2rem;
  left: 0;
  height: 1.3rem;
  width: 1.3rem;
}

.gdpr_message .icon.icon-information{
  background: url(../img/information.svg) no-repeat;
  background-size: 1.3rem 1.3rem;
}

.gdpr_inner .gdpr_message a{
  text-decoration: underline;
  color: #fff;
}

.gdpr_message a:hover, .gdpr_message a:active{
  color:#ddd;
}

.gdpr_inner .btn{
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  font-size: 14px;
  padding: 7px 25px;
  margin: 0;
}

.gdpr_inner .btn:hover,
.gdpr_inner .btn:active,
.gdpr_inner .btn:focus {
  background: darken(#E07D26, 5%);
  transition: background-color 0.2s;
}
