@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,600,700,300,800);

body {
    padding-top: 100px;
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #64686d;
    line-height: 26px;
}
h1,
h2,
h3,
h4,
h5,
h6 {   
    color: #000;
}

/* Heading Typo */
body h1, body h2, body h3, body h4, body h5, body h6 {   
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;    
    margin: 0px 0px 8px 0px;
}

body h1, body h2{
    line-height:40px;font-style:normal;color:#191919;font-size:25px;
}

body h3{
    font-style:normal;color:#191919;font-size:25px;
}

@media only screen and (max-width: 400px) {
    body h1, body h2{
        line-height:30px;font-weight:700;font-style:normal;color:#222222;font-size:26px;
    }
    body h3{
        font-weight:700;font-style:normal;color:#222222;font-size:20px;
    }
}

a {
    color: #45aed6;
    -webkit-transition: color 400ms, background-color 400ms;
    -moz-transition: color 400ms, background-color 400ms;
    -o-transition: color 400ms, background-color 400ms;
    transition: color 400ms, background-color 400ms;
}
a:hover,
a:focus {
    text-decoration: none;
    color: #2a95be;
}
hr {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #fff;
}
.gradiant {
    background-image: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    background-image: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
}
.gradiant-horizontal {
    background-image: -moz-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
    background-image: -webkit-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
    background-image: -ms-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
}
.section-header {
    margin-bottom: 50px;
}
.section-header .section-title {
    font-size: 44px;
    color: #272727;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    margin: 0 0 20px;
}
.section-header .section-title:before {
    content: "";
    position: absolute;
    width: 140px;
    bottom: 0;
    left: 50%;
    margin-left: -70px;
    height: 1px;
    background: #ebebeb;
}
.section-header .section-title:after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: -11px;
    left: 50%;
    margin-left: -12px;
    border: 5px solid #fff;
    border-radius: 20px;
    background: #45aed6;
}
.btn {
    border-width: 0;
    border-bottom-width: 3px;
    border-radius: 3px;
}
.btn.btn-primary {
    background: #f79621;
    border-color: #000;
    color: #000;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: #000;
    color: #f79621;
}
.column-title {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;

    margin-bottom: 15px;
    position: relative;

}
.column-title:after {
    content: " ";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40%;
    border-bottom: 1px solid #f79621;
}
ul.nostyle {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
ul.nostyle i {
    color: #45aed6;
}
.scaleIn {
    -webkit-animation-name: scaleIn;
    animation-name: scaleIn;
}
@-webkit-keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
/*************************
*******Header******
**************************/
.navbar.navbar-default {
    border: 0;
    border-radius: 0;

}
.navbar.navbar-default .navbar-toggle {
    margin-top: 32px;
}
.navbar.navbar-default .navbar-brand {
    height: auto;
    padding: 22px 15px 21px;
}
@media only screen and (min-width: 768px) {
    #main-menu.navbar-default {
        background: rgba(255, 255, 255, 0.9);
        -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
        border-bottom: 8px solid #f79621;
    }
    #main-menu.navbar-default .navbar-nav > li > a {
        padding-top: 40px;
        padding-bottom: 40px;
        color: #000;
        font-size: 1.6em;
    }
    #main-menu.navbar-default .navbar-nav > li.active > a,
    #main-menu.navbar-default .navbar-nav > li.open > a,
    #main-menu.navbar-default .navbar-nav > li:hover > a {
        background: #f79621;
        color: #fff;
        font-size: 1.6em;
        padding-top: 37px;
        border-top: 5px solid #000000;
    }
    #main-menu.navbar-default .dropdown-menu {
        padding: 0 20px;
        min-width: 220px;
        background-color: rgba(26, 28, 40, 0.9);
        border: 0;
        border-radius: 0;
        box-shadow: none;
        -webkit-box-shadow: none;
        background-clip: inherit;
    }
    #main-menu.navbar-default .dropdown-menu > li {
        border-left: 3px solid transparent;
        margin-left: -20px;
        padding-left: 17px;
        -webit-transition: border-color 400ms;
        transition: border-color 400ms;
    }
    #main-menu.navbar-default .dropdown-menu > li > a {
        border-top: 1px solid #404455;
        padding: 15px 0;
        color: #eeeeee;
    }
    #main-menu.navbar-default .dropdown-menu > li:first-child > a {
        border-top: 0;
    }
    #main-menu.navbar-default .dropdown-menu > li.active,
    #main-menu.navbar-default .dropdown-menu > li.open,
    #main-menu.navbar-default .dropdown-menu > li:hover {
        border-left-color: #45aed6;
    }
    #main-menu.navbar-default .dropdown-menu > li.active > a,
    #main-menu.navbar-default .dropdown-menu > li.open > a,
    #main-menu.navbar-default .dropdown-menu > li:hover > a {
        color: #45aed6;
        background-color: transparent;
    }
}

