*, *:after, *:before { 
    -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; 
}

html {
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
    transition: all 0.3s;
    -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

body {
    margin: 0;
    color: #212529;
    font-family:'Poppins',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;

}

p, div {
    margin: 0;
    padding: 0;
}

span {
    display: inline-block;
    
}


/* Font */
.titolo {
    font-family:'Titillium Web',sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.font_small {
    font-size: 12px;
}


/* Box */

.contenitore {
    display: block;
    max-width: 1350px;
    margin: 0 auto;
    /* border: solid thin fuchsia; */
    padding: 30px;

    border-bottom: solid 1px #212529;
    
}

.riga_form {
    display: flex;
    width: 100%;
}

/* Navbar */

/* Intestazione */
.navbar {
    display: flex;
    padding: 20px 40px;

    background-color: #000000;
    /* border: solid thin orchid; */
}

.box_logo_nav1, .box_logo_nav2, .box_menu_nav, .box_titolo_nav {
    display: flex;
    width: 100%;
    align-items: center;
    color: #ffffff;
}

.box_logo_nav1 {
    justify-content: left;
}
.box_logo_nav2 {
    justify-content: right;
}

.box_menu_nav {
    justify-content: right;
}

.box_titolo_nav {
    flex-direction: column;
    justify-content: center;
}



/* Input */

.stile_input {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #212529;
    background-color: #ffffff;
    background-clip: padding-box;
    border: solid thin #dee2e6;
    /* transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; */
}

/* Bottoni */
.btn_scelta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: none;
    border: solid 1px #dee2e6;
    padding: 12px;
    color: #212529;
    font-family:'Poppins',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    min-width: 350px;
    cursor: pointer;    
}
.btn_scelta:hover img {
    height: 30px;
}

.btn_menu {
    background-color: #ff0000;
    color: #ffffff;
    padding: 8px 12px;
    border: none;
    /* font-size: 14px;
    font-family: 'Poppins', sans-serif; */
    font-family:'Titillium Web',sans-serif;
    font-size: 16px;
    cursor: pointer;
}
.btn_menu:hover {
    background-color: #000000;
}




/* Helpers */
.mb4 {
    margin-bottom: 4px;
}
.mb6 {
    margin-bottom: 6px;
}
.mb18 {
    margin-bottom: 18px;
}

.mb30 {
    margin-bottom: 30px;
}


.mr12 {
    margin-right: 12px;
}

.mt12 {
    margin-top: 12px;
}

.ml12 {
    margin-left: 12px;
}

.note {
    font-size: 12px;
}