


@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700');

.topMenu{
    background:#0351AA;
}
/* MENU */

#cssmenu{
    width:100%;
    margin:0;
    padding:0;
    font-family:'Lato',Arial,sans-serif;
}

#cssmenu > ul{
    display:flex;
    justify-content:center;
    align-items:stretch;
    flex-wrap:nowrap;
    gap:4px;

    margin:0;
    padding:4px;

    list-style:none;

    background:#0351A8;
    border-radius:8px;

    box-shadow:0 2px 8px rgba(0,0,0,.15);
}

/* TOP MENU ITEMS */

#cssmenu > ul > li{
    position:relative;
    text-align:center;

    /* παρόμοιο πλάτος χωρίς να είναι όλα ίδια */
    flex:1 1 120px;
}
/* MENU */

#cssmenu{
    width:100%;
    margin:0;
    padding:0;
    font-family:'Lato',Arial,sans-serif;
}

#cssmenu > ul{
    display:flex;
    justify-content:center;
    align-items:stretch;
    flex-wrap:nowrap;

    margin:0;
    padding:4px;

    list-style:none;

    background:#0351A8;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
}

/* TOP MENU ITEMS */

#cssmenu > ul > li{
    position:relative;
    text-align:center;

    flex:1 1 0;
    min-width:0;
}

#cssmenu > ul > li > a{
    display:flex;
    align-items:center;
    justify-content:center;

    min-height:62px;

    /* ίδιο padding σε όλες τις επιλογές */
    padding:8px 12px;

    color:#fff;
    text-decoration:none;

    font-size:13px;
    font-weight:400;
    line-height:1.25;
    text-align:center;

    white-space:normal;
    word-break:normal;

    border-radius:6px;
    transition:all .2s ease;
}

/* TOP HOVER */

#cssmenu > ul > li:hover > a{
    background:#4F7FB7;
}

/* ACTIVE ΓΟΝΙΚΗ ΚΑΤΗΓΟΡΙΑ */

#cssmenu > ul > li.active > a{
    background:#4F7FB7;
    color:#FFF;
    font-weight:700;
}

/* DROPDOWN */

#cssmenu ul li ul.dropdown{
    display:none;

    position:absolute;
    top:100%;
    left:0;

    min-width:320px;

    margin:0;
    padding:0;

    list-style:none;

    background:#3B82D6;
    border:1px solid rgba(255,255,255,.15);
    border-radius:0 0 8px 8px;

    box-shadow:0 8px 20px rgba(0,0,0,.18);

    z-index:9999;
}

#cssmenu ul li:hover ul.dropdown{
    display:block;
}

#cssmenu ul li ul.dropdown li{
    display:block;
    text-align:left;
}

#cssmenu ul li ul.dropdown li a{
    display:block;
    padding:10px 14px;

    color:#fff;
    text-decoration:none;

    font-size:13px;
    line-height:1.4;

    white-space:normal;
}

/* DROPDOWN HOVER */

#cssmenu ul li ul.dropdown li a:hover{
    background:#6BA3E5;
}

/* ACTIVE SUBMENU */

#cssmenu ul.dropdown li.active > a{
    background:#FF8C00;
    color:#FFF;
    font-weight:700;
}

/* ΔΕΞΙΑ ΣΤΟΙΧΙΣΗ ΤΕΛΕΥΤΑΙΩΝ SUBMENU */

#cssmenu > ul > li:last-child ul.dropdown,
#cssmenu > ul > li:nth-last-child(2) ul.dropdown{
    left:auto;
    right:0;
}

/* RESPONSIVE */

@media (max-width:1200px){

    #cssmenu > ul > li > a{
        font-size:12px;
        padding:8px 8px;
    }
}

@media (max-width:992px){

    #cssmenu > ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    #cssmenu > ul > li{
        flex:1 1 220px;
    }

    #cssmenu > ul > li > a{
        min-height:48px;
    }
}
#cssmenu > ul > li > a{
    display:flex;
    align-items:center;
    justify-content:center;

    min-height:62px;
    padding:8px 10px;

    color:#fff;
    text-decoration:none;

    font-size:13px;
    font-weight:400;
    line-height:1.25;
    text-align:center;

    border-radius:6px;

    transition:all .2s ease;
}

/* TOP HOVER */

#cssmenu > ul > li:hover > a{
    background:#4F7FB7;
}

/* ACTIVE PARENT CATEGORY */

#cssmenu > ul > li.active > a{
    background:#4F7FB7;
    color:#FFF;
    font-weight:700;
}

/* DROPDOWN */

