.cookie{
  position: fixed;
  left: 0px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 100000;
  display: flex;
  justify-content: center;
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.4), 0px 0px 10px rgba(255, 255, 255, 0.4), 0px 0px 15px rgba(255, 255, 255, 0.4);
  transition: 0.6s;
  bottom: -100%;
  opacity: 0;
  padding: 20px 0px;
}

.cookie.active{
  bottom: 0px;
  opacity: 1;
}

.cookie .wrapper{
  width: 90%;
  max-width: 1100px;
  padding: 10px 0px;
}

.cookie .wrapper .title{
  font-family: 'Rubik';
  font-weight: 700;
  font-size: 1.2rem;
}

.cookie .wrapper .text_button{
  display: flex;
  justify-content: space-between;
}


.cookie .wrapper .text_button .text{
  flex: 1;
  padding: 10px;
  font-family: 'Nunito';
}

.cookie .wrapper .text_button .text a{
  color: rgb(255, 111, 15);
}

.cookie .wrapper .text_button .buttons{
  width: 130px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}


.cookie .wrapper .text_button .buttons{
  width: 21%;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
}

.cookie .wrapper .text_button .buttons button{
  padding: 5px 10px;
  font-family: 'Rubik';
  border-radius: 6px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}


.cookie .wrapper .text_button .buttons button.setting{
  text-decoration: underline;
  border: none;
  outline: none;
  background: none;
  color: orange;
  cursor: pointer;
}


.cookie .wrapper .text_button .buttons button.confirm{
  background-color: rgb(160, 255, 131);
  color: rgb(0, 0, 0);
}

.cookie .wrapper .text_button .buttons button.reject{
  background-color: rgb(213, 40, 40);
  color: white;
}


@media(max-width:700px){
  .cookie .wrapper{
    width: 95%;
    max-width: 1100px;
    color: white;
    padding: 10px 0px;
    font-size: 0.9rem;
  }  
  .cookie .wrapper .text_button{
    flex-direction: column;
  }  
  .cookie .wrapper .text_button .text{
    width: 100%;
  }
  .cookie .wrapper .text_button .buttons{
    width: 100%;
    flex-direction: row;
  }
  .cookie .wrapper .text_button .buttons button{
    font-size: 0.9rem;
  }
}