.section .field label,.section .field legend {
    font-weight: var(--tf-label-font-weight);
    color: var(--tf-label-color);
    font-size: var(--tf-label-font-size);
    display: block
}

:root {
    --tf-input-size: 1rem;
    --tf-input-font-size: calc(var(--tf-input-size) * .875);
    --tf-small-font-size: calc(var(--tf-input-size) * .875);
    --tf-input-color: #20242f;
    --tf-input-color-light: #fafafa;
    --tf-input-border-radius: .25rem;
    --tf-input-placeholder-color: #929292;
    --tf-input-border-color: #c0c4c9;
    --tf-input-border-hover-color: #acb2b9;
    --tf-input-border-width: 1px;
    --tf-input-border-style: solid;
    --tf-input-border-bottom-width: 2px;
    --tf-input-focus-border-color: #3b4ce2;
    --tf-input-background-color: #f9fafb;
    --tf-invalid-input-border-color: var(--tf-input-border-color);
    --tf-invalid-input-background-color: var(--tf-input-background-color);
    --tf-invalid-input-color: var(--tf-input-color);
    --tf-valid-input-border-color: var(--tf-input-border-color);
    --tf-valid-input-background-color: var(--tf-input-background-color);
    --tf-valid-input-color: inherit;
    --tf-invalid-input-border-bottom-color: red;
    --tf-valid-input-border-bottom-color: green;
    --tf-label-font-size: var(--tf-small-font-size);
    --tf-label-color: #374151;
    --tf-label-font-weight: 500;
    --tf-slider-track-background: #dfdfdf;
    --tf-slider-track-height: .25rem;
    --tf-slider-thumb-size: calc(var(--tf-slider-track-height) * 4);
    --tf-slider-track-border-radius: var(--tf-slider-track-height);
    --tf-slider-thumb-border-width: 2px;
    --tf-slider-thumb-border-focus-width: 1px;
    --tf-slider-thumb-border-color: #ffffff;
    --tf-slider-thumb-background: var(--tf-input-focus-border-color);
    --switch-orb-size: var(--tf-input-size);
    --switch-orb-offset: calc(var(--tf-input-border-width)*2);
    --switch-width: calc(var(--tf-input-size)*2.5);
    --switch-height: calc(var(--tf-input-size)*1.25 + var(--switch-orb-offset))
}

.section .field {
    width: 100%;
    margin-bottom: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    color: var(--tf-input-color)
}

.section .field small:last-child,.section .field:last-child,.section .form_wrapp .field .field_input_checkbox .data_title,.section .form_wrapper .field .field_input_checkbox .data_title,.section .popup_form .field .field_input_checkbox .data_title {
    margin-bottom: 0
}

.section .section_inner:not(.all_border) .form_wrapp .field input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=submit]),.section.dark .field {
    color: var(--tf-input-color-light)
}

.section .field.width_half {
    width: calc(50% - 25px)
}

@media screen and (max-width: 640px) {
    .section .field.width_half {
        width:100%
    }
}

.section .field .field_title {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: .5rem;
    color: inherit;
    text-align: left
}

.section .field .field_description {
    color: inherit;
    opacity: .6;
    font-size: .8em;
    font-weight: 400;
    margin-bottom: .75rem;
    line-height: 1
}

.section .field .field_description:empty,.section .field .field_input_file_name,.section .field .field_title.title_hide,.section .field .field_title:empty {
    display: none
}

.section .field label {
    margin-bottom: calc(var(--tf-input-size)/2);
    white-space: normal
}

.section .field legend {
    margin-bottom: calc(var(--tf-input-size)/5)
}

.section .field label+small {
    font-style: normal
}

.section .field small {
    display: block;
    font-weight: 400;
    opacity: .75;
    font-size: var(--tf-small-font-size);
    margin-bottom: calc(var(--tf-input-size)*.75)
}

