* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.testata {
    display: flex;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
}

.etichetta {
    border: 2px solid #ced4da;
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
}

.titolo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #343a40;
    transition: color 0.3s ease;
}

.titolo:hover {
    color: #007bff;
}

.bottiglia {
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.bottiglia:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.informazioni {
    margin-bottom: 20px;
}

.informazioni div {
    margin-bottom: 8px;
    color: #6c757d;
}

.informazioni div::before {
    font-weight: bold;
    content: '\2022';
    /* bullet point */
    color: #007bff;
    margin-right: 5px;
}

.etichetta .col-md-6 {
    padding: 0;
}

.tabella {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    border-radius: 10px;
    overflow-x: hidden;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.tabella caption {
    font-weight: bold;
    font-size: 20px;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    caption-side: top;
}

.tabella th,
.tabella td {
    border: 1px solid #dee2e6;
    padding: 10px;
}

.tabella th {
    background-color: #f8f9fa;
    color: #343a40;
    text-align: left;
    font-weight: bold;
}

.tabella tr:nth-child(even) {
    background-color: #f8f9fa;
}

.tabella tr:hover {
    background-color: #e2e6ea;
}

.azienda {
    margin-top: 40px;
}

.informazioni {
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.informazioni-azienda div {
    margin-bottom: 8px;
    color: #6c757d;
}

.informazioni-azienda div::before {
    font-weight: bold;
    content: '\2022';
    /* bullet point */
    color: #007bff;
    margin-right: 5px;
}

/****************************************************************************************************
Visualizzo la img della bottiglia in una determinata posizione in base alla grandezza del dispositivo
****************************************************************************************************/

.visible-for-small-device {
    display: none;
}

.visible-for-big-device {
    display: block;
}

@media only screen and (max-width: 576px) {
    .visible-for-small-device {
        display: block;
    }

    .visible-for-big-device {
        display: none;
    }
}

/***************************************
Menù a tendina per selezionare la lingua
***************************************/

.select-menu {
    /* width: 380px; */
    margin: 0;
    height: 40px;
}

.select-menu .select-btn {
    display: flex;
    height: 40px;

    background: #fff;
    padding: 15px;
    margin-bottom: 5px;
    font-size: 18px;
    border-radius: 8px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 5px rgba(1, 1, 1, 0.5);
    cursor: pointer;
}

.select-btn i {
    font-size: 25px;
    transition: 0.3s;
}

.select-menu.active .select-btn i {
    transform: rotate(-180deg);
}

.select-menu .options {
    /* max-width: 110px; */
    position: absolute;
    z-index: 100;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 50px rgba(1, 1, 1, 0.5);
    display: none;
    transition: 0.3s;
}

.select-menu.active .options {
    display: block;
}

.options .option {
    display: flex;
    height: 50px;
    cursor: pointer;
    padding: 0 8px;
    border-radius: 8px;
    align-items: center;
}

.options .option:hover {
    background: #F2F2F2;
}

.option .option-img {
    font-size: 25px;
    margin-right: 5px;
}

.option .option-text {
    font-size: 18px;
    margin-right: 0px;
}

.corsivo {
    font-size: 0.9em !important;
    font-style: italic
}

.corsivosmall {
    font-size: 0.7em !important;
    font-style: italic
}

.grass {
    font-weight: bold;
}