/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/hello-elementor-child
Description: A child theme for Hello Elementor
Author: ANCOM
Author URI: https://example.com
Template: hello-elementor
Version: 1.0.0
*/

/* Import parent theme styles if needed (Hello Elementor uses minimal styles) */
/* @import url("../hello-elementor/style.css"); */

@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap');

/* Import font Verdana from folder fonts */
@font-face {
    font-family: 'Verdana';
    src: url('./assets/fonts/Verdana.ttf') format('truetype');
}

:root {
    --orange-c: #F05046;
    --container-width: 1100px;
}

html {
    body {
        ol {
            list-style-position: inside;
        }

        ul {
            list-style-position: inside;
        }
    }
}

html body,
html body a,
html body li,
html body p,
html body span {
    font-family: 'Verdana';
    font-size: 12px;
    line-height: 1.5;
}

.e-con.e-flex {
    padding: 0;
}

.padding-lr {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

html,
body {
    background-color: #ffffff !important;
    max-width: 100%;
    width: 100%;
    margin: 0;
    /* height: 100vh; */

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: black;
        word-break: auto-phrase;
    }

    li,
    p {
        color: #393939;
        word-break: auto-phrase;
        margin-block-end: 8px;
    }

    a,
    a>span.file-text {
        color: #2563eb;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: 700;
        word-wrap: break-word;
    }

    h1>a,
    h1>span,
    h1 {
        font-size: 36px;
    }

    h2>a,
    h2>span,
    h2 {
        font-size: 26px;
    }

    h3>a,
    h3>span,
    h3 {
        font-size: 22px;
    }

    h4>a,
    h4>span,
    h4 {
        font-size: 18px;
    }

    h5>a,
    h5>span,
    h5 {
        font-size: 14px;
        font-weight: bold;
        color: #0076BD;
    }

    h6>a,
    h6>span,
    h6 {
        font-size: 12px;
        font-weight: bold;
        color: #F05046;
    }

    td {

        white-space: normal !important;
    }

    ol {
        list-style-type: decimal;

        ol {
            list-style-type: lower-alpha;

            ol {
                list-style-type: lower-roman;

                ol {
                    list-style-type: decimal;

                    ol {
                        list-style-type: lower-alpha;

                        ol {
                            list-style-type: lower-roman;
                        }
                    }
                }
            }
        }
    }

    ul {
        list-style-type: disc;

        ul {
            list-style-type: circle;

            ul {
                list-style-type: square;

                ul {
                    list-style-type: disc;

                    ul {
                        list-style-type: circle;

                        ul {
                            list-style-type: square;
                        }
                    }
                }
            }
        }
    }
}

.e-con {
    --content-width: min(100%, var(--container-width, 1100px));
}

.e-con>.e-con-inner {
    max-width: var(--content-width);
}

header {
    background-color: white;

    .logo-img img {
        height: 100%;
        width: auto;
        max-height: 100px;
    }

    .header-sticky {
        display: none;
    }

    .nav-menu-wrapper {
        background-color: #F9FAFB;
        border-top: 2px solid #e5e7eb;
        border-bottom: 2px solid #e5e7eb;

        nav {
            a {
                color: #374151;
                font-weight: 600;
                font-size: 14px;
            }
        }
    }

    .cpel-switcher--layout-horizontal .cpel-switcher__list {
        flex-wrap: nowrap;
        gap: 20px;

        .cpel-switcher__lang {
            margin: 0px !important;
        }

        .cpel-switcher__code {
            padding: 0px !important;
            color: black;
        }

        li.cpel-switcher__lang--active {
            font-weight: 700;
            border-bottom: 3px solid #0e76bc;
        }
    }

    div.hfe-search-form__container {
        border-radius: 10px;
    }

    form.hfe-search-button-wrapper input.hfe-search-form__input {
        padding: 5px !important;
    }
}

footer {
    background-color: #4F5967;
    color: white;

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a {
        color: white;
    }

    .e-con.e-con-inner {
        padding: 0 20px;
    }

    .footer-logos {
        img {
            height: 50px;
            max-height: 50px;
            width: auto;
            object-fit: contain;
            object-position: center center;
        }
    }

    .credits p {
        color: black;
        margin: 0;
    }
}

a {
    text-decoration: none !important;
}

div.banner-img {
    img {
        object-fit: contain;
        filter: brightness(0.7);
    }

    ::before {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: -1px;
        background-image: url('./assets/images/banner-img-cover.png');
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        z-index: 9999;
        max-height: 500px;
    }
}


html [type=button],
html [type=submit],
html button {
    background-color: transparent;
    border: 1px solid #ffffff50;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    padding: 2px 10px;
    text-align: center;
    transition: all .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
}

html [type=button],
html [type=submit],
html button,
html [type=button]:focus,
html [type=submit]:focus,
html button:focus {
    background-color: #0e76bc;
    color: #fff;
    text-decoration: none;
    border: 1px solid #0e76bc;
}

html [type=button]:hover,
html [type=submit]:hover,
html button:hover {
    background-color: white;
    color: #0e76bc;
}

html input[type=number],
html input[type=tel],
html input[type=date],
html input[type=email],
html input[type=search],
html .search-category,
html input[type=text] {
    border: 1px solid #00000050;
    border-radius: 3px;
    padding: .5rem 1rem;
    transition: all .3s;
}

.category {

    .slick-prev.slick-arrow,
    .slick-next.slick-arrow {
        background-color: #fff;
        color: #000;
        height: 40px;

        &:hover {
            background-color: #F05046;
            color: #fff;
        }
    }


}


.hsearch input::placeholder {
    color: #fff;
    border-color: #fff3;
}

.site-header .header-inner .site-branding .site-logo img {
    max-width: 200px;
}

html .site-navigation ul.menu li a {
    display: block;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-weight: 500;
}

html .site-navigation ul.menu li.current_page_item a {
    color: #495057;

}

html .site-navigation ul.menu li a:hover {
    background-color: #f0f0f0;
}

.site-header .site-branding img {
    max-width: 200px;
    height: auto;
}

footer .newsletter {
    color: white;
}

#site-header {
    padding-bottom: 5px;
    background-color: #fff;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-bottom-width: 1px;
}

.hcontacts {
    font-size: 14px;
    ;
}