#cssmenu ul li ul.dropdown{
    display:none;

    position:absolute;
    top:100%;
    left:0;

    min-width:320px;

    margin:0;
    padding:0;

    list-style:none;

    background:#3B82D6;
    border:1px solid rgba(255,255,255,.15);
    border-radius:0 0 8px 8px;

    box-shadow:0 8px 20px rgba(0,0,0,.18);

    z-index:9999;
}

#cssmenu ul li:hover ul.dropdown{
    display:block;
}

#cssmenu ul li ul.dropdown li{
    display:block;
    text-align:left;
}

#cssmenu ul li ul.dropdown li a{
    display:block;

    padding:10px 14px;

    color:#fff;
    text-decoration:none;

    font-size:13px;
    line-height:1.4;

    white-space:normal;
}

/* DROPDOWN HOVER */

#cssmenu ul li ul.dropdown li a:hover{
    background:#6BA3E5;
}

/* CURRENT SUBMENU PAGE */

#cssmenu ul.dropdown li.active > a{
    background:#FF8C00;
    color:#FFF;
    font-weight:700;
}

/* RIGHT ALIGN FOR LAST MENUS */

#cssmenu > ul > li:last-child ul.dropdown,
#cssmenu > ul > li:nth-last-child(2) ul.dropdown{
    left:auto;
    right:0;
}

/* RESPONSIVE */

@media (max-width:1200px){

    #cssmenu > ul{
        gap:2px;
    }

    #cssmenu > ul > li{
        flex:1 1 100px;
    }

    #cssmenu > ul > li > a{
        font-size:12px;
        padding:8px 6px;
    }
}

@media (max-width:992px){

    #cssmenu > ul{
        flex-wrap:wrap;
    }

    #cssmenu > ul > li{
        flex:1 1 180px;
    }
}

#leftPanel{
    background:#f4f8fd;
    border:1px solid #d8e6f5;
    border-radius:12px;
    padding:10px !important;
    box-shadow:0 4px 14px rgba(0,0,0,.08);
}

#leftPanel table{
    background:#ffffff;
    border:1px solid #dce8f6;
    border-radius:10px;
    margin:0 auto 12px auto !important;
    padding:0;
    box-shadow:0 3px 10px rgba(0,0,0,.06);
    overflow:hidden;
}

#leftPanel td{
    box-sizing:border-box;
}

#leftPanel .areas{
    display:block;
    background:#0351A8;
    color:#ffffff;
    font-family:'Lato', Arial, sans-serif;
    font-size:14px;
    font-weight:700;
    line-height:1.25;
    padding:10px 8px !important;
    border-radius:10px 10px 0 0;
}

#leftPanel img{
    max-width:200px;
    height:auto;
    border-radius:8px;
    transition:all .2s ease;
}

#leftPanel a:hover img{
    transform:scale(1.03);
    opacity:.92;
}

#leftPanel .link{
    display:block;

    width:auto;
    max-width:100%;

    margin:6px 8px;
    padding:10px;

    background:#eef5ff;
    color:#0351AA;

    border-radius:7px;

    font-size:13px;
    line-height:1.35;

    text-align:left;

    white-space:normal;
    word-wrap:break-word;
    overflow-wrap:break-word;

    box-sizing:border-box;
}
#leftPanel .link:hover{
    background:#0351A8;
    color:#ffffff;
}

#leftPanel .button-71{
    background:#FF8C00;
    color:#ffffff;
    border:0;
    border-radius:8px;
    padding:10px 16px;
    font-family:'Lato', Arial, sans-serif;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 3px 8px rgba(0,0,0,.18);
    transition:all .2s ease;
}

#leftPanel .button-71:hover{
    background:#e67e00;
    transform:translateY(-1px);
}

#leftPanel table{
    table-layout:fixed;
}

#leftPanel td{
    overflow:hidden;
}

.bx-wrapper{
    margin-bottom:0 !important;
}

.bxslider{
    margin-bottom:0 !important;
}

#tableForCarrousel{
    border-bottom:0 !important;
    border-radius:10px 10px 0 0 !important;
}

/* CONTACT USERS PANEL */

#tableDownGraph.contactUsers{
    width:100%;
    background:#ffffff;
    border:1px solid #dce8f6;
    border-radius:12px;
    box-shadow:0 4px 14px rgba(0,0,0,.08);
    overflow:hidden;
    margin:12px auto;
}

#tableDownGraph .areas{
    display:block;
    background:#0351A8;
    color:#ffffff;
    font-size:15px;
    font-weight:700;
    padding:10px 12px;
    border-radius:12px 12px 0 0;
}

