/**
* Theme Name: Workreap Child
* Description: This is a child theme of Workreap.
* Author: <a href="https://themeforest.net/user/amentotech/portfolio">Amentotech</a>
* Template: workreap
* Version: 3.1.7
*/

/* ==========================================
   CLICK2TASK ACF 2 COLUMN LAYOUT
========================================== */

.acf-fields.acf-form-fields.-top{
    display:flex !important;
    flex-wrap:wrap !important;
    gap:20px !important;
}

/* Two columns */
.acf-fields.acf-form-fields.-top > .acf-field{
    flex:0 0 calc(50% - 10px) !important;
    max-width:calc(50% - 10px) !important;
    box-sizing:border-box !important;
    margin:0 !important;
    clear:none !important;
}

/* Hidden field */
.acf-field--validate-email{
    display:none !important;
}

/* Mobile */
@media(max-width:768px){

    .acf-fields.acf-form-fields.-top > .acf-field{
        flex:0 0 100% !important;
        max-width:100% !important;
    }

}
.acf-field .select2-container {
    width:100% !important;
}

.acf-field .select2-selection--multiple {
    min-height:50px !important;
    border-radius:8px !important;
    border:1px solid #ddd !important;
    padding:6px !important;
}

.acf-field .select2-selection__choice {
    background:#0d6efd !important;
    color:#fff !important;
    border:none !important;
    border-radius:4px !important;
    padding:3px 8px !important;
}

.acf-field input[type="text"],
.acf-field input[type="url"],
.acf-field input[type="number"] {
    height:48px !important;
    border-radius:8px !important;
}