.bg-white\/10 {
    background-color: #ffffff1a;
}

.border-white\/20 {
    border-color: #fff3;
}

.border {
    border-width: 1px;
}

.rounded-md {
    border-radius: .375rem;
}

.w-48 {
    width: 12rem;
}

.h-8 {
    height: 2rem;
}

.hover\:opacity-100 {
    color: #eee
}

.hover\:opacity-100:hover {
    color: #fff
}

/* Cards Grid */
.custom-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Card Style */
.custom-post-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.custom-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.custom-post-title {
    font-size: 18px;
    font-weight: 600;
    margin: 15px;
}

.custom-post-excerpt {
    font-size: 14px;
    margin: 0 15px 15px 15px;
    color: #555;
    flex-grow: 1;
}

.custom-post-button {
    display: inline-block;
    margin: 0 15px 15px 15px;
    padding: 8px 16px;
    background-color: rgb(14 118 188);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.custom-post-button:hover {
    background-color: #005bb5;
    color: #fff;
}

.custom-post-image.placeholder {
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #e0e0e0;
}

.elementor-widget-posts_grid_format .custom-category-title,
.elementor-widget-posts_grid_format .custom-category-description {
    text-align: center;
}

/*
.page-header {
    padding: 0px;
}
*/

.page-header .entry-title {
    color: #000;
    font-size: 23px;
    padding: 0px;
    margin: 20px auto !important;
}

body.single .type-post {
    margin-bottom: 50px;
}

html .page-content .e-con-inner {
    padding: 0;
}

.max-width-1215 {
    max-width: 1215px;
    margin: 0 auto;
}

.page-1-3-split-grid .e-con-inner {
    --display: grid;
    --e-con-grid-template-columns: 300px auto;
    --e-con-grid-template-rows: 1fr;
    --grid-auto-flow: row;
    display: var(--display);
    grid-template-columns: var(--e-con-grid-template-columns);
    grid-template-rows: var(--e-con-grid-template-rows);
    grid-auto-flow: var(--grid-auto-flow);
    gap: 10px;
    width: 100%;
}

html .header-inner [type=button]:hover {
    background-color: transparent;
    color: #373737;
    text-decoration: none;
    border: 1px solid #ffffff90;
}

.elementor-shortcode .wpcf7 {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 6px 2px #00000010;
}

html .wpcf7 label {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
}

html .wpcf7 input,
html .wpcf7 textarea {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 5px;
}

html .wpcf7 input[type="submit"] {
    background-color: #0073e6;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    max-width: 200px;
    margin: 0 auto;
}

.wpcf7-response-output {
    font-size: 14px;
    background: #ffffff;
    border-width: 1px;
}

.bg-ancom-blue-light div,
.bg-ancom-blue-light h5 {
    color: #fff;
}

.bullet {
    height: 10px;
    width: 10px;
    border-radius: 10px;
    min-width: 10px;
    min-height: 10px;
}

.post .wp-post-image {
    border-radius: 10px;
    margin-bottom: 20px;
}

.mailpoet_submit {
    background-color: #fff;
    color: #0e76bc;
}

#mailpoet_form_2 form.mailpoet_form {
    background-color: #0e76bc;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

html .mailpoet_form .mailpoet_text {
    padding: 6px 10px !important;
    max-width: 250px;
    width: 250px;
    border-radius: 10px;
    border-width: 1px;
    font-family: Roboto, Helvetica Neue, Arial, sans-serif !important;
    font-size: 15px !important;
    height: 43px !important;
    min-width: 250px;
    color: #333 !important;
}

html .mailpoet_form .mailpoet_text:active {
    border-width: 0;
}

#mailpoet_form_2 .mailpoet_submit {
    padding: 8px 20px;
    border-radius: 8px;
}