/* cards επικοινωνίας */

#tableDownGraph .changeBack{
    background:#f4f8fd;
    border:1px solid #d8e6f5;
    border-radius:10px;
    margin:6px;
    padding:8px;
    box-shadow:0 3px 10px rgba(0,0,0,.06);
    transition:all .2s ease;
}

#tableDownGraph .changeBack:hover{
    background:#eef5ff;
    transform:translateY(-2px);
    box-shadow:0 5px 14px rgba(0,0,0,.12);
}

#tableDownGraph a{
    text-decoration:none;
}

#tableDownGraph img{
    border:0;
    border-radius:50%;
    padding:6px;
    background:#ffffff;
    box-shadow:0 2px 8px rgba(0,0,0,.10);
}

#tableDownGraph .myLetter{
    color:#0351AA;
    font-size:13px;
    font-weight:700;
    line-height:1.25;
}


/* =======================================================
   FOOTER ENERGYTELIA
   ======================================================= */

.footerArea{
    background:#0b2f5b;
    color:#ffffff;
    border-top:4px solid #FF8C00;
    padding:25px 15px;
}

/* ΣΤΗΛΕΣ */

.downMenu{
    display:inline-block;
    vertical-align:top;
    width:260px;
    margin:0 10px 20px 10px;
    text-align:left;
}

/* ΤΙΤΛΟΙ */

.footerTitle{
    color:#ffffff;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;

    padding-bottom:8px;
    margin-bottom:12px;

    border-bottom:2px solid rgba(255,255,255,.15);

    letter-spacing:.4px;
}

/* MENU LINKS */

.vertical-menu{
    margin:0;
    padding:0;
}

.vertical-menu a{
    display:block;

    color:#d8e8ff;
    text-decoration:none;

    font-size:13px;
    line-height:1.4;

    padding:5px 0px;

    transition:all .2s ease;
}

.vertical-menu a:hover{
    color:#ffffff;
    padding-left:8px;
}

.vertical-menu a.active{
    color:#FF8C00;
    font-weight:700;
}

/* BOX ΚΑΛΕΣΤΕ ΜΕ */

.footerDivTable{
    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.10);

    border-radius:10px;

    padding:12px;

    margin-top:10px;
}

/* PHONE INPUT */

.phoneTxtHome{
    border:1px solid rgba(255,255,255,.20) !important;

    border-radius:6px;

    padding:8px;

    width:160px;

    background:#ffffff;
}

/* BUTTON */

.btnSameWidth{
    background:#FF8C00;
    color:#ffffff;

    border:none;

    border-radius:8px;

    padding:10px 16px;

    font-weight:700;

    cursor:pointer;

    transition:.2s;
}

.btnSameWidth:hover{
    background:#e77d00;
}

/* EMAIL */

.footerDivTable a{
    color:#6fd5ff;
    text-decoration:none;
}

.footerDivTable a:hover{
    color:#ffffff;
}

/* ICONS */

.phoneImage{
    border-radius:50%;
    background:#ffffff;
    padding:3px;
}

/* TABLE FOOTER */

.topMenu td{
    vertical-align:top;
}

/* MOBILE */

@media (max-width:1200px){

    .downMenu{
        width:100%;
        display:block;
        margin:0 0 25px 0;
    }

    .footerTitle{
        margin-top:10px;
    }
}


.activeDownMenu {
    background-color:#4F7FB7 !important;
    color:#FFF;
    font-weight:600;
border-radius:8px;
}


/* =====================================================
   ΚΑΤΗΓΟΡΙΕΣ ΣΥΝΔΕΣΜΩΝ
   ===================================================== */

div[id*="theCategoryDiv"]{
    display:inline-block !important;
    vertical-align:top;

    width:320px !important;

    background:#ffffff;

    border:1px solid #dce8f6;

    border-radius:10px;

    box-shadow:0 3px 10px rgba(0,0,0,.06);

    margin:8px;

    padding:0 0 10px 0;

    box-sizing:border-box;
}

/* ΤΙΤΛΟΣ */

.linkCategory{
    display:block;

    background:#0351A8;

    color:#ffffff;

    font-size:15px;
    font-weight:700;

    text-align:center;

    line-height:1.3;

    padding:12px 10px;

    border-radius:10px 10px 0 0;
}

/* LINKS */

