section select {
  width: 100%;
  appearance: none;
  border-radius: 0px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='w-6 h-6' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-color: var(--paper);
  background-size: 20px 20px;
  transition: all 0.2s linear;
  background-position: right 15px top 19px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--grey-tint);
}
section select:hover, section select:active, section select:focus {
  border-color: var(--grey-dark);
  outline: none !important;
}

[data-theme=dark] section select {
  background-color: var(--paper);
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNy40IDE1LjciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI3LjQgMTUuNzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8Zz4KCTxnIGlkPSJJY29uLUNoZXZyb24tTGVmdCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjM3LjAwMDAwMCwgMzM1LjAwMDAwMCkiPgoJCTxwb2x5bGluZSBpZD0iRmlsbC0zNSIgY2xhc3M9InN0MCIgcG9pbnRzPSItMjM3LC0zMzMgLTIzNSwtMzM1IC0yMjMuMywtMzIzLjIgLTIxMS42LC0zMzUgLTIwOS42LC0zMzMgLTIyMy4zLC0zMTkuMyAtMjM3LC0zMzMgCgkJCQkJIi8+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==");
}
[data-theme=dark] input[type=text], [data-theme=dark] input[type=email], [data-theme=dark] textarea, [data-theme=dark] input[type=checkbox] {
  background-color: var(--paper) !important;
}

#Form_ContactForm_Name_Holder label {
  margin-top: 0;
}

.contact-form {
  margin-top: 3rem;
}
.contact-form label {
  margin: 1.7rem 0 0.3rem 0;
}
.contact-form form .description {
  margin: 0.4rem 0 1rem 0;
  display: block;
}
.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea {
  display: block;
  outline: none;
  border: none;
  width: 100%;
  padding: 1rem;
  margin: 0 !important;
  background-color: var(--paper);
  border: 1px solid var(--grey-tint);
  border-radius: 0px;
  transition: all 0.2s linear;
}
.contact-form input[type=text]::placeholder, .contact-form input[type=email]::placeholder, .contact-form textarea::placeholder {
  color: var(--text);
  opacity: 0.6;
}
.contact-form input[type=text]:focus, .contact-form input[type=email]:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--grey-dark);
}
.contact-form .btn-toolbar {
  text-align: center;
}
.contact-form .btn-toolbar input[type=submit] {
  margin: 3rem auto 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0px;
  padding: 10px 32px 9px 35px;
  background-color: var(--brand-primary);
  color: var(--white);
  border: 1px solid var(--brand-primary);
  cursor: pointer;
  transition: all 0.2s linear;
}
.contact-form .btn-toolbar input[type=submit]:hover {
  background-color: transparent;
  color: var(--brand-primary);
}
.contact-form input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  float: left;
  align-content: center;
  justify-content: center;
  padding: 0.1rem;
  border: 1px solid var(--grey-tint);
  border-radius: 100px;
  background-color: var(--paper);
  margin: 3px 0.4rem 0 0;
}
.contact-form input[type=checkbox]::before {
  content: "";
  width: 18px;
  height: 18px;
  clip-path: polygon(0 60%, 40% 80%, 90% 0, 100% 10%, 45% 100%, 0 75%);
  transform: scale(0);
  background-color: var(--text);
  transition: all 0.2s linear;
}
.contact-form input[type=checkbox]:checked::before {
  transform: scale(0.6);
}

#Form_ContactForm_error {
  color: red;
  margin-bottom: 2rem;
  text-align: center;
}

#Form_ContactForm_AgreeToTermsLabel_Holder label {
  display: inline-block;
  margin-top: 0px;
}

#Form_ContactForm_AgreeToTerms_Holder {
  margin-top: 1rem;
}