#bar {
    width: 0%;
    max-width: 100%;
    height: 4px;
    background: #45aed6;
}
#progressBar {
    margin-top: -4px;
    position: relative;
    z-index: 999;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
}
#cta {
    padding: 50px 0;
    background-color: #f7f7f7;
}
#cta h2 {
    margin-top: 0;
}
#cta .btn {
    margin-top: 40px;
}
#cta2 {
    background: #242a33 url(../images/cta2/cta2-bg.jpg) no-repeat 50% 50%;
    background-size: cover;
    color: #fff;
}
#container{ 
    margin-top: 5px;
    padding:0 ;
    height:400px;   
    position: relative;
}
#cta2 .btn {
    margin-top: 10px;
}
#cta2 h2 {
    color: #fff;
    font-size: 44px;
    line-height: 1;
}
#cta2 h2 > span {
    color: #45aed6;
}
#features {
    padding: 100px 0;
}
#features .media.service-box:first-child {
    margin-top: 80px;
}
#services {
    padding: 30px 0;
}
.media.service-box {
    margin: 25px 0;
}
.media.service-box .pull-left {
    margin-right: 20px;
}
.media.service-box .pull-left > i {
    font-size: 24px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    width: 64px;
    border-radius: 100%;
    color: #45aed6;
    box-shadow: inset 0 0 0 1px #d7d7d7;
    -webkit-box-shadow: inset 0 0 0 1px #d7d7d7;
    transition: background-color 400ms, background-color 400ms;
    position: relative;
}
.media.service-box .pull-left > i:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    right: -10px;
    border: 4px solid #fff;
    border-radius: 20px;
    background: #45aed6;
}
.media.service-box:hover .pull-left > i {
    background-image: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    background-image: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    color: #fff;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.8);
}
#portfolio {
    padding: 60px 0;
    background: #f7f7f7;
    width: 100%;
}
#portfolio .portfolio-filter {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
    display: inline-block;
}
#portfolio .portfolio-filter > li {
    float: left;
    display: block;
}
#portfolio .portfolio-filter > li a {
    display: block;
    padding: 7px 15px;
    background: #e5e5e5;
    color: #64686d;
    position: relative;
}
#portfolio .portfolio-filter > li a:hover,
#portfolio .portfolio-filter > li a.active {
    background: #45aed6;
    color: #fff;
    box-shadow: 0 -3px 0 0 #318daf inset;
    -webkit-box-shadow: 0 -3px 0 0 #318daf inset;
}
#portfolio .portfolio-filter > li a.active:after {
    content: " ";
    position: absolute;
    bottom: -17px;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: #318daf transparent transparent transparent;
}
#portfolio .portfolio-filter > li:first-child a {
    border-radius: 4px 0 0 4px;
}
#portfolio .portfolio-filter > li:last-child a {
    border-radius: 0 4px 4px 0;
}
#portfolio .portfolio-items {
    margin: -15px;
}
#portfolio .portfolio-item {
    width: 24.9%;
    float: left;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