.section .field input[type=checkbox],.section .field input[type=date],.section .field input[type=email],.section .field input[type=month],.section .field input[type=number],.section .field input[type=password],.section .field input[type=radio],.section .field input[type=search],.section .field input[type=tel],.section .field input[type=text],.section .field input[type=time],.section .field input[type=url],.section .field input[type=week],.section .field select,.section .field textarea {
    background: var(--tf-input-background-color);
    font-size: var(--tf-input-font-size);
    box-shadow: none;
    box-sizing: border-box;
    border-radius: var(--tf-input-border-radius);
    border: var(--tf-input-border-width) var(--tf-input-border-style) var(--tf-input-border-color);
    color: var(--tf-input-color);
    width: 100%;
    padding: calc(var(--tf-input-size)*.75);
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: .15s ease-out;
    --icon-padding: calc(var(--tf-input-size)*2.25);
    --icon-background-offset: calc(var(--tf-input-size)*.75)
}

.section .field input[type=checkbox]:hover,.section .field input[type=date]:hover,.section .field input[type=email]:hover,.section .field input[type=month]:hover,.section .field input[type=number]:hover,.section .field input[type=password]:hover,.section .field input[type=radio]:hover,.section .field input[type=search]:hover,.section .field input[type=tel]:hover,.section .field input[type=text]:hover,.section .field input[type=time]:hover,.section .field input[type=url]:hover,.section .field input[type=week]:hover,.section .field select:hover,.section .field textarea:hover {
    border-color: var(--tf-input-border-hover-color)
}

.section .field input[type=checkbox]:disabled,.section .field input[type=date]:disabled,.section .field input[type=email]:disabled,.section .field input[type=month]:disabled,.section .field input[type=number]:disabled,.section .field input[type=password]:disabled,.section .field input[type=radio]:disabled,.section .field input[type=search]:disabled,.section .field input[type=tel]:disabled,.section .field input[type=text]:disabled,.section .field input[type=time]:disabled,.section .field input[type=url]:disabled,.section .field input[type=week]:disabled,.section .field select:disabled,.section .field textarea:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
    opacity: .75
}

.section .field input[type=checkbox]::-webkit-input-placeholder,.section .field input[type=date]::-webkit-input-placeholder,.section .field input[type=email]::-webkit-input-placeholder,.section .field input[type=month]::-webkit-input-placeholder,.section .field input[type=number]::-webkit-input-placeholder,.section .field input[type=password]::-webkit-input-placeholder,.section .field input[type=radio]::-webkit-input-placeholder,.section .field input[type=search]::-webkit-input-placeholder,.section .field input[type=tel]::-webkit-input-placeholder,.section .field input[type=text]::-webkit-input-placeholder,.section .field input[type=time]::-webkit-input-placeholder,.section .field input[type=url]::-webkit-input-placeholder,.section .field input[type=week]::-webkit-input-placeholder,.section .field select::-webkit-input-placeholder,.section .field textarea::-webkit-input-placeholder {
    color: var(--tf-input-placeholder-color);
    letter-spacing: 0
}

.section .field input[type=checkbox]:-ms-input-placeholder,.section .field input[type=date]:-ms-input-placeholder,.section .field input[type=email]:-ms-input-placeholder,.section .field input[type=month]:-ms-input-placeholder,.section .field input[type=number]:-ms-input-placeholder,.section .field input[type=password]:-ms-input-placeholder,.section .field input[type=radio]:-ms-input-placeholder,.section .field input[type=search]:-ms-input-placeholder,.section .field input[type=tel]:-ms-input-placeholder,.section .field input[type=text]:-ms-input-placeholder,.section .field input[type=time]:-ms-input-placeholder,.section .field input[type=url]:-ms-input-placeholder,.section .field input[type=week]:-ms-input-placeholder,.section .field select:-ms-input-placeholder,.section .field textarea:-ms-input-placeholder {
    color: var(--tf-input-placeholder-color);
    letter-spacing: 0
}