div[id*="theCategoryDiv"] .link{
    display:flex;
    align-items:center;

    min-height:58px;

    margin:8px 10px;

    padding:10px 12px;

    background:#eef5ff;

    border:1px solid #d8e6f5;

    border-radius:8px;

    color:#0351AA !important;

    font-size:13px;
    font-weight:600;

    line-height:1.35;

    box-sizing:border-box;

    transition:all .2s ease;
width:97%;
}

/* HOVER */

div[id*="theCategoryDiv"] a:hover .link{
    background:#0351A8 !important;
    color:#ffffff !important;

    transform:translateX(4px);
}

/* LINKS */

div[id*="theCategoryDiv"] a{
    text-decoration:none;
}

/* ΟΛΕΣ ΙΔΙΟ ΥΨΟΣ */

#linksCategoriesContainer{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:stretch;
    gap:12px;
}

#linksCategoriesContainer > div[id*="theCategoryDiv"]{
    display:flex !important;
    flex-direction:column;

    width:300px !important;

    background:#fff;

    border:1px solid #dce8f6;
    border-radius:10px;

    box-shadow:0 3px 10px rgba(0,0,0,.06);
}

/* ΓΕΜΙΖΕΙ ΟΛΟ ΤΟ ΥΨΟΣ */

#linksCategoriesContainer > div[id*="theCategoryDiv"] .linksArea{
    flex:1;
}

/* =====================================================
   CONTACT FORM TABLE
   ===================================================== */

.fieldTable{
    width:90% !important;
    max-width:760px;
    margin:18px auto !important;

    background:#ffffff;

    border:1px solid #dce8f6;
    border-radius:14px;

    box-shadow:0 4px 16px rgba(0,0,0,.08);

    border-collapse:separate !important;
    border-spacing:0 8px !important;

    padding:14px;

    box-sizing:border-box;
}

/* SECTION TITLES */

.fieldTable .ContactMe{
    background:#0351A8;
    color:#ffffff ! important;

    font-size:15px;
    font-weight:700;

    padding:11px 14px !important;

    border-radius:9px;

    text-align:left !important;
}

/* LABELS */

.fieldTable td:first-child{
    color:#0351AA;
    font-size:14px;
    font-weight:700;

    padding:8px 12px !important;

    vertical-align:middle;
}

.fieldTable td:first-child font{
    color:#0351AA !important;
}

/* INPUT CELLS */

.fieldTable td{
    box-sizing:border-box;
}

/* TEXTBOXES / TEXTAREA */

.fieldTable .classText{
    width:100% !important;

    background:#f4f8fd;

    border:1px solid #cfdff2;
    border-radius:8px;

    padding:10px 12px;

    color:#1b1b1b;

    font-size:14px;

    box-sizing:border-box;

    outline:none;

    transition:all .2s ease;

    height: 40px;
}

.fieldTable .classText:focus{
    background:#ffffff;
    border-color:#0351A8;
    box-shadow:0 0 0 3px rgba(11,91,187,.12);
}

.fieldTable textarea.classText{
    min-height:120px;
    resize:vertical;

}

/* RADIO OPTIONS */

.fieldTable .modalTextOption{
    display:inline-block;

    background:#eef5ff;

    border:1px solid #d8e6f5;
    border-radius:10px;

    padding:10px 14px;

    color:#0351AA;

    font-size:14px;
    font-weight:700;
}

.fieldTable .modalTextOption input{
    margin:0 6px 0 14px;
}

.fieldTable .modalTextOption input:first-child{
    margin-left:0;
}

/* CAPTCHA */

.fieldTable .g-recaptcha{
    display:inline-block;
    margin:8px auto;
}

/* SUBMIT BUTTON */

.fieldTable .btn,
#contactBtn{
    background:#FF8C00 !important;
    color:#ffffff !important;

    border:0 !important;
    border-radius:8px;

    padding:10px 18px;

    font-size:14px;
    font-weight:700;

    cursor:pointer;

    box-shadow:0 3px 10px rgba(0,0,0,.16);

    transition:all .2s ease;
}

.fieldTable .btn:hover,
#contactBtn:hover{
    background:#e67e00 !important;
    transform:translateY(-1px);
}

/* MOBILE */

@media (max-width:700px){

.vertical-menu a{
    padding:5px 0px 5px 10px;
}

    .fieldTable{
        width:96% !important;
        padding:10px;
    }

    .fieldTable tr,
    .fieldTable td{
        display:block;
        width:100% !important;
        text-align:left !important;
    }

    .fieldTable td:nth-child(2){
        text-align:left !important;
    }

    .fieldTable .ContactMe{
        text-align:center !important;
    }

    .fieldTable .g-recaptcha{
        transform:scale(.90);
        transform-origin:left top;
    }
}