#portfolio .portfolio-item .portfolio-item-inner {
    position: relative;
}
#portfolio .portfolio-item .portfolio-item-inner .portfolio-info {
    border-bottom: 5px solid #f79621;
    opacity: 0;
    transition: opacity 400ms;
    -webkit-transition: opacity 400ms;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}
#portfolio .portfolio-item .portfolio-item-inner .portfolio-info h3 {
    font-size: 16px;
    line-height: 1;
    margin: 0;
    color: #fff;
}
#portfolio .portfolio-item .portfolio-item-inner .portfolio-info .preview {
    position: absolute;
    top: -18px;
    right: 12px;
    border-radius: 50%;
    background: #000;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #f79621;
    box-shadow: 0 0 0 2px #fff;
    -webkit-box-shadow: 0 0 0 2px #fff;
}
#portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
}
/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
    z-index: 2;
}
.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -ms-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
}
.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}
.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -ms-transition-property: -ms-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}
.divider {
    margin-top: 50px;
    margin-bottom: 50px;
    background-image: -moz-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
    background-image: -webkit-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
    background-image: -ms-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
    width: 95%;
    height: 1px;
}
.nav.main-tab {
    background: #eee;
    border-bottom: 3px solid #222534;
    border-radius: 3px 3px 0 0;
}
.nav.main-tab > li > a {
    color: #272727;
}
.nav.main-tab > li.active > a {
    background: #222534;
    color: #45aed6;
}
.nav.main-tab > li:first-child > a {
    border-radius: 3px 0 0 0;
}
.nav.main-tab > li:last-child > a {
    border-radius: 0 3px 0 0;
}
#contact {
    position: relative;
    overflow: hidden;
}
#contact .container-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0, 0.5);
    z-index: 1;
}
#contact .map-canvas{
    background: #f7f7f7;
    border-radius: 4px;
    padding: 20px;
    margin-top: 30px;
    min-height: 450px;
}
#contact .map-canvas iframe{height: 450px!important}
#contact .contact-form {
    background: #f7f7f7;
    border-radius: 4px;
    padding: 20px;
    margin-top: 30px;
}
#contact .contact-form h3 {
    margin-top: 0;
}
/***********************
********* Footer ******
************************/
#footer {
    padding: 15px 0;   
    color: #fff;
    background: #2e2e2e;
    border-top: 5px solid #fff;
}
#footer a {
    color: #fff;
}
#footer a:hover {
    color: #45aed6;
}
#footer ul {
    list-style: none;
    padding: 0;
    margin: 0 -7.5px;
}
#footer ul > li {
    display: inline-block;
    margin: 0 7.5px;
}
@media only screen and (min-width: 768px) {
    #footer .social-icons {
        float: right;
    }
}
.form-control {
    box-shadow: none;
    -webkit-box-shadow: none;
}


.textDevBg{
    margin-top:150px;
    background:rgba(0,0,0,0.7);
    width:100%;
    padding:5px 0 10px 0;
}
.textDevBg h1{
    font-size:50px;

    font-family:"Poiret+One";
    color:#fff;
}
.textDevBg p{
    font-size:18px;
}

.banner_new_bg{
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0.8)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)); /* Standard syntax (must be last) */
}
.content-on-banner{
    position: absolute;
    top: 70px;
    left: 10px;
    width: 100%;
}
.content-on-banner h2{
    font-weight: bold;
    color: #fff!important;
    font-size: 40px!important;   
}
.content-on-banner h4{
    color: #fff!important;
    font-size: 18px;
    margin-bottom: 10px;
}
.content-on-banner p{
    color: #fff!important;
    font-size: 14px;
    margin-bottom: 10px;
}

/*===== START FOR RATING STAR =======*/
.list-rating{
    padding: 0;
    padding: 0;
}
.list-rating label{
    float: left;
    margin-right: 10px;
    padding: 6px 10px;
    font-size: 16px;
}
.list-rating p{
    float: left;
    font-size: 16px;
    margin-left: 10px;
}