.section .field input[type=checkbox]:-moz-placeholder,.section .field input[type=checkbox]::-moz-placeholder,.section .field input[type=date]:-moz-placeholder,.section .field input[type=date]::-moz-placeholder,.section .field input[type=email]:-moz-placeholder,.section .field input[type=email]::-moz-placeholder,.section .field input[type=month]:-moz-placeholder,.section .field input[type=month]::-moz-placeholder,.section .field input[type=number]:-moz-placeholder,.section .field input[type=number]::-moz-placeholder,.section .field input[type=password]:-moz-placeholder,.section .field input[type=password]::-moz-placeholder,.section .field input[type=radio]:-moz-placeholder,.section .field input[type=radio]::-moz-placeholder,.section .field input[type=search]:-moz-placeholder,.section .field input[type=search]::-moz-placeholder,.section .field input[type=tel]:-moz-placeholder,.section .field input[type=tel]::-moz-placeholder,.section .field input[type=text]:-moz-placeholder,.section .field input[type=text]::-moz-placeholder,.section .field input[type=time]:-moz-placeholder,.section .field input[type=time]::-moz-placeholder,.section .field input[type=url]:-moz-placeholder,.section .field input[type=url]::-moz-placeholder,.section .field input[type=week]:-moz-placeholder,.section .field input[type=week]::-moz-placeholder,.section .field select:-moz-placeholder,.section .field select::-moz-placeholder,.section .field textarea:-moz-placeholder,.section .field textarea::-moz-placeholder {
    color: var(--tf-input-placeholder-color);
    letter-spacing: 0
}

.section .field input[type=checkbox]:focus,.section .field input[type=color]:focus,.section .field input[type=date]:focus,.section .field input[type=email]:focus,.section .field input[type=month]:focus,.section .field input[type=number]:focus,.section .field input[type=password]:focus,.section .field input[type=radio]:focus,.section .field input[type=search]:focus,.section .field input[type=tel]:focus,.section .field input[type=text]:focus,.section .field input[type=time]:focus,.section .field input[type=url]:focus,.section .field input[type=week]:focus,.section .field select:focus,.section .field textarea:focus {
    outline: 0;
    border-color: var(--tf-input-focus-border-color)
}

.section .field input[type=checkbox]:-webkit-autofill,.section .field input[type=date]:-webkit-autofill,.section .field input[type=email]:-webkit-autofill,.section .field input[type=month]:-webkit-autofill,.section .field input[type=number]:-webkit-autofill,.section .field input[type=password]:-webkit-autofill,.section .field input[type=radio]:-webkit-autofill,.section .field input[type=search]:-webkit-autofill,.section .field input[type=tel]:-webkit-autofill,.section .field input[type=text]:-webkit-autofill,.section .field input[type=time]:-webkit-autofill,.section .field input[type=url]:-webkit-autofill,.section .field input[type=week]:-webkit-autofill,.section .field select:-webkit-autofill,.section .field textarea:-webkit-autofill {
    padding: calc(var(--tf-input-size)*.75)!important
}

.section .field input[type=search]:placeholder-shown {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-search'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E");
    background-position: left calc(var(--tf-input-size)*.75) bottom 50%;
    padding-left: calc(var(--tf-input-size)*2.25);
    background-size: var(--tf-input-size);
    background-repeat: no-repeat
}

.section .field input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    width: var(--tf-input-size);
    height: var(--tf-input-size);
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E")
}

.section .field input[type=search]:focus {
    padding-left: calc(var(--tf-input-size)*.75);
    background-position: left calc(var(--tf-input-size)*-1) bottom 50%
}

.section .field input[type=checkbox].icon-left,.section .field input[type=date].icon-left,.section .field input[type=email].icon-left,.section .field input[type=month].icon-left,.section .field input[type=number].icon-left,.section .field input[type=password].icon-left,.section .field input[type=radio].icon-left,.section .field input[type=search].icon-left,.section .field input[type=tel].icon-left,.section .field input[type=text].icon-left,.section .field input[type=time].icon-left,.section .field input[type=url].icon-left,.section .field input[type=week].icon-left,.section .field select.icon-left,.section .field textarea.icon-left {
    background-position: left var(--icon-background-offset) bottom 50%;
    padding-left: var(--icon-padding);
    background-size: var(--tf-input-size)
}

