.container {
    max-width: 85% !important;
}

.cookie-popup {
  
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2147483645;
  box-sizing: border-box;
  width: 100%;
  background-color: black;
  opacity: 0;
  display: none;
  padding: 32px;
}
.cookie-popup--short {
  right: none;
  width: 21.875rem; 
}

.cookie-popup--not-accepted {
  animation: cookie-popup-in .5s ease forwards;  
  opacity: 1;
  display: block;
}
.cookie-popup--accepted {
  opacity: 0;
  display: none;
}
.cookie-popup a {
  color: white;
}
.cookie-popup a:visited {
  color: white;
  text-decoration: none;
}
.cookie-popup-actions {
  position: absolute;
  top: 50%;
  left: 85%;
  transform: translateY(-50%);

  border-radius: 3.7rem;
  min-width: 125px;
  height: auto;
  white-space: normal;
  word-break: break-word;
  word-wrap: break-word;
  padding: 12px 10px;
  line-height: 1.2;
  font-size: .813em;
  font-weight: 600;
  text-align: center;
  color: white;
border: 2px solid #ffffff;
border-radius: 0px;
background-color: #4fb5e2;
}
.cookie-popup-actions button {
  color: white;
  border: none;
  background: none;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: bold;
  text-transform: uppercase;

  padding: 0;
  cursor: pointer;
  position: relative;
  width: 100%;
}



.cookie-text {
  color: #fff; max-width: 80%;
}	
	
@media screen and (max-width: 767px){
	.cookie-popup-actions {
		position: unset;
		margin-top: 50px;
	}

	.cookie-text {
		max-width: 100%;
	}

}