.mailpoet_validate_error {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.mailpoet_form_columns>.mailpoet_form_column:first-child .mailpoet_paragraph {
    align-self: end;
}

#mailpoet_form_2 .parsley-required,
.parsley-errors-list .parsley-type,
.mailpoet-has-font a,
a>h4,
a>p {
    color: #fff !important;
}

.mailpoet-has-font {
    font-family: Roboto, Helvetica Neue, Arial, sans-serif !important;
}

.mailpoet-heading.mailpoet-has-font-size .mailpoet-has-font {
    font-size: 16px !important;
    padding-top: 20px;
    font-weight: 300 !important;
}

.post-featured-image h1 {
    color: #fff;
    padding-bottom: 60px;
    padding-top: 30px;
    font-weight: bold;
    font-size: 50px;
}

.post-featured-image {
    background-color: #0e76bc;
}

.post-featured-image img {
    height: 600px;
    margin-bottom: 20px;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
}

.post-custom-links {
    margin-left: 10px;
}

.post-custom-links ul {
    border: 1px solid #0e76bc;
    border-width: 0;
    border-left-width: 1px;
    padding: 10px;
    list-style: none;
    /* Remove default bullets */
    padding-left: 0;
}

.post-custom-links li::before {
    content: "•";
    color: #333;
    margin: 0 8px;
}

.post-custom-links ul a {
    color: #0e76bc;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

.category-as-post-holder {
    margin: 0px auto;
    max-width: 1615px;
    display: flex;
    background: #f5f5f596;
    padding: 20px;
    border-radius: 5px;
}

.post-keywords,
.post-custom-links {
    width: 250px;
    min-width: 250px;
    margin-top: 17px;
}

.post-keywords .keyword {
    background-color: #0c5ea8;
    color: white;
    padding: 3px 10px 5px 10px;
    border-radius: 1px;
    margin: 2px 0;
    font-size: 12px;
    display: inline-block;
}

.post-keywords>.keyword:nth-child(even) {
    background-color: rgb(240 77 70);
}

.category-as-post {
    padding: 0 10px 50px 20px;
}

.category-as-post .e-con-inner {
    margin: 0;
}

div.custom-posts {
    padding: 30px 20px;
    background-color: #0c5ea8;

    div.custom-posts-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    h2 {
        color: white;
        text-align: center;
        margin: 0 auto 20px;
    }

    a.custom-posts-btn {
        border-radius: 8px;
        display: block;
        width: fit-content;
        text-align: center;
        background-color: white;
        font-weight: 700;
        color: #0c5ea8;
        padding: 10px 30px;
        margin: 20px auto 0;
        text-decoration: none;
    }

    a.custom-posts-btn:hover {
        background-color: #EEE;
    }

    div.post-card::before {
        content: "";
        background-color: var(--orange-c);
        height: 100%;
        width: 5px;
        top: 0;
        left: 0;
        position: absolute;
    }

    div.post-card {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: relative;
        background-color: #f3f7fb;
        color: black;
        padding: 15px 30px;
        border-radius: 0 8px 8px 0;

        div.post-card-content {
            display: flex;
            justify-content: space-between;
        }

        div.post-categories {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            align-items: center;

            a.post-category {
                background-color: #dbeafe;
                color: #3c40b6;
                padding: 7px 12px;
                border-radius: 10px;
                margin: 0;
                text-decoration: none;
            }
        }
    }

    div.post-card-content {
        gap: 40px;

        a.post-content {
            display: flex;
            gap: 10px;
            width: 100%;
            position: relative;

            h5 {
                margin: 0;
            }

            p {
                color: black !important;
                margin: 0;
            }

            div.post-card-arrow {
                width: 30px;
                height: 100%;

                i {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 25px;
                    height: 25px;
                    border: 2px solid black;
                    border-radius: 50%;
                    color: black;
                    position: absolute;
                    right: 0;
                    bottom: 0;
                }
            }

            p.post-date {
                margin: 0;
            }
        }
    }
}

div.image-cards-section {
    h2 {
        text-align: center;
    }

    div.image-card-wrapper {
        /* display: flex;
        flex-direction: column; */
        justify-content: center;
        align-items: center;
        /* gap: 15px; */
        text-align: center;
        height: 100%;
        padding: 10px 0;

        div.image-card-image {
            background-color: white;
            border-radius: 10px;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            padding: 30px 50px;
            height: 100%;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;

            img {
                max-height: 100px;
                height: auto;
                width: 100%;
                object-fit: cover;
            }
        }

        p {
            text-align: center;
            margin-bottom: 40px;
        }
    }
}

div.image-turning-cards-section {
    h2 {
        text-align: center;
    }

    div.image-turning-card-wrapper {
        /* display: flex;
        flex-direction: column; */
        justify-content: center;
        align-items: center;
        /* gap: 15px; */
        text-align: center;
        height: 100%;
        padding: 10px 0;

        div.image-turning-card-image {
            background-color: white;
            border-radius: 10px;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            padding: 25px;
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;

            h4 {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 14px;
                line-height: 23px;
                text-align: left;

                svg {
                    height: 28px;
                    width: auto;
                    min-width: 40px;
                    min-height: 40px;
                }
            }

            img {
                max-height: 100px;
                height: auto;
                width: 100%;
                object-fit: cover;
            }
        }

        p {
            text-align: justify;
            margin-bottom: 0;
        }
    }

    .image-turning-card-wrapper {
        perspective: 1100px;
        height: 300px;
    }

    .image-turning-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.6s;
        transform-style: preserve-3d;
    }

    .image-turning-card-wrapper:hover .image-turning-card-inner {
        transform: rotateY(180deg);
    }

    .card-context-info {
        background-color: #fff;
        padding: 30px 50px;
    }
}

div.custom-cards-section {
    h2 {
        text-align: center;
        margin: 0px auto 30px;
    }

    div.custom-card-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;

        div.custom-card {
            height: 100%;
            width: 100%;
            background-color: #fff;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px;
            margin-bottom: 25px;
            position: relative;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

            h4 {
                display: flex;
                align-items: center;
                gap: 14px;
                line-height: 23px;

                svg {
                    height: 28px;
                    width: auto;
                    min-width: 40px;
                    min-height: 40px;
                }
            }
        }
    }
}

div.info-cards-section {
    h2 {
        text-align: left;
        text-decoration: underline;
        text-underline-offset: 15px;
        text-decoration-color: #0076BD;
        margin-bottom: 50px;
    }

    div.info-card-column {
        margin-bottom: 20px;
    }

    div.info-card-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    div.info-card-content {
        width: 100%;
        height: 100%;
        background-color: white;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 20px 25px;
        gap: 10px;
        margin-bottom: 20px;
        color: #fff;

        &:hover {
            box-shadow: 0px 1px 4px 1px #00000050;
        }

        h3 {
            color: #fff;
            margin: 0;
            text-shadow: 0px 1px 2px #0000005c
        }

        >div {
            text-shadow: 0px 1px 2px #0000005c;
        }

        a.stats {
            background-color: #27a844a6;
            padding: 5px 0px;
            color: white;
            font-size: 14px;
            border-radius: 38px;
            width: 80%;
            box-shadow: 0px 1px 4px 0px #00000020;

            &:hover {
                background-color: #27a844;
                box-shadow: 0px 1px 4px 1px #00000050;
            }
        }
    }

    .row {
        >div:nth-child(1) .info-card-content {
            background-color: #a6a0ce;
        }

        >div:nth-child(2) .info-card-content {
            background-color: #c5dc9f;
        }

        >div:nth-child(3) .info-card-content {
            background-color: #a9dcf8;
        }

        >div:nth-child(4) .info-card-content {
            background-color: #8cc9a7;
        }

        >div:nth-child(5) .info-card-content {
            background-color: #a9dcf8;
        }

        >div:nth-child(6) .info-card-content {
            background-color: #8cc9a7;
        }

        >div:nth-child(7) .info-card-content {
            background-color: #a6a0ce;
        }

        >div:nth-child(8) .info-card-content {
            background-color: #c5dc9f;
        }


    }

}

svg.elementor-icon {
    fill: #0076BD;
}

.elementor-element-86767fa {
    background-color: #f8f9fb;
}

.custom-card .custom-card-content p {
    margin-bottom: 0;
}

.elementor-element-70eab81 {
    background: #f04d460d;
    border-bottom: 1px solid #f04d46;
}

.category-comunicate-de-presa {
    div.page-content {
        height: 100%;
        width: 100%;
        background-color: #fff;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px 15px;
        margin-bottom: 10px;
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        color: #333;
        font-size: 13px;
    }
}

/* Flip over */
.image-cards-section {}


.image-card-wrapper {
    perspective: 1100px;
    height: 300px;
}

