.button {
	background-color: #A22210;
}

button.button {
	color: black;
}

#cookie_notification{
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: 2vh;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

#cookie_notification p {
  margin: 0;
  font-size: 0.7rem;
  text-align: left;
  color: #1F1D1C;
}

#cookie_notification a {
	color: #797777;
}

.cookie_accept {
    padding: 10px 20px;
  }

button.button.cookie_accept {
	border: none;
	color: #FFFFFF;
}

.commonForm {
	padding: 10px 5px 20px 5px;
	margin: 50px auto 0 auto;
	display: flex;
    flex-direction: column;
    align-items: center;
}
.commonForm h1 { margin-bottom: 20px; }
.commonForm legend { margin-left: 1em; color: #000000; font-weight: bold; padding: 0 10px; margin: 0 auto; display: none;  }
.commonForm label { float: left; width: 12em; margin-right: 1em; text-align: left; color: #999; } 
.commonForm select { margin: 0; border: 1px solid #BBB; padding: 3px 3px 3px 1px; } 
.commonForm input { margin: 0; } 
.commonForm input[type='checkbox'] { vertical-align: middle; margin-top: -3px; }
.commonForm fieldset { margin: 0 0 0 0; padding: 0; border: 0px solid #DEDEDE; }
.commonForm fieldset ol { padding: 0; list-style: none; }
.commonForm fieldset li { padding-bottom: 0.5em; }
.commonForm fieldset ol ol { margin-left: 12em; margin-top: 1em; overflow: hidden; }
.commonForm fieldset ol ol label { float: none; }
.commonForm fieldset ol ol li { float: left; width: 100%; }
.commonForm fieldset.submit { float: none; width: auto; border: 0 none #FFF; padding-left: 14em; }  
.commonForm .errors { padding-left: 11em; color: red; padding-top: 10px; }
.commonForm .form-messages { padding-bottom: 20px; padding-top: 5px; line-height: 1.3; }
.commonForm .form-buttons, .commonForm .form-messages, .commonForm fieldset ol ol, .commonForm .form-right { margin-left: 12em; padding-left: 12px; }
.commonForm .form-error-message { color: red; }
.commonForm .element-error-message { font-size: 11px; color: red; margin-top: 3px; margin-left: 13em; }
.commonForm .required { float: right; color: #888; margin-right: -5px; }

.commonForm input {
    width: 20em;
    padding: 8px 10px;
    border: none;
    background-color: #EEEEEE;
    border-radius: 10px;
   }

.commonForm button {
	border: none;
	background-color: #A22210;
	color: #FFFFFF;
	border-radius: 10px;
	height: 40px;
    width: 100%;
}

.commonForm h1 {
	color: black;
	font-family: 'Inter', sans-serif;
}

@media (min-width: 576px){
  #cookie_notification.show{
    display: flex;
  }
  .cookie_accept{
    margin: 0 0 0 25px;
  }
}

@media (max-width: 575px){
  #cookie_notification.show{
    display: block;
    text-align: left;
  }
  .cookie_accept{
    margin: 10px 0 0 0;
  }
}