/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL CSS STYLE
* 02.PRELOADER & BOUNCE CCS STYLE
* 03.HOMEPAGE CSS STYLE
    SLIDER BACKGROUND CSS STYLE
    VIDEO BACKGROUND CSS STYLE
* 04.ABOUT CSS STYLE
* 05.SERVICE CSS STYLE
* 06.CALL TO ACTION CSS STYLE
* 07. KEY SKILL CSS STYLE
* 08. VIDEO BACKGROUND CSS STYLE
* 09. PORTFOLIO CSS STYLE
* 10.TESTIMONIAL CSS STYLE
* 11.TEAM CSS STYLE
* 12.PRICING CSS STYLE
* 13.BLOG CSS STYLE
* 14.ANY QUSTIONS CSS STYLE
* 15.SMALL CALL TO ACTION CSS STYLE
* 16.CONTACT CSS STYLE
* 17.MAP CSS STYLE
* 18.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL STYLE
* ----------------------------------------------------------------------------------------
*/

body {
    font-size: 14px;
    font-weight: 300;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
}

html,
body {
    height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.4s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

img {
    width: 100%;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

p {
    line-height: 28px;
}
.td-sum p {
    line-height: 18px;
} 
ul,
li {
    margin: 0;
    padding: 0;
}

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

.no-padding {
    padding: 0
}

.section-padding {
    padding: 70px 0px;
}

.section-title {
    margin-bottom: 30px;
    text-align: center;
}

    .section-title p {
        font-size: 15px;
        font-weight: 300;
        line-height: 26px;
        padding: 0px 380px;
    }

    .section-title h2 {
        font-size: 40px;
        text-transform: uppercase;
        margin-bottom: 35px;
        font-weight: 600;
        position: relative;
        margin-top: 0;
    }

        .section-title h2:before {
            position: absolute;
            left: 50%;
            top: 56px;
            height: 10px;
            width: 74px;
            margin-left: -37px;
            background: #00599C;
            content: "";
            z-index: 1;
        }

a.read-more {
    display: inline-block;
    color: #fff;
    padding: 12px 25px;
    text-transform: capitalize;
    font-size: 14px;
    border: 1px solid #00599C;
    background-color: #00599C;
    font-weight: 600;
    letter-spacing: 1px;
}

    a.read-more:hover {
        background: transparent;
        color: #000;
        border: 1px solid #00599C;
        -webkit-transition: .3s;
        transition: .3s;
    }

.scrollup {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    line-height: 40px;
    cursor: pointer;
    display: none;
    z-index: 2;
    background: #00599C;
}

    .scrollup:hover {
        box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
        -webkit-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
    }


/*
* ----------------------------------------------------------------------------------------
* 02.PRELOADER & BOUNCE CCS STYLE
* ----------------------------------------------------------------------------------------
*/

.preloader-area {
    position: fixed;
    background: #fff;
    z-index: 11000;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.spinner {
    margin: auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -20px;
    top: 50%;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #00599C;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot1 {
    background-color: #00599C;
}

.dot2 {
    top: auto;
    background-color: #000;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}


/*
* ----------------------------------------------------------------------------------------
* 03.HOMEPAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-area {
    height: 100%;
}

.welcome-image-area {
    position: relative;
    height: 100%;
    background: url(../images/bg/mainbg.jpg);
    background-size: cover;

}

    .welcome-image-area:after {
        position: absolute;
        background: rgba(0, 0, 0, .5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        z-index: -1;
    }

.display-table {
    display: table;
    width: 100%;
    height: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.header-text {
    margin-top: 60px;
}

    .header-text h2 {
        color: #fff;
        font-size: 60px;
        margin-top: 10px;
        font-weight: 900;
        text-transform: capitalize;
    }

    .header-text p {
        color: #fff;
        font-size: 14px;
        margin: 0;
        margin-bottom: 30px;
        padding: 0px 300px;
    }

.header-top-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.logo {
    padding-top: 30px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .logo a p {
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 300;
        color: #fff;
    }

    .logo a .home-icon {
        color: #fff;
    }

        .logo a .home-icon:hover {
            color: #ccc;
        }

.mainmenu .navbar-nav li {
    margin-right: 30px;
}

.mainmenu .navbar-nav .manaheaderuser li {
    border-bottom: 1px solid #d8cece;
    margin-right: 0px;
    margin-bottom: 10px;
}

.mainmenu .navbar-nav li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 0;
    padding-left: 0;
    -webkit-transition: .3s;
    transition: .3s;
    font-weight: 400;
}

.mainmenu .navbar-nav .manaheaderuser li a {
    color: #222222;
}

    .mainmenu .navbar-nav li a:hover {
        background: none;
        color: #E66A44;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }
.nav li a:focus,
.nav li a:hover {
    background: none;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    margin: 0;
}

.headerlogin {
    background-color: #2f4d5e;
}

.menu-bg {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background: #fff;
    box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    background: #00599C;
    border: none;
}

    .menu-bg .logo {
        padding-top: 16px;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .menu-bg .logo a p {
            color: #fff;
        }

    .menu-bg .mainmenu .navbar-nav li a {
        color: #fff;
        padding-top: 22px;
        -webkit-transition: .3s;
        transition: .3s;
        padding-bottom: 22px;
    }
    .menu-bg .mainmenu .navbar-nav .manaheaderuser li a {
        color: #222222;
    }

        .menu-bg .mainmenu .navbar-nav li a:hover {
            color: #E66A44;
        }


a.slide-btn {
    margin: 0px 5px;
    display: inline-block;
    color: #fff;
    padding: 12px 25px;
    text-transform: capitalize;
    font-size: 14px;
    border: 1px solid #00599C;
    background-color: #00599C;
    font-weight: 600;
    letter-spacing: 1px;
}

    a.slide-btn:hover {
        background: transparent;
        color: #fff;
        border: 1px solid #00599C;
        -webkit-transition: .3s;
        transition: .3s;
    }

    a.slide-btn.other-btn {
        background: transparent;
    }

        a.slide-btn.other-btn:hover {
            background: #00599C;
        }


/*
* ----------------------------------------------------------------------------------------
* HOMEPAGE SLIDER BACKGROUND CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-area,
.welcome-slider-area,
.welcome-slider-area div {
    height: 100%;
}

    .welcome-slider-area div.single-slide-item-tablecell,
    .welcome-slider-area div.single-slide-item-tablecell div {
        height: auto;
    }

.single-slide-item-table {
    display: table;
    width: 100%;
}

.single-slide-item-tablecell {
    display: table-cell;
    vertical-align: middle;
}

.single-slide-item {
    position: relative;

}

    .single-slide-item:after {
        position: absolute;
        background: rgba(0, 0, 0, .5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        z-index: -1;
    }

.slide-1 {
    background: url(../images/bg/call.jpg) scroll 0 0;
    background-size: cover;
}

.slide-2 {
    background: url(../images/bg/mainbg.jpg) scroll 0 0;
    background-size: cover;
}

.slide-3 {
    background: url(../images/bg/testi-bg.jpg) scroll 0 0;
    background-size: cover;
}

.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

    .carousel-fade .carousel-inner .next,
    .carousel-fade .carousel-inner .prev,
    .carousel-fade .carousel-inner .active.left,
    .carousel-fade .carousel-inner .active.right {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

    .carousel-fade .carousel-inner .next,
    .carousel-fade .carousel-inner .prev,
    .carousel-fade .carousel-inner .active.left,
    .carousel-fade .carousel-inner .active.right {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

.carousel-fade .carousel-control {
    z-index: 2;
}

.right.slider-control {
    left: auto;
    right: -52px;
}

.left.slider-control {
    left: -52px;
}

.welcome-slider-area:hover .right.slider-control {
    right: 30px;
    transition: .25s;
    -webkit-transition: .25s
}

.welcome-slider-area:hover .left.slider-control {
    left: 30px;
    transition: .25s;
    -webkit-transition: .25s
}

.slider-control {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #00599C;
    font-size: 24px;
    width: 40px;
    height: 40px;
    left: 0;
    line-height: 40px;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 20;
}

    .slider-control:hover {
        background: transparent;
        border: 1px solid #fff;
        border-radius: 50%;
        color: #00599C;
    }

.carousel-indicators li {
    width: 30px;
    height: 4px;
    border-radius: 4px;
    margin: 0;
    background: #00599C;
    border: none;
    -webkit-transition: .3s;
    transition: .3s;
}

    .carousel-indicators li.active {
        width: 30px;
        height: 4px;
        border-radius: 4px;
        border: none;
        -webkit-transition: .3s;
        transition: .3s;
    }


/*
* ----------------------------------------------------------------------------------------
* VIDEO BACKGROUND CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-video-area {
    position: relative;
    height: 100%;
    background-size: cover;

    background-position: center center;
}

    .welcome-video-area:after {
        position: absolute;
        background: rgba(0, 0, 0, .5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        z-index: -1;
    }

.display-table {
    display: table;
    width: 100%;
    height: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}


/*
* ----------------------------------------------------------------------------------------
* 04.ABOUT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.about-text {
}

    .about-text h2 {
        margin-bottom: 18px;
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 400;
        margin-top: 0;
    }

        .about-text h2 span {
            color: #fff;
        }

    .about-text p {
        margin-bottom: 20px;
    }

.about-image img {
    border-radius: 5px;
}

.margin-top-c {
    margin-top: 50px;
}


/*
* ----------------------------------------------------------------------------------------
* 05.SERVICE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.service-area {
}

.single-service {
    padding: 30px;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
}

    .single-service:hover {
        box-shadow: 0px 0px 70px rgba(29, 24, 24, 0.09);
        -webkit-transition: .3s;
        transition: .3s;
    }

    .single-service h4 {
        font-size: 22px;
        margin-top: 20px;
        margin-bottom: 30px;
        text-transform: capitalize;
        font-weight: 500;
        -webkit-transition: .3s;
        transition: .3s;
        color: #000;
    }

.service-icon i {
    font-size: 40px;
    color: #00599C;
}

.single-service p {
    margin-bottom: 0;
    color: #333;
}


/*
* ----------------------------------------------------------------------------------------
* 06.CALL TO ACTION CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.call-to-area {
    background: url(../images/bg/call.jpg);
    background-size: cover;
    padding: 200px 0px;
    position: relative;

}

    .call-to-area:after {
        position: absolute;
        background: rgba(0, 0, 0, .5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        z-index: -1;
    }

.call-to-area-text h2 {
    color: #fff;
    font-size: 40px;
    text-transform: capitalize;
    font-weight: 400;
}

.call-to-area-text p {
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 30px;
}

.call-to-area-text a {
    display: inline-block;
    color: #fff;
    padding: 12px 25px;
    text-transform: capitalize;
    font-size: 14px;
    border: 1px solid #00599C;
    background-color: #00599C;
    font-weight: 600;
    letter-spacing: 1px;
}

    .call-to-area-text a:hover {
        background: transparent;
        color: #fff;
        border: 1px solid #00599C;
        -webkit-transition: .3s;
        transition: .3s;
    }


/*
* ----------------------------------------------------------------------------------------
* 07.KEY SKILL AREA CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.our-skill,
.skill-text {
    margin-top: 20px;
    text-align: center;
}

.progress-bar-text span {
    float: right
}

.progress-bar-text {
    font-size: 12px;
    text-transform: capitalize;
    /*font-weight: 500;*/
    -webkit-transition: .3s;
    transition: .3s;
    color: #000;
}

.progress-bar {
    background: #ccc none repeat scroll 0 0;
    box-shadow: 0 0 0;
    height: 50px;
    margin: 5px 0 0 15px;
    /*position: relative;*/
    width: 95%;
}

    .progress-bar > span {
        background: #00599C none repeat scroll 0 0;
        display: block;
        height: 100%;
        width: 0;
    }

.skill-text h2 {
    font-size: 40px;
    text-transform: capitalize;
    margin-bottom: 40px;
    font-weight: 600;
    margin-top: 0;
    position: relative;
}

    .skill-text h2:before {
        position: absolute;
        left: 0;
        top: 56px;
        height: 10px;
        width: 74px;
        background: #00599C;
        content: "";
        z-index: 1;
    }

.img-icon-left, .img-icon-right {
    width: 61px;
    height: 61px;
    background-color: #00599C;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.img-icon-left {
    float: right;
}

.img-icon-right {
    position: absolute;
}

    .img-icon-left .img-border, .img-icon-right .img-border {
        width: 93%;
        height: 93%;
        border: 1px solid #fff;
        margin: 2px;
    }

        .img-icon-left .img-border i, .img-icon-right .img-border i {
            font-size: 35px;
            color: #fff;
            margin: 10px 10px;
            transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            -o-transform: rotate(45deg);
        }

.box-content {
    padding: 20px 0;
    cursor: pointer;
    /*margin: 10px 0 20px 15px;*/
}

.text-cover-left, .text-cover-right {
    border: 1px solid #00599C;
    padding: 2px 2px;
}

.text-cover-left {
    margin-right: 40px;
}

.text-cover-right {
    margin-left: 40px;
}

.text-box-left, .text-box-right {
    background-color: #00599C;
    border: 1px solid #00599C;
    color: #fff;
    height: 57px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-bottom: 0px;
    padding-left: 55px;
}

.text-box-left {
    background: linear-gradient(to right, #fff 50%, #00599C 50%);
    background-size: 200% 100%;
    background-position: right;
    animation: changeColorForLeftContent 8s;
}

@keyframes changeColorForLeftContent {
    from {
        background-position: left bottom;
        color: #00599C;
    }

    to {
        background-position: right bottom;
        color: #fff;
    }
}

.text-box-right {
    background: linear-gradient(to right, #00599C 50%, #fff 50%);
    background-size: 200% 100%;
    animation: changeColorForRightContent 8s;
}

@keyframes changeColorForRightContent {
    from {
        background-position: right bottom;
        color: #00599C;
    }

    to {
        background-position: left bottom;
        color: #fff;
    }
}
/*
* ----------------------------------------------------------------------------------------
* 08.VIDEO CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.video-area {
    padding: 150px 0px;
    background: url(../images/bg/mainbg.jpg);
    position: relative;
    background-size: cover;

}

    .video-area:after {
        position: absolute;
        background: rgba(0, 0, 0, .8);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        z-index: -1;
    }

.video-area-text h2 {
    color: #fff;
    font-size: 18px;
}

.video-area-text i {
    font-size: 30px;
    border: 1px solid #00599C;
    color: #00599C;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    padding-left: 6px;
}

.mfp-iframe-holder {
    padding-top: 80px;
}


/*
* ----------------------------------------------------------------------------------------
* 09. PORTFOLIO CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.gallery {
}

    .gallery .col-md-4 {
        padding: 0;
    }

    .gallery .item {
        padding: 0;
        margin: 0;
    }

    .gallery figure.effect-julia img {
        height: auto;
        width: 100%;
    }

    .gallery .grid figure {
        position: relative;
        float: left;
        overflow: hidden;
        margin: 10px 1%;
        min-width: 320px;
        max-width: 480px;
        max-height: 360px;
        width: 100%;
        height: auto;
        background: #000;
        text-align: center;
        cursor: pointer;
        padding: 0;
        margin: 0;
    }

    .gallery figure.effect-bubba h2 {
        padding-top: 20%;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        font-size: 18px;
        text-transform: capitalize;
        font-weight: 600;
        -webkit-transition: .3s;
        transition: .3s;
    }

    .gallery figure.effect-bubba p {
        font-size: 16px;
        text-transform: lowercase;
    }

        .gallery figure.effect-bubba p strong {
            font-size: 16px;
            text-transform: uppercase;
            margin-right: 5px;
        }

    .gallery .item:hover figure.effect-bubba h2 {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transition: .3s;
        transition: .3s;
    }

.portfolio-more {
    margin-top: 40px;
}

figure.effect-bubba figcaption:before {
    border-top: 1px solid #00599C;
    border-bottom: 1px solid #00599C;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

figure.effect-bubba figcaption:after {
    border-right: 1px solid #00599C;
    border-left: 1px solid #00599C;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}


/*
* ----------------------------------------------------------------------------------------
* 10.TESTIMONIAL CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.testimonial-area {
    background: url(../images/bg/testi-bg.jpg);
    background-size: cover;
    position: relative;

}

    .testimonial-area:after {
        position: absolute;
        background: rgba(0, 0, 0, .8);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        z-index: -1;
    }

    .testimonial-area .section-title h2 {
        color: #fff;
    }

    .testimonial-area .section-title p {
        color: #fff;
    }

.testimonial-list {
    margin-top: 30px;
}

.single-testi-des {
    padding: 30px;
    border-radius: 5px;
    padding: 0px 200px;
    margin-bottom: 30px;
    color: #fff;
    font-size: 30px;
}

    .single-testi-des p {
        color: #fff;
        font-size: 20px;
        font-style: italic;
    }

.single-testimonial img {
    width: 100px;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
}

.single-testimonial {
    margin-right: 30px;
    text-align: center;
}

    .single-testimonial h6 {
        margin-top: 0px;
        font-size: 12px;
        text-transform: capitalize;
        letter-spacing: 3px;
    }

.testi-name {
    text-align: center;
}

    .testi-name h2 {
        font-size: 18px;
        margin-top: 20px;
        text-transform: capitalize;
        font-weight: 600;
        -webkit-transition: .3s;
        transition: .3s;
        color: #00599C;
    }

    .testi-name h3 {
        font-size: 16px;
        font-weight: 300;
        text-transform: capitalize;
        margin-top: 0;
        color: #fff;
    }

.owl-theme .owl-controls {
    margin-top: 30px;
}

    .owl-theme .owl-controls .owl-page span {
        display: block;
        width: 10px;
        height: 10px;
        margin: 5px 7px;
        filter: Alpha(Opacity=50);
        opacity: .5;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        border: 1px solid #00599C;
        background: #00599C;
    }


/*
* ----------------------------------------------------------------------------------------
* 11.TEAM CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.team-area {
}

.team-image {
    position: relative;
}

.team-description {
    background: #00599C;
    padding: 20px 30px;
    position: absolute;
    left: auto;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    bottom: -90px;
    width: 100%;
    text-align: center;
    display: block;
}

.team-image img {
    width: 100%;
}

.single-team:hover .team-description,
.single-team:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

    .single-team:hover .team-description {
        bottom: 0px;
    }

.team-description h4 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
    margin-bottom: 0px;
}

.team-description p {
    color: #fff;
}

.single-team,
.team-description {
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    overflow: hidden;
}


/*
* ----------------------------------------------------------------------------------------
* 12.PRICING CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.pricing-area {
    background: #fafafa;
}

.pricing-box {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    margin-top: 30px;
    -webkit-transition: .3s;
    transition: .3s;
    background: #fff;
}

    .pricing-box:hover {
        -webkit-transition: .3s;
        transition: .3s;
        box-shadow: 0px 0px 70px rgba(29, 24, 24, 0.09);
    }

.plan-price {
    padding: 20px 10px;
}

    .plan-price h5 {
        color: #000;
        font-weight: 300;
        margin: 0;
    }

.pricing-header .plan-title {
    color: #000;
    text-transform: capitalize;
    font-size: 14px;
    margin-bottom: 30px;
}

.plan-price p {
    font-size: 40px;
    color: #000;
    font-weight: 900;
    margin: 0;
}

    .plan-price p span {
        font-size: 16px;
        color: #ccc;
        font-weight: 300;
    }

.plan-features {
    margin-top: 40px;
}

    .plan-features li {
        margin: 0;
        padding-bottom: 15px;
        font-size: 16px;
    }

        .plan-features li span {
            font-weight: 700;
        }

a.plan-more {
    margin-top: 30px;
    display: inline-block;
    color: #fff;
    padding: 12px 25px;
    text-transform: capitalize;
    font-size: 14px;
    border: 1px solid #00599C;
    font-weight: 600;
    background: #00599C;
}

    a.plan-more:hover {
        color: #000;
        border: 1px solid #00599C;
        -webkit-transition: .3s;
        transition: .3s;
        background: transparent;
    }


/*
* ----------------------------------------------------------------------------------------
* 13.ANY QUESTIONS CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.any-questions-area {
}

#faq .panel-group .panel {
    margin-bottom: 8px;
}

#faq .panel-default {
    border: none;
}

    #faq .panel-default > .panel-heading {
        background: #f0f0f0;
        color: #000;
    }

#faq .panel-heading {
    border: none;
    padding-top: 8px;
    padding-bottom: 6px;
}

#faq .panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top: none;
    padding-top: 22px;
    padding-left: 32px;
    padding-bottom: 22px;
}

#faq .panel-heading .panel-title a[data-toggle="collapse"] {
    font-size: 18px;
    font-weight: 300;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 15px;
}

    #faq .panel-heading .panel-title a[data-toggle="collapse"]:hover {
        color: #000;
    }

    #faq .panel-heading .panel-title a[data-toggle="collapse"]:after {
        content: "-";
        display: block;
        position: absolute;
        line-height: 1;
        right: 1em;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 20px;
    }

    #faq .panel-heading .panel-title a[data-toggle="collapse"].collapsed:after {
        content: "+";
        font-size: 20px;
    }


/*
* ----------------------------------------------------------------------------------------
* 14.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.call-to-action-small-area {
    background: #00599C;
}

    .call-to-action-small-area h2 {
        color: #fff;
        margin-top: 0;
    }

.call-to-action-small-button {
    text-align: right;
}

a.call-to-more {
    margin: 0px 5px;
    display: inline-block;
    color: #000;
    padding: 12px 25px;
    text-transform: capitalize;
    font-size: 14px;
    border: 1px solid #fff;
    background-color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
}


/*
* ----------------------------------------------------------------------------------------
* 15.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.contact-area {
}

.contact-details-list h2 {
    font-size: 40px;
    text-transform: capitalize;
    margin-bottom: 40px;
    font-weight: 600;
    margin-top: 0;
    position: relative;
}

    .contact-details-list h2:before {
        position: absolute;
        left: 0;
        top: 56px;
        height: 10px;
        width: 74px;
        background: #00599C;
        content: "";

    }

.contact-details-list p {
    margin-bottom: 30px;
}

.single-contact {
    margin-bottom: 22px;
}

    .single-contact h3 {
        font-size: 18px;
        margin-top: 20px;
        text-transform: capitalize;
        font-weight: 400;
        -webkit-transition: .3s;
        transition: .3s;
    }

        .single-contact h3 i {
            margin-right: 20px;
        }

.form-control {
    display: block;
    border: 0px;
    width: 100%;
    height: 50px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #000;
    background-color: transparent;
    background-image: none;
    border-radius: 0px;
    box-shadow: none;
    margin-bottom: 10px;
    // padding: 17px 7px 14px 15px;
    border: 1px solid #f2f2f2;
    background: #fff;
    -webkit-transition: .3s;
    transition: .3s
}

    .form-control:focus {
        border-color: #00599C;
        outline: 0;
        box-shadow: none;
    }

.contact-form input[type='submit'] {
    display: inline-block;
    color: #fff;
    padding: 15px 35px;
    text-transform: capitalize;
    font-size: 14px;
    border: 1px solid #00599C;
    background-color: #00599C;
    font-weight: 600;
    border-radius: 0;
}

    .contact-form input[type='submit']:hover {
        background: transparent;
        color: #000;
        border: 1px solid #00599C;
        -webkit-transition: .3s;
        transition: .3s;
    }

.search-area input[type='submit']:hover {
    background: transparent;
    color: #111;
    border: 1px solid #00599C;
    -webkit-transition: .3s;
    transition: .3s;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
    outline: none;
}

.success {
    background: #50B948 none repeat scroll 0 0;
    color: #fff;
    font-weight: 700;
    padding: 20px;
    text-align: center;
}


/*
* ----------------------------------------------------------------------------------------
* 16.MAP CSS STYLE
* ----------------------------------------------------------------------------------------
*/

#map {
    height: 600px;
}


/*
* ----------------------------------------------------------------------------------------
* 17.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.footer-area {
    background: #000;
    padding: 0px;
}

.footer-text {
    color: #fff;
}

    .footer-text h6 {
        text-transform: capitalize;
        line-height: 25px;
        font-weight: 300;
        font-size: 1em;
    }

    .footer-text h4 {
        font-size: 1.8em;
        line-height: 28px;
    }

    .footer-text p {
        color: #777;
        line-height: 28px;
    }


.footer-info {
    background-color: #0e0e0e;
    padding: 70px 0 0 0;
}

.footer-copyright {
    background-color: #060606;
    padding: 10px 0px;
}

.footer-area .contact-detail {
    list-style-type: none;
}

    .footer-area .contact-detail p {
        color: #777;
        line-height: 24px;
    }



/*
* ----------------------------------------------------------------------------------------
* 18.BLOG CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.blog-area {
}

.single-blog {
    margin-right: 30px;
    margin-top: 30px;
    position: relative;
}

    .single-blog h5 {
        font-weight: 300;
    }

    .single-blog h2 a {
        font-weight: 700;
        font-size: 22px;
        color: #333;
    }

        .single-blog h2 a:hover {
            color: #00599C;
        }

    .single-blog h5 {
        position: absolute;
        top: 0;
        left: 0;
        background: #00599C;
        color: #fff;
        display: inline-block;
        padding: 12px;
        margin: 0;
    }

.blog-area .owl-theme .owl-controls .owl-page span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    border-radius: 20px;
    background: #00599C;
}

.blog-page-design-area {
    background: #000;
    padding-top: 150px;
    padding-bottom: 100px;
}

.blog-page-title-area h2 {
    color: #fff;
}

.single-blog-post {
    margin-bottom: 50px;
}

    .single-blog-post h2 {
        font-size: 22px;
    }

    .single-blog-post a.blog-read-more {
        background: transparent;
        color: #00599C;
        border: 1px solid #00599C;
        padding: 10px 20px;
    }

.post-date {
    margin-bottom: 10px;
}

    .post-date span {
        margin-right: 20px;
    }

        .post-date span i {
            margin-right: 5px;
            color: #00599C;
        }

.single-blog-post p {
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-carosel-control {
    position: absolute;
    top: 50%;
    color: #000;
    font-size: 30px;
    margin-top: -50px;
    background: #00599C;
    height: 100px;
    width: 25px;
    text-align: center;
    line-height: 99px;
}

    .blog-carosel-control.right {
        right: 0px;
        left: auto;
    }

.pagination {
    margin: 0;
}

ul.blog_pagination li a {
    border: 1px solid #e8e8e9;
    border-radius: 0 !important;
    color: #353535;
    font-family: roboto, sans-serif;
    font-size: 16px;
    height: 35px;
    line-height: 20px;
    margin: 5px;
    width: 35px;
}

.black-icon {
    background: #00599C none repeat scroll 0 0 !important;
    color: #fff !important;
}

    .black-icon:hover {
        background: #00599C !important;
    }

    .black-icon i {
        font-size: 14px;
    }

ul.blog_pagination li a:hover {
    color: #fff;
    background: #00599C;
    border: 1px solid #00599C;
}

.single-side-bar {
    margin-bottom: 40px;
    overflow: hidden;
}

    .single-side-bar h2 {
        margin-bottom: 15px;
        font-size: 22px;
        margin-top: 0;
        text-transform: capitalize;
    }

    .single-side-bar input {
        background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
        border: 1px solid #00599C;
        border-radius: 0;
        box-shadow: none;
        color: #e3e8f0;
        height: 50px;
        float: left;
    }

        .single-side-bar input:hover,
        .single-side-bar input:focus {
            border: 1px solid #00599C;
            box-shadow: none;
            outline: 0 none;
        }

    .single-side-bar button {
        background: #00599C none repeat scroll 0 0;
        border: 1px solid #00599C;
        color: #fff;
        height: 42px;
        padding: 0 32px;
        -webkit-transition: .3s;
        transition: .3s;
    }

        .single-side-bar button:hover {
            background: transparent;
            color: #000;
            border: 1px solid #00599C;
            -webkit-transition: .3s;
            transition: .3s;
        }

    .single-side-bar ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .single-side-bar ul li a {
            color: #767676;
            display: block;
            font-size: 14px;
            padding: 5px 0;
        }

            .single-side-bar ul li a span {
                float: right;
            }

            .single-side-bar ul li a:hover {
                color: #00599C
            }

.single-blog-social-icon {
    overflow: hidden;
    float: left;
    width: 177px;
    margin-bottom: 10px;
}

    .single-blog-social-icon i {
        border: 1px solid #00599C;
        border-radius: 50px;
        float: left;
        font-size: 22px;
        height: 50px;
        line-height: 50px;
        margin-right: 15px;
        text-align: center;
        width: 50px;
    }

    .single-blog-social-icon .facebook {
        border: 1px solid #5d82d1;
        color: #5d82d1;
    }

    .single-blog-social-icon .twitter {
        border: 1px solid #00BFF3;
        color: #00BFF3;
    }

    .single-blog-social-icon .youtube {
        border: 1px solid #CB1D1F;
        color: #CB1D1F;
    }

    .single-blog-social-icon .youtube-play {
        border: 1px solid #CB1D1F;
        color: #CB1D1F;
    }

    .single-blog-social-icon .behance {
        border: 1px solid #0068FF;
        color: #0068FF;
    }

    .single-blog-social-icon .dribbble {
        border: 1px solid #EA4C8A;
        color: #EA4C8A;
    }

.tag {
    overflow: hidden;
}

    .tag a {
        color: #000;
        float: left;
        font-size: 14px;
        font-weight: 400;
        margin: 5px 7px;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        padding: 5px 8px;
        background: #00599C;
        border: 1px solid #00599C;
    }

        .tag a:hover {
            color: #000;
            border: 1px solid #00599C;
            background: transparent;
        }

.single-blog-post-details blockquote {
    font-size: 16px;
    line-height: 28px;
}

.next-previews-button-design {
    margin-top: 40px;
    overflow: hidden;
}

    .next-previews-button-design a {
        color: #000;
    }

.post-comments-area {
    overflow: hidden;
    margin-top: 50px;
}

    .post-comments-area h2 {
        margin-bottom: 20px;
    }

.single-comment {
    overflow: hidden;
    margin-bottom: 60px;
}

    .single-comment img {
        float: left;
        margin-right: 50px;
        margin-bottom: 80px;
        width: 100px;
        border-radius: 50%;
    }

    .single-comment h5 {
        font-weight: 700;
    }

    .single-comment p {
    }

    .single-comment a {
        color: #333;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

        .single-comment a i {
            font-size: 10px;
            background: #767676 none repeat scroll 0 0;
            color: #fff;
            padding: 5px;
            margin-right: 5px;
            border-radius: 30px;
            -webkit-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
        }


.comment-form-area {
    margin-left: 150px;
}

    .comment-form-area input {
        background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
        border: 1px solid #e3e8f0;
        box-shadow: none;
        color: #333;
        height: 50px;
        border-radius: 0;
    }

        .comment-form-area input:hover,
        .comment-form-area input:focus {
            box-shadow: none;
            outline: 0 none;
        }

    .comment-form-area textarea {
        background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
        border: 1px solid #e3e8f0;
        box-shadow: none;
        color: #333;
        height: 150px;
        border-radius: 0;
    }

        .comment-form-area textarea:hover,
        .comment-form-area textarea:focus {
            border: 1px solid #00599C;
            box-shadow: none;
            outline: 0 none;
        }

    .comment-form-area button {
        background: #00599C none repeat scroll 0 0;
        border: 1px solid #00599C;
        color: #000;
        font-size: 16px;
        padding: 7px 10px;
        display: inline-block;
    }


/*
* ----------------------------------------------------------------------------------------
* PREVIEW CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.preview-body {
    background: #fafafa;
}

.preview-single-image img {
    width: 100%;
}

.preview-single-image {
    -webkit-transition: 1s;
    transition: 1s;
    box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

    .preview-single-image:hover {
        -webkit-transition: 1s;
        transition: 1s;
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }

    .preview-single-image h2 {
        font-size: 20px;
        text-align: center;
        color: #000;
        background: #fff;
        margin: 0;
        padding: 30px 20px;
    }

.preview-header-top-area {
    padding: 50px 0px;
}

    .preview-header-top-area h2 {
        font-size: 80px;
        color: #00599C;
        text-transform: capitalize;
        font-weight: 900;
    }

    .preview-header-top-area p {
        color: #333;
        font-size: 30px;
        font-weight: 300;
    }

.main h2 {
    color: #000;
}

.main {
    margin-bottom: 180px;
}

/* Custom Css */
.ul-border {
    list-style-type: none;
}

.single-page-header {
    background: #00599C;
    padding-top: 66px;
    padding-bottom: 0px;
}

.sticky-side-bar {
    position: sticky;
}

.list-style-none {
    list-style: none;
}

.list-text-item {
    margin-top: 5px;
}

.list-item-icon {
    margin-right: 5px;
}

.text-orange {
    color: #00599C;
}

.tab-pane input {
    width: 100%;
}

.search-area {
    background: rgba(255,255,255,0.7);
    display: table;
    width: 100%;
    clear: both;
    padding: 15px 0;
}

.searchlogin {
    margin-top: 90px
}

.nav-tabs {
    border-bottom: none;
}

    .nav-tabs li {
        margin-bottom: 0;
    }

        .nav-tabs li a {
            border: none !important;
            background-color: transparent !important;
            margin: 0 !important;
            color: #111 !important;
            font-weight: bold;
        }

            .nav-tabs li a:hover {
                color: #00599C !important;
            }

        .nav-tabs li.active a {
            color: #00599C !important;
            text-decoration: underline;
        }

            .nav-tabs li.active a:hover {
                cursor: pointer !important;
            }

img {
    max-width: 100%;
    width: auto;
    vertical-align: middle;
}

.search-area p {
    margin: 0;
}

.form-control {
    height: 34px !important;
}

.search-area input[type='submit'], .search-area button {
    display: inline-block;
    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
    border: 1px solid #00599C;
    background-color: #00599C;
    font-weight: 600;
    border-radius: 0;
}

.search-area .form-control {
    font-size: 14px !important;
}

.transport-info p:first-child {
    margin-top: 15px;
}

.header-text h3 {
    color: #fff;
}



.news-list {
    margin-bottom: 20px;
}

    .news-list hr {
        margin-top: 10px;
        margin-bottom: 10px;
    }

.news-item-link {
    text-decoration: none;
    color: black;
}

    .news-item-link:hover {
        cursor: pointer;
        color: black;
    }

.news-preview-title {
    font-size: 2rem;
    font-weight: bold;
}

.news-preview-content {
    margin-top: 10px;
}

.news-open-sentence {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
}

.news-image-area {
    text-align: center;
    margin-left: auto;
}

.news-image {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.news-author {
    float: right;
    font-weight: bold;
    margin-right: 30px;
    margin-bottom: 20px;
}
.user-pages-left .user-menus .user-menu-item {
    display: inline-block;
    width: 100%;
    height: 45px;
    margin-bottom: 2px;
    cursor: pointer;
}
    .user-pages-left .user-menus .user-menu-item .user-menu-icon {
        width: 45px;
        height: 100%;
        background-color: #d3d3d3;
        float: left;
        text-align: center;
        font-size: 22px;
        padding-top: 10px;
        color: white;
    }
    .user-pages-left .user-menus .user-menu-item .user-menu-name {
        display: block;
        padding-left: 60px;
        height: 100%;
        line-height: 45px;
        background-color: #e3e4e4;
        color: #333;
    }
.list-order-header {
    border-bottom: 1px solid #e8e8e8;
    margin-left: -28px;
    margin-top: -10px;
}
    .list-order-header .order-satus.active {
        border-bottom: 3px solid #e4240a;
    }
.shop-info .item-table-container .table-row-header {
    margin-left: 6px;
}
    .list-order-header .order-satus {
        font-family: 'Roboto', sans-serif;
        display: inline-block;
        font-size: 15px;
        margin-left: 33px;
        padding-bottom: 12px;
        padding-top: 12px;
        cursor: pointer;
        color: #747474;
        font-size: 13px !important;
        font-weight: 500;
    }
.shop-info {
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 0px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}
    .shop-info .item-table-container {
        width: 100%;
    }
    .shop-info .item-table-container {
        margin-top: 20px;
        float: left;
        border-radius: 5px;
        border: 1px solid #d8d8d8;
        padding: 3px;
    }
        .shop-info .item-table-container .table-row-header .item-table-content {
            float: left;
            height: 55px;
            display: block;
            border-top: 1px solid #dfdfdf;
            border-bottom: 1px solid #dfdfdf;
            position: relative;
            background-color: #f6f8f8;
        }
        .shop-info .item-table-container .table-item-column {
            float: left;
        }
        .shop-info .item-table-container .table-row-header .item-table-content .table-item-column.column-product-name {
            height: 60px;
            line-height: 60px;
            padding-left: 40px;
            width: 250px;
        }
        .shop-info .item-table-container .table-item-column.column-quantity {
            width: 120px;
        }
        .shop-info .item-table-container .table-item-column.column-total-price {
            width: 125px;
        }
        .shop-info .item-table-container .table-row-header .item-table-content .table-item-column.column-quantity {
            height: 60px;
            line-height: 60px;
            text-align: center;
        }
            .shop-info .item-table-container .table-row-header .item-table-content .table-item-column.column-serial {
                text-align: center;
                height: 60px;
                line-height: 60px;
                padding-left: 10px;
            }

            .shop-info .item-table-container .table-row-header .item-table-content .table-item-column.column-product-attribute {
                height: 60px;
                line-height: 60px;
                font-size: 14px;
                text-align: center;
            }
            .shop-info .item-table-container .table-row-header .item-table-content .table-item-column.column-price {
                height: 60px;
                line-height: 18px;
                padding-top: 20px;
                text-align: center;
            }
            .shop-info .item-table-container .table-row-header .item-table-content .table-item-column.column-total-price {
                height: 60px;
                line-height: 18px;
                padding-top: 20px;
                text-align: center;
            }
            .shop-info .item-table-container .table-row-header .item-table-content .table-item-column {
                font-size: 13px;
                color: #555;
            }
        .shop-info .item-table-container .table-item-column.column-price {
            width: 105px;
        }
        
.z-custom {
    width: 100%;
}
        
        .shop-info .item-table-container .order-header {
            min-height: 60px;
            background-color: #343744;
            /*margin-left: -5px;*/
            color: #b4b8bf;
            font-size: 15px;
            padding: 10px 15px;
        }
            .shop-info .item-table-container .order-header .item-header.order-code {
                width: 20%;
            }
            .shop-info .item-table-container .order-header .item-header.order-created {
                width: 20%;
            }
            .shop-info .item-table-container .order-header .item-header {
                display: inline-block;
            }
                .shop-info .item-table-container .order-header .item-header:last-child {
                    float: right;
                }
.order-confirm {
    width: 20% !important;
}
.search-input {
    width: 190px;
    height: 32px;
    padding-right: 32px;
    box-shadow: none;
    border-color: #cfd1d2;
    display: block;
    box-sizing: border-box;
    padding: .5rem;
    border: 1px solid #cacaca;
    margin: 0 0 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: #0a0a0a;
    background-color: #fefefe;
    border-radius: 0;
    transition: box-shadow 0.5s,border-color .25s ease-in-out;
    -webkit-appearance: none;
}
.item-search {
    display: inline-block;
    position: relative;
    margin-right: 5px;
}
.item-search .order-icon-search {
    position: absolute;
    width: 31px;
    height: 30px;
    background-color: #edf0f4;
    border-left: 1px solid #cfd1d2;
    line-height: 30px;
    text-align: center;
    top: 1px;
    right: 1px;
    color: #b6b9bd;
}
.box-order-list {
    background-color: #f6f4f4;
    padding: 28px;
    font-size: 14px;
    box-shadow:3px 1px 1px #e8e8e8;
}
.shop-info .item-table-container .table-row .item-table-content {
    width: 100%;
    float: left;
    height: 99px;
    display: block;
    border-bottom: 1px solid #dfdfdf;
    position: relative;
   
    background-color: #FFF;
}
    .shop-info .item-table-container .table-row .item-table-content .table-item-column.column-serial {
        padding-top: 38px;
    }
        .shop-info .item-table-container .table-row .item-table-content .table-item-column.column-serial .serial-number {
            width: 21px;
            height: 21px;
            display: block;
            border-radius: 50%;
            color: #FFF;
            font-size: 15px;
            font-weight: 700;
            background-color: #c4321e;
            text-align: center;
            margin: 0 auto;
            margin-left: 6px;
        }
    .shop-info .item-table-container .table-row .item-table-content .table-item-column.column-product-name {
        padding-top: 14px;
        position: relative;
        padding-right: 10px;
    }
        .shop-info .item-table-container .table-row .item-table-content .table-item-column.column-product-name .product-img img {
            float: left;
            width: 70px;
            height: 70px;
            display: block;
            outline: none;
            margin: 0 10px;
        }
        .shop-info .item-table-container .table-row .item-table-content .table-item-column.column-product-name .product-name {
            width: 150px;
            overflow: hidden;
            float: left;
            font-size: 14px;
            line-height: 18px;
            display: block;
        }
        .shop-info .item-table-container .table-row .item-table-content .table-item-column.column-product-name .product-link {
            width: 150px;
            height: 15px;
            float: left;
            font-size: 14px;
            line-height: 15px;
            overflow: hidden;
        }
.shop-info .item-table-container .table-item-column.column-product-attribute {
    width: 140px;
}
    .shop-info .item-table-container .table-row .item-table-content .table-item-column.column-product-attribute {
        color: #555;
        font-size: 14px;
        padding-left: 22px;
        padding-top: 11px;
        padding-right: 5px;
        position: relative;
    }
    .shop-info .item-table-container .table-row .item-table-content .table-item-column.column-quantity {
        padding-top: 33px;
        padding-left: 35px;
    }
        .shop-info .item-table-container .table-row .item-table-content .table-item-column.column-quantity .input-quantity {
            float: left;
            width: 55px;
            height: 40px;
            border: 1px solid #d9dadc;
            border-radius: 3px;
            padding-left: 5px;
            padding-right: 5px;
            text-align: center;
            box-shadow: none;
            outline: none;
            margin-right: 6px;
        }
    .shop-info .item-table-container .table-row .item-table-content .table-item-column.column-price {
        padding-top: 40px;
        text-align: center;
    }
.shop-info .item-table-container .table-row .item-table-content .table-item-column.column-total-price {
    padding-top: 40px;
    text-align: center;
    font-weight: 500;
    color: #555;
}
.shop-info .shop-summary-container .block-summary-info .summary-item.summary-quantity {
    float: left;
    width: 20%;
    text-align: center;
    height: 63px;
    line-height: 63px;
    font-size: 20px;
    font-weight: 700;
    color: #555;
}
.shop-info .item-table-container .table-item-column.column-total-price {
    width: 125px;
}
.shop-info .shop-summary-container {
    float: left;
    width: 100%;
    height: 63px;
    display: block;
    border-top: 1px dashed #ccc8ba;
    border-bottom: 1px dashed #ccc8ba;
    background-color: #fef7df;
    margin-top: 18px;
    padding-left: 16px;
    padding-right: 10px;
}
    .shop-info .shop-summary-container .block-title {
        font-size: 16px;
        font-weight: 500;
        height: 63px;
        line-height: 63px;
        color: #483834;
        float: left;
        text-transform: uppercase;
    }
    .shop-info .shop-summary-container .block-summary-info {
        float: right;
        width: 93%;
    }
        .shop-info .shop-summary-container .block-summary-info .summary-item.summary-foreign-ship-fee {
            width: 208px;
            height: 42px;
            line-height: 42px;
            font-size: 16px;
            border: 1px solid #edd78c;
            border-radius: 4px;
            background-color: #fbfcec;
            margin-top: 10px;
            padding-left: 15px;
            padding-right: 17px;
            float: right;
            position: relative;
            cursor: pointer;
        }
        .shop-info .shop-summary-container .block-summary-info .summary-item.summary-price {
            float: right;
            padding-right: 10px;
            margin-right: 16px;
            text-align: right;
            height: 63px;
            line-height: 63px;
            font-size: 20px;
            font-weight: 700;
            color: #ff502b;
            border-right: 1px solid #d4c9a2;
        }
        .shop-info .shop-summary-container .block-summary-info .summary-item.summary-shop {
            float: left;
            width: 15%;
            text-align: center;
            height: 63px;
            line-height: 63px;
            font-size: 20px;
            font-weight: 700;
            color: #555;
        }
shop-info .item-table-container .table-row .item-table-content .table-item-column.column-quantity .input-quantity {
    float: left;
    width: 55px;
    height: 40px;
    border: 1px solid #d9dadc;
    border-radius: 3px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    box-shadow: none;
    outline: none;
    margin-right: 6px;
}

#dropdownnotication {
    height: 550px;
    overflow: auto;
}

.notificationclient {
    overflow: hidden;
    background-color: white;
    width: 535px;
    min-height: 550px;
    height: auto;
    font-family: "Open Sans",sans-serif;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 99999;
    border-radius: 4px;
    box-shadow: 0px 2px 8px 2px #bababa;
}

#notificationclient .tab-content {
    padding: 10px 10px;
}

#notificationclient .nav-pills > li > a {
    font-size: 13px;
    color: black;
    padding: 5px;
}
#notificationclient .tab-content  a {
    font-size: 11px;
    color: black;
    padding: 5px;
}
#notificationclient .nav-pills > li {
    margin-right: 5px;
    margin-top:5px;
}