.image-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.image-card-wrapper:hover .image-card-inner {
    transform: rotateY(180deg);
}

.card-context-info,
.card-context-info:hover {
    position: absolute;
    top: 0;
    color: #fff;
}

.image-card-image,
.card-context-info {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-context-info {
    background: #0c5ea8;
    color: white;
    transform: rotateY(180deg);
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
}

.my-ancom {
    align-self: end;
    justify-self: end;
    display: block;

    >img {
        height: 27px;
        object-fit: contain;
        min-width: 150px;
    }
}

.hfe-breadcrumbs {

    li a,
    .hfe-breadcrumbs-text {
        color: #fff;
        font-size: 13px;
    }

    .hfe-breadcrumbs-separator-text,
    .hfe-breadcrumbs-home-icon>svg {
        color: #fff;
    }
}

.elementor-element-a2f9402 .e-con-inner {
    display: inline-flex;

    >div:first-child {
        width: 80%;
    }

    >div:last-child {}

}

.cat-category-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cat-header {
    /* background: linear-gradient(135deg, #4a90e2 0%, #7b68ee 50%, #ff6b9d 100%); */
    padding: 10px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    color: #000;
    position: relative;
    overflow: hidden;
}

.cat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cat-login {
    position: absolute;
    top: 12px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cat-login:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.cat-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cat-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 20px;
    margin: 40px 0;
}

.category-autorizare-si-licentiere-en .cat-services-grid,
.category-autorizare-ro .cat-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;

    h3 {
        padding-right: 5px;
    }
}

.cat-service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.cat-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.cat-service-card:hover::before {
    opacity: 1;
}

