/* =====[ GOOGLE FONT "LATO" ]============================================================================== */
@import url(https://fonts.googleapis.com/css?family=Lato:400,100,900);

/* =====[ PRICING CIRCLES ]============================================================================== */

.round-pricing-tables .color-1-bg
{
    background: green !important;
}

.round-pricing-tables .color-1-font,.round-pricing-tables .color1-price
{
    color: green !important;
}

.round-pricing-tables .color-2-bg
{
    background: #2196F3 !important;
}

.round-pricing-tables .color-2-font,.round-pricing-tables .color-2-price
{
    color: #2196F3 !important;
}

.round-pricing-tables .color-3-bg
{
    background: #2196F3 !important;
}

.round-pricing-tables .color-3-font,.round-pricing-tables .color-3-price
{
    color: #2196F3 !important;
}

.round-pricing-tables .color-4-bg
{
    background: #FF9800 !important;
}

.round-pricing-tables .color-4-font,.round-pricing-tables .color-4-price
{
    color: #FF9800 !important;
}

.round-pricing-tables .front,.round-pricing-tables .back
{
    font-family: Lato, sans-serif;
    float: left;
    width: 205px;
    height: 205px;
    background: #FFF;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 10px 0 #dbdbdb;
    box-shadow: 0 0 10px 0 #dbdbdb;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}



/* =====[ MAIN LIST ]============================================================================== */

.round-pricing-tables
{
    list-style: none;
    display: block;
    text-align: center;
    width: 100%;
    /*margin: 20px 0 0;*/
    padding: 0;
    margin-bottom: 0;
}

.round-pricing-tables i
{
    padding-right: 5px;
}

.round-pricing-tables > li
{
    width: 220px;
    height: 220px;
    display: inline-block;
    /*margin: 8px;*/
    margin: 0;
}

/* =====[ FRONT ELEMENTS ]============================================================================== */

.round-pricing-tables .front > div
{
    text-align: center;
    color: #60bad7;
}

.round-pricing-tables .title
{
    font-size: 21px;
    text-transform: uppercase;
    text-align: center;
    padding: 25px 10px 17px;
}

.round-pricing-tables .price span
{
    font-weight: 900;
    vertical-align: top;
    line-height: 0.7;
}

.round-pricing-tables .price .total
{
    font-size: 60px;
}

.round-pricing-tables .currency,.round-pricing-tables .end
{
    font-size: 35px;
}

.round-pricing-tables .description
{
    text-align: center;
}

.round-pricing-tables .front .description
{
    color: #9b9b9b!important;
    font-size: 14px;
    line-height: 1.2;
    padding: 14px 45px 0;
}

/* =====[ BACK ELEMENTS ]============================================================================== */

.round-pricing-tables .back .title
{
    color: #FFF;
}

.round-pricing-tables .back .description ul
{
    width: 70%;
    margin: auto;
    padding: 0;
}

.round-pricing-tables .back .description ul li
{
    color: #FFF!important;
    text-align: center;
    list-style: none;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}

.round-pricing-tables .popular
{
    font-size: 30px;
    color: #60bad7;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

/* =====[ CIRCLE ANIMATIONS ]============================================================================== */

.round-pricing-tables .circle
{
    border-radius: 50%;
    position: relative;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.round-pricing-tables .circle a:-webkit-any-link{
	text-decoration:none !important;
}

.round-pricing-tables .info
{
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    -moz-transform: scale(0) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -webkit-transform: scale(0) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -o-transform: scale(0) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -ms-transform: scale(0) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    transform: scale(0) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -webkit-backface-visibility: hidden;
}

.round-pricing-tables .circle:hover .front
{
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
}

.round-pricing-tables .circle:hover .info
{
    -moz-transform: scale(1) rotate(360deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -webkit-transform: scale(1) rotate(360deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -o-transform: scale(1) rotate(360deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -ms-transform: scale(1) rotate(360deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    transform: scale(1) rotate(360deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    opacity: 1;
}

.round-pricing-tables .circle:hover .front-popular
{
    border-radius: 10% 50% 50% 50%!important;
}

.round-pricing-tables .circle:hover .popular
{
    opacity: 1;
    animation: popularAnim 1s 1;
    -webkit-animation: popularAnim 1s 1;
}

@keyframes popularAnim
{
    from
    {
        opacity: 0;
        left: 40px;
    }

    to
    {
        opacity: 1;
        left: 0;
    }
}

@-webkit-keyframes popularAnim /* Safari and Chrome */
{
    from
    {
        opacity: 0;
        left: 40px;
    }

    to
    {
        opacity: 1;
        left: 0;
    }
}

