@charset "UTF-8";
/* CSS Document for desktop version */

body {
    padding: 0;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.6em;
    /*font-weight: lighter;*/
    overflow-x: hidden;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: inherit;
}


* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

ol, ul {
    /*list-style-type: lower-roman;*/
    list-style-type: none;
}

p {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

h2 {
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.5em;
}


#header {
    position:fixed;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background-color: white;
    /*opacity: 0.95;*/
    display: inline-table;
    vertical-align: middle;
    /*background-color: #F6F6F6;*/
    color: #F6F6F6;
    -webkit-transition: background-color 0.4s linear, color 0.1s linear;
    -moz-transition: background-color 0.4s linear, color 0.1s linear;
    -o-transition: background-color 0.4s linear, color 0.1s linear;
    -ms-transition: background-color 0.4s linear, color 0.1s linear;
    transition: background-color 0.4s linear, color 0.1s linear;
    z-index: 10; /*NUOVA*/
}

.privacyWrapper {
    width: 100%;
    height: 100%;
    margin-top: 20px;
    padding: 50px 15% 20px 4%;
    box-sizing: border-box;
}

#logo_name {
    display: table-cell;
    vertical-align: middle;
}

#logo_name > img {
    margin-left: 20px;
    opacity: 0;
    -webkit-transition: opacity 0.2 linear;
    -moz-transition: opacity 0.2 linear;
    -o-transition: opacity 0.2 linear;
    -ms-transition: opacity 0.2 linear;
    transition: opacity 0.2 linear;
}

nav {
    padding: 0;
    margin: 0;
    height: 60px;
    display: table-cell;
    vertical-align: middle;
}

nav > ul {
    height: 60px;
    float: right;
    list-style:none;
    display: inline-table;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    /*margin-right: 60px;*/
    margin-right: -97px;
    -webkit-transition: margin-right 0.2s linear;
    -moz-transition: margin-right 0.2s linear;
    -o-transition: margin-right 0.2s linear;
    -ms-transition: margin-right 0.2s linear;
    transition: margin-right 0.2s linear;
}

nav > ul > a {
    display: table-cell;
    cursor: pointer;
    vertical-align: middle;
    height: 60px;
    padding-right: 20px;
    padding-left: 20px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;

}


nav > ul > a:hover {
    background-color: #0091FF;
    color: #F6F6F6;
}

nav > ul >a:last-child {
    background-color: #FF6666;
    color: #F6F6F6;
}

nav > ul > a:last-child:hover {
    background-color: #e25959;
}

@media only screen and (max-width: 480px), only screen and (max-device-width: 640px) and (orientation: landscape){

    nav {
        display: none;
    }

    body {
        overflow-x: hidden;
    }

    #header {
        position: absolute;
        display: none;
    }


}

.unselectable {
    cursor: default;
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

#cookies {
    border-collapse: collapse;
    width: 100%;
    margin-top: 3em;
    margin-bottom: 3em;
    font-size: 15px;
}

#cookies tr:nth-child(even) {
    background-color: rgba(245,245,245, 1);
}

#cookies td, #cookies th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

/* ############## IPHONE 4+ RETINA DISPLAY ###################*/
@media only screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2){

}


/* ############## TABLETS PORTRAIT OR LANDSCAPE #############*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

}