.cat-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.cat-service-card {
    h3 {
        font-size: 15px;
        font-weight: 600;
        margin: 0;
        position: relative;
        z-index: 2;
        color: #333;
        padding-right: 25px;
        min-width: 80%;
    }

    /* Drag and Drop Styles */
    .draggable-item {
        cursor: move;
        cursor: grab;
    }

    .draggable-item:active {
        cursor: grabbing;
    }

    .dragging {
        opacity: 0.4;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

    .drag-over {
        border: 2px dashed #F05046;
        background: rgba(240, 80, 70, 0.05);
        transform: scale(1.02);
    }

    .cat-service-placeholder {
        background: rgba(240, 80, 70, 0.1);
        border: 2px dashed #F05046;
    }

    .draggable-item::after {
        content: '⋮⋮';
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        color: rgba(0, 0, 0, 0.2);
        z-index: 1;
        pointer-events: none;
        transition: color 0.3s ease;
    }

    .draggable-item:hover::after {
        color: rgba(0, 0, 0, 0.4);
    }

    .draggable-item h3 {
        padding-left: 25px;
    }
}


.cat-progress-bar {
    height: 6px;
    background: linear-gradient(90deg, #0076BD, #7b68ee, #ff6b9d, #F05046);
    margin: 40px 0;
    border-radius: 3px;
}

.slick-slider-container {
    margin: 20px 0;
    max-width: 100%;
}

/* Ensure the slick track handles equal height slides */
.slick-slider-horizontal .slick-track {
    display: flex !important;
}

.slick-slider-horizontal .slick-slide {
    height: auto;
}

.slick-slider-horizontal .slide {
    padding: 0 10px;
    box-sizing: border-box;
    height: auto;
    display: flex !important;
}

/* Equal height for all slides */
.slick-slider-horizontal .slide .card-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.slick-slider-horizontal .slide .card-wrapper article {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.slick-slider-horizontal .slide .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.slick-slider-horizontal .slide .it-card-footer {
    margin-top: auto;
}

.slick-slider-horizontal .slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.slide-content {
    padding: 15px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

.slide-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.slide-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.slick-dots {
    text-align: center;
    margin-top: 20px;
}

.slick-dots li button {
    background: #ccc;
    border: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background: #007cba;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    border-radius: 4px;
}

.slick-prev {
    left: 10px;
    border: 0 !important;
    color: #000 !important;
}

.slick-next {
    right: 10px;
    border: 0 !important;
    color: #000 !important;
}

.slick-prev:hover,
.slick-next:hover {
    background: transparent;
    border: 0 !important;
}

.slick-next:before,
.slick-prev:before {
    display: none;
}

.slick-slider-horizontal .slide img[data-glightbox] {
    position: relative;
    cursor: pointer;
}

.slick-slider-horizontal .slide img[data-glightbox]:after {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slick-slider-horizontal .slide:hover img[data-glightbox]:after {
    opacity: 1;
}

@media (max-width: 768px) {
    div.page-anchor-wrapper {
        flex-direction: column;
    }

    .cat-category-page {
        padding: 20px 15px;
    }

    .cat-header {
        padding: 40px 20px;
    }

    .cat-title {
        font-size: 2em;
    }

    .cat-login {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }

    .cat-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cat-header-holder {
        flex-direction: column-reverse;

        .cat-header-img,
        .cat-header-img-overlap {
            min-height: 60px;
        }
    }

    div.info-cards-section {
        div.info-card-content {
            padding: 10px;
        }
    }
}

.cat-service-card {
    position: relative;
}

.card-arrow {
    position: absolute;
    top: 34px;
    right: 14px;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    transition: all 0.3s ease;
    transform: translateX(0);
    background: #0e76bc;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    padding: 3px 0px 0 9px;
}

.cat-service-card:hover .card-arrow {
    color: #fff;
    transform: translateX(1px);
}

.n2-ss-slider .n2-ss-item-image-content img {
    width: 100%;
    object-fit: cover;
}

.cat-header-holder {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #f8f8fa;
    padding-right: 0px;
    margin-top: 20px;

    .cat-header-content {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .cat-title {
        font-size: 23px;
        font-weight: 900;
        margin: 0 0 20px 0;
        letter-spacing: 1px;
        color: #333;
        text-transform: uppercase;
        white-space: normal;
        padding: 20px 10px;
        margin: 0;
    }

    .cat-header-img {
        flex: 1;
        background: url('/wp-content/uploads/2025/07/global-ground-1.webp');
        background-size: cover;
        background-repeat: no-repeat;

        .cat-header-img-overlap {
            width: 100%;
            height: 100%;
            background: url('/wp-content/themes/hello-elementor-child/assets/images/banner-img-cover.png');
            background-size: contain;
            background-repeat: no-repeat;
        }
    }
}

div.read-print-size {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;

    div.print-size {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .rsbtn {
        margin-bottom: 0;
    }
}

header.header-scrolled {

    breadcrumbs,
    .elementor-widget-social-icons {
        display: none;
    }
}

.lmcontent {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.page-content>.MsoNormal>b>span>font {
    display: none;
}

/* .page-content > p > span > span > strong {
    display: none;
} */

@media screen and (max-width: 1024px) {
    .header-fixed {
        flex-direction: row !important;
    }
}

@media screen and (min-width: 1200px) {
    .lmcontent {
        max-height: 36px;
    }
}

/*
nav.cpel-switcher__nav {
    div.cpel-switcher__lang {
        a[lang] {
        
            background-color: #0E76BC !important;
            color: white;
            padding: 6px 8px;
            border-radius: 100px;

            >span {
                padding: 0px !important;
            }
               
        }
    }
}
     */

div.page-anchor-wrapper {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    a.heading-anchor {
        /* width: fit-content; */
        transition: all 0.3s ease;
        font-weight: 600;
        transition: 0.2s;
        font-size: 14px;
        color: black;
        border: 1px solid #DDD;
        background-color: white;
        padding: 6px 10px;
        border-radius: 10px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
    }

    a.heading-anchor::before {
        content: '#';
        margin-right: 6px;
    }

    a.heading-anchor:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }
}

.post-related-images-links-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;

    .post-related-links {
        padding: 10px 15px;
        border: 1px #aaa solid;
        border-radius: 8px;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        height: calc(100% - 20px);

        a {
            overflow: hidden;
            text-overflow: ellipsis;
        }
    }

    .post-related-links::before {
        content: "➜";
        display: inline-block;
        margin-right: 8px;
        transition: transform 0.3s ease;
    }

    .post-related-links:hover::before {
        transform: translateX(8px);
    }

    .post-related-images {
        display: block;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        /* height: 100%; */
        border-radius: 7px;
        padding: 0px;
        margin-bottom: 20px;
        overflow: hidden;
        text-align: center;
        align-content: end;
        background-color: white;
        box-shadow: 0px 0px 8px -2px #00000050;
        max-width: 300px;

        a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
    }

    .post-related-images>div {
        color: #ffffff;
        background-color: #00000054;
        font-weight: 400;
        padding: 3px 5px 6px;
        box-shadow: 0px 0px 14px 5px #00000070;
        text-shadow: 1px 1px 1px #000;
        line-height: 17px;
    }

    .post-related-images img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.post-tags {
    margin-bottom: 20px;
    gap: 5px;
    display: flex;

    >a {
        background: #f04d46;
        padding: 7px 12px 9px 12px;
        border-radius: 25px;
        margin-top: 12px;
        height: auto;
        color: #ffffff;
    }
}

.page-content {

    ul {
        list-style-position: outside;
        padding-left: 40px;
        margin-left: 0;

        li {
            display: list-item;
            text-align: left;
            margin-left: 0;
        }
    }

    ol {
        list-style-position: outside;
        padding-left: 40px;
        margin-left: 0;

        li {
            display: list-item;
            text-align: left;
            margin-left: 0;
        }
    }
}



.article-date {
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    display: block;
    width: 100%;
    padding: 4px 0px 7px;
}

.list-c-name {
    font-weight: 600;
    font-size: 13px;
    text-align: right;
    position: absolute;
    right: 16px;
    top: 10px;
}

/* 
.post-date-holder {
    display: none !important;
} */

.post-date-holder {
    display: flex !important;
}

.post_content_title {
    color: #8C8F96;
    font-size: 13px;
    font-weight: 600;
    padding-top: 5px;
}

.cat-latest-post {
    font-size: 12px;
    margin-top: 5px;
    text-transform: capitalize;

    a {
        font-size: 12px;
        text-transform: capitalize;
    }
}

.last-article-date {
    font-size: 11px;
    font-weight: 600;
    margin-top: -3px;
}

ul.last-relevant-posts-grid {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: -0.5em;
    margin-top: 0;
    margin-top: .5em;

    li {
        margin: .5em;
        min-width: calc(25% - 1em);
    }
}

.relevant-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;

    .card-wrapper {
        box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .1);
        background: #fff;
        border-right: none;

        .flag-icon {
            font-size: 15px;
            flex-wrap: nowrap;
            white-space: nowrap;
            margin-left: auto !important;
            margin-right: 1em;
            background: #20799F;
            padding: .2em 1em;
            width: auto !important;
            height: auto !important;
            text-transform: none !important;
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            line-height: 2em;
            flex-direction: row-reverse;
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .25);
            box-sizing: content-box;
            position: relative;
            color: #fff;
            text-decoration: none;
            max-width: 250px;

            >span {
                font-size: 15px;
                font-weight: 600;
                line-height: 2em;
            }
        }

        .flag-icon-tr {
            font-size: 15px;
            flex-wrap: nowrap;
            white-space: nowrap;
            margin-left: auto !important;
            margin-right: 0px;
            padding: .2em 1em;
            width: auto !important;
            height: auto !important;
            text-transform: none !important;
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            line-height: 2em;
            flex-direction: row-reverse;
            box-sizing: content-box;
            position: relative;
            text-decoration: none;
            max-width: 250px;
            color: #0076bd;

            >span,
            span:hover {
                font-size: 15px;
                font-weight: 600;
                line-height: 2em;
                color: #0076bd;
            }
        }

        .category-top {
            font-size: .78rem;
            text-transform: uppercase;
            color: #435a70;
            margin-bottom: 16px;
            word-wrap: break-word;

            .category {
                font-weight: bold;
                letter-spacing: .9px;
            }
        }

        .card-title {
            font-size: 1.13rem;
            line-height: 1.55rem;
            color: #004080;
            margin-bottom: 16px;
            transition: all .3s;
            letter-spacing: normal;
            font-weight: 700;
        }

        .card-body {
            padding: 1em;
        }

        .read-more {
            position: relative;
            margin-top: 10px;
            display: block;
        }
    }
}

.elementor-element-58bf049 .elementor-element-a2f9402,
.single-post .elementor-element-a2f9402,
body.home .elementor-element-a2f9402,
body .elementor-element-d19eb8d,
body.category .elementor-element-a2f9402 {
    display: none !important;
}

.custom-breadcrumbs {
    background-color: #0E76BC;
    padding: 10px 0;
}

.custom-breadcrumbs nav {
    max-width: 1100px;
    margin: 0 auto;
}


.breadcrumb-holder {
    background: #0e76bc;

    .main-breadcrumb {
        justify-content: space-between;
        margin: 0 auto;
        display: flex;
        gap: 10px;

        ul {
            line-height: 17px;
        }

        .hfe-breadcrumbs-item a span {}

        .hfe-breadcrumbs li,
        .hfe-breadcrumbs-home-icon {
            margin-right: 0;
        }

        .hfe-breadcrumbs-separator-text {
            padding: 0 8px;
        }

        li,
        p {
            margin-block-end: 0;
        }
    }

    .elementor-widget-image>a>img {
        max-width: 200px;
    }
}

.elementor-element-7d0385f ul {
    max-width: 1446px;
    margin: 0 auto;
}

.elementor-element-6c26eb6 {
    max-width: 1354px;
    margin: 0 auto;
}

.elementor-element.elementor-element-30ea5c0 {
    gap: 5px;
}

.elementor-widget-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elementor-widget-image img {
    width: 100%;
    height: auto;
}

.elementor-39477 .elementor-element.elementor-element-a395626 .cpel-switcher__code {
    padding-left: 0px;
    width: 24px;
    text-align: center;
    margin-top: -1px;
}

.my-ancom-mobile,
.hfe-search-layout-icon>div>form>.hfe-search-icon-toggle>input {
    display: none;
}

.mob-search-bar.hidden {
    display: none !important;
}

body .page-content a {
    font-size: 13px;
}


.cat-filter-form {
    margin-bottom: 24px;
}

.cat-filter-form div {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.cat-filter-form input[type="text"] {
    padding: 8px;
    min-width: 180px;
}

.cat-filter-form select {
    padding: 8px;
}

.cat-filter-form button {
    padding: 8px 16px;
}

.cat-latest-posts-table {
    width: 100%;
    border-collapse: collapse;
}

.cat-latest-posts-table th {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.cat-latest-posts-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.cat-latest-posts-table td:last-child {
    text-align: center;
    font-size: 1.2em;
}

.ci-cat-filter-form input[type=text],
.ci-cat-filter-form select,
.ci-cat-filter-form button {
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    border-radius: 5px;
    color: #000;
    height: 42px;
    min-width: 100px;
}

.ci-cat-filter-form button,
.ci-cat-filter-form button:hover,
.ci-cat-filter-form button:active {
    background-color: #0e76bc;
    color: white;
    border: none;
    cursor: pointer;
}

.ci-filter-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cl-posts-table a {
    color: #0e76bc;
    font-weight: 500;
    font-size: 13px;
}

.ci-pagination {
    .arrow {
        font-size: 20px;
        color: #fff;
        background-color: #0e76bc;
        padding: 3px 10px 7px;
        border-radius: 5px;
    }

    .current-page {
        color: #000;
        font-weight: 600;
        padding: 3px 10px 7px;
        border-radius: 5px;
        font-size: 16px;
    }
}

.ratio.ratio-16x9 {
    background-color: #f0f0f0;
}

.back-btn-wrapper {
    display: flex;
    justify-content: center;
}

.back-btn {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    margin: 5px 0;
    color: #374151;
    transition: ease-in-out 0.2s;
}

.back-btn:hover {
    background: #e0e0e0;
}

.tags-select {
    max-width: 300px;
}

.decizie-item h2 {
    font-size: 15px;
}

.pagination-wrapper {
    margin-bottom: 30px;

    .page-numbers {
        display: inline-block;
        padding: 8px 12px;
        margin: 0 2px;
        text-decoration: none;
        border: 1px solid #ddd;
        color: #333;
    }

    .page-numbers:hover {
        background-color: #f5f5f5;
    }

    .page-numbers.current {
        background-color: #007cba;
        color: white;
        font-size: 15px;
        border-color: #007cba;
    }

    .page-numbers.prev,
    .page-numbers.next {
        font-weight: bold;
    }
}

form.advanced-search-form {
    display: flex;
    align-items: center;
    gap: 10px;

    >p {
        width: 100%;
    }
}

.search-category {
    height: 43px;
}

.category-comunicate-de-presa .page-content {
    margin: 0 auto;
    max-width: 1100px;

    &:not(:has(>.elementor)) {
        margin: 0 auto;
        max-width: 1100px;
    }
}

@media (min-width: 1025px) {

    .mob-search-bar,
    .my-ancom-social,
    .mob-lang-change {
        display: none !important;
    }
}

@media (max-width: 1025px) {
    .my-ancom-mobile {
        background-color: #0e76bc;
        padding: 10px;
        text-align: center;
        width: 100%;
        border-bottom: 3px solid #fff;
        display: block;

        img {
            max-width: 150px;
            height: auto;
        }

        a {
            display: block;
            width: 100px;
            margin: 0 auto;
        }
    }

    .mob-search-bar {
        max-width: 94%;
        margin: 5px auto;

        input {
            background: #eee;
        }
    }

    html .mob-search-bar .hfe-search-submit {
        background-color: #0e76bc;

        :hover {
            background-color: #0e76bc;
        }

        :active {
            background-color: #0e76bc;
        }
    }

    div.hfe-search-form__container {
        border-radius: 0;
    }

    .hfe-input-focus .hfe-search-button-wrapper input {
        display: none !important;
    }

    .hfe-dropdown .my-ancom-social {
        display: block;
        padding: 10px 10px 10px 15px;
    }

    .mob-lang-change {
        padding: 11px 10px 15px 15px;

        a {
            background: #0e76bc;
            padding: 5px 14px;
            margin-right: 4px;
            color: #fff;
        }
    }

    #masthead.fixed {
        position: fixed;
        top: 0;
        width: 100%;
    }

    .elementor-element-cfe2a98 {
        max-width: 70px !important;
    }

    .breadcrumb-holder ul.hfe-breadcrumbs {
        .hfe-breadcrumbs-item {
            display: none;
        }

        .hfe-breadcrumbs-separator {
            display: none;
        }

        >li:nth-child(2),
        .hfe-breadcrumbs-first,
        li:last-child {
            display: inline-block;
        }
    }
}

@media (max-width: 768px) {
    html .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu {
        width: 50px;

        nav {
            display: block;
            margin-top: 15px;

            ul {
                width: 100%;
            }
        }
    }

    .elementor-widget-image img {
        width: 190px;
    }

    html .elementor-element-f08cdea .e-con-inner {
        justify-content: space-between !important;
    }

    .breadcrumb-holder {
        display: none !important;
    }

    .mob-search-bar.hfe-search-button-wrapper {
        padding-right: 0px;
    }
}


@media print {
    body * {
        visibility: hidden;
    }

    main#content,
    main#content * {
        visibility: visible;
    }

    main#content {

        .back-btn-wrapper,
        .back-btn-wrapper *,
        div.read-print-size,
        div.read-print-size *,
        .addtoany_content,
        .addtoany_content * {
            visibility: hidden !important;
            height: 0;
            width: 0;
        }
    }

    main#content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        width: 100%;
    }
}

/* AJAX Pagination Styles */
.relevant-posts.loading {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

#decizii-pagination.loading {
    opacity: 0.5;
    pointer-events: none;
}

.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    color: #333;
    z-index: 10;
}

.loading-indicator:after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #F05046;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pagination Links Styles */
#decizii-pagination {
    transition: opacity 0.3s ease;
}