.fieldTable tr:last-child td{
    text-align:center !important;
}

#contactBtn{
    display:block !important;
    margin:0 auto !important;
}

input[type="radio"]{
    margin-right:8px;
    margin-left:18px;
    transform:scale(1.1);
    cursor:pointer;
}

input[type="radio"]:first-child{
    margin-left:0;
}


/* FAQ HEADER */

.auto-style3{
    background:#0351A8;

    color:#ffffff;

    border-radius:10px;

    padding:0;

    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.auto-style3 .areas{
    display:block;

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    letter-spacing:.3px;

    padding:12px 15px;

    text-align:center;
}

table:has(.auto-style3){
    background:#ffffff;

    border:1px solid #dce8f6;

    border-radius:12px;

    box-shadow:0 4px 14px rgba(0,0,0,.08);

    overflow:hidden;
}

.faqHeaderTable{
    background:#ffffff;
    border:1px solid #dce8f6;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 14px rgba(0,0,0,.08);
}

/* FAQ CATEGORY BOXES */

.tableLog{
    width:120px !important;
    height:150px !important;

    background:#ffffff !important;

    border:1px solid #dce8f6 !important;
    border-radius:10px !important;

    box-shadow:0 3px 10px rgba(0,0,0,.07);

    padding:8px !important;

    transition:all .2s ease;
}

.tableLog:hover{
    background:#eef5ff !important;
    border-color:#0351A8 !important;
    transform:translateY(-2px);
    box-shadow:0 5px 14px rgba(0,0,0,.12);
}

.tableLog img{
    width:36px !important;
    height:36px !important;

    border-radius:50%;
    background:#ffffff;
    padding:6px;

    box-shadow:0 2px 8px rgba(0,0,0,.10);
}

.logoFaqTitle{
    color:#0351AA !important;

    font-size:12px;
    font-weight:700;

    line-height:1.25;

    text-align:center;

    padding:6px;

    border-radius:7px;

    word-wrap:break-word;
    overflow-wrap:break-word;
}

/* SELECTED FAQ CATEGORY */

.tableLog[style*="background-color:#8C9DA4"]{
    background:#4F7FB7 !important;
    border-color:#4F7FB7 !important;
}

.tableLog[style*="background-color:#8C9DA4"] .logoFaqTitle{
    background:transparent !important;
    color:#ffffff !important;
}


/* =========================================
   PARTNER INFO TABLE
   ========================================= */

.partnerInfoTable{
    background:#ffffff;

    border:1px solid #dce8f6;

    border-radius:10px;

    box-shadow:0 3px 10px rgba(0,0,0,.06);

    margin:10px auto;

    border-collapse:separate;

    overflow:hidden;
min-width:70%;
}

.partnerInfoTable td{
    padding:10px 14px;

    border-bottom:1px solid #eef3fa;

    vertical-align:top;

    color:#333333;
}

.partnerInfoTable tr:last-child td{
    border-bottom:none;
}

/* ΑΡΙΣΤΕΡΗ ΣΤΗΛΗ */

.partnerInfoTable td:first-child{
    width:240px;

    background:#f7faff;

    color:#0351AA;

    font-weight:700;

    border-left:4px solid #FF8C00;
}

/* ΔΕΞΙΑ ΣΤΗΛΗ */

.partnerInfoTable td:last-child{
    color:#333333;
}

/* ΤΙΜΕΣ */

.partnerInfoTable span{
    color:#222222;
    font-weight:500;
font-size:16px;
}


@media (max-width: 600px){

    .partnerInfoTable{
        width:100%;
        margin:10px 0;
    }

    .partnerInfoTable tr{
        display:block;
    }

 .partnerInfoTable tr{
        margin-bottom:8px;
        border-bottom:1px solid #eef3fa;
    }

    .partnerInfoTable td{
        display:block;
        width:100%;
        box-sizing:border-box;
    }

    .partnerInfoTable td:first-child{
        width:100%;
        font-size:16px;
        border-left:4px solid #FF8C00;
        border-bottom:none;
    }

    .partnerInfoTable td:last-child{
        font-size:18px;
        padding-top:6px;
    }

    .partnerInfoTable span{
        font-size:18px;
        line-height:1.45;
    }
}


/* ==========================================
   CALL ME DIALOG
   ========================================== */

#dialogCallMe{
    background:#f7faff;
    padding:15px;
}

/* MAIN TABLE */

