body {
    background-color: rgba(243, 243, 243, 0.42);font-family:'Ubuntu',sans-serif;
}
.main{font-family:'Ubuntu',sans-serif;}
.nav{margin-top:0;}
.nav ul li a {
    font-size: 15px;
    text-transform: uppercase;
    font-weight:600;
    padding: 55px 12px 30px;
}
.nav ul li a .fa{line-height:20px;margin-left:10px;font-weight:normal;}
.nav ul li a:hover, .nav ul li a:focus{color:#1e73be;background:none;text-decoration:underline;}
.nav .dropdown-menu{border-top:2px solid #0274be;top:100%;}
.nav .dropdown-menu li a{text-transform:none;padding:14px 15px;}
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover{background:none;}
.form-section {
    margin: 60px 0px;
    font-family: Arial;
}

.frm {
    margin: 0px auto;
    width: 50%;
    min-height: 300px;
    padding: 20px;
    background-color: #fff;
    border-top: 6px solid #00adff;
    border-radius: 4px 4px 0px 0px;
    box-shadow: 0px 0px 5px #ccc;
}

.frm h4 {
    font-size: 22px;
}

.frm h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 25px 0px;
}

.frm p {
    font-size: 14px;
    line-height: 20px;
}

.frm label {
    width: 100%;
    display: block;
    font-size: 14px;
}

.frm .form-inner {
    position: relative; /*width: 60%;*/
    z-index: 9;
}

.form-grp {
    margin-bottom: 30px;
    width: 53%;
    position: relative;
}

sup {
    top: 2px;
    font-size: 20px;
}

.error input {
    border-bottom: 2px solid #FF5722 !important;
}

.error .border {
    border-bottom: 2px solid #FF5722 !important;
}

.error .label, .error span {
    color: #FF5722 !important
}

.error .psuedo_select {
    border-color: #FF5722 !important;
}

.error .psuedo_select span.selected {
    color: #333 !important;
}

.tooltip-inner {
    width: 200px;
}

.inp {
    position: relative;
    margin: auto;
    width: 100%; /*max-width: 280px;*/
}

.inp .label {
    position: absolute;
    top: 16px;
    left: 0;
    font-size: 16px;
    color: #9098a9;
    font-weight: 500;
    transform-origin: 0 0;
    transition: all 0.2s ease;
}

.inp .border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #07f;
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: all 0.15s ease;
}

.inp input {
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 12px 0;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid #c8ccd4;
    background: none;
    border-radius: 0;
    color: #223254;
    transition: all 0.15s ease;
}

.inp input:hover {
    background: rgba(34, 50, 84, 0.03);
}

.inp input:not(:placeholder-shown) + span {
    color: #5a667f;
    transform: translateY(-26px) scale(0.75);
}

.inp input:focus {
    background: none;
    outline: none;
}

.inp input:focus + span {
    color: #07f;
    transform: translateY(-26px) scale(0.75);
}

.inp input:focus + span + .border {
    transform: scaleX(1);
}

/*----------for select----------*/
label.field {
    border-radius: 2px;
    color: #666;
    display: block;
    margin: 0px;
    padding: 8px 0px;
    opacity: 0;
    position: relative;
    transition-property: opacity;

}

label.field span {
    color: #9098a9;
    display: block;
    /*font-size: 16px;*/
    height: 20px;
    line-height: 20px;
    left: 9px;
    font-weight: normal;
    font-size: 16px;
    pointer-events: none;
    position: absolute;
    top: 32px;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    transition-property: color, font-size, top;

}

label.field span.required::after {
    color: inherit;
    content: "*";
    display: block;
    height: 20px;
    left: -20px;
    line-height: 20px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 20px;
}

.error label.field span {
    color: #f02318;
}

label.field .psuedo_select {
    background: rgba(255, 255, 255, 0);
    position: relative;
    border-color: #ccc;
    border-style: solid;
    border-width: 0 0 2px 0;
    color: #9098a9;
    cursor: pointer;
    /*font-size: 20px;*/
    font-weight: normal;
    height: 24px;
    line-height: 24px;
    margin: 24px 0px 0 0;
    min-width: 250px;
    padding-top: 24px;
    outline: 0;

}

label.field .psuedo_select::after {
    background: url("data:image/svg+xml;utf8,<svg fill='#666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'> <path d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/> <path d='M0-.75h24v24H0z' fill='none'/> </svg>"), no-repeat;
    content: "";
    height: 24px;
    width: 24px;
    position: absolute;
    top: 0;
    right: 0;
    transition-property: background;
}

label.field .psuedo_select .selected {
    height: 24px;
    left: 1px;
    line-height: 24px;
    opacity: 0;
    position: absolute;
    color: #333;
    top: 0;
    -webkit-transform: translateY(24px);
    transform: translateY(24px);
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    will-change: transform;
}

label.field .psuedo_select ul {
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    display: block;
    height: 0;
    list-style: none;
    font-size: 15px;
    font-weight: normal;
    margin-top: 2px;
    opacity: 0;
    overflow: hidden;
    padding: 0 1px;
    pointer-events: none;
    transition-property: height, opacity;
    width: 100%;


}

label.field .psuedo_select ul li {
    height: 32px;
    padding: 8px 4px;
}

label.field .deselect {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;

}

