/* ==========================================================
   FORMS
========================================================== */

label,
.woocommerce-checkout label {
    display: block;
    margin-bottom: 18px !important;
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select,
.select2-selection,
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-selection {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px !important;
    font-size: 15px;
    color: #111 !important;
    background: #fff !important;
    border: 1px solid #D8D2CC !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #999 !important;
}

input:focus,
textarea:focus,
select:focus,
.select2-selection:focus {
    border-color: #C46B1A !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(196, 107, 26, .12) !important;
}

.form-row,
.woocommerce-checkout .form-row {
    margin-bottom: 18px;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    width: 48%;
}

/* Checkboxes */

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    accent-color: #C46B1A;
}

.woocommerce-form__label-for-checkbox {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 0 !important;
}

/* Select2 */

.select2-container {
    width: 100% !important;
}

.select2-selection__rendered {
    line-height: 24px !important;
}

.select2-selection__arrow {
    height: 48px !important;
}

/* ==========================================================
   TABLETTE
========================================================== */

@media (max-width: 1024px) {

    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        width: 48%;
    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        width: 100%;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    textarea,
    select,
    .select2-selection,
    .woocommerce-checkout input.input-text,
    .woocommerce-checkout textarea,
    .woocommerce-checkout select,
    .woocommerce-checkout .select2-selection {
        min-height: 46px;
    }

}