.rating ul{
    margin: 0;
    padding: 0;
    float: left;
}
.rating ul li{
    padding:0 1px 0 0;
}
.rating ul li a{
    display: block;
    background: #f0753d;
    color: #fff;   
    padding:1px 6px;
    border-radius: 2px;
    margin-right: 0!important;
}
.orange_gray_left{
    background-color: #f0753d !important;
    background-image: -webkit-linear-gradient(0deg, #f0753d 50%, #9da1a0 50%)!important;
    background-image: -moz-linear-gradient(0deg, #f0753d 50%, #9da1a0 50%)!important;
}
.gray_left{
    background-color: #9da1a0 !important;   
}
.content-address i{
    float: left;
    font-size: 30px;
    color: #ffffff!important;   
    margin-right: 10px;
}
.content-address p{
    float: left;
    font-size: 14px;
    color: #fff!important;   
}

.content-contact i{
    float: left;
    font-size: 30px;
    color: #ffffff!important;   
    margin-right: 10px;
}
.content-contact p{
    float: left;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Exo', sans-serif;
    color: #fff!important;   
}

.block-banner-bottom{    
    text-align: center!important;
}
.block-banner-bottom .icon{
    display: inline-block;
    height: 50px;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.9);
    border-radius: 100%;
    text-align: center;    
    width: 50px;
    color: #fff;
    font-size: 24px;
    outline: none;
}
.block-banner-bottom .icon i{   
    line-height: 50px;     
}
.block-banner-bottom .icon-box-title{ 
    display: block;
    color: #fff;  
    font-size: 14px;    
}
.margin-top-60{
    margin-top: 60px!important;
}

@media (max-width: 480px) {

    .content-on-banner{
        position: absolute;
        top: 10px;
        left: 10px;
        width: 100%;
    }
    #container{
        height: 500px;
    }
    .content-on-banner h2{        
        color: #fff!important;
        font-weight: bold;        
        font-size: 20px!important;  
    }
    .content-on-banner h4{
        color: #fff!important;
        font-size: 16px;
        margin-bottom: 10px;
    }
    .content-on-banner p{
        color: #fff!important;
        font-size: 14px;
        margin-bottom: 10px;
    }


    .content-address i{
        float: left;
        font-size: 20px;
        color: #ffffff!important;   
        margin-right: 10px;
    }
    .content-address p{
        float: left;
        font-size: 13px;
        line-height: 16px;
        color: #fff!important;   
    }

    .content-contact i{
        float: left;
        font-size: 20px;
        color: #ffffff!important;   
        margin-right: 10px;
    }
    .content-contact p{
        float: left;
        font-size: 16px;        
        font-family: 'Exo', sans-serif;
        color: #fff!important;   
    }

    .block-banner-bottom{    
        text-align: center!important;
    }
    .block-banner-bottom .icon{
        display: inline-block;
        height: 30px;
        margin-bottom: 5px;
        background: rgba(0,0,0,0.9);
        border-radius: 100%;
        text-align: center;    
        width: 30px;
        color: #fff;
        font-size: 16px;
        outline: none;
    }
    .block-banner-bottom .icon i{   
        line-height: 30px;     
    }
    .block-banner-bottom .icon-box-title{ 
        display: block;
        color: #fff;        
        font-size: 13px;    
    }
    .margin-top-60{
        margin-top: 10px!important;
    }

}
@media (max-width: 992px){
    .content-on-banner{
        position: absolute;
        top: 30px;
        left: 10px;
        width: 100%;
    }
    .content-on-banner h2{        
        color: #fff!important;
        font-weight: bold;        
        font-size: 30px!important;  
    }
    .content-on-banner h4{
        color: #fff!important;
        font-size: 18px;
        margin-bottom: 10px;
    }   


    .content-address i{
        float: left;
        font-size: 24px;
        color: #ffffff!important;   
        margin-right: 10px;
    }
    .content-address p{
        float: left;
        font-size: 14px;
        line-height: 20px;
        color: #fff!important;   
    }

    .content-contact i{
        float: left;
        font-size: 24px;
        color: #ffffff!important;   
        margin-right: 10px;
    }
    .content-contact p{
        float: left;
        font-size: 18px;        
        font-family: 'Exo', sans-serif;
        color: #fff!important;   
    }

    .block-banner-bottom{    
        text-align: center!important;       
    }
    .block-banner-bottom .icon{
        display: inline-block;
        height: 30px;
        margin-bottom: 5px;
        background: rgba(0,0,0,0.9);
        border-radius: 100%;
        text-align: center;    
        width: 30px;
        color: #fff;
        font-size: 16px;
        outline: none;
    }
    .block-banner-bottom .icon i{   
        line-height: 30px;     
    }
    .block-banner-bottom .icon-box-title{ 
        display: block;
        color: #fff;        
        font-size: 13px;    
    }
    .margin-top-60{
        margin-top: 20px!important;
    }
}