#notificationclient .nav-pills > li.active > a {
    border-bottom: 1px solid #ff0000;
    padding: 5px;
    background-color: #ff500b;
    border-radius: 0px;
    color: white;
}

.newsnotification {
    background-color: #e1dddd;
    padding: 5px 5px;
    margin-bottom: 3px;
    border: 1px solid #bababa;
    border-radius: 2px;
    line-height: 4px;
}

.newsnotification p {
    color: #616161;
    font-size:13px;
}

.oldsnotification {
    background-color: white;
    padding: 10px 5px;
    color: #616161;
    border-bottom: 1px solid;
    line-height: 4px;
}
.oldsnotification p {
    font-size: 13px;
}

.liApproval {
    height: 500px;
    overflow: auto;
    padding-left: 5px;
}
.mainmenu .navbar-nav .manaheaderuser li a {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left:10px;
}

.main-bgcolor{
    background-color: #00599C;
}

/**/
.modal-content{
    padding:15px;
    text-align:left;
}
.modal-dialog{
    width:400px;
    margin-top:80px;
}
.modal-content form>div{
    margin-bottom:10px;
}
.modal-content form input[type="text"], .modal-content form textarea, .modal-content form input[type="password"]{
    padding:8px;
    width:100%;
    border: 1px solid #d5dbde;
}
.modal-content form textarea{
    height:100px;
}

