/* CSS comune a tutte le skin */
body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
}

/** COMPONENTI VARI **/
.password {
    -webkit-appearance: none;
}

.select {
    -webkit-appearance: none;
    width: 100%;
    text-indent: 2px;
    border: 1px solid #ccc;
    background: #ffffff url("../svg/tendina_scura_giu.svg") no-repeat 98% 50%;
}

.checkbox,
.radio {
    /* Creiamo un contesto per il posizionamento assoluto dei controlli */
    position: absolute;
    top: 2px;
    left: 0px;
    /* L'altezza di linea corrisponde all'altezza dell'immagine che
    usiamo come sfondo del controllo */
    cursor: pointer;
}

.labelCheckBox {
    position: absolute;
    top: 0px;
    cursor: pointer;
}

.notifica,
.notificaLabel
{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    display: inline-flex;
}
.notificaLabel{
    display: inline-flex;
    top:-1px;
}

.refreshButton{
    cursor: pointer;
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}

/** elimina gli highlight sui bordi di input & co **/
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}


.tendinaChiaraDx,
.tendinaChiaraSx,
.tendinaChiaraGiu,
.tendinaChiaraSu,
.tendinaScuraDx,
.tendinaScuraSx,
.tendinaScuraGiu,
.tendinaScuraSu {
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

.tendinaChiaraDx {
    background: url("../svg/tendina_chiara_dx.svg") no-repeat;
}

.tendinaChiaraSx {
    background: url("../svg/tendina_chiara_sx.svg") no-repeat;
}

.tendinaChiaraGiu {
    background: url("../svg/tendina_chiara_giu.svg") no-repeat;
}

.tendinaChiaraSu {
    background: url("../svg/tendina_chiara_su.svg") no-repeat;
}

.tendinaScuraDx {
    background: url("../svg/tendina_scura_dx.svg") no-repeat;
}

.tendinaScuraSx {
    background: url("../svg/tendina_scura_sx.svg") no-repeat;
}

.tendinaScuraGiu {
    background: url("../svg/tendina_scura_giu.svg") no-repeat;
}

.tendinaScuraSu {
    background: url("../svg/tendina_scura_su.svg") no-repeat;
}

.ricercaBox{

}

/***** SPLASH PAGE***/
.splashPage {
    top: 0px;
    left: 0px;
    display: block;
    z-index: 10000;
}
.splashPageLayout,.splashPageLayoutCustom{
    z-index: 1;
}
.splashPageLogo{
    position: absolute;
    z-index: 2;
}

/** CHAT **/
.chat {
    background-color: #CCCCCC;
}

.chatHeader {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}

.chatElencoMessaggiContainer {
    background-color: #FFFFFF;
}

.chatElencoMessaggi {
    overflow-y: scroll;
    word-wrap:break-word;
}

.chatFooter {
    position: absolute;
    bottom: 0;
    left: 5px;
    width: calc(100% - 5px);
    height: 20px;
    background-color: #F2F2F2;
}

.chatInput {
    background-color: transparent;
    padding: 0px;
    border-width: 0px;
    height: 20px;
    line-height: 20px;
    font-family: "Source Sans Pro", serif;
}

.chatEmoticonBtn, .chatHelpBtn, .chatOptionBtn, .chatInviaBtn {
    position: absolute;
    top: 0px;
    cursor: pointer;
}

.chatEmoticonBtn {
    background: url("../svg/chat/emoticon_btn.svg") no-repeat;
}

.chatHelpBtn {
    background: url("../svg/chat/help_btn.svg") no-repeat;
}

.chatOptionBtn {
    background: url("../svg/chat/option_btn.svg") no-repeat;
}

/** LOGIN **/
.login{
    position: absolute;
    z-index: 200;
    display: none;
}
.loginForm,.loginRegistratiBox,.loginOspiteBox{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
}

/** LIVELLO ALPHA **/
.livelloAlpha, .livelloAlphaAlert {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 200;
    display: none;
}

.livelloAlphaAlert {
    z-index: 1000;
}

.loadingCircle {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.loadingCircleSvg{
    width: 116px;
    height: 116px;
}

.chiudiBtn{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    cursor: pointer;
}



/** ALERT **/
#alert_container{
    position: fixed; /** TF 20 01 20 fixed per vedere sempre gli alert **/
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#alert_container:empty{
    display: none;
}

.alertBackground {
    background-color: #F2F2F2;
    z-index: 1001;
    pointer-events: auto;

    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
}

.pannelloBackground {
    color: #FFFFFF;
    background-color: #000000;
    opacity: 0.9;
    /*z-index: 1001;*//*troppo alto finisce sopra il livello alpha*/
    /*z-index: 199;*//*troppo basso finisce sotto alcune carte*/
    z-index: 999;//*sotto i mille garantisce che stia sopara le carte e non va sopra altri layer*/
    padding: 10px;
    display: inline-table;
    border: 2px solid #FFFFFF;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow:hidden;
    pointer-events: auto;
}
.pannelloTesto {
    opacity: 1;
}

.headerGenerico, .footerGenerico, .subheaderGenerico, .headerGenericoTabella {
    position: relative;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
}

.headerGenericoTabella{
    position: absolute;
}

.btnGenerico {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

/** TABELLA **/
.tabellaBody {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;

}

.tabellaContainer {
    position: absolute;
    left: 0px;
    width: 100%;
    overflow-y: auto;
}

.tabellaRiga,
.tabellaRigaBis,
.tabellaRigaCompleta,
.tabellaRigaOver
{
    display: inline-flex;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    color: #000000;
    cursor: pointer;
}

.tabellaRiga {
    background-color: #F7F7F7;
}

.tabellaRigaBis {
    background-color: #FDFDFD;
}
.tabellaRigaOver {
    background-color: #f1f1f1;
}

/**
Riempie il div parent completamente
**/
.riempiTutto{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/** CENTRAMENTI VERTICALI **/
.centraTutto {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.centraVerticaleSX {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.centraVerticaleDX {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

.centraOrizzontale {
    display: flex;
    justify-content: center;
    text-align: center;
}

.centraOrizzontaleUP {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.centraOrizzontaleDOWN {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}

.testoMassimo30H{
    text-overflow:ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    line-height: 30px;
}

/* fillColoreC: scala grigi non personalizzabile */
.fillColoreC00 {
    fill: #B3B3B3;
    background-color: #B3B3B3;
    color: #FFFFFF;
}

.fillColoreC01 {
    fill: #F2F2F2;
    background-color: #F2F2F2;
}

.fillColoreC02 {
    fill: #E6E6E6;
    background-color: #E6E6E6;
}

.fillColoreC03 {
    fill: #CCCCCC;
    background-color: #CCCCCC;
}

.fillColoreC04 {
    fill: #999999;
    background-color: #999999;
    color: #FFFFFF;
}

.fillColoreC05 {
    fill: #808080;
    background-color: #808080;
    color: #FFFFFF;
}

.fillColoreC06 {
    fill: #666666;
    background-color: #666666;
    color: #FFFFFF;
}

.fillColoreC07 {
    fill: #4D4D4D;
    background-color: #4D4D4D;
    color: #FFFFFF;
}


.linearGradientC00{
    background: #808080; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left,#808080,#B3B3B3); /*Safari 5.1-6*/
    background: -o-linear-gradient(right,#808080,#B3B3B3); /*Opera 11.1-12*/
    background: -moz-linear-gradient(right,#808080,#B3B3B3); /*Fx 3.6-15*/
    background: linear-gradient(to right, #808080, #B3B3B3); /*Standard*/
}


.strokeColoreBianco{
    stroke:#FFFFFF;
    stroke-miterlimit:10;
    stroke-width:1px;
}

.fillColoreBianco {
    fill: #FFFFFF;
    background-color: #FFFFFF;
    color: #000000;
}
.fillColoreNero {
    fill: #000000;
    background-color: #000000;
    color: #FFFFFF;
}

.fillColoreTrasparente{
    background-color: transparent;
    fill:transparent;
    color: #000000;
}

.fillStellaBianca {
    fill: #FFFFFF;
    background-color: #FFFFFF;
}

.fillStellaGialla {
    fill: #fbb03b;
    background-color: #fbb03b;
}

.fillStellaGrigia{
    fill: #b3b3b3;
    background-color: #b3b3b3;
}

.textColoreBianco {
    color: #FFFFFF;
}
.textColoreNero {
    color: #000000;
}
.textColoreGrigio {
    color: #CCCCCC;
}

.textColoreGrigioScuro {
    color: #4D4D4D;
}

.textSottolineato{
    text-decoration: underline;
}

.fillColoreSemitrasparente {
    fill: rgba(100, 100, 100, 0.8);
    background-color: rgba(100, 100, 100, 0.8);
    color: #FFFFFF;
}

.pocoTrasparente{
    opacity: 0.9;
}
.semiTrasparente {
    opacity: 0.6;
}
.moltoTrasparente{
    opacity: 0.4;
}

/** **/
.segnalino{
    position: absolute;
    z-index: 1;
}

/** avatar **/
.avatar {
    background: url("../svg/avatar_vuoto.svg") no-repeat;
}

/** WEBVIEW **/
.webviewMobile {
    display: none;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: white;
    z-index: 304; /*deve stare sopra a tutto - ultimo rilevato replay sui 300 */
    z-index: 1000; /*deve stare sopra a tutto - ultimo rilevato lobby_container sui 999 */
    position: fixed;
    -webkit-overflow-scrolling: touch;
}

.webviewFrame {
    position: absolute;
    top: 100px;
    left: 0;
    overflow: hidden;
    overflow-y: scroll;
    z-index: 305;
}

.headerWebview,
.chiudiWebview {
    position: fixed !important;
    border-top: 5px solid white;
    border-bottom: 5px solid white;
    z-index: 306;
    z-index: 1002; /*deve stare sopra a tutto - ultimo rilevato lobby_container sui 999 */
}

.chiudiWebview {
    border: 0;
}

/** TUTORIAL **/
.tutorial {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    z-index: 9999;
}

.tutorialContainer, .tutorialBlocco, .tutorialPieno, .tutorialSemi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tutorialBlocco {
    z-index: 9999;
}

.tutorialContainer {
    z-index: 9998;
}

.tutorialPieno {
    z-index: 9999;
}

.tutorialSemi {
    z-index: 9997;
}

.tutorialTitolo {
    position: absolute;
    top: 300px;
    width: 100%;
    height: 60px;
    font-size: 40px;
    z-index: 10000;
    text-align: center;
}

.tutorialAvanti {
    position: absolute;
    top: 400px;
    width: auto;
    height: 30px;
    display: inline-flex;
    z-index: 10000;

}

.tutorialAvantiLabel {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: 30px;
    font-size: 24px;
}

.tutorialAvantiBg {
    position: relative;
    top: 0;
    left: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.tutorialStep {
    position: relative;
    top: 0;
    left: 10px;
    width: 30px;
    height: 30px;
    z-index: 10000;
}
.tutorialStepLabel,
.tutorialStepBg
{
    position: absolute;
    top: 0;
    left: 0px;
    width: 30px;
    height: 30px;
    z-index: 1;
}
.tutorialStepBg
{
    z-index: 0;
}

.tutorialfumetto {
    position: absolute;
    top: 50px;
    left: 362px;
    width: 300px;
    height: auto;
    padding: 10px;
    box-shadow: 5px 5px 10px 2px #333333;
    font-size: 20px;
    z-index: 10000;
}

.tutorialfumettoA,
.tutorialfumettoB,
.tutorialfumettoC,
.tutorialfumettoD,
.tutorialManina {
    position: absolute;
    left: 0px;
    width: 30px;
    height: 30px;
    z-index: 10000;
}

.tutorialfumettoA {
    background: url("../svg/trinagolo_bianco_giu.svg") no-repeat;
    left: 200px;
}

.tutorialfumettoB {
    background: url("../svg/trinagolo_bianco_su.svg") no-repeat;
    left: 200px;
}

.tutorialfumettoC {
    background: url("../svg/trinagolo_grigio_giu.svg") no-repeat;
    left: 200px;
}

.tutorialfumettoD {
    background: url("../svg/trinagolo_grigio_su.svg") no-repeat;
    left: 200px;
}

.tutorialManina {
    background: url("../svg/manina.svg") no-repeat;
    z-index: 10001;
}

/* CARTE */
.cartaGenerica {
    position: absolute;
    top: 0;
    left: 0;
    height: 140px;
    z-index: 99;
    border: 4px solid transparent;
    transform-style: preserve-3d;
}
.cartaGenericaFirefox {
    position: absolute;
    top: 0;
    left: 0;
    height: 140px;
    z-index: 99;
    border: 4px solid transparent;
}

.carteFrancesi {
    width: 103px;
}

.carteNapoletane {
    width: 87px;
}

.cartePiacentine {
    width: 78px;
}

.carteGenovesi {
    width: 95px;
}

.cartaSpessore {
    z-index: 98;
}

.cartaOrizzontale {
    -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
    transform: rotate(90deg);
}

.cartaPrimiera {

    height: 32px;
    width: 25px;
    border: 0px solid transparent;
    transform-style: unset;
}

.cartaVisteOff, .cartaVisteOn {
    height: auto;
    width: 24px;
    border: 0px solid transparent;
    transform-style: unset;
}

.cartaVisteOff {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    opacity: 0.3;
}


.mazzoNumeroCarte{
    display: none;
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 24px;
}

.logoDorso{
    position: absolute;
    left:50%;
    top:40%;
}

.occhioCarta{
    display: none;
    position: absolute;
    top:-3px;
    left:20px;
    width: 25px;
    height: 25px;
    background: url("../svg/occhio.svg") no-repeat;
    opacity: 0.3;
}

/** SPIZZO CAM **/
/* The animation code */
@keyframes carta_freccia {
    0%   {top:95%}
    25%  {top:93%}
    50%  {top:91%}
    75%  {top:89%}
    100% {top:87%}
}

/* The element to apply the animation to */
.cartaFreccia {
    display: none;
    position: absolute;
    left:50%;
    margin-left: -20px;
    width: 40px;
    top:95%;
    margin-top: -30px;
    height: 28px;
    background: url("../svg/carte/dorso_freccia.svg") no-repeat;
    opacity: 0.5;
    animation-name: carta_freccia;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.spizzoCam{

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 0px;
    margin: 0px;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    z-index: 1000;
}

.spizzoCamBg{
    z-index: 1000;
    position:absolute;
    left: 50%;
    margin-left: -80px;
    top: 40%;
    margin-top: -50px;
    width:160px;
    height:103px;
    overflow:hidden;
    background-color:rgba(0, 0, 0, 0.9);
    border: 6px solid white;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

#flip {
    position: absolute;
    transform: translateZ(10px) rotateX(38deg) rotateZ(-28deg) rotateY(10deg) !important;
    -webkit-transform: translateZ(10px) rotateX(38deg) rotateZ(-28deg) rotateY(10deg) !important;
    -webkit-transform-style: preserve-3d;
    -webkit-transform-origin: 0 0 0;
    transform-style: preserve-3d;
    transform-origin: 0 0 0;
}

.SpObjPorzione ,
.SpObjPorzione_reverse {
    position: absolute;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.SpObjPorzione_reverseS {
}

input[type=range][orient=vertical] {
    writing-mode: bt-lr; /* IE */
    -webkit-appearance: slider-vertical; /* WebKit */
    padding: 0 5px;
    opacity:0;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #000000;
    height: 36px;
    width: 90px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
}
input[type=range]::-moz-range-thumb {
    border: 1px solid #000000;
    height: 36px;
    width: 90px;
    cursor: pointer;
}
input[type=range]::-ms-thumb {
    border: 1px solid #000000;
    height: 36px;
    width: 96px;
    cursor: pointer;
}

/* tab */
.tabOrizzonatle,.tabItem{
    height: inherit;
    width: 100%;
    display: inline-flex;
}.tabItem{
    height: inherit;
    width: 10%;
    cursor: pointer;
}

 /* GRADIENTI DEI GIOCHI */

.gradiente_AP{
    background: #1C75BB; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #1C75BB , #27A9E0); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #1C75BB, #27A9E0); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #1C75BB, #27A9E0); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #1C75BB , #27A9E0); /* Standard syntax */
}
.gradiente_BC{
    background: #C1272D; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #C1272D , #ED1C24); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #C1272D, #ED1C24); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #C1272D, #ED1C24); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #C1272D , #ED1C24); /* Standard syntax */
}
.gradiente_BG{
    background: #D58845; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #D58845 , #F7CA4F); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #D58845, #F7CA4F); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #D58845, #F7CA4F); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #D58845 , #F7CA4F); /* Standard syntax */
}
.gradiente_BR{
    background: #009245; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #009245 , #39B54A); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #009245, #39B54A); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #009245, #39B54A); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #009245 , #39B54A); /* Standard syntax */
}
.gradiente_BS{
    background: #ED1C39; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #ED1C39 , #C00057); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #ED1C39, #C00057); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #ED1C39, #C00057); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #ED1C39 , #C00057); /* Standard syntax */
}
.gradiente_CF{
    background: #C3145A; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #C3145A , #ED6179); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #C3145A, #ED6179); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #C3145A, #ED6179); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #C3145A , #ED6179); /* Standard syntax */
}
.gradiente_CR{
    background: #39B44A; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #39B44A , #8CC53F); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #39B44A, #8CC53F); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #39B44A, #8CC53F); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #39B44A , #8CC53F); /* Standard syntax */
}
.gradiente_MZ{
    background: #44AAF5; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #44AAF5 , #95C2EE); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #44AAF5, #95C2EE); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #44AAF5, #95C2EE); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #44AAF5 , #95C2EE); /* Standard syntax */
}
.gradiente_P5{
    background: #444444; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #1A1A1A , #444444); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #1A1A1A, #444444); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #1A1A1A, #444444); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #1A1A1A , #444444); /* Standard syntax */
}
.gradiente_PP{
    background: #1E315E; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #1E315E , #0071BC); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #1E315E, #0071BC); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #1E315E, #0071BC); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #1E315E , #0071BC); /* Standard syntax */
}
.gradiente_S4{
    background: #00A99D; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #00A99D , #22BA86); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #00A99D, #22BA86); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #00A99D, #22BA86); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #00A99D , #22BA86); /* Standard syntax */
}
.gradiente_SC{
    background: #F6931E; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #F6931E , #FAAF40); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #F6931E, #FAAF40); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #F6931E, #FAAF40); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #F6931E , #FAAF40); /* Standard syntax */
}
.gradiente_SK{
    background: #214a25; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #214a25 , #81be8f); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #214a25, #81be8f); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #214a25, #81be8f); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #214a25 , #81be8f); /* Standard syntax */
}
.gradiente_SM{
    background: #ED1C2A; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #ED1C2A , #FF9999); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #ED1C2A, #FF9999); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #ED1C2A, #FF9999); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #ED1C2A , #FF9999); /* Standard syntax */
}
.gradiente_ST{
    background: #004A78; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #004A78 , #90D29A); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #004A78, #90D29A); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #004A78, #90D29A); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #004A78 , #90D29A); /* Standard syntax */
}
.gradiente_TL{
    background: #8A1C4F; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #8A1C4F , #C10000); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #8A1C4F, #C10000); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #8A1C4F, #C10000); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #8A1C4F , #C10000); /* Standard syntax */
}
.gradiente_TS{
    background: #FBB03B; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #FBB03B , #FFDD17); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #FBB03B, #FFDD17); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #FBB03B, #FFDD17); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #FBB03B , #FFDD17); /* Standard syntax */
}