2019-12-28 11:16:53 +01:00
|
|
|
body {
|
|
|
|
|
font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
color: #333333;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
//font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html {
|
|
|
|
|
font-size: 100%; // default font size (browser 16) -> (10 62.5%)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
font-size: 125%; // default font size (browser 16) -> (10 62.5%)
|
|
|
|
|
margin: 0 0 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-13 23:52:14 +01:00
|
|
|
ul {
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul li::before {
|
|
|
|
|
content: '\2713';
|
|
|
|
|
color: red;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 1em;
|
|
|
|
|
margin-left: 20px;
|
2020-01-20 01:48:34 +01:00
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
}
|
2020-01-13 23:52:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
color: #2f2c8b;
|
|
|
|
|
font-size: 18px;
|
2020-01-20 01:48:34 +01:00
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
2020-01-13 23:52:14 +01:00
|
|
|
}
|
|
|
|
|
|
2019-12-28 11:16:53 +01:00
|
|
|
h1 {
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
line-height: 3rem;
|
|
|
|
|
letter-spacing: -.01562em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$grayshadow: #555;
|
|
|
|
|
|
|
|
|
|
$graytext: #555;
|
|
|
|
|
|
|
|
|
|
$textcol: blue;
|
|
|
|
|
$textcol_scuro: darkblue;
|
|
|
|
|
$heightBtn: 100%;
|
|
|
|
|
|
|
|
|
|
.flex-item {
|
|
|
|
|
// background-color: #d5e2eb;
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
margin-left: 3px;
|
|
|
|
|
margin-right: 3px;
|
|
|
|
|
color: #000;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
height: $heightBtn;
|
|
|
|
|
line-height: $heightBtn;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
//flex: 0 0 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fade-enter-active, .fade-leave-active {
|
|
|
|
|
transition: opacity .2s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */
|
|
|
|
|
{
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-enter {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-enter-active {
|
|
|
|
|
animation: slide-in 0.2s ease-out forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-leave {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-leave-active {
|
|
|
|
|
animation: slide-out 0.5s ease-out forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes slide-in {
|
|
|
|
|
from {
|
|
|
|
|
transform: translateX(-500px);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes slide-out {
|
|
|
|
|
from {
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
to {
|
|
|
|
|
transform: translateX(1600px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.myinput-area{
|
|
|
|
|
height: 45px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my-notif-class{
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
border-radius: 30px !important;
|
|
|
|
|
text-shadow: .05rem .05rem .15rem #878787;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mybanner {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lowperc {
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
.medperc {
|
|
|
|
|
color: blue;
|
|
|
|
|
}
|
|
|
|
|
.highperc {
|
|
|
|
|
color: green;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.hide-if-small {
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.thiny-if-small {
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
max-width: 22px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.links, .links a {
|
|
|
|
|
text-shadow: 1px 1px 1px #555 !important;
|
|
|
|
|
// font-weight: bold;
|
|
|
|
|
color: cornflowerblue !important;
|
|
|
|
|
}
|
|
|
|
|
.links:hover {
|
|
|
|
|
color: white !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-subtitle1, h2 {
|
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
font-size: 1.35rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 1.75rem;
|
|
|
|
|
text-shadow: .25 .25rem .5rem $grayshadow;
|
|
|
|
|
letter-spacing: .00937em;
|
|
|
|
|
&.big {
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-subtitle2, h3 {
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
font-size: 1.15rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 1.75rem;
|
|
|
|
|
letter-spacing: .00937em;
|
|
|
|
|
text-shadow: .25rem .25rem .5rem $grayshadow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-subtitle3 {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 1.75rem;
|
|
|
|
|
letter-spacing: .00937em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 718px) {
|
|
|
|
|
// PER VERSIONE MOBILE
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
font-size: 100%; // default font size (browser 16) -> (10 62.5%)
|
|
|
|
|
font-family: "Abyssinica SIL", serif;
|
|
|
|
|
text-justify: auto;
|
|
|
|
|
margin: 0 0 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-subtitle1 {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
.text-subtitle2 {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
.text-subtitle3 {
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cltexth3 {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-big{
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my-card {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 350px;
|
|
|
|
|
min-width: 300px;
|
|
|
|
|
padding: 1rem 1rem;
|
|
|
|
|
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-trans {
|
|
|
|
|
opacity: 0.9;
|
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
|
|
|
|
|
filter: alpha(opacity=90);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-spacetrans {
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
background: rgba(0,0,0,0.3) !important;
|
|
|
|
|
border-radius: 30px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-shadow {
|
|
|
|
|
text-shadow: .15rem .15rem .15rem $grayshadow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.citazione{
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
font-family: "Lucida Calligraphy", serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cltexth3, .cltexth2, .cltexth4, .cltexth5, .cltexth6 {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 1.75rem;
|
|
|
|
|
letter-spacing: .01em;
|
|
|
|
|
text-align: center !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cltexth4 {
|
|
|
|
|
font-size: 1.15rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cltexth5 {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cltexth6 {
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cltexth2 {
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.boldhigh, .boldop, .text-big{
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
text-shadow: .05rem .05rem .05rem $grayshadow;
|
|
|
|
|
}
|
|
|
|
|
.boldop{
|
|
|
|
|
color: darkblue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-big{
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.center_to_image{
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.center_img {
|
|
|
|
|
display: block !important;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padding_cell {
|
|
|
|
|
padding: 0.75rem 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 3000px) {
|
|
|
|
|
.q-parallax__media > img, .myclimg {
|
|
|
|
|
max-height: 800px !important;
|
|
|
|
|
min-width:inherit !important;
|
|
|
|
|
min-height: inherit !important;
|
|
|
|
|
}
|
|
|
|
|
.myclimg, .maxwidth {
|
|
|
|
|
height: 750px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1600px) {
|
|
|
|
|
.q-parallax__media > img, .myclimg {
|
|
|
|
|
max-height: 800px !important;
|
|
|
|
|
min-width:inherit !important;
|
|
|
|
|
min-height: inherit !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1400px) {
|
|
|
|
|
.q-parallax__media > img, .myclimg {
|
|
|
|
|
max-height: 800px !important;
|
|
|
|
|
min-width:inherit !important;
|
|
|
|
|
min-height: inherit !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1200px) {
|
|
|
|
|
.q-parallax__media > img, .myclimg {
|
|
|
|
|
max-height: 800px !important;
|
|
|
|
|
min-width:inherit !important;
|
|
|
|
|
min-height: inherit !important;
|
|
|
|
|
}
|
|
|
|
|
.myclimg, .maxwidth {
|
|
|
|
|
height: 700px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.maxwidth{
|
|
|
|
|
max-width: 1200px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1000px) {
|
|
|
|
|
.q-parallax__media > img, .myclimg {
|
|
|
|
|
max-height: 700px !important;
|
|
|
|
|
min-width:inherit !important;
|
|
|
|
|
min-height: inherit !important;
|
|
|
|
|
}
|
|
|
|
|
.myclimg, .maxwidth {
|
|
|
|
|
height: 650px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 800px) {
|
|
|
|
|
.q-parallax__media > img, .myclimg {
|
|
|
|
|
max-height: 600px !important;
|
|
|
|
|
min-width:inherit !important;
|
|
|
|
|
min-height: inherit !important;
|
|
|
|
|
}
|
|
|
|
|
.myclimg, .maxwidth {
|
|
|
|
|
height: 550px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 700px) {
|
|
|
|
|
.q-parallax__media > img, .myclimg {
|
|
|
|
|
max-height: 500px !important;
|
|
|
|
|
min-width:inherit !important;
|
|
|
|
|
min-height: inherit !important;
|
|
|
|
|
}
|
|
|
|
|
.myclimg, .maxwidth {
|
|
|
|
|
height: 400px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
.q-parallax__media > img, .myclimg {
|
|
|
|
|
max-height: 450px !important;
|
|
|
|
|
min-height: inherit !important;
|
|
|
|
|
min-width:100% !important;
|
|
|
|
|
}
|
|
|
|
|
.myclimg, .maxwidth {
|
|
|
|
|
height: 400px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// preloading images:
|
|
|
|
|
@media screen {
|
|
|
|
|
div#preloader {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -9999px;
|
|
|
|
|
top: -9999px;
|
|
|
|
|
}
|
|
|
|
|
div#preloader img {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media print {
|
|
|
|
|
div#preloader,
|
|
|
|
|
div#preloader img {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tothebottomfixed {
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tothetop {
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.centermydiv{
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-verified {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
text-shadow: .05rem .05rem .15rem #fff;
|
|
|
|
|
background-color: red;
|
|
|
|
|
border-radius: 1rem !important;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.shadow-max {
|
|
|
|
|
//color: white;
|
|
|
|
|
text-shadow: .25rem .25rem .5rem $grayshadow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.myh4{
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
color: red;
|
|
|
|
|
line-height: 125%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mybtn_sticky{
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mybtn_sticky:hover{
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.imgautosize{
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
margin-top: auto;
|
|
|
|
|
margin-bottom: auto;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin_buttons {
|
|
|
|
|
margin: -8px -8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin_buttons > * {
|
|
|
|
|
margin: 12px 12px !important;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-20 01:48:34 +01:00
|
|
|
.fa-flag-it:before {
|
|
|
|
|
content: url('statics/icons/flag_it.svg');
|
2020-01-30 01:19:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fa-flag-fr:before {
|
|
|
|
|
content: url('statics/icons/flag_fr.svg');
|
2020-01-27 15:08:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fa-flag-si:before {
|
2020-01-30 01:19:40 +01:00
|
|
|
content: url('statics/icons/flag_si2.svg');
|
2020-01-20 01:48:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fa-flag-us:before {
|
|
|
|
|
content: url('statics/icons/flag_us.svg');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fa-flag-es:before {
|
|
|
|
|
content: url('statics/icons/flag_es.svg');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fa-flag-gb:before {
|
|
|
|
|
content: url('statics/icons/flag_gb.svg');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fa-flag-de:before {
|
|
|
|
|
content: url('statics/icons/flag_de.svg');
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-27 15:08:03 +01:00
|
|
|
.fa-flag-ch:before {
|
|
|
|
|
content: url('statics/icons/flag_ch.svg');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fa-flag-pe:before {
|
|
|
|
|
content: url('statics/icons/flag_pe.svg');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fa-flag-hr:before {
|
|
|
|
|
content: url('statics/icons/flag_hr.svg');
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-30 01:19:40 +01:00
|
|
|
.fa-flag-cm:before {
|
|
|
|
|
content: url('statics/icons/flag_cm.svg');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fa-flag-sm:before {
|
|
|
|
|
content: url('statics/icons/flag_sm.svg');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fa-flag-co:before {
|
|
|
|
|
content: url('statics/icons/flag_co.svg');
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-20 01:48:34 +01:00
|
|
|
.animazione {
|
|
|
|
|
animation-duration: 2s;
|
|
|
|
|
animation-fill-mode: both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wrapword {
|
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
}
|
2020-01-27 15:08:03 +01:00
|
|
|
|
|
|
|
|
.clBorderWarning {
|
|
|
|
|
border: #f69f09 solid 5px;
|
|
|
|
|
border-radius: 32px;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
}
|
2020-01-30 01:19:40 +01:00
|
|
|
|
|
|
|
|
.text-h5 {
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 1.5rem;
|
|
|
|
|
letter-spacing: normal;
|
|
|
|
|
}
|
|
|
|
|
}
|