#dialogCallMe table{
    width:100% !important;
    max-width:500px;

    background:#ffffff;

    border:1px solid #dce8f6;

    border-radius:12px;

    padding:15px;

    box-shadow:0 4px 12px rgba(0,0,0,.08);

    border-collapse:separate;
    border-spacing:0;
}

/* LABELS */

#dialogCallMe td:first-child{
    width:120px;

    color:#0351AA;

    font-weight:600;

    padding:8px 10px;

    vertical-align:middle;
}

/* FIELDS */

#dialogCallMe td:last-child{
    padding:8px 10px;
}

/* INPUTS */

#dialogCallMe .classText{
    width:100% !important;
    max-width:320px;

    padding:10px 12px;

    border:1px solid #cdddf2;

    border-radius:8px;

    background:#fafcff;

    box-sizing:border-box;

    transition:all .2s ease;
}

#dialogCallMe .classText:focus{
    outline:none;

    border-color:#4F7FB7;

    box-shadow:0 0 6px rgba(79,127,183,.25);

    background:#ffffff;
}

/* CAPTCHA HEADER */

#dialogCallMe .auto-style1{
    background:#f7faff;

    color:#0351AA;

    font-weight:700;

    padding:12px !important;

    border-left:4px solid #FF8C00;

    border-radius:8px;
}

/* CAPTCHA AREA */

#dialogCallMe .g-recaptcha{
    margin:10px auto;
    display:inline-block;
}

/* BUTTON */

#callMeDlgBtn{
 


    background:#FF8C00 !important;
    color:#ffffff !important;

    border:0 !important;
    border-radius:8px;

    padding:10px 18px;

    font-size:14px;
    font-weight:700;

    cursor:pointer;

    box-shadow:0 3px 10px rgba(0,0,0,.16);

    transition:all .2s ease;
}


#callMeDlgBtn:hover{
    background:#e67e00 !important;
    transform:translateY(-1px);
}


/* SPACING */

#dialogCallMe tr{
    height:42px;
}

/* RESPONSIVE */

@media(max-width:600px){

    #dialogCallMe table{
        max-width:100%;
    }

    #dialogCallMe td:first-child{
        width:100px;
    }

    #dialogCallMe .classText{
        max-width:100%;
    }

    #callMeDlgBtn{
        width:100% !important;
        max-width:250px;
    }
}

.ui-dialog{
    border-radius:14px !important;
    overflow:hidden !important;
    box-shadow:0 8px 25px rgba(0,0,0,.18) !important;
}

.ui-dialog-titlebar{
    background:#0351AA !important;
    color:#ffffff !important;
    border:none !important;
}

.ui-dialog-title{
    font-weight:600 !important;
}

.ui-dialog-content{
    padding:15px !important;
    background:#f7faff !important;
}


/* CONTACT CATEGORY CARDS */

#ContentPlaceHolder1_alternative .changeBack{
    display:inline-block !important;
    width:170px !important;
    min-height:170px;

    background:#ffffff;

    border:1px solid #dce8f6;
    border-radius:12px;

    margin:8px;
    padding:12px 8px;

    box-shadow:0 3px 10px rgba(0,0,0,.07);

    box-sizing:border-box;

    transition:all .2s ease;
}

#ContentPlaceHolder1_alternative .changeBack:hover{
    background:#eef5ff;
    border-color:#0351A8;
    transform:translateY(-3px);
    box-shadow:0 6px 16px rgba(0,0,0,.13);
}

#ContentPlaceHolder1_alternative .changeBack img{
    width:78px !important;
    height:78px !important;

    border-radius:50%;
    background:#ffffff;

    padding:7px;

    box-shadow:0 2px 8px rgba(0,0,0,.12);
}

#ContentPlaceHolder1_alternative .changeBack .myLetter{
    color:#0351AA;

    font-size:13px;
    font-weight:700;

    line-height:1.3;

    text-align:center;
}

#ContentPlaceHolder1_alternative .changeBack:hover .myLetter{
    color:#0351A8;
}

/* link wrapper */

a:has(#ContentPlaceHolder1_alternative  .changeBack){
    text-decoration:none;
}


/* ==========================================
   GRAPH FILTER PANEL
   ========================================== */

.graphFilterPanel{

    background:#ffffff !important;

    border:1px solid #dce8f6 !important;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 4px 14px rgba(0,0,0,.08);
}

.graphFilterPanel .auto-style1{

    background:#0351AA;

    color:#ffffff;

    padding:10px 12px !important;
}

.graphFilterPanel .areas{

    color:#ffffff !important;

    font-size:15px !important;

    font-weight:600 !important;
}

