div.card-municipality{
    height: 450px;
    width: 280px;
    background-size: cover;
    background-position: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    color: white;
    font-weight: bold;
    font-size: 1.5em;
    overflow: hidden;
    display: inline-block;
    margin: 0 10px;
}

div.card-municipality:before{
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0) 0, #2E2E2E 95%);/* FF3.6+ */
    background: -webkit-gradient(linear, 180deg, color-stop(0, ADADAD), color-stop(95%, 2E2E2E));/* Chrome,Safari4+ */
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0, #2E2E2E 95%);/* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(180deg, rgba(0,0,0,0) 0, #2E2E2E 95%);/* Opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(0,0,0,0) 0, #2E2E2E 95%);/* IE10+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1301FE', endColorstr='rgba(0,0,0,0)', GradientType='1'); /* for IE */
    background: linear-gradient(180deg, rgba(0,0,0,0) 0, #2E2E2E 95%);/* W3C */
}

div.card-municipality .infos{
    position: absolute;
    bottom: 0;
    z-index: 5;
    left: 0;
    width: 100%;
    height: 25%;
}

div.card-municipality .infos .circled-municipality{
    width: 70px;
    height: 70px;
    margin: 10px 15px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 3px;
    background: -moz-linear-gradient(180deg, #4294CB 0, #174C95 100%);
    background: -webkit-gradient(linear, 180deg, color-stop(0, 4294CB), color-stop(100%, 174C95));
    background: -webkit-linear-gradient(180deg, #4294CB 0, #174C95 100%);
    background: -o-linear-gradient(180deg, #4294CB 0, #174C95 100%);
    background: -ms-linear-gradient(180deg, #4294CB 0, #174C95 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1301FE', endColorstr='#F4F60C', GradientType='1');
    background: linear-gradient(180deg, #4294CB 0, #174C95 100%);
}

div.card-municipality .infos .circled-municipality div{
    background: white;
    padding: 4px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

div.card-municipality .customers-number{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    display: table;
    opacity: 0;
    z-index: 5;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

div.card-municipality .customers-number.coming{
    opacity: 1;
}

div.card-municipality:hover .customers-number{
    opacity: 1;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

div.card-municipality:after{
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(180deg, #4294CB 0, #174C95 100%);
    background: -webkit-gradient(linear, 180deg, color-stop(0, 4294CB), color-stop(100%, 174C95));
    background: -webkit-linear-gradient(180deg, #4294CB 0, #174C95 100%);
    background: -o-linear-gradient(180deg, #4294CB 0, #174C95 100%);
    background: -ms-linear-gradient(180deg, #4294CB 0, #174C95 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1301FE', endColorstr='#F4F60C', GradientType='1');
    background: linear-gradient(180deg, #4294CB 0, #174C95 100%);
}

div.card-municipality:hover:after{
    opacity: 0.8;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

div.card-municipality .customers-number p{
    display: table-cell;
    vertical-align: middle;
    color: var(--yellow);
    text-align: center;
    font-size: 1.7em;
}