.block-banner-bottom-rate{
    text-align: center !important;
}
.block-banner-bottom-rate .icon-box-title{ 
    display: block;
    color: #fff;        
    font-size: 13px;    
}

div.stars, div.stars2 {   
    display: inline-block;
}

input.star,input.star2 { display: none; }

label.star,label.star2 {
    background: #9da1a0;
    float: right;
    padding: 10px;
    font-size: 36px;
    margin-right: 2px;
    color: #fff;
    transition: all .2s;
    border-radius: 3px;
}

label.star:checked ~ label.star:before, label.star2:checked ~ label.star2:before {
    content: '\f005';   
    transition: all .25s;
}

input.star-5:checked ~ label.star:before, input.star2-5:checked ~ label.star2:before  {
    color: #f0753d;
    text-shadow: 0 0 20px #952;
}

input.star-1:checked ~ label.star:before , input.star2-1:checked ~ label.star2:before{ color: #f6260b; }
input.star-2:checked ~ label.star:before, input.star2-2:checked ~ label.star2:before { color: #f6bc0b; }
input.star-3:checked ~ label.star:before, input.star2-3:checked ~ label.star2:before { color: #abf60b; }
input.star-4:checked ~ label.star:before, input.star2-4:checked ~ label.star2:before { color: #5e9418; }
label.star:hover { transform: rotate(-15deg) scale(1.3); }

label.star:before, label.star2:before {
    content: '\f006';
    font-family: FontAwesome;
}
@media (max-width: 480px) {

    label.star, label.star2 {
        background: #9da1a0;
        float: right;
        padding: 3px 10px;
        font-size: 12px;
        margin-right: 2px;
        color: #fff;
        transition: all .2s;
        border-radius: 3px;
    }
}
@media (max-width: 992px){
    label.star, label.star2 {
        background: #9da1a0;
        float: right;
        padding: 3px 10px;
        font-size: 16px;
        margin-right: 2px;
        color: #fff;
        transition: all .2s;
        border-radius: 3px;
    }
}
/**==========FOR MODEL CONTENT=============***/
#VleekVerified .modal-dialog{
    top: 100px;
    max-width: 500px;
}
#VleekVerified .modal-dialog .modal-content,
#dirVoteModel .modal-dialog .modal-content{
    position: relative;
}
#VleekVerified .modal-dialog .modal-content button i,
#dirVoteModel .modal-dialog .modal-content button i{
    position: absolute;
    top: -25px;
    right: -25px;
    font-size: 40px;
    color: #fff!important;  
}
#VleekVerified .modal-dialog .modal-conten .close{
    opacity: 1!important;
}
#VleekVerified .modal-dialog .modal-content .modal-title{
    font-weight: bold;   
    padding:20px 0 0 20px;
}

#VleekVerified .modal-dialog .modal-content .modal-header, 
#dirVoteModel .modal-dialog .modal-content .modal-header{
    border-bottom: none;
    position: relative;
}