#decizii-pagination .page-numbers,
#legi-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

#decizii-pagination .page-numbers:hover,
#legi-pagination .page-numbers:hover {
    background: #F05046;
    color: white;
    border-color: #F05046;
}

#decizii-pagination .page-numbers.current,
#legi-pagination .page-numbers.current {
    background: #007cba;
    color: white;
    border-color: #007cba;
    cursor: default;
}

/* Smooth transition for content updates */
.relevant-posts {
    transition: opacity 0.3s ease;
}

.rsbtn {
    z-index: 1 !important;
}

.search-results-holder {
    max-width: 1100px;
    padding: 20px 20px;
    margin: 0 auto;

    input[type="search"],
    input,
    date,
    select {
        padding: 10px;
        border: 1px solid #00000050;
        border-radius: 3px;
    }
}

.search-results-holder {

    .search-submit,
    .search-submit:hover,
    .search-submit:active {
        background: #0e76bc;
        height: 41px;
        border: 0;
        padding: 2px 25px;
    }

    .custom-card {
        width: 100%;
        background-color: #fff;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 28px 20px 20px 20px;
        margin-bottom: 25px;
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        color: #333;
        font-size: 13px;

        strong {
            color: #000;
            font-size: 14px;
        }
    }
}

.post ul {
    list-style-position: outside;
    padding-left: 40px;
    margin-left: 0;
}

