body {
    background: white;
}

.highlight {
    background-color: #fff2ac;
    background-image: linear-gradient(to right, #ffe359 0%, #fff2ac 100%);
}

/* pricing */

    .pricingBlock {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        overflow: hidden;
        -webkit-box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.06);
        -moz-box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.06);
        box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.06);
    }
    
    #plan1 .pricingTop {
        background: #30B8FB;
    }
    
    #plan2 .pricingTop {
        background: #002782;
    }
        
    #plan1, #plan2 {
        margin-bottom: 20px;
    }
    
    .pricingTopInner {
        padding: 40px;
        padding-top: 30px;
    }
    
    .pricingBottom {
        padding: 40px;
        background: #fff;
    }
    
    @media only screen and (max-width: 800px) {
        
        .pricingTopInner {
            padding: 20px;
        }
        
        .pricingBottom {
            padding: 20px;
        }
        
    }
    
    /* title */
    
        .planTitle {
            text-transform: uppercase;
            overflow: hidden;
            color: #000;
            opacity: 0.5;
        }
        
        .planTitle span {
            float: right;
            text-transform: none;
            font-weight: normal;
        }
        
        #plan2 .planTitle {
            color: #fff;
        }
        
    /* price */
    
        .planPrice {
            position: relative;
            color: #fff;
            margin-top: 12px;
            margin-bottom: -24px;
            overflow: hidden;
        }
        
        .planPrice .sign {
            position: absolute;
            top: 2px;
            left: 0;
            display: block;
            font-size: 18px;
        }
        
        .planPrice .num {
            margin-top: -8px;
            margin-left: 8px;
            font-size: 78px;
            line-height: 88px;
            font-weight: normal;
            float: left;
        }
        
        .planPrice .period {
            font-size: 18px;
            display: block;
            margin-top: 42px;
            float: left;
        }
        
        @media only screen and (max-width: 800px) {
            
            .planPrice {
                margin-bottom: -10px;
            }
                
            .planPrice .num {
                margin-top: -5px;
                margin-left: 12px;
                font-size: 50px;
                line-height: 60px;
            }
            
            .planPrice .period {
                margin-top: 23px;
                margin-left: 4px;
            }
            
        }
        
    /* bottom */
    
        .pricingBottom ul {
            list-style: none;
            margin: 0;
        }
        
        .pricingBottom li {
            display: block;
            border-bottom: 1px solid #eee;
            padding: 12px 0;
        }
        
        .pricingBottom li:first-child {
            padding-top: 0;
        }
        
        .pricingBottom li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }
        
        .pricingBottom span {
            color: #34ba9c;
            font-weight: bold;
            font-size: 12px;
            line-height: 18px;
            display: block;
            text-transform: uppercase;
        }
        
/* pricing switch */

    .monthly { display: none; }
    .annually { display: block; }
    
    .pricingSwitchWrap {
        text-align: center;
        display: block;
        margin-top: 25px;
    }
    
    #pricingSwitch {
        text-align: center;
        display: inline-block;
        cursor: pointer;
    }
    
    .billAnnuallyLabel,
    .billMonthlyLabel {
        opacity: 0.5;
        display: inline-block;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        transition: 0.3s;
    }
    
        .billAnnually .billAnnuallyLabel {
            opacity: 1;
        }
        
        .billMonthly .billMonthlyLabel {
            opacity: 1;
        }
    
    .switch {
        display: inline-block;
        background: rgba(75, 86, 99, 0.2);
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
        width: 36px;
        height: 24px;
        position: relative;
        margin: 0 10px;
        margin-bottom: -6px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        transition: 0.3s;
    }
    
        #pricingSwitch:hover .switch {
            background: rgba(75, 86, 99, 0.3);
        }
    
    .switchHandle {
        position: absolute;
        top: 0;
        left: 0;
        margin: 2px;
        width: 20px;
        height: 20px;
        display: block;
        background: #fff;
        -webkit-box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
        -moz-box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
        box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        transition: 0.3s;
    }
    
        #pricingSwitch.billMonthly .switchHandle {
            margin-left: 14px;
        }