input:not(:is([type="radio"],[type="checkbox"],[type="submit"],[type=image],[type=file])),select,textarea {
  width: 100% !important;
  line-height: 1 !important;
}
input:not(:is([type="radio"],[type="checkbox"],[type="button"],[type="submit"],[type="image"],[type="file"])),select,textarea {
  outline: none;
  color: currentColor;
  border-radius: 6px;
  height: min(53px,14vw);
  font-size: min(16px,4vw);
  border: 1px solid var(--cLgray);
  background-color: var(--clwhite);
  padding: min(1rem,2.5vw) min(1.5rem,5vw) !important;
}
select[multiple="multiple"] {
  height: auto!important
}
input:is([type="radio"],[type="checkbox"]) {
  margin: 5px .5rem 0 0;
  outline: none;
  flex: 0 0 auto;
  width: min(1.5rem,4vw);
  height: min(1.5rem,4vw);
  accent-color: var(--cLblueChill)
}
input[type="checkbox"] {
  box-shadow: inset 0 0 0 1px var(--cLblueChill)
}
input[type="radio"]:not(:checked) {
  appearance: none;
  border-radius: 2rem;
  border: 1px solid var(--cLblueChill)
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  font-style: normal;
  color: currentColor;
  opacity: .4;
  text-align: left
}
textarea::-moz-placeholder,
input::-moz-placeholder {
  font-style: normal;
  color: currentColor;
  opacity: .4;
  text-align: left
}
textarea::-ms-input-placeholder,
input::-ms-input-placeholder {
  font-style: normal;
  color: currentColor;
  opacity: .4;
  text-align: left
}
textarea::placeholder,
input::placeholder {
  font-style: normal;
  color: currentColor;
  opacity: .4;
  text-align: left
}
:is(input[type="date"],select):not(:focus) {
  color: currentColor
}
textarea {
  resize: none;
  font-family: inherit;
  height: min(200px,30vw) !important
}
input[type="date"] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}
/* other */
div:has(>:is(.half,.full)) {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: min(1.5rem,5vw) 5%;
}
*:has(>:is([type="radio"],[type="checkbox"])) {
    position: relative;
    display: flex;
    column-gap: min(.5rem,3vw);
}
.half {
    position: relative;
    flex: 1 1 max(200px,40%);
}
.full {
    position: relative;
    flex: 1 1 100%;
}
.label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: min(17px,4vw);
}
.acceptance {font-size:min(14px,3.7vw);}
/* select */
.filter {
    display: flex;
    flex-wrap: wrap;
    gap: min(2rem,5vw) 2%;
}
.filter.center {justify-content: center;}
.custom-select {
    position: relative;
    padding: 0 1rem;
    overflow: hidden;
    background: #fff;
    border-radius: 50px;
    display: inline-block;
    height: min(70px,14vw);
    width: min(371px,100%);
}
.custom-select select {
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: min(18px,4vw);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
}
.custom-select::after {
    position: absolute;
    top: 50%;
    content: '';
    aspect-ratio: 1/1;
    border-radius: 50%;
    pointer-events: none;
    right: min(10px,1vw);
    width: min(50px,12vw);
    transform: translateY(-50%);
    background-position: center;
    background-repeat: no-repeat;
    color: var(--cLturquoiseBlue);
    background-color: var(--cLaliceBlue);
    background-image: url(../images/arrow-donw.svg);
}
