/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.contactmobile {
    display: none !important;
}

@media screen and (max-width: 992px) {
    .contactmobile {
        display: block !important;
        margin: 0 auto;
        text-align: center;
    }
	.contactdesktop {
        display: none !important;
    }
}

/* Το container που περιέχει τη λίστα */
.why-choose-faq {
    position: relative;
    padding-left: 35px; /* Χώρος για τη γραμμή και τα bullets */
    display: flex;
    flex-direction: column;
    gap: 40px; /* Απόσταση μεταξύ των στοιχείων */
    border: none !important;
}

/* Η κάθετη γραμμή */
.why-choose-faq::before {
    content: '';
    position: absolute;
    left: 10px; 
    top: 5px;
    bottom: 5px;
    width: 1px;
    background-color: #d1d1d1; /* Χρώμα γραμμής */
    z-index: 1;
}

/* Το στυλ των buttons */
.why-choose-faq .accord {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* Το bullet (κυκλάκι) */
.why-choose-faq .accord::before {
    content: '';
    position: absolute;
    left: -31px; /* Ευθυγράμμιση πάνω στη γραμμή */
    width: 14px;
    height: 14px;
    background-color: #fff;
    border: 2px solid #b5b5b5;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Το κείμενο μέσα στο link */
.why-choose-faq .accord a {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 17px;
    color: #444;
    text-decoration: none !important;
    line-height: 1.2;
    transition: all 0.3s ease;
}

/* --- ΕΝΕΡΓΟ ΣΤΟΙΧΕΙΟ (Active) --- */

/* Το μπλε κυκλάκι με το εσωτερικό dot */
.why-choose-faq .accord.active::before {
    border-color: #0099ff !important;
    background-color: #fff;
    /* Δημιουργία του εσωτερικού μπλε κύκλου */
    box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 10px #0099ff; 
}

/* Το κείμενο του ενεργού */
.why-choose-faq .accord.active a {
    color: #0099ff !important;
    font-weight: 700 !important;
}

/* Hover εφέ */
.why-choose-faq .accord:hover a {
    color: #0099ff !important;
}

.why-choose-faq .accord:hover::before {
    border-color: #0099ff !important;
}