.post ol {
    list-style-position: outside;
    padding-left: 40px;
    margin-left: 0;
}

div[style*="margin-top:6.0pt;margin-right:0in;margin-bottom:6.0pt;margin-left:0in;text-align:justify"]>span>strong>span {
    display: none !important;
}

.last-news-block {
    .custom-card {
        height: 100%;
        width: 100%;
        background-color: #fff;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px 15px;
        margin-bottom: 10px;
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        color: #333;
        font-size: 13px;

        strong {
            color: #000;
            font-size: 14px;
        }
    }
}

form[role="search"] {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.search-form .search-submit {
    background: #0e76bc;
    border: 1px solid #0e76bc;
    height: 41px;
    padding: 2px 25px;
    border-radius: 4px;
}

.search-form .search-submit:hover,
.search-form .search-submit:active {
    color: #0e76bc;
    background: white;
    border: 1px solid #0e76bc;
}

.cat-com-press form>label:first-child {
    max-width: 200px;
}

.cat-com-press form select {
    max-width: 180px;
}

.MsoNormal span>b>u>span {
    color: rgb(213, 28, 40);
}

.file-link-wrapper a,
.file-link-wrapper img,
.file-link-wrapper span {
    vertical-align: middle;
}

.file-link-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.file-link-wrapper a {
    color: inherit;
}

.sm-custom-card {
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 15px;
    margin-bottom: 10px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #333;
    font-size: 13px;
}

.custom-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-carousel .swiper-slide img {
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.swiper-container-wrapper {
    position: relative;
    width: 80%;
    margin: auto;
}

.swiper-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    /* important: disable absolute positioning */
    color: #000;
}

.swiper-pagination {
    flex-grow: 1;
    text-align: center;
}

.custom-carousel-wrapper {
    margin: 40px auto;

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        text-align: center;
        margin-bottom: 20px;
    }
}

.last-news-block a img.emoji {
    display: none !important;
}

.category-related-posts-wrapper {
    padding: 30px 20px;
    background-color: #0c5ea8;

    .site-main {
        padding-bottom: 20px;
        margin: 0 auto;
        max-width: 1100px;
    }
}

.site-main {
    >h4 {
        color: #fff;
        line-height: 0;
        padding: 15px 0;
    }

    h4.custom-links-title {
        color: #000;
    }
}


.decizii-block {
    background-color: #fff;
    padding: 30px 20px;

    .card-wrapper {
        box-shadow: none;
        border-right: none;
        border: 1px solid #eee;
        background: #eeeeee30;
    }

    .slick-slide {

        >div,
        .slide {
            height: 100%;
        }
    }

    .slick-next {
        right: -35px;
    }

    .slick-prev {
        left: -35px;
    }
}

.legi-block {
    background-color: #F8F9FB;
    padding: 30px 20px;

    .site-main>h4 {
        color: #333;
        line-height: 0;
        padding: 15px 0;
    }

    .card-wrapper {
        box-shadow: none;
        border-right: none;
        border: 1px solid #eee;
        background: #fff;
    }

    .slick-slide {

        >div,
        .slide {
            height: 100%;
        }
    }

    .slick-next {
        right: -35px;
    }

    .slick-prev {
        left: -35px;
    }
}

.list-date {
    width: 70px;
    position: absolute;
    text-align: right;
    right: 10px;
    background: #fff;
}

.list-title {
    padding-right: 100px;
}

.swiper header {
    background: #333;
}

.slick-slider button,
.slick-slider button:hover,
.slick-slider button:focus {
    background-color: #e9e9e9;
    padding: 20px 10px;
}

