.contact_admin_title {
  font-weight: 600;
  font-size: 1.2em;
}

.contact_admin_text {
  font-size: 1.2em;
  margin-left: 10px;
}

.contact_admin_delete_button {
  font-size: 0.9em;

  margin: 15px 5px;
  padding: 5px;

  border: 1px solid rgba(255, 0, 0, 0.495);
  background-color: transparent;
  box-shadow: 2px 3px 5px #22222260;
  cursor: pointer;
}

.contact_admin_delete_button:hover {
  box-shadow: 2px 3px 7px #DDD;
  transition: box-shadow 0.25s;
}

.contact_admin_event {
  width: fit-content;
  display: block;
  margin-top: 10px;
  padding: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 0, 0, 0.579);
}

.contact_form {
  width: 75%;
  position: relative;
  left: 12.5%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form textarea {
  padding: 5px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact_form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact_form input:focus,
.contact_form textarea:focus {
  border-color: #0073aa;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}


.contact_form select {
  padding: 5px;
  font-size: 1rem;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 5px;
  color: #333;
  max-width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='12' height='12' viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40h140L70 140z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.contact_form select:focus {
  border-color: #0073aa;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}


.form_row {
  width: 100%;
  margin: 3px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form textarea {
  width: 100%;
  height: fit-content;
  min-height: 30px;
  margin: 10px;
}

.contact_form textarea {
  min-height: 100px;
}

.contact_form select {
  width: 50%;
}

.form-success {
  border-bottom: rgba(41, 190, 66, 0.463) 2px solid;
  padding: 10px;
  margin: 20px;
}

.form-alert {
  border-bottom: rgba(233, 18, 18, 0.463) 2px solid;
  padding: 10px;
  margin: 20px;
}

.consent_ctr {
  color: var(--black);
  margin: 20px 0;
}

.consent_ctr a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.consent_ctr a:hover {
  opacity: 0.7;
}

.button_ctr {
  margin: 10px;
}

#contact_form_order_ctr {
  display: none;
  margin-top: 10px;
}