
/*
** LOGO */
.btch_content-logo a{
    line-height: 1;
}
.btch_content-logo img{
    width: var(--width-logo-pt);
}

/*
** SEARCH */
.btch_header .header-left .search-item{
    display: flex;
    align-items: center; 
    position: relative;
}
.btch_header .header-left .search-item input[type="search"]{
    width: 300px;
    height: 30px;
    border: none;
    border-bottom: 2px solid var(--blue);
    background-color: transparent;
}
.btch_header .header-left .search-item .search-icon{
    position: absolute;
    right: 5px;
    color: var(--blue);
    font-size: 20px;
}

/*
** SOCIALS */
.btch_nav-socials ul.menu{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: var(--gap-social-menu);
}
.btch_nav-socials ul.menu li.nav-socials_item{
    list-style: none;
    margin: 0;
    padding: 0;
}
.btch_nav-socials ul.menu li.nav-socials_item img{
    width: var(--icon-footer-width);
    height: var(--icon-footer-height);
    margin: 0;
    padding: 0;
}
.btch_nav-socials ul.menu li.nav-socials_item .icon{
    color: var(--icon-color-social-menu);
    font-size: var(--icon-size-social-menu);
}

/*
** COPY */
.copy{	
    text-align: left;
}
.copy, .copy a{	
    font: var(--primary-text);
    font-weight: 300;
    color: var(--grey-dark);
    text-decoration: none;
    font-size: 1rem;
    margin: 0 0 1rem 0;
}
.copy-mobile{
    display: none;
}

/*
** POPUP SHARE */
.wrapper_popup-share{
    position: fixed;
    right: 10px;
    top: 40%;
    z-index: 9;
}
.wrapper_popup-share .popup-share_inner{
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}
.wrapper_popup-share .popup-share_inner img{
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/*
** POPUP btch
*  mega menu, policies, join our study
*/

.wrapper-popup-btch{
    display: none;
    position: fixed;
    width: auto;
    z-index: 9999;
}
.inner-popup-btch{
    position: relative;
}
.wrapper-popup-btch .top-popup{
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 5rem 1rem 2rem;
}
.wrapper-popup-btch .top-popup > h3{
    font-family: Open Sans, sans-serif;
    font-weight: 700;
    color: var(--dark-sea-green);
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0;
    font-size: 1rem;
    text-align: center;
}
.wrapper-popup-btch .content-popup-btch{
    background-color: rgba(239, 241, 245, .95);
    margin-top: 5px;
    padding: 1rem 1rem;
}
.wrapper-popup-btch .content-popup-btch .inner-content *{
    font-family: Open Sans, sans-serif;
    color: var(--blue);
    font-size: 1rem;
}

/*btn close mega menu*/
.close-mega-menu,
.close-popup-btch{
    position: absolute;
    display: inline-block;
    width: 35px;
    height: 35px;
    top: 7px;
    right: 10px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
}
.close-mega-menu .fas.fa-times,
.close-popup-btch .fas.fa-times{
    color: var(--blue);
}

.content-mega-menu{
    background-color: rgba(239, 241, 245, .95);
    margin-top: 5px;
    padding: 1.5rem 2rem;
}

@media only screen and (max-width: 960px) {

    /*
    ** LOGO */
    .btch_content-logo img{
        width: 220px;
    }

    /*
    ** SEARCH */
    .btch_header .header-left .search-item input[type="search"]{
        width: 280px;
        border-bottom: 2px solid var(--blue);
    }

    /*
    ** SOCIALS */
    .btch_nav-socials ul.menu li.nav-socials_item img{
        width: 30px;
        height: 30px;
    }

    /*
    ** COPY */
    .copy, .copy a{
        font-size: .8rem;
    }

    /*
    ** POPUP SHARE */
    .wrapper_popup-share .popup-share_inner img{
        width: 35px;
        height: 35px;
    }
}

@media only screen and (max-width: 575px) {

    /*
    ** LOGO */
    .btch_content-logo img{
        width: 90px;
    }

    /*
    ** SEARCH */
    .btch_header .header-left .search-item input[type="search"]{
        width: 100%;
        border-bottom: 1px solid var(--blue);
    }

    /*
    ** SOCIALS */
    .btch_nav-socials ul.menu{
        flex-direction: row;
        gap: 20px;
    } 

    /*
    ** COPY */
    .copy{
        display: none;
    }
    .copy-mobile{
        display: block;
        text-align: center;
    }
    .copy-mobile, .copy-mobile a{
        font-size: .7rem;
    }

    /*
    ** POPUP SHARE */
    .wrapper_popup-share .popup-share_inner img{
        width: 30px;
        height: 30px;
    }
}