﻿body {
    /*font-family: 'Oxygen', sans-serif;*/
    font-family: 'Open Sans', sans-serif;
}

#footer {
   /* position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;*/
}

.messaggio {
    padding: 20px;
    background-color: #fafbfc;
    border-left: 5px solid #6291c5;
    border-radius: 3px;
    font-size: 150%;
}

.hover:hover {
    text-decoration: underline !important;
}

.hover2:hover {
    text-decoration: underline !important;
    cursor: pointer !important;
}


.rosso-club {
    color: #6291c5 !important;
}

.blu-club-bg {
    background-color: #6291c5 !important;
}

.btn-blu-club {
    color: #fff;
    background-color: #6291c5;
    border-color: #486b93;
}

    .btn-blu-club:hover {
        color: #fff;
        background-color: #486b93;
        border-color: #486b93;
    }




/*  Ruota che gira: caricamento */

.loader_father {
    display: none;
    position: fixed;
    background-color: rgba(255,255,255,0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

.loader {
    position: relative;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #c7c7c7; 
    border-radius: 50%;
    border-top: 16px solid #6291c5;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Fine */
