@charset "UTF-8";
/* CSS Document */


.container {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/**
 * Cookies window
 */
.cookies-alert {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.2s ease;
}


.cookies-alert.is-show {
  transform: translateY(0);
  transition: transform 0.2s ease;
}


.cookies-alert__title {
  margin: 0 0 5px;
}


.cookies-alert__left {
 max-width:800px; 
    text-align:center;
    margin: auto;
    padding: 20px 20px;
    border: 1px solid #acacac;
    margin-bottom: 40px;
    background: #fff; 
    position:fixed; 
    left:0; 
    right:0; 
    bottom:0px; 
    z-index:99999999;
    border-radius: 30px;
   transition: transform 3.2s ease;

}


@media screen and (max-width: 900px){

.cookies-alert__left {
    max-width: 100%;
    text-align:center;
    margin: 0;
    padding: 20px 20px;
    border: 1px solid #acacac;
    margin-bottom: 0px;
    background: #fff; 
    position:fixed; 
    left:0; 
    right:0; 
    bottom:0px; 
    z-index:99999999;
    border-radius: 0;
   transition: transform 3.2s ease;

}
}

.cookies-alert__left p{

    font-size: 0.8em;
    line-height: 1.6em;
}



.cookies-alert__btn {
  margin-left: 15px;
}
/**
 * Buttons
 */
.btn {
  background-color: transparent;
  border-radius: 5px;
  border: transparent;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.btn__primary {
    padding: 14px 25px;
    background: #1285e5;
    color: white;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7em;
    border: none;
    border-radius: 40px;
    letter-spacing: 0.05em;
}
.btn:hover {
  background-color: #0058a2;
  transition: background-color 0.2s ease;
}