.section .field input[type=checkbox].icon-right,.section .field input[type=date].icon-right,.section .field input[type=email].icon-right,.section .field input[type=month].icon-right,.section .field input[type=number].icon-right,.section .field input[type=password].icon-right,.section .field input[type=radio].icon-right,.section .field input[type=search].icon-right,.section .field input[type=tel].icon-right,.section .field input[type=text].icon-right,.section .field input[type=time].icon-right,.section .field input[type=url].icon-right,.section .field input[type=week].icon-right,.section .field select.icon-right,.section .field textarea.icon-right {
    background-position: right var(--icon-background-offset) bottom 50%;
    padding-right: var(--icon-padding);
    background-size: var(--tf-input-size)
}

.section .field input[type=date],.section .field input[type=month],.section .field input[type=time],.section .field input[type=week],.section .field select {
    background-position: right calc(var(--tf-input-size)*.75) bottom 50%;
    background-repeat: no-repeat;
    background-size: var(--tf-input-size)
}

.section .field input[type=email][class^=icon] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-at-sign'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M16 8v5a3 3 0 006 0v-1a10 10 0 10-3.92 7.94'/%3E%3C/svg%3E");
    background-repeat: no-repeat
}

.section .field input[type=tel][class^=icon] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-phone'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
    background-repeat: no-repeat
}

.section .field input[type=url][class^=icon] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-link'%3E%3Cpath d='M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
    background-repeat: no-repeat
}

.section .field input[type=password] {
    letter-spacing: 2px
}

.section .field input[type=password][class^=icon] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-lock'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4'/%3E%3C/svg%3E");
    background-repeat: no-repeat
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%
}

.section .field .field_input_range {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 15px
}

.section .field .field_input_range .change_val {
    position: absolute;
    left: 50%;
    margin-top: -20px
}

.section .field .field_input_range .val_show {
    white-space: nowrap
}

.section .field input[type=range] {
    -webkit-appearance: none;
    width: calc(100% - 200px);
    min-width: 170px;
    cursor: pointer;
    background-color: transparent!important
}

.section .field input[type=range]:focus {
    outline: 0
}

.section .field input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: var(--tf-slider-track-height);
    background: var(--tf-slider-track-background);
    border-radius: var(--tf-slider-track-border-radius)
}

.section .field input[type=range]::-moz-range-track {
    width: 100%;
    height: var(--tf-slider-track-height);
    background: var(--tf-slider-track-background);
    border-radius: var(--tf-slider-track-border-radius)
}

.section .field input[type=range]::-webkit-slider-thumb {
    height: var(--tf-slider-thumb-size);
    width: var(--tf-slider-thumb-size);
    border-radius: var(--tf-slider-thumb-size);
    background: var(--tf-slider-thumb-background);
    border: 0;
    border: var(--tf-slider-thumb-border-width) solid var(--tf-slider-thumb-border-color);
    -webkit-appearance: none;
    appearance: none;
    margin-top: calc(var(--tf-slider-track-height)*.5 - var(--tf-slider-thumb-size)*.5)
}

.section .field input[type=range]::-moz-range-thumb {
    height: var(--tf-slider-thumb-size);
    width: var(--tf-slider-thumb-size);
    border-radius: var(--tf-slider-thumb-size);
    background: var(--tf-slider-thumb-background);
    border: 0;
    border: var(--tf-slider-thumb-border-width) solid var(--tf-slider-thumb-border-color);
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box
}

.section .field input[type=range]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 var(--tf-slider-thumb-border-focus-width) var(--tf-slider-thumb-background)
}

.section .field input[type=range]:focus::-moz-range-thumb {
    box-shadow: 0 0 0 var(--tf-slider-thumb-border-focus-width) var(--tf-slider-thumb-background)
}

.section .field input[type=color] {
    border: var(--tf-input-border-width) solid var(--tf-input-border-color);
    border-bottom-width: var(--tf-input-border-bottom-width);
    height: calc(var(--tf-input-size)*2);
    border-radius: var(--tf-input-border-radius);
    padding: calc(var(--tf-input-border-width)*2)
}

.section .field input[type=color]::-webkit-color-swatch-wrapper {
    padding: 5%
}