.graphFilterPanel td{

    padding:8px 10px;

    vertical-align:middle;
}

.graphFilterPanel .classText{

    padding:8px 10px;

    border:1px solid #cdddf2;

    border-radius:8px;

    background:#fafcff;
}

.graphFilterPanel .btn{

    width:180px !important;

    height:42px;

    border-radius:22px;

    font-size:15px;

    font-weight:600;
}

.graphFilterPanel input[type="checkbox"]{

    margin-right:8px;
}

.graphFilterPanel label{

    line-height:1.8;

    color:#333;
}
#mobileMenuBtn{
    display:none;
    background:#FF8C00;
    color:#fff;
    border:0;
    border-radius:8px;
    padding:9px 13px;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    margin-right:8px;
}


@media (max-width:1400px){

    #topTable1{
        table-layout:fixed;
    }

    #topTable1 > tbody > tr > td:first-child,
    #topTable1 > tbody > tr > td:last-child{
        width:90px !important;
        min-width:90px !important;
        max-width:90px !important;
    }

    #mobileMenuBtn{
        display:inline-block;
    }

    #cssmenu{
        display:none;
        position:absolute;
        top:55px;
        left:0;
        right:0;
        width:100%;
        z-index:99999;
        background:#0351A8;
        box-shadow:0 8px 20px rgba(0,0,0,.20);
    }

    #cssmenu.mobileOpen{
        display:block;
    }

    #cssmenu > ul{
        display:block;
        width:100%;
        margin:0;
        padding:6px;
        border-radius:0;
        box-shadow:none;
    }

    #cssmenu > ul > li{
        display:block;
        width:100%;
        text-align:left;
    }

    #cssmenu > ul > li > a{
        justify-content:flex-start;
        min-height:auto;
        padding:12px 14px;
        font-size:14px;
    }

    #cssmenu ul li ul.dropdown{
        position:static;
        display:none;
        min-width:100%;
        box-shadow:none;
        border-radius:0;
        border:0;
        margin-left:12px;
    }

    #cssmenu ul li:hover ul.dropdown{
        display:block;
    }
}


.rowClass {
    background: #003b73 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    font-family: "Segoe UI", Arial, sans-serif !important;
    letter-spacing: .2px;
}

    .rowClass td {
        background: inherit !important;
        color: inherit !important;
        padding: 12px 16px !important;
        font-size: 13px !important;
    }

    .rowClass th div {
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 13px !important;
    }

    .rowClass th a {
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 13px !important;
    }

    .rowClass > th > div {
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 13px !important;
    }

    .rowClass > th > div > a {
        color: #ffffff !important;
        text-decoration: none !important;
        font-size:13px !important;
    }

.cellTitle
{
font-weight:normal;
font-size:13px !important;
}


.classText {
    border-radius: 5px !important;
 }

.classText td {
    display: grid !important;
    grid-template-columns: 20px 1fr !important;
  column-gap: 15px !important;   /* εδώ το κενό */
    align-items: start !important;
    padding: 15px 0 !important;
}

.classText input[type="checkbox"],
.classText input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    margin: 3px 0 0 0 !important;
    justify-self: start !important;
}

.classText label {
font-size:13px !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    word-break: break-word !important;
}



.ajax__calendar,
.ajax__calendar div,
.ajax__calendar span,
.ajax__calendar table,
.ajax__calendar tr,
.ajax__calendar td {
    line-height: normal !important;
    font-family: Arial, sans-serif !important;
    font-size: 11px !important;
}

    .ajax__calendar td {
        padding: 0 !important;
    }

.ajax__calendar_dayname,
.ajax__calendar_day,
.ajax__calendar_month,
.ajax__calendar_year {
    line-height: 20px !important;
    height: 20px !important;
    padding: 0 !important;
    text-align: center !important;
}

.ajax__calendar_month,
.ajax__calendar_year {
    height: 32px !important;
    line-height: 32px !important;
}

    .ajax__calendar_month br,
    .ajax__calendar_year br {
        display: none !important;
    }

/* CalendarExtender reset μέσα σε styled tables */
table.toHide .ajax__calendar td,
table.toHide .ajax__calendar th,
table.toHide .ajax__calendar table td {
    padding: 0 !important;
    border: 0 !important;
    font-size: 11px !important;
    line-height: normal !important;
    color: #000 !important;
}

table.toHide .ajax__calendar,
table.toHide .ajax__calendar *,
table.toHide .ajax__calendar_container {
    box-sizing: content-box !important;
}

table.toHide .ajax__calendar_dayname,
table.toHide .ajax__calendar_day {
    width: 22px !important;
    height: 18px !important;
    line-height: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
}

