select {
  width: 100%;
  appearance: none;
  border-radius: 4px;
  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: rgba(85, 88, 89, 0.053);
  background-size: 23px 23px;
  transition: all 0.2s linear;
  background-position: right 12px top 15px;
  padding: 0.7rem 1rem;
}
select:hover, select:active, select:focus {
  border-color: var(--grey-mid);
  outline: none !important;
}

[data-theme=dark] select {
  background-color: rgba(85, 88, 89, 0.1);
  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: rgba(85, 88, 89, 0.1) !important;
}

#Form_ContactForm_Name_Holder label {
  margin-top: 0;
}

.contact-form label {
  margin: 1.7rem 0 0.3rem 0;
}
.contact-form form .description {
  margin: 0.5rem 0 1rem 0;
  display: block;
  font-size: 1em !important;
}
.contact-form .btn-toolbar {
  text-align: center;
  margin-top: 3rem;
}
.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea {
  display: block;
  outline: none;
  border: none;
  width: 100%;
  padding: 0.86rem;
  margin: 0 !important;
  background-color: rgba(85, 88, 89, 0.053);
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.2s linear;
}
.contact-form input[type=text]::placeholder, .contact-form input[type=email]::placeholder, .contact-form textarea::placeholder {
  color: var(--text);
  font-size: 1em;
  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-mid);
}
.contact-form input[type=submit] {
  margin: 1rem auto 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  padding: 8px 32px 6px 35px;
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  cursor: pointer;
  transition: all 0.2s linear;
}
.contact-form input[type=submit]:hover {
  background-color: transparent;
  color: var(--black);
}
.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-light);
  border-radius: 100px;
  background-color: rgba(85, 88, 89, 0.053);
  margin: 5.5px 0.4rem 0 0;
}
.contact-form input[type=checkbox]::before {
  content: "";
  width: 15px;
  height: 15px;
  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;
}

.mm-form input {
  border: 1px solid var(--grey-tint);
  background-color: var(--grey-light);
  padding: 0.8rem;
  width: 100%;
  margin-bottom: 0.85rem;
  transition: all 0.2s linear;
}
.mm-form input.action {
  background-color: var(--black);
  color: var(--white);
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid var(--black);
  cursor: pointer;
}
.mm-form input.action:hover {
  background-color: var(--white);
  color: var(--black);
}
.mm-form label {
  font-size: 0.8em;
  margin-bottom: 0.3rem;
  display: block;
}
.mm-form #MemberLoginForm_LoginForm_Remember_Holder {
  width: 100%;
  margin-bottom: 2rem;
}
.mm-form label.right {
  display: inline-block !important;
  margin-left: 8px;
}
.mm-form .checkbox {
  float: left !important;
  width: 17px;
  height: 17px;
  margin-top: 14px;
  accent-color: var(--black);
}

#mc-embedded-subscribe {
  background-color: var(--black);
  height: 100% !important;
  margin: 0 !important;
  padding: 0.86rem 1.2rem 0.86rem 1rem !important;
  border-radius: 0 !important;
  color: var(--white);
}

#Form_ContactForm_Reason_Holder {
  margin-bottom: 1.5rem;
}