.section .field input[type=color]::-moz-color-swatch {
    border-radius: calc(var(--tf-input-border-radius)/2);
    border: none
}

.section .field input[type=color]::-webkit-color-swatch {
    border-radius: calc(var(--tf-input-border-radius)/2);
    border: none
}

.section .field input[type=date],.section .field input[type=month],.section .field input[type=week] {
    min-width: 14em;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-calendar'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E")
}

.section .field input[type=time] {
    min-width: 6em;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-clock'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E")
}

.section .field input[type=date]::-webkit-calendar-picker-indicator,.section .field input[type=date]::-webkit-inner-spin-button,.section .field input[type=month]::-webkit-calendar-picker-indicator,.section .field input[type=month]::-webkit-inner-spin-button,.section .field input[type=time]::-webkit-calendar-picker-indicator,.section .field input[type=time]::-webkit-inner-spin-button,.section .field input[type=week]::-webkit-calendar-picker-indicator,.section .field input[type=week]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    cursor: pointer;
    opacity: 0
}

@-moz-document url-prefix() {
    .section .field input[type=date],.section .field input[type=month],.section .field input[type=time],.section .field input[type=week] {
        min-width: auto;
        width: auto;
        background-image: none
    }
}

.section .field .field_input_checkbox>div,.section .field .field_input_radio>div {
    display: flex;
    align-items: center;
    margin-bottom: .75rem
}

.section .field input[type=checkbox],.section .field input[type=radio] {
    width: var(--tf-input-size);
    height: var(--tf-input-size);
    padding: inherit;
    margin: 0;
    display: inline-block;
    vertical-align: top;
    border-radius: calc(var(--tf-input-border-radius)/2);
    border-width: var(--tf-input-border-width);
    cursor: pointer;
    background-position: 50%
}

.section .field input[type=checkbox]:focus:not(:checked),.section .field input[type=radio]:focus:not(:checked) {
    border: var(--tf-input-border-width) solid var(--tf-input-focus-border-color);
    outline: 0
}

.section .field input[type=checkbox]:hover,.section .field input[type=radio]:hover {
    border: var(--tf-input-border-width) solid var(--tf-input-focus-border-color)
}

.section .field input[type=checkbox]:checked,.section .field input[type=file]:focus,.section .field input[type=file]:hover,.section .field input[type=radio]:checked {
    border-color: var(--tf-input-focus-border-color)
}

.section .field input[type=checkbox]+label,.section .field input[type=radio]+label {
    display: inline-block;
    margin-bottom: 0;
    padding-left: calc(var(--tf-input-size)/2.5);
    font-weight: 400;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    max-width: calc(100% - var(--tf-input-size)*2);
    line-height: normal
}

.section .field input[type=checkbox]:checked {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23FFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") 50%/85% no-repeat;
    background-color: var(--tf-input-focus-border-color)
}

.section .field input[type=radio] {
    border-radius: 100%
}

.section .field input[type=radio]:checked {
    background-color: var(--tf-input-focus-border-color);
    box-shadow: inset 0 0 0 3px #fff
}

.section .field input[type=checkbox].switch {
    width: var(--switch-width);
    height: var(--switch-height);
    border-radius: var(--switch-height);
    position: relative
}

.section .field input[type=checkbox].switch:after {
    background: var(--tf-input-border-color);
    border-radius: var(--switch-orb-size);
    height: var(--switch-orb-size);
    left: var(--switch-orb-offset);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: var(--switch-orb-size);
    content: "";
    transition: .2s cubic-bezier(.175, .885, .32, 1.275)
}

.section .field input[type=checkbox].switch+label {
    margin-top: calc(var(--switch-height)/8)
}

.section .field input[type=checkbox].switch:checked {
    background: 0 0;
    background-color: var(--tf-input-focus-border-color)
}

.section .field input[type=checkbox].switch:checked:after {
    -webkit-transform: translateY(-50%) translateX(calc(var(--switch-width)/ 2 - var(--switch-orb-offset)));
    transform: translateY(-50%) translateX(calc(var(--switch-width)/ 2 - var(--switch-orb-offset)));
    background: #fff
}