.modal-content form p{
    color:#777;
}
.modal-dialog .modal-header{
    padding-right:0;
    padding-left:0;
    margin-bottom:15px;
    position:relative;
    overflow:hidden;
}
.modal-dialog h3{
    margin:0;
    float:left;
}
/**/
#loginpopup .btn-success, #registerpopup .btn-success{
    background:#fc0000;
    border:1px solid #dd0000
}
/**/
#logacc{
    background:url(../img/bg-service.jpg) no-repeat 50% 100%;
    padding:100px 0;
}
#logacc .inner{
    width:600px;
    margin:0 auto;
}
#logacc .inner .logacc-form{
    background:rgba(255, 255, 255, 0.5);
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
    padding:50px;
}
#logacc .inner .logacc-form input[type="text"], #logacc .inner .logacc-form input[type="password"]{
    padding:8px;
    border:1px solid #aaa;
    width:100%;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
    margin:5px 0;
}
#logacc .inner .logacc-form .btn{
    margin:15px 0;
    background:#fc0000;
    border:1px solid #fc0000;
    text-transform:uppercase;
    font-size:100%;
    color:#fff;
    width:100%;
    padding:8px 10px;
}
/**/

.profile{
    height: 90px;
}
.profile .welcome-image-area{
    height: 90px;
}

#orderslist-tab1 table{
    font-size: 15px;
}