.info-dispo {
    display: inline-block;
    float: right;
    color: #ffba00;
    font-size: 13pt;
}

.flix-infobox {
    padding: 24px;
}
.flix-infobox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 5px;
    background-color: #fff;
    font-family: Roboto Condensed,Arial,sans-serif;
    font-size: 16px;
    font-weight: 300;
    -webkit-box-shadow: 0 0 12px rgba(0,0,0,.12);
    box-shadow: 0 0 12px rgba(0,0,0,.12);
}

.price-box {
    border: 2px solid #e1e1e1;
    border-radius: 5px;
    padding: 15px 15px 10px 15px;
    background-color: #fff;
}

.counter{
    font-family: 'Muli', sans-serif;
    width: 200px;
    padding: 0 0 0 40px;
    margin: 0 auto;
}
.counter .counter-content{
    color: #fff;
    background: linear-gradient(to bottom, #FE61AE, #D221B0);
    text-align: center;
    width: 160px;
    padding: 30px 10px;
    margin: 0 auto;
    border-radius: 40px 0;
    border-radius:0 30px 50px 50px;
    position: relative;
    z-index: 1;
}
.counter .counter-content:before,
.counter .counter-content:after{
    content: "";
    background: linear-gradient(to top, #FE61AE,#D221B0);
    width: 40px;
    height: 45px;
    border-radius: 20px 20px 0 0;
    position: absolute;
    top: 0;
    left: -40px;
}
.counter .counter-content:after{
    background: #FE61AE;
    width: 20px;
    border-radius: 0;
    left: -20px;
    z-index: -1;
}
.counter h3{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 7px 0;
}
.counter .counter-value{
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 10px;
    display: block;
}
.counter .counter-content:hover h3,
.counter .counter-content:hover .counter-value{ text-shadow: 0 0 4px rgba(0, 0, 0, 0.5) }
.counter .counter-icon{
    color: #D221B0;
    background: #fff;
    font-size: 35px;
    line-height: 70px;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s;
}
.counter:hover .counter-icon{ transform: rotateY(360deg); }
.counter.green .counter-content{ background: linear-gradient(to bottom,#06E2C8,#09B6DE); }
.counter.green .counter-content:before{ background: linear-gradient(to top,#06E2C8,#09B6DE); }
.counter.green .counter-content:after{ background: #06E2C8; }
.counter.green .counter-icon{ color: #09B6DE; }
.counter.purple .counter-content{ background: linear-gradient(to bottom,#C530AE,#922FC8); }
.counter.purple .counter-content:before{ background: linear-gradient(to top,#C530AE,#922FC8); }
.counter.purple .counter-content:after{ background: #C530AE; }
.counter.purple .counter-icon{ color: #922FC8; }
.counter.blue .counter-content{ background: linear-gradient(to bottom,#2D64DB,#783FCC); }
.counter.blue .counter-content:before{ background: linear-gradient(to top,#2D64DB,#783FCC); }
.counter.blue .counter-content:after{ background: #2D64DB; }
.counter.blue .counter-icon{ color: #783FCC; }
@media screen and (max-width:990px){
    .counter{ margin-bottom: 30px; }
}