.section .field input[type=file] {
    background: rgba(0,0,0,.025);
    padding: var(--tf-input-size);
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-radius: var(--tf-input-border-radius);
    border: 2px dashed var(--tf-input-border-color);
    outline: 0;
    cursor: pointer
}

.section .field input[type=file]::file-selector-button {
    background: var(--tf-input-focus-border-color);
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: .5rem;
    border-radius: var(--tf-input-border-radius);
    color: #fff;
    margin-right: 1rem;
    outline: 0;
    cursor: pointer
}

.section .field input[type=file]::-webkit-file-upload-button {
    background: var(--tf-input-focus-border-color);
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    padding: .5rem;
    border-radius: var(--tf-input-border-radius);
    color: #fff;
    margin-right: 1rem;
    outline: 0;
    cursor: pointer
}

.section .field select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
}

.section .field textarea {
    resize: none
}

.section .field button,.section .field input[type=submit] {
    display: inline-flex;
    align-items: center;
    background: 0 0;
    color: #24292e;
    outline: 0;
    border: 2px solid;
    border-radius: var(--tf-input-border-radius);
    padding: .5em 1em;
    text-decoration: none;
    transition: background .2s ease-out
}

.section .field button.surround,.section .field input[type=submit].surround {
    background: #24292e;
    color: #fff;
    border: transparent
}

.section .form_wrapper .field button,.section .form_wrapper .field input[type=submit],.section .popup_form .field button,.section .popup_form .field input[type=submit] {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.15em;
    font-weight: 400
}

.section .form_wrapp .field .field_input_checkbox,.section .form_wrapp .field .field_input_radio>div,.section .form_wrapper .field .field_input_checkbox,.section .form_wrapper .field .field_input_radio>div,.section .popup_form .field .field_input_checkbox,.section .popup_form .field .field_input_radio>div {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: .5rem
}

.section .form_wrapp .field .field_input_checkbox input,.section .form_wrapp .field .field_input_radio input,.section .form_wrapper .field .field_input_checkbox input,.section .form_wrapper .field .field_input_radio input,.section .popup_form .field .field_input_checkbox input,.section .popup_form .field .field_input_radio input {
    margin-right: .65rem
}

.section .section_inner:not(.all_border) .form_wrapp .field input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=submit]),.section .section_inner:not(.all_border) .form_wrapp .field select,.section .section_inner:not(.all_border) .form_wrapper .field input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=submit]),.section .section_inner:not(.all_border) .form_wrapper .field select,.section .section_inner:not(.all_border) .popup_form .field input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=submit]),.section .section_inner:not(.all_border) .popup_form .field select {
    border-top: none;
    border-left: none;
    border-right: none;
    background-color: transparent;
    border-radius: 0;
    --icon-background-offset: 0
}

.section .section_inner:not(.all_border) .form_wrapp .field input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=submit]):not(.icon-left),.section .section_inner:not(.all_border) .form_wrapp .field select,.section .section_inner:not(.all_border) .form_wrapper .field input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=submit]):not(.icon-left),.section .section_inner:not(.all_border) .form_wrapper .field select,.section .section_inner:not(.all_border) .popup_form .field input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=submit]):not(.icon-left),.section .section_inner:not(.all_border) .popup_form .field select {
    padding-left: 0
}

.section .section_inner:not(.all_border) .form_wrapp .field input.icon-left,.section .section_inner:not(.all_border) .form_wrapper .field input.icon-left,.section .section_inner:not(.all_border) .popup_form .field input.icon-left {
    padding-left: 1.5rem
}

.section .section_inner:not(.all_border) .form_wrapp .field textarea,.section .section_inner:not(.all_border) .form_wrapper .field textarea,.section .section_inner:not(.all_border) .popup_form .field textarea {
    --tf-input-border-radius: 0
}

.section .section_inner:not(.all_border) .form_wrapp .field input[type=file],.section .section_inner:not(.all_border) .form_wrapper .field input[type=file],.section .section_inner:not(.all_border) .popup_form .field input[type=file] {
    border: none
}
