/*
Theme Name: Hello Elementor Child
Theme URI: https://localproconnect.net/
Template: hello-elementor
Author: A.Y.
Author URI: https://localproconnect.net/
Version: 1.0.0.1689172301
Updated: 2023-07-12 16:31:41

*/


/*.site-footer {*/
/*    height: auto;*/
/*position: absolute;*/
/*bottom: 0;*/
/*    width: 100%;*/
/*    background-color: #808080;*/
/*position: relative;*/
/*margin-top: 100px;*/
/*clear: both;*/
/*}*/

#header-logo {
    width: 40%;
    height: 30%;
}

#footer-logo {
    width: 20%;
    height: 30%;
    display: block;
}

.gt_switcher {
    position: relative;
    top: 25%;
}

.second-header {
    background-color: #f8f9fa;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    overflow: auto;
}

#content {
    flex: 1;
}

footer { /* .site-footer */
    background-color: #808080;
    text-align: center;
    padding: 10px;
}

/* Sticky footer positioning */
body > footer {
    margin-top: auto;
}


/*Add this CSS for mobile responsiveness */
@media screen and (max-width: 768px) {
    .header-item {
        display: none;
    }

    .show-items .header-item {
        display: block;
    }
}

.lpcDropdown {
    max-height: 250px; /* Adjust the max height as needed */
    overflow-y: scroll;
}


.category-box {
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

.category-box a {
    display: block;
    color: #333;
    text-decoration: none;
    transition: color 0.3s; /* Add color transition */
}

.category-box a:hover,
.list-group-item:hover a { /* Separate style for link inside list-group-item */
    color: #007bff; /* Change link color on hover to a contrasting color */
    text-decoration: none; /* Remove underline on hover */
}

.category-box a:focus,
.category-box a:active {
    outline: none; /* Remove focus and active state outline */
}

/* Style list group items */
.list-group-item {
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s; /* Add background-color transition */
}

.list-group-item:hover {
    background-color: #e5e5e5; /* Light grey background on hover */
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

/* Styles for mobile devices */
@media only screen and (max-width: 767px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    #header-logo, #footer-logo {
        width: 100%; /* Adjust the width as needed */
        height: auto; /* Allow the height to adjust automatically */
    }
}

.lpc-link {
    /*color: #007bff; !* Blue color for links *!*/
    color: black;
    text-decoration: none; /* Remove underline from links */
}

.lpc-link:hover {
    color: black;
    text-decoration: underline; /* Add underline on hover */
}

/* Dont show the TinyMCE warnings and branding */
body > div.tox.tox-silver-sink.tox-tinymce-aux,
#post-service-form > section:nth-child(3) > div:nth-child(4) > div > div.tox-editor-container > div.tox-statusbar > div.tox-statusbar__text-container > span,
#post-service-form > section:nth-child(3) > div:nth-child(4) > div > div.tox-editor-container > div.tox-statusbar > div.tox-statusbar__text-container > div > div {
    display: none;
}

/* Add a black border around the TinyMCE editor */
.tox-tinymce {
    border: 1px solid #000000 !important;
    border-radius: 4px !important;
}

/* Add the custom styles for the selected block */
.selected-block {
    background-color: #ADD8E6;
    padding: 32px !important; /* Increase the padding to make the blocks larger */
}

#postServiceServiceAdvertisingListItems {
    text-align: left;
}

.photo-container {
    height: 150px;
    width: 150px;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uploaded-image {
    max-width: 100%;
    max-height: 100%;
}

#error-messages {
    color: red;
}

/* Remove the notification bar of woocommerce (currency notification) */
.woocommerce-store-notice {
    display: none;
}

.lpc-block-link {
    /*color: #007bff; !* Blue color for links *!*/
    color: black;
    text-decoration: none; /* Remove underline from links */
    border-width: 2px !important;
}

.lpc-block-link:hover {
    color: black;
    text-decoration: none; /* Add underline on hover */
}

/* Define the color for the focused/active state */
button:focus,
button:active,
button:hover {
    background-color: #3498db !important; /* Blue shade */
    color: #ffffff !important; /* Text color for better visibility */
}


/* Style for the space between header and second header */
.header-space {
    background-color: #f8f9fa; /* Set the background color to match the second header's background */
    height: 20px; /* Adjust the height as needed */
}

#postServiceServiceAdsBlock {
    height: 350px; /* Adjust the height as needed */
}


/* Style for account dashboard */
.woocommerce-MyAccount-content {
    font-family: Arial, sans-serif;
}

.woocommerce-MyAccount-navigation {
    display: flex;
    flex-direction: column;
    background-color: #f7f7f7;
    padding: 20px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s; /* Add a smooth transition effect on background color change */
}

/* Apply styles on hover */
.woocommerce-MyAccount-navigation li:hover {
    background-color: #e0e0e0; /* Change the background color on hover */
}

.woocommerce-MyAccount-navigation a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    margin-left: 10px;
}

/* Style for account details */
.woocommerce-MyAccount-content .woocommerce-MyAccount-content-wrapper {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Style for the "Account verwijderen" link to match WooCommerce links */
.delete-account-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    margin-left: 10px;
}

/* Apply styles for the hover effect */
.delete-account-link:hover {
    color: #ff5722; /* Change the text color when hovering */
    text-decoration: underline; /* Underline the link on hover */
    transition: color 0.3s, text-decoration 0.3s; /* Smooth transition effect */
}


/* PART 1 - Before Lazy Load */
img[data-lazyloaded] {
    opacity: 0;
}

/* PART 2 - Upon Lazy Load */
img.litespeed-loaded {
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
}

.woocommerce-store-notice__dismiss-link {
    display: none !important;
}

@font-face {
    font-family: 'Pacifico';
    font-style: normal;
    font-weight: 400;
    src: local('Pacifico Regular'), local('Pacifico-Regular'),
    url(https://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2) format('woff2');
    font-display: swap;
}