.modal-content .modal-header .close{
    opacity: 1!important;
}

#VleekVerified .modal-dialog .modal-content .modal-body{
    padding: 20px 30px;    
}
#VleekVerified .modal-dialog .modal-content .modal-body p{
    font-size: 12px !important;    
    line-height: 1.42857143;
    color: #333;
    margin-bottom: 30px;
    display: block;  
    text-align: justify;
}

#dirVoteModel .modal-dialog{
    top: 100px;
    max-width: 470px;
}
#dirVoteModel .modal-review{
    top: 100px;
    max-width: 670px;
}
#dirVoteModel .modal-dialog .modal-content .modal-body{
    padding: 40px;    
}
#dirVoteModel .modal-dialog .modal-content .modal-body .text-center p{
    font-size: 12px;
    padding-bottom: 15px;
    color: #242a33;
}
#dirVoteModel .modal-dialog .modal-content .modal-body form label{
    font-size: 13px;
    font-weight: normal;
}
#dirVoteModel .modal-dialog .modal-content .modal-body .nornal-text{
    font-size: 10px;
    color: #272727;
}
#dirVoteModel .modal-sm p{
    font-size: 12px;
    font-weight: normal;
    color: #222534;
}
#dirVoteModel .modal-dialog .modal-content .modal-title{
    font-weight: bold;   
    padding:20px 0 0 20px;
}

.color-red{
    color: #f6260b;
}
.vk-m-top-10{
    margin-top: 10px!important;
}
.vk-m-top-20{
    margin-top: 20px!important;
}
.vk-m-top-30{
    margin-top: 30px!important;
}
.vk-m-top-40{
    margin-top: 40px!important;
}
.vk-m-bot-10{
    margin-bottom: 10px!important;
}
.vk-m-bot-20{
    margin-bottom: 20px!important;
}
.vk-m-bot-30{
    margin-bottom: 30px!important;
}
.vk-m-bot-40{
    margin-bottom: 40px!important;
}


/**====FOR VOTE & REVIEW======*/
#vote_review_section{
    background: #f7f7f7;
    padding: 50px 0;
}

/*Tabs v2*/
.tab-v2 .nav-tabs {
    border-bottom: none;
}

.tab-v2 .nav-tabs li a {
    padding: 9px 16px;
    background: none;
    border: none;
    color: #f79621;
}

.tab-v2 .nav-tabs li.active a {
    background: #fff;
    padding: 10px 20px 15px;
    border: solid 1px #eee;
    border-top: solid 2px #f79621;
    border-bottom: none !important;
}

.tab-v2 .tab-content {
    padding: 20px 20px;
    border: solid 1px #eee;
    background: #fff;
}

/*Funny Boxes
------------------------------------*/
.funny-boxes {
    overflow: hidden;
    padding: 15px 20px;
    margin-bottom: 25px;
    background: #f7f7f7;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

.funny-boxes h3 a {
    color: #555;
}
.funny-boxes p{
    font-size: 13px;
    line-height: 18px;
}
.funny-boxes p a {
    color: #f79621;
}

.funny-boxes .funny-boxes-img li i {
    color: #72c02c;
    font-size: 12px;
    margin-right: 5px;
}

.funny-boxes .funny-boxes-img img {
    display: block;
    margin: 5px 10px 10px 0;
}

.funny-boxes h3 {
    margin-top: 0;
    font-size: 16px;
    line-height: 20px;
}

.funny-boxes ul.funny-boxes-rating li {
    display: inline;
}

.funny-boxes ul.funny-boxes-rating li i {
    color: #f79621;
    cursor: pointer;
    font-size: 16px;
}

.funny-boxes ul.funny-boxes-rating li i:hover {
    color: #f79621;
}

/*Orange Left Bordered Funny Box**/
.funny-boxes-left-orange {
    border-left: solid 2px #e67e22;
}

.funny-boxes-left-orange:hover {
    border-left-color: #d35400;
}
