/*@Form Elements
===================================== */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--gray);
 }

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--gray);
  }

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--gray);
 }

input::placeholder,
textarea::placeholder {
  color: var(--gray);
 }


input:not([type]), 
input[type=color],
input[type=date], 
input[type=datetime-local],
input[type=datetime], 
input[type=email],
input[type=month], 
input[type=number],
input[type=password], 
input[type=search],
input[type=tel], 
input[type=text],
input[type=time], 
input[type=url],
input[type=week], 
textarea {
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    color: var(--body) !important;
    font-size: var(--body-copy);
    font-family: inherit !important;

    display: block;
    margin: 0 0 !important;
    padding: var(--small-margin) var(--small-margin);
    height:44px;
    min-height: 44px;
    width: 100%;
    background: transparent;
    border-radius: 0;
    border: 1px solid var(--borders) !important;
    position: relative;
}

textarea {
  height: 350px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    /* Optional: for a pure white icon, you can use brightness(1000%) or grayscale(1) if needed */
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    position: relative;
    height: 44px;
    min-height: 44px;
    padding: var(--small-margin) var(--small-margin);
    border: 1px solid var(--borders);
    border-radius: 0;
    color: var(--body) !important;
    font-family: inherit;
    font-size: var(--body-copy);
    line-height: normal;
    width: 100%;
    z-index: 1;
}

/* Container for custom arrow */
.select-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.select-wrapper select {
    width: 100%;
    padding-right: 2em; /* space for the icon */
}

.select-wrapper::after {
    content: "\f078";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    font-size: 1em;
    color: var(--body);
    position: absolute;
    right: 1em;
    top: 38%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
    transition: content 0.2s;
}

.select-wrapper select:focus + .fa-chevron {
    content: "\f077";
}

/* Change chevron when select is focused */
.select-wrapper select:focus ~ ::after,
.select-wrapper select:active ~ ::after {
    content: "\f077";
}

/* Hide default arrow in IE */
select::-ms-expand {
    display: none;
}

[type='file'], 
[type='checkbox'], 
[type='radio']{
    display: inline-block;
    margin: 0 0;
}

[type="radio"] {
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  accent-color: var(--light-gray);
  border: 1px solid var(--borders);
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 20px;
  height: 20px;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

/* Solid white selected state */
[type="radio"]:checked::after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
}

[type="checkbox"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  accent-color: var(--light-gray);
  border: 1px solid var(--borders);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 20px;
  height: 20px;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

/* Show Font Awesome checkmark when checked */
[type="checkbox"]:checked::after {
  content: "\f00c";
  font-family: 'Font Awesome 6 Pro';
  font-weight: 300;
  color: var(--body);
  font-size: 16px;
  position: absolute;
  left: 1px;
  top: 0;
  width: 16px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

[type='file']:focus, 
[type='checkbox']:focus, 
[type='radio']:focus,
select:focus,
input:not([type]):focus,
input[type=color]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus,
input:focus{
    outline: 1px solid var(--gray);
    outline-offset: 1px;
    box-shadow: none !important;
    background-color: var(--very-dark-gray);
}

/*@end Form Elements
===================================== */


@media only screen and (max-width: 720px) {
    

}