table.toHide .ajax__calendar_body,
table.toHide .ajax__calendar_days,
table.toHide .ajax__calendar_months,
table.toHide .ajax__calendar_years {
    width: 170px !important;
    height: 139px !important;
    overflow: hidden !important;
}

table.toHide .ajax__calendar_month,
table.toHide .ajax__calendar_year {
    width: 40px !important;
    height: 30px !important;
    line-height: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
}

    table.toHide .ajax__calendar_month br,
    table.toHide .ajax__calendar_year br {
        display: none !important;
    }

/* ===== EnergyTelia Calendar ===== */

.ajax__calendar_container {
    background: #ffffff !important;
    border: 1px solid #0D5DB8 !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 30px rgba(3,81,168,.25) !important;
    padding: 8px !important;
}

/* Header */

.ajax__calendar_header {
    background: linear-gradient(180deg,#0D5DB8,#0351A8) !important;
    border-radius: 10px !important;
    margin-bottom: 8px !important;
    padding: 4px 0 !important;
}

.ajax__calendar_header:hover {
    background: linear-gradient(180deg,#0D5DB8,#0351A8) !important;
    border-radius: 10px !important;
    margin-bottom: 8px !important;
    padding: 4px 0 !important;
}

.ajax__calendar_title {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.ajax__calendar_title:hover {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.ajax__calendar_header td:hover,
.ajax__calendar_header div:hover {
    background: transparent !important;
}

.ajax__calendar_prev,
.ajax__calendar_next {
    cursor: pointer !important;
}

    .ajax__calendar_prev:hover,
    .ajax__calendar_next:hover {
        filter: brightness(1.25);
    }

/* Ονόματα ημερών */

.ajax__calendar_dayname {
    color: #0351A8 !important;
    font-weight: 700 !important;
    border-bottom: 1px solid #DCE9F8 !important;
    padding-bottom: 3px !important;
}

/* Ημέρες */

.ajax__calendar_day {
    border-radius: 7px !important;
    transition: .15s !important;
}

    /* Hover */

    .ajax__calendar_day:hover,
    .ajax__calendar_hover {
        background: #DCEEFF !important;
        color: #0351A8 !important;
        font-weight: 700 !important;
    }

/* Σήμερα */

.ajax__calendar_today {
    background: #FFF3CD !important;
    color: #8A5A00 !important;
    border-radius: 7px !important;
    font-weight: 700 !important;
}

/* Επιλεγμένη ημερομηνία */

.ajax__calendar_active {
    background: linear-gradient(180deg,#1F7AE0,#0351A8) !important;
    color: #ffffff !important;
    border-radius: 7px !important;
    font-weight: 700 !important;
}

/* Άλλος μήνας */

.ajax__calendar_other .ajax__calendar_day,
.ajax__calendar_other {
    color: #B8C2CF !important;
}

/* Μήνες - Χρόνια */

.ajax__calendar_month,
.ajax__calendar_year {
    border-radius: 8px !important;
    transition: .15s !important;
}

    .ajax__calendar_month:hover,
    .ajax__calendar_year:hover {
        background: #E7F2FF !important;
        color: #0351A8 !important;
        font-weight: 700 !important;
    }

    .ajax__calendar_month.ajax__calendar_active,
    .ajax__calendar_year.ajax__calendar_active {
        background: linear-gradient(180deg,#1F7AE0,#0351A8) !important;
        color: #ffffff !important;
    }

/* Footer */

.ajax__calendar_footer {
    margin-top: 6px !important;
    border-top: 1px solid #E4ECF5 !important;
    color: #666 !important;
    font-size: 11px !important;
}

.ajax__calendar_month:hover,
.ajax__calendar_year:hover,
.ajax__calendar_month.ajax__calendar_hover,
.ajax__calendar_year.ajax__calendar_hover,
.ajax__calendar_months td:hover,
.ajax__calendar_years td:hover {
    background: transparent !important;
    color: #0351A8 !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.topIcons{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
width:auto;
height:60px;
}

.topLogoCell {
    vertical-align: middle !important;
}

.topLogo2 {
    
    display: flex;
  align-items: center;
    justify-content: flex-start;
}

.topLogo2 img {
    display: block;
}

.topLogoCell {
    background:transparent;
}

.topLogo2 {
    height: 60px;
    display: table-cell !important;
    vertical-align: middle !important;
}

.mobileMenuWrapper{
    height:100%;
    display:flex;
    align-items:right;
    justify-content:right;
}

