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

/* CUSTOM Breadcrumbs */


.sv_custom_breadcrumbs {
    padding: 0;  /* Rimuovi il padding verticale */
    width: 100%;
    height: 100%; /* Aggiungi altezza 100% */
    display: flex; /* Aggiungi display flex */
    align-items: center; /* Centra verticalmente il contenuto */
}

.penci-toc-section {
    display: none;
}

.sv_custom_breadcrumbs ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.sv_custom_breadcrumbs li {
    display: flex;
    align-items: center;
    font-family: 'proxima-nova', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
    color: #000000;
    font-size: 14px;
}

.sv_custom_breadcrumbs li:not(:last-child)::after {
    content: '';
    width: clamp(12px, 1.5vw, 16px);
    height: clamp(12px, 1.5vw, 16px);
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='512' height='512'%3E%3Cg id='_01_align_center' data-name='01 align center'%3E%3Cpath fill='%23FF6B00' d='M9.707,19.293v-14L16,11.586A1,1,0,0,1,16,13Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.sv_custom_breadcrumbs a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	font-weight: 300;
}

.sv_custom_breadcrumbs a:hover {
    color: #FF6B00;
}

.sv_custom_breadcrumbs .bread-current {
	font-family: 'proxima-nova', sans-serif;
    color: #000000;
    font-size: 14px;
	text-transform: uppercase;
	font-weight: 300;
}

@media (max-width: 480px) {
    .sv_custom_breadcrumbs ul {
        gap: 4px;
    }
    
    .sv_custom_breadcrumbs li:not(:last-child)::after {
        margin-left: 4px;
    }
}