/*label.field.focused {color: #007bed;}
label.field.focused .psuedo_select { border-color: #007bed;}*/
label.field.focused .psuedo_select::after {
    background: url("data:image/svg+xml;utf8,<svg fill='#007BED' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'> <path d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/> <path d='M0-.75h24v24H0z' fill='none'/> </svg>"), no-repeat;
}

label.field.focused .psuedo_select ul {
    opacity: 1;
    pointer-events: all;
    position: absolute;
    z-index: 99;
}

/*------------select end----------*/

.frm .submit {
    margin-top: 20px;
    display: inline-block;
    background-color: #5cb85c;
    color: #fff;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}


/*----------thanks page----------*/
.thanks {
    margin: 0px auto;
    text-align: center;
    width: 40%;
    min-height: 150px;
    padding: 20px;
    background-color: #fff;
    border-top: 6px solid #00adff;
    border-radius: 4px 4px 0px 0px
}

.thanks h4 {
    font-size: 22px;
}

.thanks p {
    font-size: 14px;
    line-height: 20px;
}

.unsuccess-payment {
    display: none;
    margin: 0px auto;
    text-align: center;
    width: 40%;
    min-height: 150px;
    padding: 20px;
    background-color: #fff;
    border-top: 6px solid #f00;
    border-radius: 4px 4px 0px 0px
}

.unsuccess-payment h4 {
    font-size: 22px;
}

.unsuccess-payment p {
    font-size: 14px;
    line-height: 20px;
}

.payment {
    margin-top: 20px;
    display: inline-block;
    background-color: #5cb85c;
    color: #fff;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}


footer{width: 100%; min-height: 100px; padding: 20px 0px 0px; background-color: #1e73be; clear: both; color:#fff;font-family: 'Lato', sans-serif;}
footer .footer-contant{padding:10px 5px; color:#fff; font-size: 16px;}
footer .footer-contant h3{padding: 0px 0px 7px; border-bottom: 0px solid #ccc;
    color: #fff; font-size: 22px; margin-bottom: 10px;}
footer .footer-contant ul{padding:0px; list-style: none;}
footer .footer-contant ul li a{ color: #ddd; text-decoration: none; padding: 5px 0px; display: block;}
footer .footer-contant ul li a:hover{ color: #f1f1f1;}

footer .glry{margin: 0px 0px; width: auto; float: left;}
footer .glry span{margin: 5px; width: auto; float: left; border:1px solid #fff; border-radius:2px;}
footer .glry span img{width: 66px; height: 55px; border-radius:2px;}


footer .all-right{width: 100%; margin: 0px auto; min-height: 50px; background: #446084;
    margin-top: 10px; text-align: center; font-size: 14px; padding:20px 0px;}
footer .all-right a{color: #fff; padding:8px; display: inline-block;}

.scheduleBtn {color: #fff;border: 2px solid #fff;padding: 10px 30px;border-radius: 25px;font-size: 14px;font-weight: 600;display: inline-block;margin: 50px 0 30px;text-transform: uppercase;letter-spacing: 1px;}
.scheduleBtn:hover, .scheduleBtn:focus{background: #446084;border:2px solid #446084;color: #fff;text-decoration: none;}
.footerSocialLinks{padding-left: 50px !important;float: left;width: 100%;}
.footerSocialLinks li a {float: left;margin: 5px;text-align: center;width: 35px;height: 35px;line-height: 25px;border-radius: 50%;background: #000;font-size: 18px;}
.footerSocialLinks .facebookIcon{background: #3a589d;}
.footerSocialLinks .instaIcon{background: #3b6994;}
.footerSocialLinks .twitterIcon{background: #286086;}
.footerSocialLinks .linkedinIcon{background: #3b6994;}
.footerSocialLinks .youtubeIcon{background: #c33223;}

.links{}
.links li{border-top: 1px solid #ececec1f;text-align: center;font-size: 16px}
.links li:first-child{border-top: none;}
.links li a{ line-height: 36px;color: #fff !important;}

.footer-bottom{text-align: center;font-size: 15px;padding: 50px 0;}
.footer-bottom h5{font-size: 17px;font-weight: bold}
.footer-bottom .footer-links{margin-bottom: 50px;}
.footer-bottom .footer-links a{text-transform: uppercase;color: #f1f1f1;position: relative;padding: 10px 0;margin:0 20px;text-decoration: none;letter-spacing: 1px;font-weight: 600;font-size: 14px;}
.footer-bottom .footer-links a:before {
    content: "";
    height: 2px;
    background-color: currentColor;
    opacity: .3;
    transition: all .3s;
    position: absolute;
    bottom: -2px;
    left: 20%;
    width: 50%;
}
.footer-bottom .footer-links a:hover:before {
    left: 0;
    width: 100%;
    opacity: 1;
}

.scroll-top {
    position: fixed;
    z-index: 9999999;
    bottom: 5px;
    width: 100%;
    text-align: right;
    right: 10px;
    display: none;
}


@media only screen and (max-width: 640px) and ( min-width: 320px) {
    .form-section {
        margin: 10px 0px;
    }

    .frm {
        width: 95%;
        min-height: 300px;
        padding: 5px;
    }

    .form-grp {
        margin-bottom: 15px;
        width: 100%;
        position: relative;
    }

    label.field .psuedo_select ul li {
        height: 32px;
        padding: 8px 4px;
        font-size: 14px;
    }

    .thanks {
        margin: 0px auto;
        text-align: center;
        width: 95%;
        min-height: 150px;
        padding: 20px;
        background-color: #fff;
        border-top: 6px solid #00adff;
        border-radius: 4px 4px 0px 0px
    }

    .thanks h4 {
        font-size: 22px;
    }

    .thanks p {
        font-size: 14px;
        line-height: 20px;
    }

    .unsuccess-payment {
        display: none;
        margin: 0px auto;
        text-align: center;
        width: 95%;
        min-height: 150px;
        padding: 20px;
        background-color: #fff;
        border-top: 6px solid #f00;
        border-radius: 4px 4px 0px 0px
    }

    .unsuccess-payment h4 {
        font-size: 22px;
    }

    .unsuccess-payment p {
        font-size: 14px;
        line-height: 20px;
    }

    footer .footer-contant {
        padding: 0px 0px;
        font-size: 13px;
        margin-bottom: 20px;
        display: inline-block;
    }

    footer .footer-contant h3 {
        padding: 0px 0px 0px;
        font-size: 18px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    footer .glry {
        margin: 0px 0px;
        width: auto;
        float: left;
    }

    footer .glry span {
        margin: 5px;
        width: 29%;
        float: left;
        border: 1px solid #fff;
        border-radius: 2px;
    }

    footer .glry span img {
        width: 100%;
        height: auto;
        border-radius: 2px;
    }

    footer .all-right {
        width: 100%;
        min-height: 50px;
        margin-top: 0px;
        font-size: 12px;
        padding: 5px 5px;
    }

    footer .all-right a {
        font-size: 12px;
    }

    footer .all-right p {
        font-size: 12px;
    }
}


.form-grp.rdLabel {
    width: 100%;
    float: left;
    clear: both;
}

.form-grp.rdLabel label {
    font-weight: normal;
    font-size: 12px;
    width: 100%;
    margin-right: 10px;
    float: left;
    margin-bottom: 10px;
}

.banner-section {
    position: relative;
    width: 100%;
    float: left;
}

.banner {
}

.banner .carousel-inner {
    height: 500px;
    position: relative;
}

/*.banner .carousel-inner:after {
    content: '';
    width: 100%;
    height: 59px;
    background: url(../img/banner-img-bg.svg) no-repeat;
    background-size:100%;
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
}*/
.banner .carousel-inner .item {
    opacity: 0;
    -webkit-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left;
    height:70vh;
}

.banner .carousel-inner .active {
    opacity: 1;
}

.banner .carousel-inner .bottomImg {
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 64px;
}

.banner .slideImg {
    width: 100%;
    height: 100% !important;
}

.banner .carousel-caption {
    left: 10%;
    right: 0%;
    top: 10%;
    bottom: auto;
    text-align: left;
}

.banner .carousel-indicators { /*display:none;*/
}

.banner .carousel-caption h1 {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    float: left;
    margin-bottom: 40px;
    margin-top: 0;
    animation: 3s fadeInUp;
}

.banner .carousel-caption p {
    font-size: 20px;
}

.banner .carousel-caption h3 {
    font-size: 22px;
    padding: 0 20px 7px;
    border-left: 2px solid #fff;
    width: 100%;
    float: left;
    margin-top: 75px;
}

.full-width {
    width: 100%;
    float: left;
}

.bannerBtn {
    padding: 17px 45px;
    background: #fff;
    color: #00a3e8;
    text-transform: uppercase;
    text-shadow: none;
    font-size: 22px;
    font-weight: bold;
    border-radius: 45px;
    margin-left: -20px;
}

.bannerBtn:hover {
    text-decoration: none;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-delay: 1s;
    animation-duration: 2s;
}


.trendingFunds {
    background: #fff;
    padding-top: 50px;
}

.trendingFunds h3 {
    font-size: 34px;
    text-align: center;
    font-weight: bold;
}

.trendingFunds p {
    color: #919191;
    text-align: center;
    font-size: 15px;
}

.carousel-control {
    width: 50px;
    height: 50px;
    top: 45%;
    line-height: 55px;
    text-align: center;
    color: #04a4e8;
    opacity: 1;
    text-shadow: none;
}

.carousel-control:hover {
    color: #0071a1;
}

.carousel-control.left, .carousel-control.right {
    background: none;
}

.carousel-control.right {
    right: -60px;
}

.carousel-control.left {
    left: -60px;
}

.carousel-control i {
    font-size: 28px;
}

.trendCarousel .item .thumbnail {
    padding: 0;
    border: none;
    box-shadow: 0 7px 14px 0 rgba(0, 0, 0, .1);
    margin: 20px;
    border-radius: 5px;position:relative;
}
.tax-label{width:105px;height:20px;background:#ff9800;position:absolute;top:0;left:5px;text-align:center;font-size:12px;font-weight:bold;color:#FFF;line-height:27px;}
.tax-label:before{content:'';position:absolute;width: 0; height: 0; border-left: 52px solid transparent;border-right: 52px solid transparent;border-top: 10px solid #ff9800;top:100%;left:0;}
.trendCarousel .item .thumbnail img.img-responsive {
    width: 100%;
    height:200px;
    border-top-left-radius: 5px;;
    border-top-right-radius: 5px;
}

.trendCarousel .item .thumbnail .caption {
    padding: 0;
    min-height:300px;
}

.trendCarousel .item .thumbnail h3 {
    font-size: 16px;
    font-weight: bold;
    padding: 0 10px;
}

.trendCarousel .item .thumbnail .byUser {
    width: 100%;
    float: left;
    margin: 30px 0 20px;
    line-height: 40px;
    color: #999;
    font-size: 16px;
    padding: 0 10px;
}

.trendCarousel .item .thumbnail .byUser img {
    width: 40px;
    float: left;
    margin-right: 10px;
}

.trendCarousel .item .thumbnail .des {
    color: #7c7c7c;
    font-size: 15px;
    margin-bottom: 25px;
    padding: 0 10px;
}

.trendCarousel .item .thumbnail .price {
    padding: 0 10px;
}

.trendCarousel .item .thumbnail .price span {
    color: #00a3e8;
    font-size: 19px;
    font-weight: bold;
    margin-right: 15px;
}

.trendCarousel .item .thumbnail .price small {
    color: #888;
    font-size: 15px;
}

.trendCarousel .item .thumbnail .progress {
    height: 5px;
    border-radius: 0;
    margin-bottom: 0;
    background: #dedede;
}

.trendCarousel .item .thumbnail .progress .progress-bar {
    background: #00a3e8;
}

.trendCarousel .item .thumbnail .supporter span {
    padding: 15px;
    width: 50%;
    float: left;
    text-align: center;
    font-size: 15px;
    color: #888;
}

.trendCarousel .item .thumbnail .supporter span.left {
    border-right: 2px solid #ddd;
}

.trendCarousel .item .col-md-3 .thumbnail {
    margin: 0 0 20px;
}
.view-list{margin-bottom:20px;}
.view-list a{color:#00a3e8;font-weight:bold;font-size:16px;margin-bottom:15px;}
.view-list a:hover{color:#0083ba;text-decoration:none;}
.view-list a i{margin-left:7px;}
.fundDetail {
    background: #fff;
    padding-top: 50px;
}

.fundDetail h3 {
    font-size: 32px;
    text-align: center;
    font-weight: bold;
}

.fundDetail p {
    color: #919191;
    text-align: center;
    font-size: 15px;
}

.urgentNeed {
    width: 45%;
    margin: 20px auto;
    border-radius: 60px;
    padding: 5px 20px;
    text-align: center;
    line-height: 25px;


    background: #ff9800;
    color: #fff;
    box-shadow: 0 2px 10px 0 #018c8b;
    border: none;
    font-weight: bold;
}

.urgentNeed img {
    width: 20px;
}

.product-detail {
    margin: 20px 0;
    width: 100%;
    float: left;
}

.product-detail .leftBox {
    background: #fff;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, .1);
    border-radius: 10px;
    display: inline-block;
    margin: 0px 0 30px;
    width: 100%;
}

.product-slider {
    margin-bottom: 30px;
}

.product-slider #carousel {
    margin: 0;
}

.product-slider #thumbcarousel {
    margin: 12px 0 0;
}

.product-slider #thumbcarousel .item {
    text-align: center;
}

.product-slider #thumbcarousel .item .thumb {
    border: 2px solid #cecece;
    width: 20%;
    margin: 0 3px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    max-width: 75px;
}

.product-slider #thumbcarousel .item .thumb:hover {
    border-color: #1089c0;
}

.product-slider .item img {
    width: 100%;
    border-radius: 7px;
    height: 350px;
}

.product-slider #thumbcarousel .item .thumb img {
    border-radius: 0;
    height: auto;
}

.details {
    width: 100%;
    float: left;
}

.details .nav {
    font-size: 14px;
    border-bottom: 2px solid #c9efff;
    height: auto;
}

.details .nav-tabs > li {
    margin-bottom: -2px;
    font-size: 15px;
}

.details .nav-tabs > li > a {
    border: none;
    border-radius: 0;
    color: #666;
}

.details .nav-tabs > li > a:hover {
    background: none;
}

.details .nav-tabs > li > a i {
    color: #ccc;
    margin-right: 5px;
}

.details .nav-tabs > li > a sup {
    top: -5px;
    font-size: 75%;
}

.details .nav-tabs > li.active > a {
    border: none;
    border-bottom: 1px solid #00a3e8;
    background: none;
    color: #444;
    font-weight: bold;
}

.details .nav-tabs > li.active > a i {
    color: #00a3e8;
}

.details .tab-content {
}

.details .about {
    font-size: 17px;
    color: #444;
    position: relative;
    padding: 10px 40px;
}

.details .about h3 {
    font-weight: normal;
}

.details .about p {
    text-align: left
}

.details .about h4 {
    font-weight: normal;
    text-align: left
}

.details .about ol li {
    line-height: 30px;
}

.read-more {
    max-height: 250px;
    text-align: center;
    overflow: hidden;
    position: absolute;
    left: 50%;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    padding-top: 140px;
    padding-bottom: 30px;
    line-height: 30px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .01) 0, rgba(255, 255, 255, .16) 4%, rgba(255, 255, 255, .33) 7%, rgba(255, 255, 255, .54) 20%, rgba(255, 255, 255, .68) 32%, rgba(255, 255, 255, .79) 46%, rgba(255, 255, 255, .88) 63%, rgba(255, 255, 255, .96) 83%, #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#03ffffff', endColorstr='#ffffff', GradientType=0);
}

.read-btn {
    margin: 25px auto 20px;
    max-width: 365px;
    width: 90%;
    height: 42px;
    line-height: 42px;
    min-width: 200px;
    font-size: 14px;
    color: #28a3d9;
    font-weight: 600;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
    display: block;
    background: #fff;
    cursor: pointer;
    text-align: center;
}

.read-btn:hover {
    text-decoration: none;
    color: #28a3d9;
}
.details .about .supporterComment{margin-top: 25px;margin-bottom: 25px;}
.details .about .collapse.in{display: contents}
.details .about .aboutSome{height: 350px;width: 100%;float: left;overflow: hidden;}
.details .about .aboutFull{height: auto !important;overflow: auto;}
.medical-documents {
    background: #f4f4f4;
    padding: 25px 0;
    text-align: center;
}

.medical-documents h3 {
    font-size: 20px;
}

.update-campaign {
    background: #ffffff;
    padding: 25px 0;
    text-align: center;
}

.update-campaign h3 {
    font-size: 20px;
}

.demo-gallery > ul {
    margin-bottom: 0;
}

.demo-gallery > ul > li {
    width: 75px;
    border: 1px solid #000;
    margin: 10px;
    display: inline-block;
    cursor: pointer;
}

.donators {
    background: #eee;
    padding: 10px 0 20px;
}

.donators h3 {
    margin-bottom: 20px;
}

.shareFoot {
    background: #fff;
    padding: 15px;
    width: 100%;
    float: left;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.whatsappBtn {
    width: 200px;
    background: #13cb6a;
    color: #fff;
    text-align: center;
    padding: 0 15px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    border-radius: 4px;
    line-height: 42px;
    border: none;
}
.whatsappBtn:hover{color: #fff;}
.whatsappBtn img {
    width: 22px;
    margin-right: 5px;
}

.facebookBtn {
    width: 200px;
    background:#4267b2;
    color: #fff;
    text-align: center;
    padding: 0 15px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    border-radius: 4px;
    line-height: 42px;
    border: none;
}
.facebookBtn:hover{color: #fff;background: #365899;}
.facebookBtn img {
    width: 20px;
    margin-right: 5px;
}
.facebookBtn span{width: auto !important;height: 38px !important;}
.facebookBtn span iframe{height: 20px !important;position: relative !important;}

.twitterBtn {
    width: 200px;
    background:#1b95e0;
    color: #fff;
    text-align: center;
    padding: 11px 15px 5px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    border-radius: 4px;
    border: none;
}
.twitterBtn:hover{background: #0c7abf;}
.twitterBtn:hover #twitter-widget-0{background: #0c7abf;}
#twitter-widget-0{
    background: #39a1f2;
    color: #fff;
    border: none;
}
.IN-widget {
    width: 200px;
    background: #3b5998;
    color: #fff;
    text-align: center;
    padding: 0 15px !important;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    border-radius: 4px;
    height: 42px;line-height: 42px !important;
    border: none;
}
.IN-widget .IN-2bc0215c-7188-4274-b598-1969e06d4d7c-1G9ISYhSF8XoOmdcl0yKDu{background: none !important;}
.contributeBtn {
    width: 200px;
    background: #01bfbd;
    color: #fff;
    text-align: center;
    padding: 0 15px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    border-radius: 4px;
    line-height: 42px;
    border: none;
}
.contributeBtn:hover{color:#fff;}
.otherMethods {
    width: 100%;
    float: left;
    padding: 15px;
}

.otherMethods h3.heading {
    font-size: 20px;
    text-align: left;
    margin-top: 10px;
    padding-bottom: 13px;
    border-bottom: 2px solid #ccc;
}

.otherMethods .card-body {
    background: #f9f9f9;
    color: #444;
    margin-top: 15px;
    padding: 20px;
    border-radius: 6px;
}

.otherMethods .card-body h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.otherMethods .card-body p {
    font-size: 13px;
    text-align: left;
}

.otherMethods .card-body h3 {
    font-size: 17px;
    text-align: left;
}

.otherMethods .upi-card {
    background: #fff;
    overflow: hidden;
    padding: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    height: 182px;
}

.otherMethods .paytm-ico {
    background-image: url(../img/wallet-md-logo.png);
    background-position: 6px -1410px;
    background-repeat: no-repeat;
    height: 30px;
    width: 85px;
    display: inline-block;
}

.otherMethods #paytmqr {
    margin-left: 40px;
}

.otherMethods .other-upis {
    padding: 0 0 0 10px !important;
}

.upi-card .bhim, .upi-card .pay, .upi-card .tez, .upi-card .whatsapp {
    background-image: url(../img/payment-modes.png);
    background-repeat: no-repeat;
    width: 65px;
    height: 40px;
    background-size: 150%;
    margin: 0 auto;
    padding: 0;
}

.otherMethods .other-upis .apps {
    width: 100px;
}

.otherMethods .upi-card .apps div {
    margin: 10px auto 0;
    text-align: center;
}

.otherMethods .upi-card .pay {
    background-position: -15px -430px;
}

.upi-card .tez {
    background-position: -15px -392px;
}

.upi-card .bhim {
    background-position: -15px -470px;
}

.upi-card .whatsapp {
    background-position: -15px -353px;
}

.otherMethods .upi-card .upi-name {
    font-size: 10px;
}

.otherMethods .card-footer {
    background: #01bfbd url(../img/upi-card-bg.png);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    height: 62px;
    line-height: 62px;
    color: #fff;
    padding: 0 12px;
}

.otherMethods .card-footer a {
    color: #022e4f;
    text-decoration: underline;
}

.otherMethods .card-footer a:hover {
    color: #005ca0;
}

.supporterComment {
    width: 100%;
    float: left;
    padding: 15px;
}

.supporterComment h3.heading {
    font-size: 20px;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 13px;
    border-bottom: 2px solid #ccc;
}

.supporterComment .commentPostForm {
    width: 100%;
    float: left;
}
.supporterComment .commentPostForm .form-group{
    width: 100%;
    float: left;
    margin-bottom:10px;
    position: relative;
}

.supporterComment .commentPostForm .form-control {
    width: 100%;
    float: left;
    background: #fbfbfb;
    position: relative;
    padding: 10px;
    height: 50px;
    border-radius: 30px;
    box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, .1);
    resize: none;
    font-size: 12px;
}

.supporterComment .commentPostForm .postBtn {
    background: #01bfbd;
    color: #fff;
    border-radius: 30px;
    padding: 0px 30px;
    line-height: 42px;
    border: none;
    font-weight: bold;
}

.supporterComment .commentPostForm .postBtn:hover {
    background: #ededed;
}

.commentBox {
    width: 100%;
    float: left;
    margin-top: 30px;
}

.commentBox ul {
    list-style: none;
    padding: 0;
}

.commentBox ul li {
    width: 100%;
    float: left;
    padding: 10px;
}

.commentBox .imgIcon {
    width: 50px;
    float: left;
    margin-right: 30px;
}

.commentBox .imgIcon img {
    width: 100%;
}

.commentBox .text {
    width: 85%;
    float: left;
    color: #555;
}

.commentBox .text h4 small {
    margin-left: 15px;
}

.commentBox .text p {
    text-align: left;
    color: #555;
}

.commentBox .text p i {
    font-size: 10px;
    float: left;
    margin-right: 5px;
    margin-top: -3px;
}

.commentBox .text span {
    float: left;
    margin-right: 5px;
}

.show-more {
    height: 40px;
    min-width: 213px;
    border-radius: 45px;
    font-size: 16px;
    color: #01bfbd;
    box-shadow;
    0 0 0 0 rgba(0, 0, 0, .2), 0 0 0 0 rgba(0, 0, 0, .14), 0 0 0 0 rgba(0, 0, 0, .12);
    border: 1px solid rgba(0, 0, 0, .12);
    background: none;
}

.productFaq {
    padding: 40px 15px 0;
}

.productFaq p {
    line-height: 50px;
    color: #6c6c6c;
}

.productFaq .whatsappBtn {
    width: 175px;
    background: #13cb6a;
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    border-radius: 40px;
    line-height: 42px;
    border: none;
    text-transform: uppercase;
}
..productFaq .whatsappBtn:hover{color:#fff;}
.productFaq .whatsappBtn img {
    width: 22px;
    margin-right: 5px;
}

.productFaq .facebookBtn {
    width: 175px;
    background: #3b5998;
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    border-radius: 40px;
    line-height: 42px;
    border: none;
    text-transform: uppercase;
    margin-right: 10px;
}
.productFaq .facebookBtn:hover{color: #fff;}
.productFaq .facebookBtn img {
    width: 20px;
    margin-right: 5px;
}

.productFaq .reportBtn {
    background: none;
    border: 1px solid #2c74b1;
    color: #2c74b1;
    border-radius: 4px;
    font-size: 13px;
    line-height: 30px;
    padding: 0px 13px;
    margin: 25px 0 10px;
}

.paddLNone {
    padding-left: 0;
}

.shareBtn {
    width: 214px;
    color: #01bfbd;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .2);
    border-radius: 4px;
    margin: 15px 35px 0 0;
    min-width: auto;
    height: 42px;
    background: none;
    border: none;
}
.shareBtn:hover, .shareBtn:focus{outline:none;background:#01bfbd; color:#fff;}
.shareBtn i {
    margin-right: 15px;
}
.product-slider .donateBtn {
    width: 214px;
    border-radius: 4px;
    margin: 15px 35px 0 0;
    min-width: auto;
    height: 42px;line-height:42px;font-size:17px;padding:0 10px;
    box-shadow:0 1px 6px 0 rgba(0, 0, 0, .2);
}
.product-detail .right {
    background: #fff;
    display: inline-block;
    margin: 0;
    width: 100%;
}

.FbBtn {
    width: 100%;
    background: #3b5998;
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    border-radius: 4px;
    line-height: 42px;
    border: none;
    font-size: 17px;
}
.FbBtn:hover{color: #fff;}
.donateBtn {
    width: 100%;
    background: #ff9800;
    color: #fff;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 10px 0 #018c8b;
    border-radius: 4px;
    line-height: 42px;
    border: none;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 15px;
}
.donateBtn:hover{color: #fff;}
.right .facebookBtn{width: 100%;}
.right .price {
    font-size: 35px;
    color: #444;
    padding: 10px 5px;
}

.right .price small {
    font-size: 15px;
    width: 100%;
    float: left;
    margin: 5px 0 10px;
}

.right .price small span {
    color: #999;
}

.right .progress {
    border-radius: 15px;
    height: 15px;
}

.right .progress .progress-bar {
    background: #28a3d9;
}

.progressSupport {
    margin: 5px 0;
    font-size: 20px;
    float: left;
    width: 100%;
}

.progressSupport big {
    color: #444;
}

.progressSupport small {
    color: #999;
}


.progressSupport a big {
    color: #337ab7;
}

.progressSupport a small {
    color: #337ab7;
}

.progressSupport a:hover{text-decoration:none;}
.progressSupport a:hover big, .progressSupport a:hover small{color:#555;}

.top-donors {
    width: 100%;
    float: left;
    margin: 10px 0;
    box-shadow: 0 6px 40px 0 rgba(0, 0, 0, .1);
    border-radius: 10px;
}

.top-donors h3 {
    font-size: 19px;
    text-align: left;
    padding: 0 20px 10px;
    line-height: 40px;
    border-bottom: 1px solid #ccc;
}

.top-donors h3 i {
    font-size: 35px;
    margin-right: 20px;
    color: #ccc;
    position: relative;
    top: 4px;
}

.top-donors ul {
    padding: 0;
    list-style: none;
    margin: 0;
    width: 100%;
    float: left;
}

.top-donors ul li {
    width: 100%;
    float: left;
    padding: 15px 25px;
    line-height: 50px;
    font-size: 15px;
}

.top-donors ul li img {
    width: 40px;
    margin-right:10px;
}

.top-donors ul li .name {
    color: #666;
}

.top-donors ul li .amt {
    color: #00a3e8;
    line-height: 50px;
    float: right;
    font-weight: bold;
}

.top-donors .donateButton {
    width: 100%;
    background: #01bfbd;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    box-shadow: 0 2px 10px 0 #018c8b;
    border-radius: 4px;
    line-height: 20px;
    border: none;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.top-donors .readMore {
    display: block;
    text-align: center;
    padding: 15px 20px;
    clear: left;
    cursor: pointer;
    color: #00a3e8;
}

.top-donors .readMore:hover {
    text-decoration: none;
}
#shareFundraiser {
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
    border-radius: 10px;
}
#shareFundraiser .modal-dialog{width:50%;top:25%;}
#shareFundraiser .modal-dialog button.close{padding:10px;z-index: 1;position: absolute;right: 0;}
#shareFundraiser .modal-dialog .facebookBtn, #shareFundraiser .modal-dialog .whatsappBtn, #shareFundraiser .modal-dialog .contributeBtn, #shareFundraiser .modal-dialog .IN-widget, #shareFundraiser .modal-dialog .twitterBtn{width:100%;margin-bottom:15px !important;}
.supporterList{}
.supporterList ul {
    padding: 0;
    list-style: none;
    margin: 0;
    width: 100%;
    float: left;
}

.supporterList ul li {
    width: 100%;
    float: left;
    padding: 10px 25px;
    line-height: 50px;
    font-size: 15px;
}

.supporterList ul li img {
    width: 40px;
    margin-right:10px;
}

.supporterList ul li .name {
    color: #666;
}

.supporterList ul li .amt {
    color: #00a3e8;
    line-height: 50px;
    float: right;
    font-weight: bold;
}
.supporterList ul li .name small {
    color: #c0c0c0;
    margin-left: 15px;
}
.bg-grey {
    background: #dedede;
}
a{cursor:pointer;}
.community-section{background:#fff;padding:25px 0;width: 100%;float: left;}
.community-section .counter-content {
}
.counters.border-right-fund {
    border-right: 4px solid #e6e4e4;
}
.community-section .counters .inline-div {
    text-align: left;
    display: inline-block;
}
.community-section .counters h3 {
    font-size: 36px;
    line-height: 30px;
    color: #00a3e8;font-weight:700;
}
.community-section .counters .inline-div span {
    font-size: 18px;
    margin-top: 5px;
    display: block;
    color:#999;
    text-transform:uppercase;
    font-weight: 600;
}
.carousel-indicators li{border:2px solid #03a4e8;}

.filterForm{width:100%;float:left;margin-bottom:20px;}
.filterForm .searchFilter{}
.filterForm .searchFilter .form-control{height:50px;border-radius:50px;margin-bottom:20px;}
.filterForm .searchFilter .searchBtn{height:50px;border-radius:50px;position:absolute;right:0;top:0;border:none;background:none;width:100px;}
.btn.btn-reset {
    border: 1px solid #e80000;
    background: none;
    border-radius: 50px;
    height: 40px;
    width: 150px;
    box-shadow: inset 0 0 2px #ddd;
    color: #e80000;
}
.filterForm label{margin-left:15px;min-height:20px;width:100%;}
.filterForm .selectServiceType{color:#337ab7;font-size: 13px;border: 1px solid #00a3e8;background:url(../img/select-arr.png) #fff right center no-repeat !important;padding: 3px 13px;border-radius: 50px;height:40px;line-height: 30px;font-weight: 600;letter-spacing: 2px;float: left !important;width:100% !important;}
.filterForm .selectServiceType button{background:transparent;border:none;}
.filterForm .selectServiceType button .bs-caret{display:none;}
.filterForm .selectServiceType.open>.dropdown-toggle.btn-default{background:transparent;border:none;box-shadow:none;}
.filterForm .selectServiceType button:focus{background:transparent;border:none;outline:none !important;box-shadow:none;}
.filterForm .selectServiceType .dropdown-menu{font-size: 13px;border: 1px solid #2ea8e6;background:#fff;border-radius:10px;padding:0;}
.filterForm .selectServiceType .dropdown-menu>li.selected a:focus{outline:none;background:#48b0f7;}
.filterForm .selectServiceType .dropdown-menu>li.selected a{background:#48b0f7;color:#fff;}
.filterForm .selectServiceType .dropdown-menu>li>a{color:#337ab7;padding:5px 20px;}

.top-head{width: 100%;float: left;background: rgb(30, 115, 190);color: #fff;line-height: 34px;font-family: "Lato",sans-serif;}
.top-head .tagline{font-weight: bold;font-size: 12px;}
.top-head ul{float: right;list-style-type: none;margin-bottom: 0;}
.top-head ul li{float: left;padding: 0 15px;border-left: 1px solid #ddd;}
.top-head ul li:first-child{border-left:none;}
.top-head ul li a{color: #fff;}
.top-head ul li.socialLinks a{padding: 8px 5px;font-size: 15px;}
.tooltip-inner{padding: 8px !important;}
.nav{margin-top: 0;}
.logo{padding: 0;}
.logo img{height: 85px;width: 78px;padding: 3px 0;}
.nav ul li{padding: 23px 0;}
.nav ul li a{font-family: "Lato",sans-serif;color: #00548c;font-size: 14px;font-weight: 600;text-transform: uppercase;position: relative;padding: 10px 7px;}
.nav ul li a:hover:before, .nav ul li.active a:before {content: " ";position: absolute;bottom: 0px;left: 50%;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);width: 100%;background-color: #446084;transition: all .3s;opacity: 1;height: 3px;}
.main{height: auto;}

.subscription-form{}
.subscription-form input{background: rgba(255,255,255,.2) !important;border:none;color: #fff;padding: 10px 20px;width: 100%;margin-bottom: 20px;border-radius: 30px;}
.subscription-form input:focus{outline: 0;border: none;}
.subscription-form button{background: #446084;border: none;color: #fff;text-transform: uppercase;font-weight: bold;padding: 10px 20px;border-radius: 30px;letter-spacing: 1px;font-size: 14px;}
.subscription-form input::-webkit-input-placeholder {color: #fff;}
.subscription-form input:-ms-input-placeholder {color: #fff;}
.subscription-form input::placeholder {color: #fff;}
.border-right{border-right: 1px solid #ddd;}

.p-0{padding: 0;}
.pl-0{padding-left: 0;}
.pr-0{padding-right: 0;}
.mb-1{margin-bottom: 10px;}
.mb-2{margin-bottom: 20px;}
.mt-2{margin-top: 20px;}


@media only screen and (max-width:479px) {
    .banner .carousel-inner{height: auto;}
    .trendingFunds h3{font-size: 26px;}
    .carousel-control.left{left: -10px;}
    .carousel-control.right{right: -10px;}
    .fundDetail h3{font-size: 20px;}
    .details .nav{margin: 0;background: none;}
    .tab-content{padding: 15px 0;}
    .shareFoot{padding: 15px 0;}
    .facebookBtn, .whatsappBtn, .twitterBtn, .contributeBtn{margin-bottom: 10px;width: 100%;display: inline-block !important;}
    .IN-widget{width: 100% !important;margin-bottom: 10px !important;}
    .productFaq{padding: 40px 0;}
    .productFaq p{line-height: 30px;margin-bottom: 20px;}
    .productFaq .col-md-5{padding:0;}
    .productFaq .facebookBtn{margin-right: 5px;}
    .productFaq .facebookBtn, .productFaq .facebookBtn{width: 160px;}
    .details .nav{position: relative;min-height: auto;}
    .details .about{padding: 0 15px;}
    #shareFundraiser .modal-dialog{margin:auto;}
    .community-section .counters .inline-div{text-align:center;margin-bottom:20px;}
    .trendingFunds{padding-top:0;}
    .banner .carousel-inner .item{height:215px;}
    .banner .slideImg{}
    .banner .carousel-inner .bottomImg{display:none;}
    .banner .carousel-indicators{width:90%;left:5%;margin-left:0;margin-bottom:0;}
    .banner .carousel-caption{display:none;}

    .tagline{text-align: center;}
    .top-head ul{display: none}
    .logo img{width: 70px;height: 75px;}
    .nav{margin: 0px 0px 0px -110%;}
    .nav.navbar-nav.mobile-menu.mob-nav{z-index: 1000;}
    .m-center{text-align: center;}
    #sideNav{float: left;margin-top: 25px;}
    .footer-bottom .footer-links a{display: table;margin:20px auto; }
    .footer-bottom{padding: 0 0 50px;}
}

.spanError {
    font-size: 12px;
    color: #98201e;
    margin-bottom: 5px;
}