/* CSS Document */
html {
    min-height: 100%;
    //margin-left: calc(100vw - 100%);
}
body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}
main {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
}
.narrow-input {
    width: 100px; /* Puoi modificare questa larghezza secondo le tue esigenze */
}
.tagify__tag {
            font-size: 18px;
}
.tagify__input {
            font-size: 18px;
}
.tagify__dropdown__item {
    font-size: 18px; 
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}

/* Regola le dimensioni del pulsante */
input[type="radio"] {
  width: 20px; /* Larghezza */
  height: 20px; /* Altezza */
}

/* Regola la dimensione del testo delle etichette */
.radio-label {
  font-size: 18px; /* Dimensione del testo */
  margin-left: 10px; /* Spazio tra il pulsante e l'etichetta */
}
.style1 {
    padding-bottom: 50px;
}
.style2 {
    margin-top: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.style3 {
    padding-top: 10px;
}
.style4 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.style5 {
    padding-bottom: 20px;
}
.style6 {
    padding-top: 50px;
    padding-bottom: 50px;
}
input[type="text"] {
  -webkit-appearance: none; /* Disattiva lo zoom automatico su iOS */
}

