/* FONT COLORS */
.font_white, .font_white a:link, .font_white a:visited, .font_white a:active, .font_white a:hover {
    color: #EEE;
}

.font_dark_gray, .font_dark_gray a:link, .font_dark_gray a:visited, .font_dark_gray a:active, .font_dark_gray a:hover {
    color: #333;
}

.font_red, .font_red a:link, .font_red a:visited, .font_red a:active, .font_red a:hover {
    color: #FF0000;
}
/* PAYOUT */
.font_ad {
    margin-top: 5px;
    margin-bottom: 5px;
    background-color:rgba(250,250,250,0.85);
}
.padding10 {
    padding: 10px;
}
.padding_top10 {
    padding-top: 10px;
}
.padding_bottom10 {
    padding-bottom: 10px;
}
.padding_left10 {
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
}
.padding_right10 {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}
.padding_left_right10 {
    padding-left: 10px;
    padding-right: 10px;
}

.margin5 {
    margin-right: 5px;
}
.margin_top_20 {
    margin-top: 20px;
}
.padding_bottom20 {
    padding-bottom: 20px;
}
.right {
    float: right;
}
.margin_bottom_10 {
    margin-bottom: 10px;
}
.img_size_24 {
    width: 20px;
    height: 20px;
    vertical-align: top;
}
/* PRICING */
.month {
    padding-top: 60px;
    text-align: left;
    font-size: 16px;
}


/* iPad+ */
@media(min-width:768px) { 
    /* FONTS */
    .font_name {
        font-size: 20px;
        font-weight: 200;
        font-variant: small-caps;
        color: #666;
    }
    .padding30 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .navbar-app .brand{padding:0px 0px 0px 20px; }
    .symbol {
        margin-top: -30px;
        font-size: 28px;
        text-align: right;
    }
    .amount {
        /*padding-top: 24px;*/
        font-size: 90px;
        text-align: center;
    }
}

/* Mini Tablets (-4)  */
@media(min-width:361px) and (max-width:767px){
    .font_name {
        font-size: 20px;
        font-weight: 200;
        font-variant: small-caps;
        color: #666;
    }
    .padding30 {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .navbar-app .brand{padding:0px; }
    .symbol {
        font-size: 24px;
        text-align: right;
    }
    .amount {
        /*padding-top: 20px;*/
        font-size: 75px;
        text-align: center;
    }
}

/* Phones (-6) */
@media(max-width:360px){
    .font_name {
        font-size: 20px;
        font-weight: 200;
        font-variant: small-caps;
        color: #666;
    }
    .navbar-app .brand{padding:0px; }
    .symbol {
        font-size: 20px;
        text-align: right;
    }
    .amount {
        /*padding-top: 16px;*/
        font-size: 55px;
        text-align: center;
    }
}

/******************* NEW DESIGN ********************/

/*Background*/
.bg_gray {
    background-color: #FAFAFA;
    color: #666;
}
.bg_white {
    background-color: #fff;
    color: #666;
}

/* Fonts*/
.font_main {
    text-transform: uppercase;
    font-size: 20px;
    padding: 15px 20px 15px 20px;
}
.font_menu {
    text-transform: uppercase;
    font-size: 20px;
}
.font_small {
    font-size: 12px;
}
.font_xsmall {
    font-size: 10px;
}
.font_weight {
    font-weight: 400;
}
.font_gray, .font_gray a:link, .font_gray a:visited, .font_gray a:active, .font_gray a:hover {
    color: #666;
}

/* Padding*/
.padding_top15 {
    padding-top: 15px;
}

/* Layout*/
.center {
    text-align: center;
}
.left {
    float: left;
}
.or_break {
    margin-top: 5px;
    margin-bottom: 15px;
    border-top: 1px solid #ddd;
}
.img_logo_mini {
    height: 40px;
    width: 40px;
}

.navbar-default{border-color:#FAFAFA}

.btn {
    border-radius: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.row-no-padding {
    margin-left: 0;
    margin-right: 0;
    [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.col-no-padding {
    padding: 0; 
    margin: 0;
}

/* Outline buttons */

.btn-outlined {
    border-radius: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-outlined.btn-primary {
    background: none;
    border: 3px solid #428bca;
    color: #428bca;
}
.btn-outlined.btn-primary:hover,
.btn-outlined.btn-primary:active {
    color: #FFF;
    background: #428bca;
    border-color: #428bca;
}

.btn-outlined.btn-success {
    background: none;
    border: 3px solid #5cb85c;
    color: #5cb85c;
}
.btn-outlined.btn-success:hover,
.btn-outlined.btn-success:active {
    color: #FFF;
    background: #47a447;
}

.btn-outlined.btn-info {
    background: none;
    border: 3px solid #5bc0de;
    color: #5bc0de;
}
.btn-outlined.btn-info:hover,
.btn-outlined.btn-info:active {
    color: #FFF;
    background: #39b3d7;
}

.btn-outlined.btn-warning {
    background: none;
    border: 3px solid #f0ad4e;
    color: #f0ad4e;
}
.btn-outlined.btn-warning:hover,
.btn-outlined.btn-warning:active {
    color: #FFF;
    background: #ed9c28;
}

.btn-outlined.btn-danger {
    background: none;
    border: 3px solid #d9534f;
    color: #d9534f;
}
.btn-outlined.btn-danger:hover,
.btn-outlined.btn-danger:active {
    color: #FFF;
    background: #d2322d;
}


h1{font-size:30px;line-height:45px;font-weight: 100;}
h2{font-size:22px;line-height:30px;font-weight: 200;}
h3{font-size:20px;line-height:25px;font-weight: 200;}
h4{font-size:18px;line-height:25px;font-weight: 300;}

.maps {
    width: 100%;
    height: 400px;
    background-color: #CCC;
}

.padding50 {
    /*padding-left: 20px;*/
    padding-top: 30px;
    padding-bottom: 30px;
    /*padding-right: 20px;*/
}

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

@media (max-width: 768px) { 
    .full_screen {
        padding-left: 0px;
        padding-right: 0px;
    }
    .full_screen .row {
        margin-left: 0px;
        margin-right: 0px;
    }
    .guide_height {
        min-height: 480px;
    }
    .padding50 {
        padding-bottom: 30px;
    }
}


/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    h1{font-size:35px;line-height:55px;font-weight: 100;}
    h2{font-size:25px;line-height:35px;font-weight: 200;}
    h3{font-size:22px;line-height:30px;font-weight: 200;}
    h4{font-size:18px;line-height:25px;font-weight: 300;}

    .font_main {
        font-size: 25px;
        padding: 17px 25px 17px 25px;
    }
    .guide_height {
        min-height: 800px;
    }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    h1{font-size:40px;line-height:60px;font-weight: 100;}
    h2{font-size:30px;line-height:40px;font-weight: 200;}
    h3{font-size:25px;line-height:30px;font-weight: 200;}
    h4{font-size:20px;line-height:25px;font-weight: 300;}

    .font_main {
        font-size: 30px;
        padding: 20px 30px 20px 30px;
    }
}


/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 

}


@media screen and (max-width: 320px) {
    @-ms-viewport { width: 320px; }
}