.custom-links-list-wrapper {
    background-color: rgb(242, 244, 248);
    padding: 25px;
    border-left: 6px solid var(--line-color, #000);
    border-radius: 0 8px 8px 0;

    h4 {
        font-size: 15px;
        margin-top: 0;
    }

    .custom-links-list-items {
        display: flex;
        flex-direction: column;
        gap: 10px;

        ul:has(.file-link-wrapper) {
            list-style-type: none;
            padding-left: 0;
        }

        a {
            font-size: 12px;
            width: fit-content;
            display: inline-flex;
            align-items: center;
            position: relative;
            text-decoration: none;
            padding-left: 35px;
            transition: color 0.3s ease;
            color: #0076bd;

            &:hover {
                text-decoration: underline !important;

                &::before {
                    transform: translateY(-50%) translateX(8px);
                    opacity: 1;
                }
            }

            &::before {
                content: "➜";
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%) translateX(0);
                font-size: 1.4rem;
                transition: transform 0.3s ease, color 0.3s ease;
            }
        }

        >div {
            font-size: 12px;
            padding-left: 35px;
            display: flex;
            flex-direction: column;
            width: fit-content;
            position: relative;

            p,
            span {
                font-size: 12px;
            }

            ;
        }
    }
}

.acordion-item-cell {
    overflow: hidden;
}

.acordion-item-cell:last-of-type {
    margin-bottom: 20px;
}

.acordion-title {
    padding: 15px 0;
}

.accordion-item-content {
    display: none;
    padding: 10px;
    background-color: #fdfdfd;
    border: 1px solid #e3e3e377;
}

.accordion-item-title {
    cursor: pointer;
    padding: 10px 30px 10px 10px;
    background: #e6e6e680;
    position: relative;
    border-top-width: 1px;
    border-color: #fff;
    font-weight: 600;
}

.accordion-item-title::after {
    content: '\25B6';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.2s ease;
    font-size: 12px;
    color: #838383;
}

/* rotate arrow when active (▼) */
.accordion-item-title.active::after {
    transform: translateY(-50%) rotate(90deg);
}

.post_content_title.acordion-title {
    color: #0076BD;
}

body .addtoany_content {
    display: flex;
    justify-content: flex-end;
    margin: 14px 0;
}

/*
div[data-position="0"] { order: 1; }
div[data-position="1"] { order: 2; }
div[data-position="2"] { order: 3; }
div[data-position="3"] { order: 4; }
div[data-position="4"] { order: 5; }
div[data-position="5"] { order: 6; }
div[data-position="6"] { order: 7; }
div[data-position="7"] { order: 8; }
div[data-position="8"] { order: 9; }
div[data-position="9"] { order: 10; }
*/

.slick-slider-horizontal.align-left .slick-track {
    width: 100% !important;
}

#n2-ss-2 .n2-ss-slide,
#n2-ss-2 .n2-ss-slider,
#n2-ss-2 .n2-ss-slider-3,
#n2-ss-2 .n2-ss-slide-backgrounds {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    overflow: hidden;
}

.page-content>.MsoNormal>span>strong>font {
    display: none;
}

html body .bottom-desc-text {
    z-index: 9999 !important;
    position: absolute !important;
    bottom: 20px !important;
}

.n2-ss-slider-wrapper-inside div {
    max-height: 500px !important;
}

.category-consiliul-consultativ .hr-base {
    display: none !important;
}

.page-content {

    div.tnp-subscription,
    form.tnp-subscription,
    form.tnp-profile {
        margin: 20px 0;
    }
}


@media (max-width: 992px) {
    form.advanced-search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .n2-ss-layer h2 a {
        text-shadow: 1px 2px 1px #fff;
        background: #ffffffad;
    }
}

/* Mobile responsiveness for pagination */
@media (max-width: 768px) {
    #decizii-pagination .page-numbers {
        padding: 6px 12px;
        font-size: 14px;
        margin: 0 2px;
    }

    .loading-indicator {
        padding: 10px 20px;
        font-size: 14px;
    }

    div.custom-posts {
        div.post-card-content {
            flex-direction: column;
            gap: 20px;

            p.post-date {
                margin-bottom: 0;
            }
        }
    }

    .hfe-search-button-wrapper {
        padding-right: 20px;
    }

    .hfe-search-form__container {
        width: 100%;
    }

    .list-c-name {
        position: static;
        text-align: left;
        margin: 10px 0 0 0;
    }

    .xfor-user,
    .info-cen-ancom {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .page-content .e-con>.e-con-inner {
        padding: 0 10px;
    }
}

@media (min-width: 576px) {

    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    body:not([class*=elementor-page-]) .site-main,
    body .addtoany_content,
    .container,
    .container-sm,
    .page-content .e-con>.e-con-inner {
        max-width: 540px !important;
    }
}

@media (min-width: 768px) {

    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    body:not([class*=elementor-page-]) .site-main,
    body .addtoany_content,
    .container,
    .container-md,
    .container-sm,
    .page-content .e-con>.e-con-inner {
        max-width: 720px !important;
    }
}

@media (min-width: 992px) {

    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    body:not([class*=elementor-page-]) .site-main,
    body .addtoany_content,
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .page-content .e-con>.e-con-inner {
        max-width: 960px !important;
    }
}

@media (min-width: 1200px) {

    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    body:not([class*=elementor-page-]) .site-main,
    body .addtoany_content,
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .page-content .e-con>.e-con-inner {
        max-width: 1100px !important;
    }

    .header-holder {
        position: relative;
        top: 0;
        width: 100%;
        z-index: 9999;
    }

    .logged-in {
        .header-holder {
            top: 32px;
        }
    }

    .header-fixed {
        gap: 0;
    }

    .elementor-element-77f4051e>.e-con-inner {
        padding: 14px 0 5px 0;
    }
}

@media (min-width: 1400px) {

    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl,
    .page-content .e-con>.e-con-inner {
        max-width: 1100px !important;
        margin: 0 auto;
    }
}

/* Date input wrapper styles for Air Datepicker */
.date-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.date-input-wrapper input.search-date {
    /* padding-right: 35px;
    width: 100%; */
}

.date-input-wrapper .calendar-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
    pointer-events: none;
}