/* General body settings */
body {
    color: #3e4d5c;
    direction: ltr;
    font-family: 'Roboto-Regular';
    background: #fff;
    overflow-x: hidden;
}

@font-face {
    font-family: Roboto-Bold;
    src: url(../fonts/Roboto-Bold.ttf);
}

@font-face {
    font-family: Roboto-Light;
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: Roboto-Medium;
    src: url(../fonts/Roboto-Medium.ttf);
}

@font-face {
    font-family: Roboto-Regular;
    src: url(../fonts/Roboto-Regular.ttf);
}

/***
General typography 
***/
h1, h2, h3, h4, h5, h6 {
    font: 300 'Roboto-Medium', sans-serif;
    margin: 0px;
}

h1 {
    margin-bottom: 15px;
}

.main {
    padding-top: 10px;
    padding-bottom: 20px;
}

    .main h1 {
        margin-top: -6px;
    }

.col-left {
    padding-left: 0px;
}

.align-left {
    text-align: left !important;
}

.col-right {
    padding-right: 0px;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}
/***
Fix link outlines after click
***/
a {
    color: #FCB71E;
}

    a, a:focus, a:hover, a:active {
        outline: 0;
        text-decoration: none;
    }
/***
Misc tools
***/
.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.no-bottom-space {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.no-top-space {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.no-space {
    margin: 0 !important;
    padding: 0 !important;
}

.no-text-shadow {
    text-shadow: none !important;
}

.padding-top-5 {
    padding-top: 5px !important;
}

.padding-top-10 {
    padding-top: 10px !important;
}

.padding-top-15 {
    padding-top: 15px !important;
}

.padding-top-20 {
    padding-top: 20px !important;
}

.padding-top-25 {
    padding-top: 25px !important;
}

.padding-top-30 {
    padding-top: 30px !important;
}

.padding-top-35 {
    padding-top: 35px !important;
}

.padding-top-40 {
    padding-top: 40px !important;
}

.padding-top-45 {
    padding-top: 45px !important;
}

.padding-top-50 {
    padding-top: 50px !important;
}

.padding-top-60 {
    padding-top: 60px !important;
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}

.margin-bottom-5 {
    margin-bottom: 5px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-bottom-25 {
    margin-bottom: 25px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-bottom-35 {
    margin-bottom: 35px !important;
}

.margin-bottom-40 {
    margin-bottom: 40px !important;
}

.margin-bottom-50 {
    margin-bottom: 50px !important;
}

.margin-bottom-60 {
    margin-bottom: 60px !important;
}

.margin-bottom-65 {
    margin-bottom: 65px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-left-0 {
    margin-left: 0 !important;
}

.margin-right-0 {
    margin-right: 0 !important;
}

.margin-right-20 {
    margin-right: 20px !important;
}

.margin-left-20 {
    margin-left: 20px !important;
}

.padding-left-0 {
    padding-left: 0 !important;
}

.padding-right-0 {
    padding-right: 0 !important;
}

.padding-right-30 {
    padding-right: 30px !important;
}

.margin-right-10 {
    margin-right: 10px !important;
}

div.checker,
div.radio {
    top: -1px;
}

select.form-control {
    color: #5f6d7b;
    border-radius: 0;
    border-color: #e4e6e8;
    box-shadow: none;
}

    select.form-control:focus {
        box-shadow: none;
        border-color: #999;
    }

input.form-control,
textarea.form-control {
    border-color: #dbdbdb;
    color: #777;
    font: 14px Arial, sans-serif;
    border-radius: 0;
    box-shadow: none;
}

    input.form-control:focus,
    textarea.form-control:focus {
        box-shadow: none;
        border: solid 1px #dbdbdb;
    }

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
}

*html .clearfix {
    zoom: 1;
}

* + html .clearfix {
    zoom: 1;
}

.clear {
    clear: both;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.lead {
    font-size: 16px;
}

.font-transform-inherit {
    text-transform: inherit !important;
}

.color-red {
    color: #E84D1C;
}

/***
Custom Scrollbars
***/

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #cecece;
}

::-webkit-scrollbar-thumb {
    background-color: #cecece;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #aaa;
    }

::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none;
    border: 0;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    box-shadow: none;
    border: 0;
}

/* overides metro scrolbars in IE10 and makes them look like a default scrollbar */
@-ms-viewport {
    width: auto !important;
}

::-moz-selection {
    color: #fff;
    background: #e45000;
}

::selection {
    color: #fff;
    background: #e45000;
}

.list-inline li {
    display: inline-block;
}
/* Global classes */
.min-hight500 {
    min-height: 500px;
}

/***
Pre-Header and pre-header elements
***/
.pre-header {
    color: #222;
    padding: 6px 0;
    line-height: 1.2;
    font-family: 'Roboto-Regular', sans-serif;
    background: #ececec;
}

    .pre-header a {
        color: #222;
        font-family: 'Roboto-Regular';
        font-size: 14px;
    }

        .pre-header a:hover {
            color: #FCB71E !important;
        }

        .pre-header a:focus {
            text-decoration: none;
        }

        .pre-header a.active {
            color: #FCB71E;
        }

    .pre-header li {
        padding-left: 11px;
        padding-right: 15px;
    }

        .pre-header li:last-child {
            border: none;
            padding-right: 0px;
        }

.additional-shop-info li:first-child {
    padding-left: 0;
}

.additional-nav li:last-child {
    padding-right: 0;
}

.pre-header .fa {
    margin-right: 4px;
}

.shop-currencies a {
    margin-right: 6px;
}

    .shop-currencies a:last-child {
        margin-right: 0;
    }

    .shop-currencies a.current {
        color: #FCB71E;
    }

/* langs block */
.langs-block {
    position: relative;
}

    .langs-block .fa {
        margin-right: 0;
    }

.langs-block-others-wrapper {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99999;
}

.langs-block-others {
    padding: 10px 10px 2px;
    background: #F9F9F9;
    z-index: 9999;
    width: 100px;
    display: none;
    margin-top: 12px;
    border-top: solid 2px #FCB71E;
    box-shadow: 5px 5px rgba(91, 91, 91, 0.2);
    position: relative;
    transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -webkit-transition: opacity .3s ease-in-out;
}

    .langs-block-others:after {
        top: -8px;
        width: 0;
        height: 0;
        left: 8px;
        z-index: 2;
        content: " ";
        display: block;
        position: absolute;
        border-bottom: 8px solid #FCB71E;
        border-right: 8px solid transparent;
        border-left: 8px solid transparent;
    }

.langs-block:hover .langs-block-others {
    display: block;
}

.langs-block-others a {
    display: block;
    margin-bottom: 8px;
}

/***
Header and header elements
***/
.header {
    background: #fff;
    border-radius: 0;
    margin-bottom: 0px;
    z-index: 999;
    position: relative;
}

/* FIX styles BEGIN */
.page-header-fixed .header {
    box-shadow: 0 1px 3px #ddd;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

body.page-header-fixed {
    padding-top: 88px !important; /* height of the header */
}
/* FIX styles END */

.header .container {
    position: relative;
}

.ie8 .header {
    border-bottom: 1px solid #eee;
}

.hotline-header {
    color: #333;
    font-family: 'Roboto-Regular';
    font-size: 14px;
    padding-top: 3px;
    white-space: nowrap;
}

.hotline-number {
    font-weight: 700;
}

.site-logo {
    float: left;
    font-size: 23px;
    font-weight: 400;
    padding-top: 18px;
    padding-bottom: 18px;
    margin-left: 15px;
}

    .site-logo img {
        width: auto;
        max-width: 100%;
    }

.header .mobi-toggler {
    float: right;
    color: #D8D8D8;
    border: 1px solid #D8D8D8;
    border-radius: 100% !important;
    width: 32px;
    height: 32px;
    display: none;
    margin: 7px 25px 7px 0;
    position: relative;
    background: #fff url(../img/toggler.png) no-repeat 6px 8px;
    z-index: 9999;
}

    .header .mobi-toggler i {
        display: none;
    }

    .header .mobi-toggler:hover {
        background: #e34f00 url(../img/toggler.png) no-repeat 6px -28px;
        border-color: #e34f00;
        color: #fff;
    }

/* Navigation */
.navbar {
    margin-bottom: 0px;
}

.header-navigation {
    font: 14px "Roboto-Regular", sans-serif;
    margin: 0 15px 0 0;
    padding: 0;
    float: left;
    text-transform: none;
    width: 100%;
}

    .header-navigation ul li.dropdown:hover,
    .header-navigation ul li.open {
        color: #FCB71E;
    }

    .header-navigation ul > li.active > a,
    .header-navigation ul > li:hover > a {
        color: #144e8d;
        text-decoration: none;
        border-bottom: 4px solid #144e8d;
        background: none;
    }


/* dropdown menu */
@media (min-width: 1025px) {
    .header-navigation > ul > li:hover > .dropdown-menu {
        display: block;
    }
}

.header-navigation,
.header-navigation .dropdown {
    position: static;
}

    .header-navigation .dropdown-fix-left,
    .header-navigation .dropdown-fix-right {
        position: relative;
    }

    .header-navigation .dropdown-menu {
        left: 100%;
        top: 100%;
        padding: 0;
        background: #fff;
        position: absolute;
        border: none;
        text-transform: none;
        letter-spacing: 0;
        border-radius: 0;
        z-index: 9999;
    }

        .header-navigation .dropdown-menu:before,
        .header-navigation .dropdown-menu:after {
            display: none !important;
        }

.dropdown-fix-left .dropdown-menu {
    left: 0;
    width: 700px;
}

.dropdown-fix-right .dropdown-menu {
    right: 0;
    width: 700px;
}

.header-navigation > ul > li > .dropdown-menu {
    margin-top: 0px;
    z-index: 1001;
    background: #f6f6f6;
}

.header-navigation .dropdown100 > .dropdown-menu {
    left: 15px;
    right: 30px;
}


.header-navigation .dropdown-menu li.root4 {
    padding: 15px;
    padding-bottom: 0px;
    margin: 1.5%;
    border-bottom: solid 1px #efefef;
    position: relative;
    display: block;
    float: left;
    width: 23%;
    box-sizing: border-box;
}

    .header-navigation .dropdown-menu li.root4 img {
        width: 100%;
    }

.header-navigation .dropdown-menu li.root3 {
    padding: 5px 20px;
    margin: 1.5%;
    border-bottom: solid 1px #efefef;
    position: relative;
    display: block;
    float: left;
    width: 30%;
    box-sizing: border-box;
}

    .header-navigation .dropdown-menu li.root3 h4 {
        text-transform: uppercase;
        font-family: 'Roboto-Medium';
        font-size: 18px;
        color: #333;
    }

    .header-navigation .dropdown-menu li.root3 img {
        width: 100%;
    }

.header-navigation .dropdown-menu li:last-child {
    border: none;
}

.header-navigation .dropdown-menu li > a {
    padding: 10px 15px;
    font-weight: 400;
    color: #767f88;
}

.header-navigation .dropdown-menu a {
    position: relative;
}

    .header-navigation .dropdown-menu a:hover {
        border-bottom: none;
    }

.header-navigation .dropdown-menu .fa {
    position: absolute;
    top: 13px;
    right: 15px;
}

.sub-menu-1 li a {
    font-family: 'Roboto-Regular';
    font-size: 14px;
    padding: 5px 10px;
}

    .sub-menu-1 li a:before {
        content: '\f0da';
        font-family: 'FontAwesome';
        padding: 0 5px 0 0;
    }

    .sub-menu-1 li a:hover {
        text-decoration: none;
    }

.reduce-header .site-logo {
    padding-top: 9px;
    padding-bottom: 9px;
}

@media (min-width: 1025px) {
}

.reduce-header .mobi-toggler {
    margin-top: 12px;
}

.page-header-fixed .header .mobi-toggler {
    transition: margin 0.3s ease;
    -o-transition: margin 0.3s ease;
    -ms-transition: margin 0.3s ease;
    -moz-transition: margin 0.3s ease;
    -webkit-transition: margin 0.3s ease;
}

/* page slider */
.page-slider {
    clear: both;
    position: relative;
}

.ecommerce .main .page-slider {
    margin-top: 10px;
}
/* OWL styles */
.owl-buttons {
    position: absolute;
    top: -43px;
    right: 10px;
}

    .owl-buttons div {
        display: inline-block;
        width: 26px;
        height: 26px;
        margin-left: 5px;
        position: static;
        border-radius: 26px !important;
        text-indent: -100000px;
    }

    .owl-buttons .owl-prev {
        background: #fff url(../img/fa-angles.png) no-repeat 8px 8px;
    }

    .owl-buttons .owl-next {
        background: #fff url(../img/fa-angles.png) no-repeat -33px 8px;
    }

    .owl-buttons .owl-prev:hover {
        background: #e84d1c url(../img/fa-angles.png) no-repeat 8px -31px;
    }

    .owl-buttons .owl-next:hover {
        background: #e84d1c url(../img/fa-angles.png) no-repeat -33px -31px;
    }

/*  */
.carousel-indicators {
    text-align: left;
    margin: 0;
    width: auto;
    left: 33px;
}

    .carousel-indicators li,
    .carousel-indicators li.active {
        width: 10px;
        height: 10px;
        margin: 0 9px 0 0;
        background: transparent;
        border: solid 1px #c9cdce;
        border-radius: 18px !important;
        z-index: 9999 !important;
    }

        .carousel-indicators li.active {
            background: #6f7a7c;
            border-color: #9ea7a9;
        }
/* END LAYER SLIDER */

/*  */
.product-list .product-item {
    margin-bottom: 30px;
}

/***
Sidebar
***/
.sidebar {
    color: #3E4D5C;
}

    .sidebar .list-group-item {
        background: rgba(244,244,244,0.5);
        border: none;
        display: block;
        margin-bottom: 2px;
        padding: 7px 10px;
        position: relative;
        border-radius: 0;
    }

        .sidebar .list-group-item:last-child {
            margin: 0;
        }

    .sidebar a {
        color: #3E4D5C;
    }

        .sidebar a:hover {
            color: #FCB71E;
        }

.sidebar-menu a {
    display: block;
}

    .sidebar-menu a:hover {
        text-decoration: none;
    }

.sidebar-menu .fa-angle-right {
    position: relative;
    top: 1px;
    margin-right: 2px;
    float: left;
}

.sidebar .dropdown.open .dropdown-toggle {
    background: #fff;
    color: #3E4D5C;
}

    .sidebar .dropdown.open .dropdown-toggle:hover {
        color: #FCB71E;
    }

.sidebar .dropup.open > .dropdown-toggle, .dropdown.open > .dropdown-toggle {
    border-color: none !important;
}

.sidebar .dropdown-menu {
    background-clip: padding-box;
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: none;
    float: none;
    font-size: 14px;
    list-style: none;
    margin: 0 -10px;
    min-width: auto;
    padding: 5px 10px 1px 19px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
    font: 15px 'PT Sans Narrow', sans-serif;
}

    .sidebar .dropdown-menu:after,
    .sidebar .dropdown-menu:before {
        display: none !important;
    }

    .sidebar .dropdown-menu .dropdown-menu {
        border-top: none;
        margin-bottom: -5px;
        margin-right: -10px;
    }

.sidebar .open > .dropdown-menu {
    display: block;
}

.sidebar .dropdown-menu li {
    padding: 4px 0 3px 11px;
    position: relative;
}

.sidebar .dropdown-menu ul {
    padding: 0;
    margin: 0 0 0 4px;
    list-style: none;
    text-transform: none;
    font-size: 15px;
}

.sidebar .dropdown-menu > li > a {
    clear: both;
    line-height: inherit;
    padding: 0;
    white-space: nowrap;
}

.sidebar-menu .dropdown-menu li > a:hover, .sidebar-menu .dropdown-menu li > a:focus, .sidebar-menu li.active > a, .sidebar-menu li.active > a:hover {
    background: none !important;
    color: #FCB71E;
}

.sidebar .dropdown-menu > li > a .fa-angle-down {
    position: absolute;
    top: 8px;
    right: 0;
}

.sidebar .fa-angle-down:before {
    content: "";
}

.sidebar .fa-angle-down {
    width: 11px;
    height: 11px;
    background: url(../img/icons/sidebar-toggle-icons.png) no-repeat 0 0;
    position: absolute;
    top: 12px;
    right: 10px;
}

.sidebar a:hover > .fa-angle-down {
    background-position: -11px 0;
}

.sidebar .collapsed .fa-angle-down {
    background-position: 0 -37px;
}

.sidebar .collapsed:hover > .fa-angle-down {
    background-position: -11px -37px;
}

/***
Brands
***/

.brands .owl-carousel {
    margin-bottom: 30px;
    padding: 0 75px;
    background: #fff;
}

.brands .owl-buttons div {
    position: absolute;
    top: 0;
    width: 70px;
    height: 102px;
    text-indent: -10000px;
    border-radius: 0 !important;
    display: block;
}

.brands .owl-buttons {
    position: static;
}

    .brands .owl-buttons .owl-prev {
        left: 0;
        background: #fff url(../img/fa-angle-brands.png) no-repeat 18px 18px;
        margin-left: 0;
    }

        .brands .owl-buttons .owl-prev:hover {
            background: #fff url(../img/fa-angle-brands.png) no-repeat 18px -217px;
        }

    .brands .owl-buttons .owl-next {
        left: auto;
        right: 0;
        background: #fff url(../img/fa-angle-brands.png) no-repeat -249px 18px;
        margin-right: 0;
    }

        .brands .owl-buttons .owl-next:hover {
            background: #fff url(../img/fa-angle-brands.png) no-repeat -249px -217px;
        }

/***
steps block and steps block elements
***/
/* shop */
.steps-block {
    color: #fff;
    padding: 30px 0;
}

    .steps-block ::-moz-selection {
        color: #e45000;
        background: #fff;
    }

    .steps-block ::selection {
        color: #e45000;
        background: #fff;
    }

.steps-block-gray {
    background: #a0a3a4;
}

.steps-block-red {
    background: #e84d1c;
}

.steps-block-col {
    overflow: hidden;
    min-height: 71px;
}

    .steps-block-col span {
        display: block;
        width: 36px;
        height: 71px;
        background: url(../img/step3-angle-right.png) no-repeat 100% 50%;
        position: absolute;
        top: 0;
        right: 10px;
    }

.steps-block h2,
.ecommerce .steps-block h2 {
    color: #fff;
    font-size: 22px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: 'Roboto-Medium';
}
/* steps-block-simple – step block without image */
.steps-block-simple h2,
.ecommerce .steps-block-simple h2 {
    font-size: 33px;
    margin-bottom: 5px;
}

.steps-block em {
    font: 13px 'Roboto-Medium', sans-serif;
    text-transform: none;
    margin-top: 10px;
}

.steps-block-simple em {
    text-transform: inherit;
    line-height: 1.2;
}

.steps-block .steps-block-col div {
    margin-left: 70px;
    margin-right: 40px;
    margin-top: 10px;
}

.steps-block-simple .steps-block-col div {
    margin-left: 0;
}

.steps-block .fa-truck,
.steps-block .fa-gift,
.steps-block .fa-phone {
    font-size: 30px;
    border: solid 2px #fff;
    border-radius: 30px !important;
    width: 60px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
    padding-top: 22px;
    margin-right: 11px;
    float: left;
}

.steps-block .fa-angle-right {
    font-size: 84px;
}

/* title wrapper */
.title-wrapper {
    margin: -23px 0 0px;
    position: relative;
    overflow: hidden;
    background: #1C7ECA url(../img/xe-buu-chinh.png) no-repeat 100% 100%;
    min-height: 280px;
    padding-top: 79px;
    width: 100%;
    overflow: hidden;
}

    .title-wrapper .container-inner {
        float: left;
    }

    .ecommerce .title-wrapper h1, .title-wrapper em {
        font-family: 'Roboto-Medium', sans-serif;
        color: #fff;
        font-weight: 400;
    }

.ecommerce .title-wrapper h1 {
    font-size: 45px;
    padding: 0 9px 13px;
    border-bottom: solid 1px rgba(255,255,255,0.6);
    margin: 0 -9px 17px;
}

.title-wrapper h1 span {
    color: #FCB71E;
}

.title-wrapper em {
    font-size: 20px;
    font-style: normal;
    display: block;
    text-align: center;
}

/* breadcrumb */
.breadcrumb {
    background: none;
    padding: 0;
    font: 14px "Open Sans", sans-serif;
    color: #5f6d7b;
    margin-bottom: 22px;
    margin-top: 12px;
}

    .breadcrumb > li + li:before {
        content: "\f105 ";
        -moz-osx-font-smoothing: grayscale;
        display: inline-block;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        color: #5f6d7b;
    }

    .breadcrumb a {
        color: #5f6d7b;
    }

    .breadcrumb > .active {
        color: #FCB71E;
    }

/* paginations */
.pagination {
    border-radius: 0;
    margin: 0;
}

    .pagination > li {
        display: inline-block;
        margin-left: 5px;
    }

        .pagination > li > a, .pagination > li > span,
        .pagination > li:first-child > a, .pagination > li:first-child > span,
        .pagination > li:last-child > a, .pagination > li:last-child > span {
            border-radius: 25px !important;
            border: none;
            color: #868c93;
        }

            .pagination > li > span,
            .pagination > li > span:hover {
                background: #555;
                color: #fff;
            }

        .pagination > li:first-child > a,
        .pagination > li:last-child > a {
            padding: 4px 12px 8px;
        }

.items-info {
    padding-top: 7px;
    color: #868c93;
}

/* content page */
.content-page {
    background: #fff;
    padding: 20px;
    margin-right: 10px;
}

.corporate .content-page {
    padding: 0 0 20px;
}

.content-page a,
.sidebar2 a {
    color: #001e62;
}

    .content-page a:hover,
    .sidebar2 a:hover {
        color: #FCB71E;
    }

.content-page .link, .content-page .link:hover, .content-page .link:active {
    color: #FCB71E;
}

.content-page h2,
.content-page h3,
.content-page h4,
.content-page h5,
.content-page h6 {
    /*text-transform: inherit;*/
    padding-top: 10px;
}

.content-page h3 {
    font-size: 20px;
    margin-bottom: 7px;
}

.content-page h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.content-page h5,
.content-page h6 {
    font: 700 15px 'Open Sans', Arial, sans-serif;
    margin-bottom: 2px;
}

.content-page p,
.content-page .list-unstyled {
    margin-bottom: 15px;
}

    .content-page .list-unstyled .list-unstyled {
        margin-left: 20px;
        padding-top: 3px;
        margin-bottom: 0;
    }

    .content-page .list-unstyled li {
        margin-bottom: 3px;
    }

/* 404 page */
.corporate .page-404 {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 125px;
}

.page-404 .number {
    position: relative;
    top: 35px;
    display: inline-block;
    letter-spacing: -10px;
    margin-top: 0px;
    margin-bottom: 10px;
    line-height: 128px;
    font-size: 128px;
    font-weight: 300;
    color: #FCB71E;
    text-align: right;
}

.page-404 .details {
    margin-left: 40px;
    display: inline-block;
    padding-top: 0px;
    text-align: left;
    top: 15px;
    position: relative;
}

/* 500 page */
.corporate .page-500 {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-500 .number {
    display: inline-block;
    letter-spacing: -10px;
    line-height: 128px;
    font-size: 128px;
    font-weight: 300;
    color: #FCB71E;
    text-align: right;
}

.page-500 .details {
    margin-left: 40px;
    display: inline-block;
    text-align: left;
}

/* content form page */
div.content-form-page {
    background: #fff;
    padding: 5px 20px 30px;
    margin-right: 10px;
}

.content-form-page a {
    color: #767F88;
}

    .content-form-page a:hover {
        color: #FCB71E;
    }

.form-without-legend {
    padding-top: 25px;
}

.content-form-page legend {
    border: none;
    font-size: 18px;
    padding-top: 20px;
    margin-bottom: 10px;
    color: #3E4D5C;
}

.content-form-page .control-label {
    font-weight: normal;
    padding-right: 5px;
    margin-left: -15px;
}

.default-form label,
.checkout-page label {
    font-weight: normal;
}

.require {
    color: #e94d1c;
}

.content-form-page input.form-control {
    border-color: #dbdbdb;
    color: #aaa;
    font: 14px Arial, sans-serif;
    border-radius: 0;
}

.content-form-page .form-control:focus {
    box-shadow: none;
    border: solid 1px #e94d1c;
}

.content-form-page .checkbox .col-lg-4 {
    padding-right: 0;
    margin-left: -15px;
}
/*.content-form-page .checker {
  margin-left: -15px;
}*/
.content-form-page .btn {
    margin-right: 10px;
    /*padding: 7px 12px 6px;*/
}

div.content-form-page .checkbox-list {
    margin-left: -3px;
}

/* info at the right of the forms */
.form-info {
    padding: 0 10px 0 30px;
    border-left: solid 1px #e4e6e8;
    margin: 25px 0;
}

    .form-info h2,
    .ecommerce .form-info h2 {
        font-size: 18px;
        position: relative;
        top: -5px;
        margin-bottom: 5px;
    }

        .form-info h2 em {
            font-style: normal;
            color: #FCB71E;
        }

    .form-info p {
        margin: 0 0 20px;
    }


/* content search */
.content-search {
    background: #fff;
    padding: 10px 15px;
}

.ecommerce .content-search h1 {
    padding-top: 3px;
    margin: 0;
}

.content-search h1 em {
    font-style: normal;
    color: #FCB71E;
}

.content-search form {
    margin: 0;
}

.content-search input {
    border-radius: 0;
    border-color: #dbdbdb;
    color: #b0b4b7;
    font: 14px Arial, sans-serif;
    height: 35px;
}

    .content-search input:focus {
        box-shadow: none;
        border: solid 1px #e94d1c;
    }

.content-search button {
    margin-left: 0 !important;
    font-size: 14px;
    /*padding: 7px 12px 5px;*/
    height: 35px;
}

/***
Pre-Footer and pre-footer elements
***/
.pre-footer {
    background: #FCB71E;
    color: #222;
    padding: 20px 0 10px 0;
}

    .pre-footer .container {
        padding-top: 15px;
        display: flex;
    }

    .pre-footer a {
        color: #57c8eb;
    }

    .pre-footer h2,
    .ecommerce .pre-footer h2 {
        font-size: 17px;
        color: #333;
        font-family: 'Roboto-Medium';
        padding-bottom: 10px;
    }

    .pre-footer p {
        margin-bottom: 20px;
    }

    .pre-footer li {
        margin-bottom: 6px;
    }

    /* pre-footer twitter block */
    .pre-footer dl.f-twitter {
        overflow: hidden;
        margin-bottom: 7px;
    }

        .pre-footer dl.f-twitter dt {
            width: 30px;
            float: left;
            text-align: left;
            padding-top: 2px;
        }

            .pre-footer dl.f-twitter dt i {
                color: #57c8eb;
                font-size: 20px;
            }

        .pre-footer dl.f-twitter dd {
            color: #b0b0b0;
            margin-left: 30px;
        }

            .pre-footer dl.f-twitter dd span {
                color: #6b9cab;
                font-size: 12px;
                margin: 0 5px;
            }

    .pre-footer address {
        line-height: 1.7;
    }

.pre-footer-col {
    padding-bottom: 22px;
}

    .pre-footer-col ul {
        margin-left: 8px;
    }

        .pre-footer-col ul li a {
            color: #333;
            font-family: 'Roboto-Medium';
            font-size: 13px;
        }

            .pre-footer-col ul li a:before {
                content: '\f0da';
                font-family: 'FontAwesome';
                padding: 0 5px 0 0;
            }

            .pre-footer-col ul li a:hover {
                text-decoration: none;
                color: #FFF;
            }

.pre-footer .top-line {
    border-top: solid 1px #535353;
    padding-top: 24px;
    padding-bottom: 17px;
}

.pre-footer .social-icons {
    padding-top: 5px;
}

    .pre-footer .social-icons li a,
    .pre-footer a.social-icon {
        transition: all 0.1s ease-in-out !important;
        -o-transition: all 0.1s ease-in-out !important;
        -ms-transition: all 0.1s ease-in-out !important;
        -moz-transition: all 0.1s ease-in-out !important;
        -webkit-transition: all 0.1s ease-in-out !important;
    }

        .pre-footer .social-icons li a:hover {
            opacity: 1;
        }

.pre-footer hr {
    margin-top: 0;
    border-color: #404040;
}

.pre-footer .form-control,
.pre-footer .form-control:focus {
    border: none;
}

/* subscribe */
.pre-footer .pre-footer-subscribe-box {
    padding-bottom: 14px;
}

.ecommerce .pre-footer-subscribe-box form {
    float: left;
    width: 330px;
}

.pre-footer .pre-footer-subscribe-box p {
    clear: both;
}

.pre-footer-subscribe-box .input-group {
    border: solid 1px #C3C3C3;
}

.pre-footer-light .pre-footer-subscribe-box .input-group {
    border: solid 1px #DBDBDB;
}

.ecommerce .pre-footer-subscribe-box h2,
.corporate .pre-footer-subscribe-box h2 {
    float: left;
    margin-right: 20px;
}

.pre-footer-subscribe-box input {
    border-radius: 0;
    background: #FFF;
    border: solid 1px #313030;
    color: #909090;
    font: 13px Arial, sans-serif;
}

    .pre-footer-subscribe-box input:focus {
        box-shadow: none;
        border: solid 1px #313030;
    }

.pre-footer-subscribe-box .btn-primary {
    margin-left: 0 !important;
    border-bottom: none;
}

/* pre-footer photostream */
.pre-footer .photo-stream li {
    margin: 4px 5px 4px 0;
    display: inline-block;
}

.pre-footer .photo-stream img {
    width: 54px;
    height: 54px;
    border: solid 2px #9ca5ae;
}

    .pre-footer .photo-stream img:hover {
        border-color: #E84D1C;
        transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
    }

/* light pre-footer */
.pre-footer-light {
    background: #F9F9F9;
    color: #3E4D5C;
    margin-top: 20px;
}

    .pre-footer-light .container {
        background: #fff;
        padding-top: 25px;
    }

    .pre-footer-light h2,
    .ecommerce .pre-footer-light h2 {
        color: #3E4D5C;
    }

    .pre-footer-light a {
        color: #3E4D5C;
    }

    .pre-footer-light dl.f-twitter dd {
        color: #3E4D5C;
    }

        .pre-footer-light dl.f-twitter dd span {
            color: #99a5b1;
        }

        .pre-footer-light dl.f-twitter dd a {
            color: #e84d1c;
        }

    .pre-footer-light address a {
        color: #e84d1c;
    }

    .pre-footer-light hr {
        border-color: #e6e6e6;
    }

    .pre-footer-light .social-icons li a {
        opacity: 1;
    }

        .pre-footer-light .social-icons li a:hover {
            opacity: 0.7;
        }

    .pre-footer-light .input-group {
        border: none;
        padding: 1px 1px 0 0;
    }

    .pre-footer-light .pre-footer-subscribe-box input {
        background: #fff;
        border: none;
        color: #909090;
    }

    .pre-footer-light .pre-footer-subscribe-box button:hover {
        color: #fff;
    }

/* light pre-footer */
.pre-footer-gray {
    background: #62707F;
    color: #fff;
}

    .pre-footer-gray h2,
    .ecommerce .pre-footer-gray h2 {
        color: #fff;
    }

    .pre-footer-gray dl.f-twitter dd {
        color: #fff;
    }

        .pre-footer-gray dl.f-twitter dd span {
            color: #fff;
            opacity: 0.5;
        }

    .pre-footer-gray hr {
        border-color: #94a5b6;
    }

    .pre-footer-gray .social-icons li a {
        opacity: 1;
    }

        .pre-footer-gray .social-icons li a:hover {
            opacity: 0.7;
        }

    .pre-footer-gray .pre-footer-subscribe-box fomr {
        color: #fff;
    }

    .pre-footer-gray .pre-footer-subscribe-box .input-group {
        border: 1px solid #94a5b6;
    }

    .pre-footer-gray .pre-footer-subscribe-box input {
        background: #62707F;
        border: solid 1px #62707F;
        color: #fff;
    }

        .pre-footer-gray .pre-footer-subscribe-box input:focus {
            border: solid 1px #62707F;
        }

    .pre-footer-gray ::-webkit-input-placeholder { /* WebKit browsers */
        color: #fff;
    }

    .pre-footer-gray :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
        color: #fff;
    }

    .pre-footer-gray ::-moz-placeholder { /* Mozilla Firefox 19+ */
        color: #fff;
    }

    .pre-footer-gray :-ms-input-placeholder { /* Internet Explorer 10+ */
        color: #fff;
    }

/* footer */
.footer {
    background: #144e8c;
    color: #fff;
    font-size: 12px;
    padding: 15px 0;
}

    .footer .container {
        display: flex;
    }

.footer-light {
    background: #F9F9F9;
    color: #3e4d5c;
}

.logo-footer {
    margin-top: 10px;
}

label.copyright {
    color: #FFF;
    display: block;
    font-family: 'Roboto-Bold';
    font-size: 11px;
    text-transform: uppercase;
}

.footer-info span {
    display: block;
    font-family: 'Roboto-Regular';
    font-size: 11px;
}

.footer-gray {
    background: #4A5866;
}

.footer a {
    color: #fff;
    text-decoration: underline;
}

    .footer a:hover {
        text-decoration: none;
    }

.footer-light a {
    color: inherit;
}

.footer .padding-top-10 {
    opacity: 0.5;
}

.footer .list-inline > li:last-child {
    padding-right: 0;
}

.footer ul {
    margin: 0;
    padding: 0;
}

    .footer ul.social-footer {
        font-size: 18px;
        margin-top: 20px;
		margin-bottom: 15px;
    }

        .footer ul.social-footer a {
            opacity: 0.5;
			text-decoration:none;
        }

            .footer ul.social-footer a:hover {
                opacity: 1;
            }

        .footer ul.social-footer i {
            font-size: 30px;
			margin-top:-2px;
        }

/***
Custom icon buttons
***/
.icon-btn {
    height: 60px;
    min-width: 80px;
    margin: 0 5px 5px 0;
    border: 1px solid #ddd;
    padding: 12px 0px 0px 0px;
    background-color: #fafafa !important;
    background-image: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    display: inline-block !important;
    color: #646464 !important;
    text-shadow: none !important;
    text-align: center;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    -ms-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

    .icon-btn i {
        font-size: 18px;
    }

.ie8 .icon-btn:hover {
    filter: none !important;
}

.icon-btn:hover {
    text-decoration: none !important;
    border-color: #999 !important;
    color: #444 !important;
    text-shadow: 0 1px 0px rgba(255, 255, 255, 1) !important;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    -ms-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

    .icon-btn:hover .badge {
        -webkit-transition: all 0.3s ease !important;
        -moz-transition: all 0.3s ease !important;
        -ms-transition: all 0.3s ease !important;
        -o-transition: all 0.3s ease !important;
        transition: all 0.3s ease !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        box-shadow: none !important;
    }

.icon-btn div {
    font-family: 'Open Sans', sans-serif;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #000;
    font-size: 12px;
    font-weight: 300;
}

.icon-btn .badge {
    position: absolute;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px !important;
    font-weight: 300;
    top: -5px;
    right: -5px;
    padding: 3px 6px 3px 6px;
    color: white !important;
    text-shadow: none;
    border-width: 0;
    border-style: solid;
    -webkit-border-radius: 12px !important;
    -moz-border-radius: 12px !important;
    border-radius: 12px !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/***
Notes
***/

/* Common styles for all types */
.note {
    margin: 0 0 20px 0;
    padding: 15px 30px 15px 15px;
    border-left: 5px solid #eee;
}

    .note h1,
    .note h2,
    .note h3,
    .note h4 {
        margin-top: 0;
    }

    .note p:last-child {
        margin-bottom: 0;
    }

    .note code,
    .note .highlight {
        background-color: #fff;
    }

/* Variations */
.note-danger {
    background-color: #FAEAE6;
    border-color: #ed4e2a;
}

.note-warning {
    background-color: #FCF3E1;
    border-color: #fcb322;
}

.note-info {
    background-color: #E8F6FC;
    border-color: #57b5e3;
}

.note-success {
    background-color: #EBFCEE;
    border-color: #3cc051;
}

/*  panel styles */
.panel-default > .panel-heading {
    color: inherit;
}

.panel .panel-title {
    padding-top: 0;
    margin-bottom: 0;
}

/***
Font awesome icons styles
***/
.fontawesome-icon-list [class^="fa-"],
.fontawesome-icon-list [class*=" fa-"],
li [class^="fa-"],
li [class*=" fa-"] {
    display: inline-block;
    width: 1.25em;
    text-align: center;
}

    .fontawesome-icon-list [class^="fa-"].icon-large,
    .fontawesome-icon-list [class*=" fa-"].icon-large,
    li [class^="fa-"].icon-large,
    li [class*=" fa-"].icon-large {
        width: 1.5625em;
    }

.fontawesome-icon-list .col-md-3 {
    height: 32px;
    line-height: 32px;
}


/***
Demo Utils
***/
.scrollspy-example {
    position: relative;
    height: 200px;
    margin-top: 10px;
    overflow: auto;
}

.util-btn-margin-bottom-5 .btn {
    margin-bottom: 5px !important;
}

.util-btn-group-margin-bottom-5 .btn-group {
    margin-bottom: 5px !important;
}

.fontawesome-demo i {
    font-size: 18px;
}

.fontawesome-demo li {
    padding-top: 5px;
    padding-bottom: 5px;
}

.glyphicons-demo ul {
    padding-left: 0;
    padding-bottom: 1px;
    margin-bottom: 20px;
    list-style: none;
    overflow: hidden;
}

.bs-glyphicons {
    padding-left: 0;
    padding-bottom: 1px;
    margin-bottom: 20px;
    list-style: none;
    overflow: hidden;
}

.glyphicons-demo ul li {
    float: left;
    width: 25%;
    height: 115px;
    padding: 10px;
    margin: 0 -1px -1px 0;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    border: 1px solid #ddd;
}

.glyphicons-demo .glyphicon {
    display: block;
    margin: 5px auto 10px;
    font-size: 24px;
}

.glyphicons-demo ul li {
    width: 12.5%;
}

    .glyphicons-demo ul li [class^="glyphicon-"], .glyphicons-demo ul li [class*=" glyphicon-"] {
        display: block;
        text-align: center !important;
        width: auto;
        line-height: 1.2;
    }

    .glyphicons-demo ul li:hover {
        background-color: rgba(86,61,124,.1);
    }

.buttons-page .btn {
    margin-bottom: 5px !important;
}

.buttons-page .clearfix {
    margin-bottom: 20px;
}

#topcontrol {
    z-index: 99999;
}

/* faq page */
.faq-page .panel-heading {
    padding: 0;
}

    .faq-page .panel-heading h4 {
        font-size: 17px;
    }

    .faq-page .panel-heading a {
        display: block;
        padding: 10px 15px 9px;
    }

        .faq-page .panel-heading a:hover {
            color: #333;
            text-decoration: underline;
        }

/* Services Box */
.service-box p {
    color: #656565;
    font-size: 13px;
}

.service-box .service-box-heading {
    padding: 12px 0;
}

    .service-box .service-box-heading i {
        padding: 0;
        -webkit-border-radius: 34px;
        -moz-border-radius: 34px;
        border-radius: 34px;
        font-size: 18px;
        height: 32px;
        width: 32px;
        line-height: 32px;
        text-align: center;
        vertical-align: baseline;
    }

        .service-box .service-box-heading i.blue {
            color: #0da3e2;
            border: 1px solid #0da3e2;
        }

        .service-box .service-box-heading i.red {
            color: #db3a1b;
            border: 1px solid #db3a1b;
        }

        .service-box .service-box-heading i.green {
            color: #35aa47;
            border: 1px solid #35aa47;
        }

    .service-box .service-box-heading span {
        color: #444;
        font-size: 21px;
        line-height: 25px;
        font-weight: 400;
        margin-bottom: 10px;
        margin-left: 10px;
        display: inline-block;
    }

    .service-box .service-box-heading [class^="icon-"],
    .service-box [class*=" icon-"] {
        display: inline-block;
        text-align: center;
    }

        .service-box .service-box-heading [class^="icon-"].icon-large,
        .service-box .service-box-heading [class*=" icon-"].icon-large {
            /* increased font size for icon-large */
            width: 1.5625em;
        }

/* Blockquote Box */
.quote-v1 {
    background: #7C858E;
    padding: 10px 0;
    margin-left: 0;
    margin-right: 0;
}

    .quote-v1 a {
        margin: 5px;
        display: inline-block;
    }

    .quote-v1 span {
        color: #fff;
        font-size: 22px;
        font-weight: 300;
        margin: 13px 5px 8px;
        line-height: 26px;
        display: inline-block;
    }

    .quote-v1 a.btn-transparent {
        color: #fff;
        font-size: 16px;
        padding: 8px 18px;
        white-space: nowrap;
        text-decoration: none;
        border: solid 1px #fff;
        background: none;
    }

        .quote-v1 a.btn-transparent:hover {
            background: #FCB71E;
            color: #fff;
            transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -webkit-transition: all 0.5s ease;
        }

        .quote-v1 a.btn-transparent i {
            margin-right: 10px;
        }

/* Recent Works */
.recent-work {
    position: relative;
}

    .recent-work a:hover {
        text-decoration: none;
    }

    .recent-work h2,
    .ecommerce .recent-work h2 {
        margin: 3px 0 5px;
    }

        .recent-work h2 a {
            color: #3e4d5c;
        }

            .recent-work h2 a:hover {
                color: #FCB71E;
            }

.recent-work-item {
    padding-left: 10px;
}

.recent-work .owl-buttons {
    left: -74px;
    right: auto;
    top: 0;
}

.recent-work .recent-work-item a.recent-work-description {
    padding: 10px;
    display: block;
    background: #fff;
}

.recent-work .recent-work-item:hover a.recent-work-description {
    background: #FCB71E;
    transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -webkit-transition: all 0.9s ease;
}

.recent-work .recent-work-item strong {
    color: #000;
    display: block;
    font-size: 16px;
    font-weight: 300;
}

.recent-work .recent-work-item b {
    color: #656565;
    font-weight: 300;
}

.recent-work .recent-work-item:hover b,
.recent-work .recent-work-item:hover strong {
    color: #fff;
}

.recent-work .recent-work-item em {
    display: block;
    overflow: hidden;
    position: relative;
}

.recent-work .recent-work-item .fa {
    color: #fff;
    padding: 16px 30px 16px 18px;
    font-size: 16px;
    position: absolute;
    top: 50%;
    width: 47px;
    height: 47px;
    margin-top: -23.5px;
    border-radius: 47px;
    background: rgba(0,0,0,0.5);
    transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}

    .recent-work .recent-work-item .fa:hover {
        color: #FCB71E;
    }

.recent-work .recent-work-item .fa-link {
    left: -100px;
}

.recent-work .recent-work-item .fa-search {
    right: -100px;
}

.recent-work .recent-work-item:hover .fa-link {
    left: 30%;
}

.recent-work .recent-work-item:hover .fa-search {
    right: 30%;
}

/* Mixed Block */
/* Testimonials */
.testimonials-v1 blockquote {
    padding: 15px;
    border: none;
    color: #666;
    display: block;
    font-size: 14px;
    line-height: 20px;
    background: #F8F8F8;
    position: relative;
}

    .testimonials-v1 blockquote:before {
        content: " ";
        display: block;
        position: absolute;
        bottom: -20px;
        left: 70px;
        width: 0;
        height: 0;
        border-left: 0 inset rgba(0, 0, 0, 0);
        border-right: 22px inset rgba(0, 0, 0, 0);
        border-top: 22px solid #F8F8F8;
    }

    .testimonials-v1 blockquote:after {
        width: 13px;
        height: 13px;
        z-index: 23;
        content: " ";
        display: block !important;
        position: absolute;
        right: 0;
        bottom: 0;
        background: #FCB71E url(../img/blockquote-corner.png) no-repeat;
    }

.testimonials-v1 .carousel-info img {
    width: 75px;
    height: 75px;
    padding: 3px;
    border-radius: 150px !important;
    border: solid 1px #f5f5f5;
}

.testimonials-v1 .carousel-info {
    overflow: hidden;
}

    .testimonials-v1 .carousel-info img {
        margin-right: 15px;
    }

    .testimonials-v1 .carousel-info span {
        display: block;
    }

.testimonials-v1 span.testimonials-name {
    color: #FCB71E;
    font-size: 16px;
    font-weight: 300;
    margin: 23px 0 7px;
}

.testimonials-v1 span.testimonials-post {
    color: #656565;
    font-size: 12px;
}

.testimonials-v1 .left-btn,
.testimonials-v1 .right-btn {
    right: 0;
    width: 26px;
    height: 26px;
    bottom: 30px;
    border-radius: 26px !important;
    position: absolute;
    display: inline-block;
}

.testimonials-v1 .left-btn {
    right: 30px;
    background: url(../img/fa-angles.png) no-repeat 8px 8px;
}

.testimonials-v1 .right-btn {
    background: url(../img/fa-angles.png) no-repeat -33px 8px;
}

.testimonials-v1 .left-btn:hover {
    background: #e84d1c url(../img/fa-angles.png) no-repeat 8px -31px;
}

.testimonials-v1 .right-btn:hover {
    background: #e84d1c url(../img/fa-angles.png) no-repeat -33px -31px;
}

/* our clients */
.our-clients {
    position: relative;
}

    .our-clients h2,
    .ecommerce .our-clients h2 {
        margin: 3px 0 5px;
    }

        .our-clients h2 a {
            color: #3e4d5c;
        }

            .our-clients h2 a:hover {
                color: #FCB71E;
            }

    .our-clients .client-item {
        background: #f8f8f8;
        margin-left: 2px;
        position: relative;
    }

    .our-clients .owl-buttons {
        left: -74px;
        right: auto;
        top: 0;
    }

    .our-clients .client-item img {
        margin-left: auto;
        margin-right: auto;
    }

    .our-clients .client-item .color-img {
        display: none;
    }

    .our-clients .client-item:hover img {
        display: none;
    }

    .our-clients .client-item:hover .color-img {
        display: block;
    }

/* Front Carousel */
.front-carousel .carousel-control {
    margin: 0;
    border: none;
    height: 35px;
    font-size: 24px;
    font-weight: normal;
    top: 40%;
    width: 35px;
    background: #222;
    opacity: 0.5;
}

    .front-carousel .carousel-control:hover {
        opacity: 0.6;
    }

    .front-carousel .carousel-control i {
        font-size: 27px;
    }

    .front-carousel .carousel-control.right i {
        position: relative;
        left: 1px;
    }

.front-carousel .carousel-caption {
    padding: 10px 15px 0;
    background: rgba(0,0,0,0.5);
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
}

.front-carousel .carousel-control.left {
    left: 0;
}

.front-carousel .carousel-control.right {
    right: 0;
}

/* Skils */
.front-skills span {
    color: #555;
    display: block;
    font-size: 15px;
    margin-bottom: 7px;
}

.front-skills .progress {
    background: #f2f2f2;
}

.front-skills .progress-bar {
    background: #EF4D2E;
}

.front-skills .progress,
.front-skills .progress-bar {
    box-shadow: none;
}

/* Team Blocks */
.front-team .thumbnail {
    border: none;
}

.front-team h3,
.ecommerce .front-team h3 {
    margin: 10px 0 12px;
    line-height: 40px;
}

    .front-team h3 strong {
        color: #FCB71E;
        font-size: 20px;
        font-weight: 400;
    }

    .front-team h3 small {
        display: block;
        font-size: 13px;
    }

.front-team ul {
    padding: 4px 0 0;
}

.front-team .social-icons {
    overflow: hidden;
}

/* Service Box v1 */
.service-box-v1 {
    text-align: center;
    padding: 15px;
    border: 1px solid #E6E6E6;
    background: rgba(33,66,127,0.02);
}

    .service-box-v1 i {
        padding: 15px;
        font-size: 35px;
    }

    .service-box-v1:hover {
        background: #F2A32B;
        border: 1px solid #F2A32B;
        transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        -webkit-box-shadow: 0px 5px 7px 0px rgba(50, 50, 50, 0.15);
        -moz-box-shadow: 0px 5px 7px 0px rgba(50, 50, 50, 0.15);
        box-shadow: 0px 5px 7px 0px rgba(50, 50, 50, 0.15);
    }

        .service-box-v1:hover i,
        .service-box-v1:hover p,
        .service-box-v1:hover h2 {
            color: #fff;
        }

/* corp. search result */
.content-search-view2 {
    background: #EDEFF1;
    padding: 20px;
    margin: 0 0 20px;
}

.search-result-item {
    margin: 0 -10px 20px;
    padding: 0 10px 15px;
    border-bottom: 1px solid #ECEBEB;
}

    .search-result-item h4,
    .ecommerce .search-result-item h4 {
        margin-bottom: 5px;
        padding: 0;
    }

        .search-result-item h4 a {
            color: #FCB71E;
        }

    .search-result-item p {
        margin-bottom: 10px;
    }

.search-link {
    color: #999;
    font-size: 12px;
}

/* FAQ */
.faq-tabbable {
    padding: 0;
    margin: 0;
    list-style: none;
    border-left: solid 2px #e44f00;
}

    .faq-tabbable li {
        position: relative;
        margin-bottom: 1px;
    }

        .faq-tabbable li a {
            font-size: 14px;
            color: #7C858E;
            display: block;
            background: #F4F4F4;
            padding: 12px 10px 11px 8px;
        }

        .faq-tabbable li:hover a,
        .faq-tabbable li.active a {
            background: #e44f00;
            text-decoration: none;
            color: #fff;
        }

        .faq-tabbable li.active:after {
            content: '';
            display: inline-block;
            border-bottom: 6px solid transparent;
            border-top: 6px solid transparent;
            border-left: 6px solid #e44f00;
            position: absolute;
            top: 16px;
            right: -5px;
        }

/* Lists */
.front-lists-v1 li {
    font-size: 14px;
    margin-bottom: 5px;
}

.content-page .front-lists-v2 li {
    color: #555;
    font-size: 16px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.front-lists-v2 li i {
    margin-right: 5px;
    font-size: 17px;
}

/* Blog Page */
.blog-posts h2,
.ecommerce .blog-posts h2 {
    padding-top: 0;
    font-size: 20px;
}

    .blog-posts h2 a:hover,
    .ecommerce .blog-posts h2 a:hover {
        text-decoration: none;
    }

.blog-posts p {
    text-align: justify;
}

.blog-posts .carousel {
    margin-bottom: 0;
}

.blog-posts hr.blog-post-sep {
    margin: 40px 0;
}

.blog-info {
    list-style: none;
    margin: 15px 0 12px 0;
    padding-left: 0;
}

    .blog-info li {
        padding: 0;
        color: #555;
        font-size: 13px;
        margin-right: 10px;
        display: inline-block;
    }

        .blog-info li i {
            color: #E84D1C;
        }

.blog-posts .pagination li {
    margin-left: -12px;
    margin-right: 17px;
}

.blog-posts .more,
.blog-sidebar .more {
    color: #E84D1C;
}

/* Blog Sidebar */
.recent-news {
    overflow: hidden;
}

    .recent-news h3,
    .ecommerce .recent-news h3 {
        font-size: 16px;
        line-height: 20px;
        margin: 0;
        padding: 0;
    }

        .recent-news h3 a {
            color: #FBB212;
            font-family: 'Roboto-Medium';
            font-size: 13px;
        }

.recent-news-inner {
    padding-left: 0px;
    text-align: justify;
}

.blog-talks .tab-style-1 ul.nav-tabs li > a {
    min-width: 50px;
}

.blog-photo-stream li {
    overflow: hidden;
    margin: 0 5px 8px 0;
    display: inline-block;
}

    .blog-photo-stream li img {
        width: 80px;
        height: 60px;
        padding: 2px;
        border: solid 1px #eee;
    }

        .blog-photo-stream li img:hover {
            border-color: #E84D1C;
            box-shadow: 0 0 1px #fff;
            transition: all 0.4s ease-in-out;
            -o-transition: all 0.4s ease-in-out;
            -ms-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            -webkit-transition: all 0.4s ease-in-out;
        }

.blog-tags ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-tags li {
    position: relative;
    margin: 0 16px 7px 0;
    display: inline-block;
}

    .blog-tags li a {
        color: #555;
        background: #f5f5f5;
        display: inline-block;
        padding: 3px 5px 3px 3px;
    }

        .blog-tags li a:hover {
            color: #fff;
            background: #E84D1C;
            text-decoration: none;
        }

            .blog-tags li a:hover i {
                color: #fff;
            }

    .blog-tags li i {
        color: #E84D1C;
        margin-right: 5px;
        display: inline-block;
    }

    .blog-tags li a:after {
        top: 50%;
        width: 0;
        left: 100%;
        height: 0;
        z-index: 2;
        content: " ";
        display: block;
        margin-top: -12px;
        position: absolute;
        border-left: 12px solid #f5f5f5;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }

    .blog-tags li a:hover:after {
        border-left-color: #E84D1C;
    }

.blog-talks .tab-content {
    background: #FAFAFA;
    padding: 20px 15px;
}

.blog-talks .nav-tabs {
    margin-bottom: 0;
}

    .blog-talks .nav-tabs > li {
        margin-top: 1px;
    }

/* Blog Sidebar categories BEGIN */
.sidebar-categories li a {
    padding: 10px 0;
    border-bottom: 1px solid #ECEBEB;
    color: #333;
}

    .sidebar-categories li a:hover {
        background: none;
    }

.sidebar-categories li > a:hover,
.sidebar-categories li.active > a,
.sidebar-categories li.active:hover > a {
    color: #E84D1C;
}

.sidebar-categories li a:before {
    content: "";
    font-family: FontAwesome !important;
    font-size: 8px;
    padding-right: 10px;
    position: relative;
    top: -1px;
}
/* Blog Sidebar categories END */

/* Blog Item */
.blog-item .blog-item-img {
    margin: 0px 0 25px;
}

    .blog-item .blog-item-img .carousel {
        margin-bottom: 0;
    }

    .blog-item .blog-item-img img {
        display: block;
        width: 100%;
    }

h1,
.blog-posts h1,
.blog-item h1,
.blog-sidebar h2 {
    font-weight: bold;
    font-size: 18px;
    color: #FCB71E;
}

.blog-item blockquote {
    margin: 20px 40px 18px;
    border-color: #E84D1C;
}

.blog-item .blog-info {
    margin: 20px 0;
    padding: 8px 0;
    border-top: solid 1px #ECEBEB;
    border-bottom: solid 1px #ECEBEB;
}

    .blog-item .blog-info li {
        padding-left: 13px;
        border-left: solid 1px #ECEBEB;
    }

        .blog-item .blog-info li:first-child {
            padding-left: 0;
            border-left: none;
        }

.blog-item .blog-item-img .carousel-control {
    top: 45%;
}

.blog-item .media {
    border-bottom: solid 1px #ECEBEB;
    margin-bottom: -1px;
}

.blog-item .comments {
    border-top: solid 1px #ECEBEB;
    padding-top: 15px;
}

.blog-item img.media-object {
    top: 2px;
    width: 60px;
    height: 60px;
    position: relative;
}

.blog-item h4.media-heading {
    position: relative;
    padding-top: 0;
}

    .blog-item h4.media-heading span {
        right: 0;
        top: 3px;
        color: #777;
        font-size: 12px;
        font-weight: 400;
        position: absolute;
    }

        .blog-item h4.media-heading span a {
            color: #E84D1C;
        }

.mix-block .tab-content .col-md-3 {
    padding-right: 0;
}

.mix-block .nav-tabs > li {
    margin-top: 1px;
}

/* front steps */
.front-steps-wrapper h2,
.ecommerce .front-steps-wrapper h2 {
    color: #f0f0f0;
    font-size: 22px;
    line-height: 1.2;
    padding-top: 10px;
    margin-bottom: 5px;
}

.front-steps-wrapper .front-step1 h2,
.ecommerce .front-steps-wrapper .front-step1 h2 {
    color: #fefefe;
}

.front-steps-wrapper p {
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 0;
}

.front-steps-wrapper .front-step-col {
    padding-left: 0;
    padding-right: 0;
}

.front-steps-wrapper .front-step {
    position: relative;
    padding: 15px 20px 33px;
}

.front-steps-wrapper .front-step1 {
    background: #E84D1C;
}

.front-steps-wrapper .front-step2 {
    background: #7c858e;
}

.front-steps-wrapper .front-step3 {
    background: #68727c;
}

.front-steps-wrapper .front-step4 {
    background: #636a72;
}

.front-steps-wrapper .front-step5 {
    background: #5e6369;
}

.front-steps-wrapper .front-step6 {
    background: #55585d;
}

.front-steps-wrapper .front-step:before {
    color: #fff;
    font: 300 125px 'Open Sans', sans-serif;
    font-weight: bold;
    display: block;
    position: absolute;
    right: -20px;
    bottom: -40px;
    opacity: 0.1;
}

.ie8 .front-steps-wrapper .front-step:before {
    display: none !important;
}

.front-steps-wrapper .front-step1:before {
    content: "1";
    opacity: 0.2;
}

.front-steps-wrapper .front-step2:before {
    content: "2";
    right: -15px;
}

.front-steps-wrapper .front-step3:before {
    content: "3";
}

.front-steps-wrapper .front-step4:before {
    content: "4";
}

.front-steps-wrapper .front-step5:before {
    content: "5";
}

.front-steps-wrapper .front-step6:before {
    content: "6";
}

.front-steps-wrapper .front-step:after {
    top: 50%;
    width: 0;
    height: 0;
    left: 100%;
    z-index: 2;
    content: " ";
    display: block;
    margin-top: -1em;
    position: absolute;
    border-left: 15px solid #EC7049;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.ie8 .front-steps-wrapper .front-step:after {
    display: none !important;
}

.front-steps-wrapper .front-step-col:last-child .front-step:after {
    display: none;
}

.front-steps-wrapper .front-step2:after {
    border-left-color: #899199;
}

.front-steps-wrapper .front-step3:after {
    border-left-color: #778089;
}

.front-steps-wrapper .front-step4:after {
    border-left-color: #727980;
}

.front-steps-wrapper .front-step5:after {
    border-left-color: #6E7278;
    top: auto;
    bottom: 10%;
}

/* pricing */
.pricing {
    position: relative;
    margin-bottom: 15px;
    border: 3px solid #eee;
}

.pricing-active {
    border: 3px solid #E84D1C;
    margin-top: -10px;
    box-shadow: 7px 7px rgba(232, 77, 22, 0.2);
}

.pricing:hover {
    border: 3px solid #E84D1C;
}

    .pricing:hover h4 {
        color: #E84D1C;
    }

.pricing-head {
    text-align: center;
}

    .pricing-head h3,
    .pricing-head h4 {
        margin: 0;
        line-height: normal;
    }

        .pricing-head h3 span,
        .pricing-head h4 span {
            display: block;
            margin-top: 5px;
            font-size: 14px;
            font-style: italic;
        }

    .pricing-head h3 {
        font-weight: 300;
        color: #fafafa;
        padding: 12px 0;
        font-size: 27px;
        background: #E84D1C;
        border-bottom: none;
    }

    .pricing-head h4 {
        color: #bac39f;
        padding: 5px 0;
        font-size: 54px;
        font-weight: 300;
        background: #fbfef2;
        border-bottom: solid 1px #f5f9e7;
    }

.pricing-head-active h4 {
    color: #E84D1C;
}

.pricing-head h4 i {
    top: -8px;
    font-size: 28px;
    font-style: normal;
    position: relative;
}

.pricing-head h4 span {
    top: -10px;
    font-size: 14px;
    font-style: normal;
    position: relative;
}

/* Pricing Content */
.pricing-content li {
    color: #888;
    font-size: 12px;
    padding: 7px 15px;
    border-bottom: solid 1px #f5f9e7;
}

    .pricing-content li i {
        top: 2px;
        color: #E84D1C;
        font-size: 16px;
        margin-right: 5px;
        position: relative;
    }

/* Pricing Footer */
.pricing-footer {
    color: #777;
    font-size: 11px;
    line-height: 17px;
    text-align: center;
    padding: 0 20px 19px;
}

    .pricing-footer .btn {
        color: #fff;
    }

        .pricing-footer .btn:hover {
            color: #fafafa;
        }

/* Priceing Active */
.price-active,
.pricing:hover {
    z-index: 9;
}

    .price-active h4 {
        color: #36d7ac;
    }

.no-space-pricing .pricing:hover {
    transition: box-shadow 0.2s ease-in-out;
}

    .no-space-pricing .price-active .pricing-head h4,
    .no-space-pricing .pricing:hover .pricing-head h4 {
        color: #36d7ac;
        padding: 15px 0;
        font-size: 80px;
        transition: color 0.5s ease-in-out;
    }


/***
Styler Panel
***/
.color-panel {
    z-index: 9999;
    position: fixed;
    top: 120px;
    right: 0;
}

    .color-panel .color-mode-icons {
        top: 0;
        right: 0;
        padding: 20px;
        cursor: pointer;
        position: absolute;
        margin: 0;
    }

    .color-panel .icon-color {
        background: #c9c9c9 url(../img/icon-color.png) center no-repeat;
    }

        .color-panel .icon-color:hover {
            background-color: #3d3d3d;
        }

    .color-panel .icon-color-close {
        display: none;
        background: #3d3d3d url(../img/icon-color-close.png) center no-repeat;
    }

        .color-panel .icon-color-close:hover {
            background-color: #222;
        }

.color-mode {
    top: 0;
    right: 40px;
    width: 200px;
    display: none;
    padding: 20px 10px 10px;
    position: absolute;
    background: #3d3d3d;
}

    .color-mode p {
        color: #cfcfcf;
        padding: 0 15px;
        font-size: 15px;
    }

    .color-mode ul {
        list-style: none;
        padding: 4px 11px 5px;
        display: block;
        margin-bottom: 1px !important;
    }

    .color-mode li {
        width: 28px;
        height: 28px;
        margin: 4px;
        cursor: pointer;
        list-style: none;
        border: solid 1px #707070;
        display: inline-block;
        padding: 0 5px;
    }

        .color-mode li:hover,
        .color-mode li.current {
            border: solid 1px #ebebeb;
        }

        .color-mode li.current {
            border: solid 2px #ebebeb;
        }

        .color-mode li.color-blue {
            background: #64aed9;
        }

        .color-mode li.color-red {
            background: #e84d1c;
        }

        .color-mode li.color-green {
            background: #67bd3c;
        }

        .color-mode li.color-orange {
            background: #e18604;
        }

.color-gray {
    background: #798b97;
}

.color-turquoise {
    background: #44b1c1;
}

.color-mode label {
    color: #cfcfcf;
    border-top: 1px solid #585858;
    padding: 10px 10px 0;
    margin: 0 5px;
    display: block;
}

    .color-mode label span {
        text-transform: uppercase;
    }

    .color-mode label > span {
        display: inline-block;
        width: 85px;
    }

    .color-mode label > select {
        margin-top: 5px;
        text-transform: lowercase;
    }

    .color-mode label span.color-mode-label {
        top: 2px;
        position: relative;
    }

.fancybox-overlay {
    z-index: 100000;
}

.fancybox-opened {
    z-index: 100001;
}

/* Lastest news */
.lastest-news-wrapper {
    margin: 13px 0;
}

.news-content {
    background: rgba(33,66,127,0.05);
    padding: 0px;
    margin-top: -10px;
}

    .news-content h2 {
        display: block;
        background: url(../img/title-news.png) no-repeat;
        height: 32px;
        width: 120px;
        padding: 8px 10px 10px 10px;
        float: left;
        font-size: 14px;
        font-weight: 600;
        margin: 0;
        color: #000F65;
    }

        .news-content h2 a {
            color: #000F65;
        }

#lastest-news {
    float: left;
}

    #lastest-news a {
        line-height: 32px;
        margin-left: 20px;
        color: #000F65;
        font-size: 13px;
    }
/* End Lastest news */

/* Tracking */
.tracking-wrapper {
    border: 1px solid #dcdcdc;
    background: rgba(33,66,127,0.05);
    padding: 0 10px 10px 10px;
    background-image: url(../img/bg-tracking.png);
    background-repeat: no-repeat;
    background-position: -125px 80px;
}

    .tracking-wrapper h2 {
        font-size: 13px;
        font-weight: bold;
        color: #000F65;
    }

    .tracking-wrapper ul li a {
        padding: 10px 0;
    }

    .tracking-wrapper ul li a,
    .tracking-wrapper ul li.active a,
    .tracking-wrapper ul li.active a:hover {
        color: #000F65;
        font-weight: 500;
        padding: 10px 0 !important;
    }

    .tracking-wrapper .form-group {
        margin-bottom: 7px;
    }

    .tracking-wrapper label {
        font-weight: 500;
        font-size: 12px;
    }

        .tracking-wrapper label.tracking-guide {
            font-size: 12px;
            font-weight: normal;
            color: #444444;
            font-style: italic;
        }

    .tracking-wrapper input,
    .tracking-wrapper select {
        border-radius: 0;
        padding: 3px 5px;
        font-size: 13px;
        line-height: 28px;
        height: 28px;
    }

.tracking-btn {
    border-radius: 0;
    padding: 3px 20px;
    margin-top: 8px;
    background-color: #1669AF;
    border-color: #1669AF;
    font-family: Arial;
}

    .tracking-btn a {
        color: #FFF;
        font-family: Arial;
        display: block;
        height: 100%;
        width: 100%;
    }

    .tracking-btn:hover a {
        text-decoration: none;
        color: #FFF !important;
    }

.tracking-wrapper .nav-tabs.nav-justified > .active > a,
.tracking-wrapper .nav-tabs.nav-justified > .active > a:hover,
.tracking-wrapper .nav-tabs.nav-justified > .active > a:focus {
    border: none;
    border-bottom: 3px solid #FCB71E !important;
    background: none;
}

.tracking-wrapper .nav-tabs.nav-justified > li > a {
    border: none;
    background: none;
    border-bottom: 3px solid #dcdcdc !important;
}

    .tracking-wrapper .nav-tabs.nav-justified > li > a:hover {
        border: none;
        background: none;
        border-bottom: 3px solid #FCB71E;
    }
/* End Tracking */

/* Customer */
.customer-block h2 {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    color: #FFF;
    padding: 16px 0 12px 10px;
}

    .customer-block h2.personal {
        background: #FCB71E;
    }

    .customer-block h2.business {
        background: #0B4C84;
    }

.customer-block ul {
    padding: 0px 15px 1px 10px;
    border-left: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
}

    .customer-block ul li a {
        display: block;
        padding: 5px;
        border-bottom: 1px dashed #dcdcdc;
        font-size: 13px;
        font-weight: 400;
        color: #464646;
    }

        .customer-block ul li a:before {
            content: "\f0da";
            font-family: 'FontAwesome';
            margin-right: 5px;
        }

    .customer-block ul li:last-child a {
        border-bottom: none;
    }

    .customer-block ul li a:hover {
        text-decoration: none;
        color: #FCB71E;
    }

.personal-customer-block,
.business-customer-block {
    padding-left: 0px;
    background: url('../img/partten2.png');
    background-position: -30px 0;
}

    .personal-customer-block ul {
        padding-right: 85px;
        background-image: url('../img/personal.png');
        background-repeat: no-repeat;
        background-position: 96.5% 95%;
    }

    .personal-customer-block a.read-more {
        display: block;
        background: #FCB71E;
        text-align: right;
        padding: 5px;
        color: #FFF;
        font-style: italic;
        font-weight: 400;
        font-size: 12px;
    }

    .business-customer-block ul {
        padding-right: 100px;
        background-image: url('../img/business.png');
        background-repeat: no-repeat;
        background-position: 95% 95%;
    }

    .business-customer-block a.read-more {
        display: block;
        background: #0B4C84;
        text-align: right;
        padding: 5px;
        color: #FFF;
        font-style: italic;
        font-weight: 400;
        font-size: 12px;
    }
/* End Customer */

/* Toolbox */
.toolbox-wrapper {
    margin-top: 15px;
}

.toolbox {
    padding: 0;
}

    .toolbox a {
        border: 1px solid #dcdcdc;
        display: block;
        width: 100%;
        height: 100%;
        padding: 5px;
        min-height: 50px;
    }

        .toolbox a .fa {
            display: block;
            float: left;
            height: 40px;
            width: 40px;
            font-size: 28px;
            padding-top: 7px;
            margin-left: 10px;
        }

.toolbox-wrapper .container-fluid:last-child .toolbox a {
    border-top: none;
}

.toolbox:last-child a {
    border-left: none;
}

.toolbox a span {
    font-size: 12px;
    color: #525252;
    font-family: "Roboto-Medium";
}

.toolbox-red a .fa {
    color: #E01010;
}

.toolbox-green a .fa {
    color: #00B943;
}

.toolbox-blue a .fa {
    color: #0066B1;
}

.toolbox-orange a .fa {
    color: #FCB71E;
}

.toolbox a:hover,
.toolbox:hover {
    text-decoration: none;
    background: #f6f6f6;
}

.toolbox a:focus {
    text-decoration: none;
    background: none;
}
/* End Toolbox */

/* Hotline */
.hotline {
    margin-top: 15px;
    background: #FCB71E;
    padding: 1px 10px;
}

    .hotline i {
        display: block;
        color: #FFF;
        font-size: 70px;
        float: left;
        margin-top: 30px;
        margin-left: 0px;
    }

    .hotline label {
        color: #FFF;
        font-weight: 500;
        font-size: 15px;
        line-height: 30px;
        margin-left: 10px;
        margin-top: 6px;
    }

    .hotline h2 {
        text-align: right;
        color: #FFF;
        font-weight: 500;
        font-size: 34px;
        line-height: 29px;
        margin-right: 57px;
        margin-top: -6px;
    }
/* End Hotline */

/* Banner */
.online-shopping-block img {
    width: 100%;
    height: auto;
}

.shopping-online-wrapper {
    margin-top: 15px;
}

    .shopping-online-wrapper .col-sm-12 {
        padding-left: 0px !important;
    }

.shopping-banner {
    padding-left: 0px !important;
}

    .shopping-banner img {
        width: 100%;
        display: block;
    }
/* End Banner */

/* Footer */
.menu-bottom-wrapper {
    background: #F3F3F3;
    padding: 15px 0;
    margin-top: 25px;
}

    .menu-bottom-wrapper h4 {
        color: #F5A81C;
        border-bottom: 1px solid #F5A81C;
        padding: 5px 10px 5px 0;
        font-size: 14px;
        display: inline-block;
        margin-top: 0px;
        font-weight: 500;
    }

    .menu-bottom-wrapper a {
        font-size: 12px;
        font-weight: 500;
    }

.footer-wrapper {
    background: #002673;
    color: #FFF;
    padding: 10px 0;
}

    .footer-wrapper h4 {
        font-family: "Roboto-Regular";
        font-size: 15px;
    }

.social-list li {
    display: inline-block;
    margin-top: 3px;
}

    .social-list li a img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }

        .social-list li a img:hover {
            opacity: 0.8;
            filter: alpha(opacity=80);
        }

/* Style for Color */
a {
    color: #FCB71E;
}

    a:hover {
        color: #FCB71E;
    }

.pre-header a:hover {
    color: #FCB71E;
}

.shop-currencies a.current {
    color: #FCB71E;
}

.sidebar a:hover {
    color: #FCB71E;
}

.sidebar .dropdown.open .dropdown-toggle:hover {
    color: #FCB71E;
}

.sidebar-menu .dropdown-menu li > a:hover, .sidebar-menu .dropdown-menu li > a:focus, .sidebar-menu li.active > a, .sidebar-menu li.active > a:hover {
    color: #FCB71E;
}

.content-page a:hover,
.sidebar2 a:hover {
    color: #FCB71E;
}

.content-page .link, .content-page .link:hover, .content-page .link:active {
    color: #FCB71E;
}

.page-404 .number,
.page-500 .number {
    color: #FCB71E;
}

.content-form-page a:hover {
    color: #FCB71E;
}

.quote-v1 a.btn-transparent:hover {
    background: #FCB71E;
}

.recent-work h2 a:hover {
    color: #FCB71E;
}

.recent-work .recent-work-item .fa:hover {
    color: #FCB71E;
}

.our-clients h2 a:hover {
    color: #FCB71E;
}

.front-team h3 strong {
    color: #FCB71E;
}

.product-item h3 a:hover {
    color: #FCB71E;
}

.checkout-page a:hover {
    color: #FCB71E;
}


.langs-block-others:after {
    border-bottom: 8px solid #FCB71E;
}

.header-navigation > ul > li.dropdown:hover > a:after {
    border-bottom: 8px solid #FCB71E;
}

.header-navigation .dropdown-menu > li > a:hover,
.header-navigation .dropdown-menu > li.active > a,
.header-navigation .header-navigation-content .header-navigation-col li > a:hover,
.header-navigation .header-navigation-content .header-navigation-col li.active > a {
    background: #FCB71E;
    color: #fff;
}

.header-navigation .dropdown-menu .header-navigation-content-ext li > a:hover,
.header-navigation .dropdown-menu .header-navigation-content-ext li.active > a {
    background: #fff;
    color: #FCB71E;
}

.header-navigation .search-box:after {
    border-bottom: 8px solid #FCB71E;
}

.header-navigation .search-box {
    border-top: solid 2px #FCB71E;
}

.title-wrapper h1 span {
    color: #FCB71E;
}

.breadcrumb > .active {
    color: #FCB71E;
}

.form-info h2 em {
    color: #FCB71E;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    background: #f7f7f7;
}

.content-search h1 em {
    color: #FCB71E;
}

.recent-work .recent-work-item:hover a.recent-work-description {
    background: #FCB71E;
}

.testimonials-v1 blockquote:after {
    background-color: #FCB71E;
}

.testimonials-v1 span.testimonials-name {
    color: #FCB71E;
}

.search-result-item h4 a {
    color: #FCB71E;
}

.top-cart-content:after {
    border-bottom: 8px solid #FCB71E;
}

.goods-data a,
.checkout-page .checkout-description a {
    color: #FCB71E;
}

.product-page .review a {
    color: #FCB71E;
}

.list-view-sorting a {
    background: #fff;
    color: #FCB71E;
}

::-moz-selection {
    color: #fff;
    background: #e45000;
}

::selection {
    color: #fff;
    background: #0066B1;
}

.steps-block ::-moz-selection {
    color: #e45000;
    background: #fff;
}

.steps-block ::selection {
    color: #e45000;
    background: #fff;
}

.owl-buttons .owl-prev:hover {
    background-color: #e84d1c;
}

.owl-buttons .owl-next:hover {
    background-color: #e84d1c;
}

.steps-block-red {
    background: #FCB71E;
}

.pre-footer .photo-stream img:hover {
    border-color: #E84D1C;
}

.pre-footer-light dl.f-twitter dd a {
    color: #e84d1c;
}

.pre-footer-light address a {
    color: #e84d1c;
}

.testimonials-v1 .left-btn:hover {
    background-color: #e84d1c;
}

.testimonials-v1 .right-btn:hover {
    background-color: #e84d1c;
}

.blog-tags li i,
.blog-info li i {
    color: #FCB71E;
}

.blog-posts .more,
.blog-sidebar .more {
    color: #FCB71E;
}

.blog-photo-stream li img:hover {
    border-color: #E84D1C;
}

.blog-tags li a:hover {
    color: #fff;
    background: #FCB71E;
}

    .blog-tags li a:hover:after {
        border-left-color: #FCB71E;
    }

.sidebar-categories li > a:hover,
.sidebar-categories li.active > a,
.sidebar-categories li.active:hover > a {
    color: #FCB71E;
}

.blog-item blockquote {
    border-color: #FCB71E;
}

.blog-item h4.media-heading span a {
    color: #FCB71E;
}

.front-steps-wrapper .front-step1 {
    background: #E84D1C;
}

.pricing-active {
    border: 3px solid #E84D1C;
    box-shadow: 7px 7px rgba(232, 77, 22, 0.2);
}

.pricing:hover {
    border: 3px solid #E84D1C;
}

    .pricing:hover h4 {
        color: #E84D1C;
    }

.pricing-head h3 {
    background: #E84D1C;
}

.pricing-head-active h4 {
    color: #E84D1C;
}

.pricing-content li i {
    color: #E84D1C;
}

.top-cart-block .fa-shopping-cart {
    background: #e84d1c;
}

.product-item .btn:hover {
    background: #e84d1c;
}

.pi-price {
    color: #e84d1c;
}

.product-item .add2cart:hover {
    color: #fff !important;
    background: #E84D1C !important;
    border-color: #E84D1C;
}

.goods-page-price strong,
.goods-page-total strong,
.checkout-price strong,
.checkout-total strong {
    color: #e84d1c;
}

.shopping-total strong,
.checkout-total-block strong {
    color: #e84d1c;
}

.compare-item strong {
    color: #E84D1C;
}

.sidebar-products .price {
    color: #E84D1C;
}

.price-availability-block .price strong {
    color: #e84d1c;
}


.require {
    color: #e94d1c;
}

.content-form-page .form-control:focus {
    border: solid 1px #e94d1c;
}

.content-search input:focus {
    border: solid 1px #e94d1c;
}

.btn-primary {
    background: #FCB71E;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
        background: #E8A504;
        color: #FFF !important;
    }

.front-steps-wrapper .front-step1:after {
    border-left: 15px solid #EC7049;
}

.del-goods:hover,
.add-goods:hover {
    background-color: #E94D1C;
}

.sidebar a:hover > .fa-angle-down {
    background-position: -11px 0;
}

.sidebar .collapsed:hover > .fa-angle-down {
    background-position: -11px -37px;
}

.top-cart-content {
    border-top: solid 2px #FCB71E;
}

.front-skills .progress-bar {
    background: #EF4D2E;
}

a.service-block:hover {
    text-decoration: none;
}

.service-box-v1 h2 {
    color: #001e62;
    font-weight: 500;
    font-size: 22px;
    font-family: Helvetica;
}

.header .mobi-toggler:hover {
    background-color: #e34f00;
    border-color: #e34f00;
}

@media (max-width: 1024px) {
    .header .header-navigation li > a:hover,
    .header .header-navigation li.active > a,
    .header .header-navigation li.open > a:hover {
        color: #144e8d !important;
    }
}

.faq-tabbable {
    border-left: solid 2px #e44f00;
}

    .faq-tabbable li:hover a,
    .faq-tabbable li.active a {
        background: #e44f00;
    }

    .faq-tabbable li.active:after {
        border-left: 6px solid #e44f00;
    }

.mix-filter li:hover, .mix-filter li.active {
    background: #e44f00;
    color: #fff;
}

.mix-grid .mix .mix-details {
    background: #e44f00;
}

.mix-grid .mix a.mix-link,
.mix-grid .mix a.mix-preview {
    background: #DB3A1B;
}

.langs-block-others {
    border-top: solid 2px #FCB71E;
}

.brands .owl-buttons .owl-prev:hover {
    background-position: 18px -217px;
}

.brands .owl-buttons .owl-next:hover {
    background-position: -249px -217px;
}

.color-main {
    color: #FCB71E;
}

.color-main-2 {
    color: #001E62;
}
/* End Style for Color */

.header-para {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    font-size: 15px;
}

.ul-content {
    margin: 10px 0;
}

    .ul-content li {
        list-style: disc;
        list-style-position: outside;
        margin-left: 20px;
        padding-left: 5px;
    }

.front-carousel .header-img {
    background: none;
    top: 50px !important;
}

.front-carousel .header-img-bottom {
    background: none;
    height: 100%;
}

    .front-carousel .header-img-bottom h2 {
        font-size: 22px;
        color: #001e62;
        font-weight: 500;
        text-shadow: none;
        position: absolute;
        bottom: 20px;
        margin-bottom: 0px;
    }

    .front-carousel .header-img-bottom label {
        font-size: 38px;
        color: #FFF;
        font-weight: 500;
        text-shadow: none;
        margin-left: 30px;
        margin-top: 50px;
    }

.front-carousel .header-img h2 {
    font-size: 18px;
    color: #001e62;
    margin-bottom: 25px;
    font-weight: 500;
    text-shadow: none;
}

.front-carousel .header-img h3 {
    font-size: 24px;
    color: #FFF;
    margin-bottom: 80px;
    font-weight: 500;
    text-shadow: none;
    line-height: 40px;
    margin-left: 15px;
}

    .front-carousel .header-img h3 span {
        font-weight: bold;
        text-transform: uppercase;
    }

.front-carousel .header-img label {
    font-size: 38px;
    color: #FFF;
    margin-bottom: 85px;
    font-weight: 500;
    text-shadow: none;
    margin-left: 30px;
}

.tab-item-wrapper {
    margin-top: 20px;
}

    .tab-item-wrapper li a {
        background: #FFF;
        border-bottom: 3px solid #dcdcdc !important;
        font-family: Arial;
        font-weight: 500;
        font-size: 14px;
        text-transform: uppercase;
        padding: 10px 0;
    }

        .tab-item-wrapper li a:hover {
            background: #FFF;
            padding: 10px 0;
            border-bottom: 3px solid #dcdcdc !important;
        }

    .tab-item-wrapper li.active a:hover {
        background: #FFF;
        padding: 10px 0;
    }

    .tab-item-wrapper li.active a {
        background: #FFF;
        border-bottom: 3px solid #FCB71E !important;
        padding: 10px 0;
    }

        .tab-item-wrapper li.active a:focus {
            background: none;
        }

    .tab-item-wrapper > .tab-content {
        margin-top: 0px !important;
    }

    .tab-item-wrapper i.fa {
        width: 16px;
        font-size: 18px;
    }

.tab-btn {
    padding: 7px 25px;
    color: #FFF !important;
}

.tab-item-wrapper .accordion-toggle {
    font-size: 13px;
    font-weight: bold;
}

.question-modal {
    z-index: 99999;
}

    .question-modal .modal-dialog {
        margin-top: 80px;
    }

    .question-modal .modal-header {
        background: #FCB71E;
        color: #FFF;
    }

select.select-type-1 {
    padding: 6px 12px;
    border-radius: 0 !important;
    border-color: #dbdbdb !important;
}

.question-modal .modal-footer {
    background: #f6f6f6;
}

.question-modal legend {
    font-size: 16px;
    font-family: "Roboto-Medium";
}

.tracking-location-wrapper {
    margin-bottom: 10px;
}

    .tracking-location-wrapper .caption i {
        font-size: 20px !important;
    }

    .tracking-location-wrapper .caption {
        font-size: 18px !important;
        font-family: "Roboto-Medium";
    }

.tracking-location-content {
    padding-top: 10px !important;
}

    .tracking-location-content .form-group {
        margin-bottom: 5px;
    }

.map-wrapper h1,
.list-location-wrapper h1 {
    margin-top: 15px;
    margin-bottom: 5px;
}

.table-color-main th {
    background: #FCB71E;
    color: #FFF;
    font-family: "Roboto-Medium";
    border: 1px solid #FCB71E !important;
}

.result-title {
    font-size: 18px;
}

.table-result th {
    background: rgba(33,66,127,0.1);
}

.wizard .anchor {
    float: left;
    padding: 0px;
    margin: 0px;
    list-style: none;
    display: block;
    position: relative;
    width: 100%;
}

    .wizard .anchor li {
        float: left;
        display: block;
    }

.list-content ul li a {
    padding: 10px 0;
    display: block;
}

.wizard .anchor.steps_4 li {
    width: 25%;
}

.wizard .anchor.steps_5 li {
    width: 20%;
}

.wizard .anchor li a {
    font-size: 14px;
    color: #656d78;
    text-decoration: none;
    display: block;
    line-height: 18px;
    padding: 10px 20px 45px 0px;
    position: relative;
}

    .wizard .anchor li a.selected:before {
        background: #FCB71E;
    }

    .wizard .anchor li a:before {
        content: " ";
        position: absolute;
        bottom: 13px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: #D5D5D5;
        z-index: 2;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
    }

    .wizard .anchor li a.selected:after {
        border-color: #FCB71E;
        content: "\f041";
        font-family: FontAwesome;
        color: #FCB71E;
        font-size: 24px;
        padding-left: 0px;
        padding-top: 12px;
    }

    .wizard .anchor li a:after {
        content: " ";
        position: absolute;
        bottom: -10px;
        left: 0px;
        width: 50px;
        height: 50px;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background: #FFF;
        border: 3px solid #D5D5D5;
        z-index: 3;
        text-align: center;
        line-height: 17px;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
        color: #DDD;
    }

    .wizard .anchor li a .stepDesc {
        font-weight: 400;
    }

        .wizard .anchor li a .stepDesc strong {
            font-weight: bold;
            font-size: 13px;
            color: #001E6D;
        }

        .wizard .anchor li a .stepDesc .time-label {
            font-weight: 400;
            font-size: 13px;
            font-family: "Roboto-Medium";
            line-height: 25px;
        }

.wizard .anchor li .location-label {
    position: absolute;
    font-size: 13px;
    font-family: "Roboto-Medium";
    font-style: italic;
    color: #001E6D;
    margin-left: 50px;
    margin-top: -10px;
}

.fb-button {
    color: #FFF !important;
    padding: 3px 5px;
    background: #4c69ba;
    background: -webkit-linear-gradient(#4c69ba, #3b55a0);
    background: linear-gradient(#4c69ba, #3b55a0);
}

    .fb-button i {
        color: #FFF !important;
    }

    .fb-button:hover {
        text-decoration: none;
        opacity: 0.9;
    }

.blog-item h2 {
    padding-top: 0px;
}

.blog-item-img .carousel-caption {
    top: 0px;
    bottom: auto;
    padding: 10px 15px;
    font-size: 20px;
}

.blog-item-img .fa {
    color: #FFF;
}

.hotline-top-bar {
    color: #222;
    font-weight: 500;
}

.ul-link {
    margin-top: 27px;
    margin-bottom: 14px;
}

    .ul-link select {
        border-radius: none !important;
        padding: 3px;
        border: 1px solid #BFBFBF;
        color: #363636;
    }

.reduce-header .ul-link {
    margin-top: 17px;
}

.index-main-col .content-col {
    background: #f7f7f7;
    padding: 20px 10px;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
}

.content-col h2 {
    font-family: 'Roboto-Bold';
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    padding: 12px 0 12px 20px;
    margin: 0;
}

.content-col label {
    font-family: 'Roboto-Medium';
    font-size: 16px;
    display: block;
    color: #333;
    cursor: pointer;
}

.content-col span {
    color: #333;
    font-size: 12px;
    color: #868686;
}

.content-col input,
.content-col select {
    width: 100%;
    border: 1px solid #dcdcdc;
    height: 32px;
    background: #dcdcdc;
}

.content-col .btn {
    width: 100%;
    padding: 6px 14px;
}

.index-main-col h2 {
    font-family: 'Roboto-Bold';
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    padding-top: 20px;
    padding-bottom: 5px;
    margin: 0;
}

    .index-main-col h2 a {
        color: #333;
    }

.quick-access-col .content-col {
    padding: 0px 20px;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
    border: 1px solid #ddd;
    margin-bottom: 40px;
}

.quick-access-col ul li {
    display: block;
    width: 100%;
}

    .quick-access-col ul li a {
        display: block;
        width: 100%;
        clear: both;
        padding: 10px 0;
        border-bottom: 1px solid #dcdcdc;
        position: relative;
    }

        .quick-access-col ul li a .clearfix {
            display: flex;
        }

    .quick-access-col ul li:last-child a {
        border-bottom: none;
    }

    .quick-access-col ul li a:after {
        content: '\f054';
        font-family: 'FontAwesome';
        color: #b9b9b8;
        position: absolute;
        top: 37%;
        right: 0;
    }

    .quick-access-col ul li a:hover {
        opacity: 0.8;
    }

.quick-access-col img {
    background: #faa61a;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
    max-width: 100%;
}

.news-col .content-col {
    padding: 0 10px;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
    border: 1px solid #ddd;
}

    .news-col .content-col a {
        display: block;
        padding: 9px 10px 10px 10px;
        color: #333;
        font-family: 'Roboto-Medium';
        font-size: 13px;
    }

        .news-col .content-col a:before {
            content: '\f0da';
            font-family: 'FontAwesome';
            color: #faa61a;
            display: block;
            float: left;
            padding-right: 10px;
            padding-bottom: 10px;
            padding-top: 10px;
        }

.customer-service-wrapper {
    background: url(../img/customer-bg.png);
    background-size: contain;
    background-repeat: repeat-y;
    padding: 50px 0 0px 0;
}

.header-service {
    width: 100%;
    display: block;
    text-align: center;
    font-family: 'Roboto-Bold';
    font-size: 22px;
    text-transform: uppercase;
    margin: 15px 0;
}

.personnal-customer-wrapper,
.business-customer-wrapper {
    padding-bottom: 60px;
    text-align: center;
}

    .personnal-customer-wrapper .col-sm-6,
    .business-customer-wrapper .col-sm-6 {
        margin-bottom: 20px;
    }

.header-service img {
    margin-top: -20px;
    width: auto !important;
}

.header-service h1 {
    font-family: 'Roboto-Bold';
    font-size: 22px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    text-align: center;
}

.main-wrapper h2 {
    font-family: 'Roboto-Medium';
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

.customer-service-wrapper h2 {
    font-family: 'Roboto-Light';
    font-size: 18px;
    padding: 15px 20px 5px 20px;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

.personnal-customer-wrapper h1,
.personnal-customer-wrapper h2 {
    color: #f58220;
}

.business-customer-wrapper h1,
.business-customer-wrapper h2 {
    color: #1a9de1;
}

.customer-service-wrapper img {
    width: 100%;
}

.customer-service-wrapper ul {
    margin-left: 20px;
    text-align: left;
}

    .customer-service-wrapper ul li {
        display: block;
    }

        .customer-service-wrapper ul li a {
            color: #333;
            display: block;
            padding: 5px 5px 5px 0;
            font-family: 'Roboto-Light';
            font-size: 13px;
        }

            .customer-service-wrapper ul li a:before {
                content: '\f0da';
                font-family: 'FontAwesome';
                padding: 0 5px 0 0;
            }

            .customer-service-wrapper ul li a:hover {
                text-decoration: none;
            }

.personnal-customer-wrapper ul li a:before,
.personnal-customer-wrapper ul li a:hover {
    color: #faa61a;
}

.business-customer-wrapper ul li a:before,
.business-customer-wrapper ul li a:hover {
    color: #1a9de1;
}

a.see-more {
    display: inline-block;
    clear: both;
    width: 180px;
    background: #e8e8e8;
    color: #54534f;
    font-family: 'Roboto-Light';
    font-size: 13px;
    padding: 10px 20px;
    margin: 40px auto 0 auto;
    -webkit-border-radius: 90px !important;
    -moz-border-radius: 90px !important;
    border-radius: 90px !important;
}

.personnal-customer-wrapper a.see-more:hover {
    background: #faa61a;
    color: #FFF;
    text-decoration: none;
}

.business-customer-wrapper a.see-more:hover {
    background: #1a9de1;
    text-decoration: none;
    color: #FFF;
}

.header-black {
    width: 100%;
    display: block;
    text-align: center;
    margin: 10px 0 30px;
}

    .header-black h1 {
        font-family: 'Roboto-Bold';
        font-size: 22px;
        text-transform: uppercase;
        margin: 0;
        padding: 0;
        color: #333;
    }

    .header-black img {
        width: auto;
    }

.product-index-wrapper h2 {
    text-align: center;
    margin-top: 20px;
}

    .product-index-wrapper h2 a {
        display: inline-block;
        font-family: 'Roboto-Light';
        font-size: 18px;
        width: auto;
        padding: 10px 20px;
        background: #f7efe5;
        color: #333;
        text-transform: uppercase;
    }

        .product-index-wrapper h2 a:hover {
            text-decoration: none;
            background: #e5ddd4;
        }

.product-index .owl-buttons {
    position: static;
}

    .product-index .owl-buttons .owl-prev {
        left: -30px;
    }

    .product-index .owl-buttons .owl-next {
        right: -27px;
    }

    .product-index .owl-buttons div {
        position: absolute;
        top: 48%;
        width: 27px;
        height: 27px;
        text-indent: -10000px;
        border-radius: 0 !important;
        display: block;
        background-color: #faa61a;
    }

.product-item {
    border: 1px solid #dcdcdc;
    padding: 10px;
    min-height: 350px;
    position: relative;
    margin-right: 5px;
    margin-left: 5px;
}

    .product-item:hover {
        cursor: pointer;
        border: 1px solid #faa61a;
    }

.pi-img-wrapper img {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 5px !important;
}

.product-item h3 {
    margin: 0;
}

    .product-item h3 a {
        font-family: 'Roboto-Regular';
        font-size: 13px;
        color: #333;
    }

.pi-price-old {
    font-family: 'Roboto-Light';
    font-size: 20px;
    color: #333;
    text-decoration: line-through;
}

.pi-price {
    font-family: 'Roboto-Light';
    font-size: 24px;
    color: #faa61a;
}

.add2cart {
    margin-top: 20px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    position: absolute;
    display: none;
}

.product-item:hover .add2cart {
    display: block;
}

.reduce-header .site-logo img {
    width: 100px;
}

.search-icon {
    display: block;
    float: left;
    background: #f7f7f7;
    padding: 4px;
    padding-right: 0px;
    margin: 0;
    border: none;
    -moz-border-radius-topleft: 90px !important;
    -webkit-border-top-left-radius: 90px !important;
    border-top-left-radius: 90px !important;
    -moz-border-radius-bottomleft: 90px !important;
    -webkit-border-bottom-left-radius: 90px !important;
    border-bottom-left-radius: 90px !important;
}

.search-form-index {
    background: #f7f7f7;
    border: none;
    margin: 0 0 0 -1px;
    padding: 4px 4px 3px;
    color: #333;
    font-family: 'Roboto-Regular';
    font-size: 12px;
    -moz-border-radius-topright: 90px !important;
    -webkit-border-top-right-radius: 90px !important;
    border-top-right-radius: 90px !important;
    -moz-border-radius-bottomright: 90px !important;
    -webkit-border-bottom-right-radius: 90px !important;
    border-bottom-right-radius: 90px !important;
}

    .search-form-index::-webkit-input-placeholder {
        color: #333;
        font-family: 'Roboto-Regular';
        font-size: 12px;
    }

    .search-form-index:-moz-placeholder { /* Firefox 18- */
        color: #333;
        font-family: 'Roboto-Regular';
        font-size: 12px;
    }

    .search-form-index::-moz-placeholder { /* Firefox 19+ */
        color: #333;
        font-family: 'Roboto-Regular';
        font-size: 12px;
    }

    .search-form-index:-ms-input-placeholder {
        color: #333;
        font-family: 'Roboto-Regular';
        font-size: 12px;
    }

.title-main {
    color: #faa61a;
    font-family: 'Roboto-Light';
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
}

.title-sub {
    color: #faa61a;
    font-family: 'Roboto-Bold';
    font-size: 50px;
    text-transform: normal;
}

.title-des {
    color: #d6cdc1;
    font-family: 'Roboto-Light';
    font-size: 15px;
    text-transform: none;
    width: 550px;
    display: block;
    white-space: normal;
    text-align: right;
    padding: 30px 0px;
}

    .title-des h2 {
        font-size: 40px;
        font-family: 'Roboto-Light';
        text-transform: none;
        margin-bottom: 15px;
        color: #fff;
    }

    .title-des a {
        color: #FFF;
        padding: 5px 15px;
        background-color: #004b8c;
        border-radius: 5px;
    }

.main-menu-wrapper {
    background: #FCB71E;
}

.tracking-col .content-col {
    padding: 18px 5px;
    border-radius: 0 !important;
    border: 1px solid #ddd;
    margin-top: -1px;
    -moz-border-radius-bottomright: 5px !important;
    -webkit-border-bottom-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
    -moz-border-radius-bottomleft: 5px !important;
    -webkit-border-bottom-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.tracking-tab {
    margin-right: -15px;
    margin-bottom: 0px;
    margin-top: 20px;
}

    .tracking-tab li {
        margin-right: 6px;
    }

        .tracking-tab li a {
            font-family: 'Roboto-Bold';
            font-size: 12px;
            text-transform: uppercase;
            margin-right: 10px;
            color: #333;
            border: 1px solid #ddd !important;
            -moz-border-radius-topleft: 5px !important;
            -webkit-border-top-left-radius: 5px !important;
            border-top-left-radius: 5px !important;
            -moz-border-radius-topright: 5px !important;
            -webkit-border-top-right-radius: 5px !important;
            border-top-right-radius: 5px !important;
        }

            .tracking-tab li.active a,
            .tracking-tab li a:hover,
            .tracking-tab li a:focus {
                border-bottom-color: #f7f7f7 !important;
                background: #f7f7f7 !important;
            }

        .tracking-tab li.active {
        }

.nav-tabs.nav-justified > li > a {
    margin-right: 6px;
}

.nav-tabs.nav-justified > li:last-child > a {
    margin-right: 0px;
}

table.table-currency {
    width: 100%;
    margin-bottom: 5px;
}

    table.table-currency tr th,
    table.table-currency tr td {
        border: none;
        text-align: center;
    }

    table.table-currency tr th {
        font-family: 'Roboto-Bold';
    }

    table.table-currency tr td {
        font-family: 'Roboto-Regular';
    }

.currency-wrapper .content-col {
    padding: 11px 5px;
}

.currency-wrapper a {
    margin-left: 32px;
}

    .currency-wrapper a:after {
        content: '\f054';
        font-family: 'FontAwesome';
        font-size: 10px;
        margin-left: 5px;
    }

    .currency-wrapper a:hover {
        text-decoration: none;
        opacity: 0.7;
    }

.header .container {
    display: flex;
    flex-direction: row;
}

    .header .container .logo-wrapper {
        flex: 0 0 40%;
        width: 40%;
        max-width: 40%;
    }

    .header .container .col-right {
        display: flex;
        align-items: center;
        flex: 0 0 60%;
        width: 60%;
        max-width: 60%;
    }

.top-toolbar {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

    .top-toolbar li {
    }

    .top-toolbar a {
        display: block;
    }

        .top-toolbar a:hover {
            background: none !important;
            opacity: .8;
        }

    .top-toolbar li:last-child {
        display: none;
    }

    .top-toolbar .tool-img {
        text-align: center;
        height: 48px;
        width: 48px;
        border: 2px solid #f7a81b;
        border-radius: 50% !important;
        padding: 10px;
        display: block;
        float: left;
        margin-right: 5px;
    }

        .top-toolbar .tool-img img {
            height: 24px;
            width: 24px;
        }

.tool-text {
    padding-top: 5px;
}

.top-toolbar label,
.top-toolbar span {
    display: block;
    text-align: left;
    color: #333;
    line-height: 20px;
}

.top-toolbar span {
    font-family: "Roboto-Light";
    font-size: 16px;
    text-transform: uppercase;
    word-spacing: -2px;
    white-space: nowrap;
}

.top-toolbar label {
    font-family: "Roboto-Medium";
    font-size: 14px;
    white-space: nowrap;
}

.search-icon {
    display: block;
    float: left;
    background: #FFF;
    padding: 4px;
    padding-right: 0px;
    margin: 0;
    -moz-border-radius-topleft: 90px !important;
    -webkit-border-top-left-radius: 90px !important;
    border-top-left-radius: 90px !important;
    -moz-border-radius-bottomleft: 90px !important;
    -webkit-border-bottom-left-radius: 90px !important;
    border-bottom-left-radius: 90px !important;
}

.header-service-detail {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

    .header-service-detail h1 {
        font-family: 'Roboto-Light';
        font-size: 32px;
        text-transform: none;
        margin: 0;
        padding: 0;
    }

.search-form-index {
    background: #FFF;
    border: none;
    margin: 0 0 0 -1px;
    padding: 4px 3px 5px 3px;
    color: #333;
    font-family: 'Roboto-Regular';
    font-size: 12px;
    -moz-border-radius-topright: 90px !important;
    -webkit-border-top-right-radius: 90px !important;
    border-top-right-radius: 90px !important;
    -moz-border-radius-bottomright: 90px !important;
    -webkit-border-bottom-right-radius: 90px !important;
    border-bottom-right-radius: 90px !important;
}

    .search-form-index::-webkit-input-placeholder {
        color: #333;
        font-family: 'Roboto-Regular';
        font-size: 12px;
    }

    .search-form-index:-moz-placeholder { /* Firefox 18- */
        color: #333;
        font-family: 'Roboto-Regular';
        font-size: 12px;
    }

    .search-form-index::-moz-placeholder { /* Firefox 19+ */
        color: #333;
        font-family: 'Roboto-Regular';
        font-size: 12px;
    }

    .search-form-index:-ms-input-placeholder {
        color: #333;
        font-family: 'Roboto-Regular';
        font-size: 12px;
    }

.item-grid {
    margin-bottom: 50px;
}

    .item-grid h2,
    .item-grid p {
        background: #FFFAD5;
    }

    .item-grid h2 {
        color: #f58220;
        text-transform: none;
        padding: 15px 20px 5px 20px;
        font-family: "Roboto-Medium";
        font-size: 17px;
        display: block;
        overflow: hidden;
        word-spacing: -2;
        line-height: 22px;
    }

    .item-grid p {
        padding: 10px 20px 10px 20px;
        display: block;
        min-height: 110px;
        font-family: "Roboto-Regular";
        font-size: 14px;
    }

    .item-grid a img {
        width: 100%;
        max-width: 100%;
        max-height: 300px;
    }

.customer-service-wrapper .header-service-detail {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.header-service-detail h1 {
    font-family: 'Roboto-Light';
    font-size: 32px;
    text-transform: none;
    margin: 0;
    padding: 0;
}

.page-slider img {
    max-width: 100%;
}

.detail-content b {
    font-family: "Roboto-Medium";
    font-size: 14px;
}

.detail-content h3 {
    color: #144e8c;
    font-size: 16px;
    font-family: "Roboto-Medium";
    display: block;
    border-bottom: 1px solid #c2c2c2;
    margin-bottom: 15px;
}

.detail-ul {
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

    .detail-ul li {
        line-height: 30px;
    }

        .detail-ul li:before {
            content: '\2666';
            padding-right: 10px;
            color: #2784cc;
            font-size: 16px;
        }

.detail-ol {
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

    .detail-ol li {
        line-height: 40px;
    }

        .detail-ol li span.ol-step {
            display: block;
            float: left;
            background: #f8941d;
            border-radius: 50% !important;
            width: 24px;
            height: 24px;
            text-align: center;
            line-height: 24px;
            color: #FFF;
            margin: 7px 10px 0 0;
        }

.detail-ul-sub {
    margin: 0 0 20px 20px !important;
    padding: 0 !important;
}

    .detail-ul-sub li {
        line-height: 30px;
    }

        .detail-ul-sub li:before {
            content: '\2666';
            padding-right: 10px;
            font-size: 16px;
            color: #3e4d5c;
        }

.highlight-text {
    color: #f8941d;
    font-family: 'Roboto-Medium';
    font-size: 16px;
}

.social-wrapper-ul li {
    display: block;
    float: left;
    margin-right: 1px;
    list-style: none;
    line-height: 34px;
}

    .social-wrapper-ul li a:before {
        content: '';
        display: none;
    }

    .social-wrapper-ul li i {
        background: #9b9c9c;
        color: #FFFFFF;
        display: block;
        width: 24px;
        height: 24px;
        padding-top: 5px;
        border-radius: 50%;
        text-align: center;
    }

        .social-wrapper-ul li i.fa-facebook:hover {
            background: #1175c1;
        }

        .social-wrapper-ul li i.fa-twitter:hover {
            background: #2badf1;
        }

        .social-wrapper-ul li i.fa-google-plus:hover {
            background: #f32121;
        }

        .social-wrapper-ul li i.fa-linkedin:hover {
            background: #0892da;
        }

.service-relate-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
}

    .service-relate-wrapper .owl-buttons {
        position: static;
    }

        .service-relate-wrapper .owl-buttons .owl-prev {
            left: 12px;
        }

        .service-relate-wrapper .owl-buttons .owl-next {
            right: 12px;
        }

        .service-relate-wrapper .owl-buttons div {
            position: absolute;
            top: 48%;
            width: 27px;
            height: 27px;
            text-indent: -10000px;
            border-radius: 50% !important;
            display: block;
            background-color: #faa61a;
        }

    .service-relate-wrapper .service-item {
        padding: 10px 50px;
    }

        .service-relate-wrapper .service-item img {
            border-radius: 0 !important;
            width: 100%;
        }

        .service-relate-wrapper .service-item h2 {
            background: #FFF;
            font-family: 'Roboto-Light';
            font-size: 18px;
            text-transform: none;
            color: #f58220;
            padding: 15px 20px;
        }

        .service-relate-wrapper .service-item p {
            background: #FFF;
            padding: 0 20px 20px;
            min-height: 160px;
        }

.main-wrapper {
    padding: 20px 0;
}

.select-wrapper {
    margin: 30px 0;
}

    .select-wrapper .form-control {
        background: #f7f7f7;
        border-radius: 5px !important;
    }

.guide-title img {
    display: block;
    float: left;
    margin-right: 10px;
    margin-bottom: 20px;
}

.guide-title {
    margin-top: 30px;
}

    .guide-title h2 {
        font-family: 'Roboto-Light';
        font-size: 24px;
    }

    .guide-title h3 {
        font-family: 'Roboto-Light';
        font-size: 14px;
    }

.guide-title-left {
    margin-top: 30px;
}

    .guide-title-left img {
        display: block;
        float: left;
        margin-right: 40px;
        margin-bottom: 20px;
        margin-left: 40px;
    }

    .guide-title-left h2 {
        font-family: 'Roboto-Light';
        font-size: 18px;
        padding: 3px;
    }

    .guide-title-left h3 {
        font-family: 'Roboto-Light';
        font-size: 14px;
    }

.branch-item {
    margin-bottom: 0px;
    padding: 15px 20px;
}

    .branch-item:hover {
        background: #f7f7f7;
        cursor: pointer;
    }

.branch-icon {
    padding-right: 0px;
    padding-top: 6px;
}

.branch-info {
    padding-left: 5px;
}

.branch-item h2 {
    font-family: 'Roboto-Bold';
    font-size: 14px;
    color: #144e8c;
    text-transform: uppercase;
    padding: 5px 0;
    margin: 0;
}

.address-span {
    display: block;
}

.phone-span {
    margin-right: 30px;
}

.table-service {
    margin: 30px 0;
}

    .table-service tr th {
        font-family: "Roboto-Medium";
        font-size: 14px;
        color: #f58220;
        text-transform: uppercase;
        text-align: center;
        background: #FFFAD5;
        border-top: 0 !important;
        padding: 5px 0 !important;
    }

    .table-service tr {
        padding-bottom: 3px;
    }

        .table-service tr td {
            border-top: 0 !important;
            padding: 18px 0 !important;
            border-bottom: 1px solid #ddd;
            text-align: center;
            font-family: 'Roboto-Regular';
            font-size: 14px;
        }

            .table-service tr td.td-left {
                text-align: left;
            }

            .table-service tr td:first-child {
                font-family: 'Roboto-Bold';
                font-size: 14px;
                text-transform: uppercase;
            }

.label-weight {
    background: #ffc80b;
    font-size: 20px;
    color: #333;
    padding: 6px;
}

.content-container {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 50px;
    height: auto;
    display: flex;
    flex-flow: row column;
}

.tips-item {
    padding: 15px 0;
    color: #54534f;
}

    .tips-item h2 {
        font-family: 'Roboto-Bold';
        font-size: 18px;
        padding-left: 5px;
    }

    .tips-item ul li {
        font-family: 'Roboto-Regular';
        font-size: 14px;
    }

.icon-col {
    text-align: center;
    line-height: 120px;
}

.sub-page {
    padding-right: 30px;
}

    .sub-page h2 {
        font-family: 'Roboto-Bold';
        font-size: 18px;
        text-transform: uppercase;
        display: block;
        padding: 5px 20px 20px 20px;
        margin: 0;
    }

.tracking-select-wrapper {
    border: 1px solid #c4c4c4;
    padding: 7px;
    width: 100%;
}

.header-track-form {
    color: #E47211;
    background: #FFFAD5;
    display: block;
    font-size: 14px;
    font-family: "Roboto-Medium";
    text-transform: uppercase;
    padding: 0px 10px;
    margin-bottom: 5px !important;
    border: 1px solid #DAD7BC;
}

.select-area table tr td {
    padding-right: 10px;
}

.btn-group-select tr td input {
    margin-right: 3px;
}

.btn-group-select tr td label {
    text-transform: uppercase;
    font-family: "Roboto-Medium";
    font-size: 13px;
    margin-top: -3px;
    display: inline-block;
    cursor: pointer;
}

.tracking-select-wrapper .form-control {
    background: #f7f7f7 !important;
    border: 1px solid #c7c7c7;
}

.tips-span {
    color: #f58220;
    font-size: 14px;
    font-family: 'Roboto-Bold';
}

.header-col-full-left {
    margin-left: -15px;
    margin-right: -12px;
}

.header-col-full-right {
    margin-left: -12px;
    margin-right: -15px;
}

.checkbox {
    height: 34px;
}

.tracking-result-wrapper {
    border: 1px solid #c4c4c4;
    padding: 7px;
    background: #f7efe5;
    width: 33%;
    border-radius: 5px !important;
}

.header-track-result {
    background: #ffc80b;
    display: block;
    font-size: 14px;
    font-family: 'Roboto-Bold';
    text-transform: uppercase;
    padding: 20px 10px;
    border-radius: 5px !important;
}

.table-tracking-result {
    width: 100%;
}

.table-result-container {
    padding: 23px 20px;
}

.table-tracking-result tr td {
    padding: 7px 0px;
    margin: 0 20px;
}

    .table-tracking-result tr td:first-child {
        text-align: left;
        font-family: 'Roboto-Regular';
        font-size: 14px;
    }

    .table-tracking-result tr td:last-child {
        text-align: right;
        font-family: 'Roboto-Bold';
        font-size: 14px;
    }

.table-tracking-result tr:last-child td {
    border-top: 1px dotted #333;
    font-family: 'Roboto-Bold';
    font-size: 14px;
}

.btn-container {
    float: right;
    margin-top: 15px;
}

.btn-print {
    background: #faa61a;
    border-radius: 5px !important;
    color: #FFF;
    font-family: 'Roboto-Bold';
    font-size: 14px;
    margin-right: 15px;
    display: block;
    float: right;
}

.tracking-header-info .btn-print {
    margin-top: 5px;
    float: right;
    right: 8px;
    position: absolute;
}

.btn-create {
    background: #f58220;
    border-radius: 5px !important;
    color: #FFF;
    font-family: 'Roboto-Bold';
    font-size: 14px;
}

.news-row {
    margin-bottom: 30px;
    clear: both;
}

.news-item .news-title {
    padding: 0 !important;
    font-family: "Roboto-Medium";
    font-size: 20px;
    text-transform: none !important;
    margin-bottom: 5px !important;
    line-height: 24px;
    position: relative;
}

.news-title a {
    font-family: "Roboto-Medium";
    font-size: 14px;
    color: #333;
}

    .news-title a:hover {
        text-decoration: none;
        color: #FCB71E !important;
    }

.news-title img {
    margin-right: 5px;
}

.new-default-tile:hover {
    text-decoration: none;
    color: #FCB71E !important;
}

.news-image {
    padding-left: 0px;
}

    .news-image a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .news-image img {
        display: block;
        max-width: 100%;
        max-height: 250px;
    }

.news-short-content {
    padding-right: 0px;
    padding-left: 0px;
}

    .news-short-content p {
        min-height: 108px;
    }

    .news-short-content a:before {
        content: "\f101";
        font-family: "FontAwesome";
        margin-right: 3px;
    }

    .news-short-content a {
        display: block;
        text-align: right;
    }

label.news-date {
    color: #B4B4B4;
    position: relative;
    padding: 0 0 0 0;
    margin-bottom: 5px;
    margin-top: 0px;
}

    label.news-date:after {
        content: ' ';
        width: 50px;
        height: 1px;
        background: #B4B4B4;
        position: absolute;
        top: 100%;
        left: 0;
    }

.pagging {
    float: right;
    margin-bottom: 30px;
    clear: both;
}

.pagination li a {
    border: 1px solid #ddd !important;
    width: 24px;
    height: 24px;
    line-height: 22px;
    border-radius: 10px;
    display: block;
    text-align: center;
    padding: 0;
}

.pagination li:first-child a,
.pagination li:last-child a {
    border: 1px solid transparent !important;
}

.pagination li a.active {
    background: #f6f6f6;
    border: 1px solid #ddd !important;
    width: 24px;
    height: 24px;
    line-height: 22px;
    border-radius: 10px;
    display: block;
    text-align: center;
    padding: 0;
}

.introduction-wrapper {
    padding: 0px;
    background: rgb(236, 236, 236);
    background: -moz-linear-gradient(0deg, rgb(236, 236, 236) 30%, rgb(255, 255, 255) 0%);
    background: -webkit-linear-gradient(0deg, rgb(236, 236, 236) 30%, rgb(255, 255, 255) 0%);
    background: -o-linear-gradient(0deg, rgb(236, 236, 236) 30%, rgb(255, 255, 255) 0%);
    background: -ms-linear-gradient(0deg, rgb(236, 236, 236) 30%, rgb(255, 255, 255) 0%);
    background: linear-gradient(90deg, rgb(236, 236, 236) 30%, rgb(255, 255, 255) 0%);
}

    .introduction-wrapper .container {
        height: auto;
        display: flex;
        flex-flow: row column;
    }

    .introduction-wrapper .header-black {
        margin-top: 30px;
    }

.left-menu {
    width: 240px;
    float: left;
    margin-left: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#left-menu-service,
#left-menu {
    background: #FFFAD5;
}

.left-menu ul {
    border-top: 1px solid #EBC27D;
    margin: 2px 10px;
    background: #FFFAD5;
}

    .left-menu ul li a {
        display: block;
        padding: 10px 0 10px 19px;
        border-bottom: 1px dotted #EBC27D;
        color: #4E4B35;
        font-family: "Roboto-Medium";
        font-size: 14px;
        position: relative;
    }

    .left-menu ul li:last-child a {
        border-bottom: none;
    }

    .left-menu ul li a:hover,
    .left-menu ul li a.active {
        text-decoration: none;
        color: #faa61a;
    }

    .left-menu ul li a:before {
        content: "\f101";
        font-family: 'FontAwesome';
        font-size: 10px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        left: 5px;
    }

    .left-menu ul li ul {
        border-top: none;
        margin-top: -1px;
        border-bottom: 1px dotted #EBC27D;
    }

        .left-menu ul li ul li a {
            font-weight: 400;
        }

            .left-menu ul li ul li a:before {
                content: "\f105";
                font-family: 'FontAwesome';
                padding-right: 5px;
                font-size: 10px;
            }

.left-menu h2 {
    font-family: "Roboto-Bold";
    font-size: 16px;
    display: block;
    padding: 0;
    margin: 0 10px;
    text-transform: uppercase;
    border-bottom: 1px solid #EBC27D;
    color: #FCB71E;
    word-spacing: -1;
    white-space: nowrap;
}

.right-content {
    padding-bottom: 20px;
    background: #FFF;
    font-family: "Roboto-Regular";
    font-size: 13px;
    width: 885px;
    float: left;
}

    .right-content p {
        font-family: "Roboto-Regular";
        font-size: 14px;
    }

.header-organization {
    font-family: 'Roboto-Light';
    font-size: 18px;
}

.member-item {
    margin-bottom: 20px;
}

    .member-item img {
        width: 100%;
        max-width: 100%;
    }

    .member-item .name {
        display: block;
        text-align: center;
        font-family: 'Roboto-Bold';
        font-size: 13px;
        padding: 5px 0;
    }

        .member-item .name span {
            text-transform: uppercase;
        }

    .member-item .position {
        display: block;
        text-align: center;
        font-family: 'Roboto-Regular';
        font-size: 13px;
        padding: 0;
    }

.contact-header {
    font-size: 18px;
    font-family: 'Roboto-Light';
}

.contact-page-form input,
.contact-page-form textarea {
    background: #f7f7f7;
    border-radius: 5px !important;
    border: 1px solid #ddd;
    width: 100%;
}

.main-service-col {
    margin: 50px 0;
}

    .main-service-col a h2 {
        text-transform: uppercase;
        margin-top: 25px;
        font-family: "Roboto-Medium";
        font-size: 22px;
        text-align: center;
        line-height: 20px;
        margin-bottom: 20px;
        color: #f6821f !important;
    }

    .main-service-col p {
        text-align: justify;
        padding: 10px 0 0 0;
        min-height: 120px;
        margin-bottom: 0px;
        display: none;
    }

    .main-service-col a img {
        display: block;
        margin: 20px auto 10px;
        border: 10px solid #f0eceb;
        border-radius: 50% !important;
        max-width: 80%;
    }

    .main-service-col img {
        display: block;
        margin: 0px auto 20px;
    }

    .main-service-col ul {
        margin: 10px 0 0 0;
        padding: 0;
        text-align: left;
    }

        .main-service-col ul li {
            text-align: left;
            padding-left: 50px;
        }

            .main-service-col ul li a {
                text-align: left;
                line-height: 30px;
                font-size: 15px;
                color: #f6821f;
            }

                .main-service-col ul li a:hover {
                    opacity: 0.8;
                }

                .main-service-col ul li a:before {
                    content: '\2023';
                    margin-right: 5px;
                    font-size: 22px;
                    padding-top: 3px;
                }

.main-1 {
    background-color: #f6f6f6;
    padding: 0;
    width: 100%;
}

    .main-1 .container div {
        display: flex;
    }

        .main-1 .container div .main-service-col {
            display: flex;
            flex-direction: column;
        }

.main-2 {
    background-color: #fdf9d4;
    background-repeat: no-repeat;
    background-position: 40px 0;
}

.video-home {
    padding-top: 50px;
}

    .video-home h1 {
        text-transform: uppercase;
        font-family: 'Roboto-Medium';
        font-size: 24px;
        color: #f6821f !important;
        line-height: 20px;
    }

    .video-home h2 {
        font-family: 'Roboto-Medium';
        font-size: 18px;
        color: #f6821f;
    }

    .video-home p {
        font-family: "Roboto-Regular";
        font-size: 15px;
        margin-bottom: 50px;
    }

.online-shoping-img img {
    width: 100%;
    max-width: 100%;
}

.online-shoping-info {
    padding-top: 50px;
    padding-bottom: 50px;
}

    .online-shoping-info .clearfix {
        display: flex;
    }

    .online-shoping-info h2 {
        text-transform: uppercase;
        font-family: 'Roboto-Medium';
        font-size: 24px;
        color: #f6821f;
    }

    .online-shoping-info p {
        font-family: "Roboto-Regular";
        font-size: 15px;
        margin-bottom: 30px;
    }

.online-item:hover {
    opacity: 0.8;
}

.online-item img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.online-shoping-info h3 {
    text-transform: uppercase;
    margin-top: 20px;
    font-family: 'Roboto-Medium';
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 20px;
}

.main-service-wrapper {
    padding: 30px 0;
}

    .main-service-wrapper .container {
        display: flex;
    }

    .main-service-wrapper .service-wrapper {
        padding: 50px 0;
    }

    .main-service-wrapper .support-wrapper {
        border-bottom: none;
        padding: 50px 0;
    }

    .main-service-wrapper .news-wrapper {
        display: flex;
    }

.support-wrapper h1 {
    font-family: 'Roboto-Light';
    font-size: 24px;
    text-align: center;
    display: block;
    color: #3e4d5c;
}

.support-item img {
    display: block;
    margin: 0 auto;
}

.support-item h2 {
    color: #f6821f;
    font-family: "Roboto-Medium";
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 30px;
}

.support-item p {
    font-family: 'Roboto-Regular';
    font-size: 16px;
    text-align: center;
    color: #3e4d5c;
}

.width-100 {
    width: 100%;
}

.hotline-box {
    padding: 5px;
    background-color: #F90;
    margin-top: 20px;
}

    .hotline-box label {
        font-family: 'Roboto-Regular';
        font-size: 15px !important;
        text-align: center !important;
        color: #FFF !important;
        width: 100%;
        letter-spacing: -0.5px;
    }

    .hotline-box h2 {
        font-family: 'Roboto-Bold';
        font-size: 30px !important;
        text-align: center !important;
        color: #FFF !important;
        border-bottom: none;
        white-space: nowrap;
    }

.width-100 {
    width: 100%;
}

.tracking-block:before,
.tracking-block:after {
    content: " ";
    display: table;
}

#ControlBar {
    z-index: 999;
}

.tracking-block {
    position: absolute;
    width: 240px;
    top: 0px;
    z-index: 99;
    top: 0px;
    padding: 0;
}

    .tracking-block h2 {
        padding: 0px 15px 10px 15px;
        font-size: 18px;
        text-transform: uppercase;
        display: block;
        font-family: "Roboto-Medium";
    }

    .tracking-block label {
        display: block;
        color: #FFF;
        font-size: 15px;
        font-family: "Roboto-Medium";
        padding: 11px 15px 11px 0px;
    }

.more-tracking i {
    font-size: 20px;
}

.list-link {
    display: block;
    clear: both;
    padding: 10px 5px;
    font-family: "Roboto-Medium";
    color: #333;
    font-size: 15px;
    border-bottom: 1px dashed #dcdcdc;
}

    .list-link i {
        width: 24px;
        text-align: center;
    }

.lastest-news-col img {
    max-width: 100%;
    display: block;
    max-height: 300px;
}

.lastest-news-col a {
    font-family: "Roboto-Medium";
    font-size: 14px;
    display: block;
    padding: 10px 0 5px 0;
    color: #333;
}

    .lastest-news-col a:hover {
        color: #F90;
    }

.lastest-news-col span.publish-time {
    color: #BABABA;
    font-family: "Roboto-Medium";
    display: block;
    padding: 0 0 10px 0;
}

.lastest-news-col p {
    font-family: "Roboto-Regular";
    display: block;
}

.older-news-list-col img {
    max-width: 100%;
    display: block;
    max-height: 70px;
}

.older-news-list-col .row {
    margin-bottom: 5px;
}

.older-news-list-col a {
    font-family: "Roboto-Medium";
    font-size: 13px;
    display: block;
    padding: 0px 0 5px 0;
    color: #333;
}

    .older-news-list-col a:hover {
        color: #F90;
    }

.older-news-list-col span.publish-time {
    color: #898989;
    font-family: Roboto-Regular;
    display: block;
    padding: 0 0 10px 0;
}

.older-news-list-col p {
    font-family: "Roboto-Regular";
    display: block;
}

.nav-service li {
    display: inline-block !important;
    margin-bottom: 5px;
}

    .nav-service li a {
        display: block;
        padding: 6px 10px !important;
        color: #FFF !important;
        font-family: "Roboto-Regular" !important;
        border-radius: 3px !important;
    }

        .nav-service li a:before {
            content: "";
            display: none;
        }

.detail-wrapper {
    padding-top: 30px;
}

.main-menu {
    display: flex;
    width: 100%;
    padding: 0 30px;
    position: relative;
}

    .main-menu .navbar {
        margin-bottom: 0px;
        min-height: 40px;
        border: none;
        background: #FCB71E;
        border-radius: 0;
        margin-left: 240px;
        width: 100%;
    }

        .main-menu .navbar .nav {
            margin-bottom: 0px;
        }

    .main-menu .navbar-collapse {
        padding: 0;
    }

    .main-menu .container-fluid {
        padding: 0;
    }

    .main-menu li a {
        white-space: nowrap;
        color: #FFF;
        font-size: 15px;
        font-family: "Roboto-Medium";
        padding: 11px;
        border-radius: 0;
    }

        .main-menu li a:hover {
            background: #223570;
            color: #FFF;
        }

        .main-menu li a:visited {
            color: #FFF !important;
        }

        .main-menu li a:focus {
            background: #223570;
            color: #FFF;
        }

.quick-tool-menu {
    width: 240px;
    background: #f6f6f6;
    padding: 5px 0 0 0;
    margin-top: 0px;
    margin-left: 15px;
    -webkit-box-shadow: 3px 3px 0px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow: 3px 3px 0px 0px rgba(50, 50, 50, 0.3);
    box-shadow: 3px 3px 0px 0px rgba(50, 50, 50, 0.3);
    -moz-border-radius-bottomright: 6px;
    -webkit-border-bottom-right-radius: 6px;
    border-bottom-right-radius: 6px;
    -moz-border-radius-bottomleft: 6px;
    -webkit-border-bottom-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

    .quick-tool-menu input[type='text'] {
        font-size: 13px;
        font-family: "Roboto-Regular";
    }

    .quick-tool-menu li {
        font-family: "Roboto-Regular";
        font-size: 14px;
        color: #21427f;
        margin: 0 10px;
    }

        .quick-tool-menu li a {
            font-family: "Roboto-Regular";
            font-size: 14px;
            color: #21427f;
            padding: 12px 0;
            border-bottom: 1px solid #DCDCDC;
            display: block;
        }

        .quick-tool-menu li:last-child a {
            border-bottom: none;
        }

        .quick-tool-menu li a:visited {
            color: #21427f !important;
        }

.main-menu li i.fa-map-marker,
.main-menu li a i {
    color: #21427f !important;
    font-size: 20px;
}

.main-menu .quick-tool-menu li a:hover,
.main-menu .quick-tool-menu li a:hover i {
    background: none;
    color: #fbb900 !important;
}

    .main-menu .quick-tool-menu li a:hover i {
        border-right: 1px solid #fbb900;
    }

.ul-main-menu {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: space-around;
}

    .ul-main-menu li.keep-open {
        min-width: 180px;
        text-align: left !important;
        border-right: 1px solid #CD8B13;
    }

        .ul-main-menu li.keep-open a.dropdown-toggle {
            background: transparent !important;
            color: #FFF !important;
            padding-left: 0px;
        }

.main-menu .dropdown-menu {
    margin-top: 0px;
}

.quick-tool-menu li i.fa-map-marker,
.quick-tool-menu li i.fa-map-signs,
.quick-tool-menu li i.fa-map-o,
.quick-tool-menu li i.fa-calculator,
.quick-tool-menu li i.fa-search-plus,
.quick-tool-menu li i.fa-money,
.quick-tool-menu li i.fa-qrcode,
.quick-tool-menu li i.fa-ban {
    width: 40px;
    height: 18px;
    margin-right: 10px;
    padding: 0 3px 0 0;
    font-size: 18px;
    border-right: 1px solid #8293B3;
    text-align: center;
    font-weight: 400;
}

.quick-tool-menu li.first-item a {
    border-bottom: none;
}

.tracking-item {
    margin: 0 10px !important;
}

.quick-tool-menu .tracking-item .btn-primary {
    padding: 9px 10px 10px 10px;
}

.tracking-item label,
.tracking-item a {
    display: block;
    border: none;
    font-family: "Roboto-Regular";
    font-size: 14px;
    color: #21427f;
    padding-bottom: 10px;
}

    .tracking-item a:focus {
        background: none !important;
        color: #21427f !important;
    }

.tracking-block .caret {
    float: right;
    margin-top: 5px;
    float: right;
    margin-top: 8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #FFF;
}

#tracking-money {
    margin-top: -1px;
}
/* Replace CSS DNN */
.LoginPanel {
    float: none !important;
    margin: 0 auto;
    padding: 20px !important;
    border: 1px solid #dcdcdc;
    background: #FFF;
}

.mark,
mark {
    background: none;
}

.dnnLabel {
    margin-right: 12px !important;
}

.LoginPanel .dnnFormItem input[type="checkbox"] + span,
.LoginPanel .dnnFormItem input[type="radio"] + span {
    margin-left: 0px !important;
}

#dnn_ctr547_Login_Login_DNN_passwordLink {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    text-shadow: none !important;
    color: #0A6CDA !important;
    font-family: "Roboto-Regular";
    font-weight: normal;
    padding: 5px 0 0 0;
}

.dnnActions {
    padding-top: 5px !important;
}

.dnnFormMessage {
    margin: 10px auto !important;
}

.dnnSendPasswordContent {
    margin: 20px auto !important;
}

ul.dnnActions {
    text-align: center;
    padding-left: 20px;
    margin-top: -30px;
}

#dnn_ctr_SendPassword_liSend,
#dnn_ctr_SendPassword_liCancel {
    float: none;
    display: inline-block;
}

.author {
    text-transform: uppercase;
    color: #1785E4;
    font-weight: bold;
    font-size: 12px;
    display: block;
    text-align: right;
    margin-top: 30px;
}

.list-news-relate h2 {
    margin: 20px 0;
    display: block;
    position: relative;
    font-family: "Roboto-Medium";
}

    .list-news-relate h2:after {
        content: ' ';
        width: 150px;
        height: 1px;
        background: #333;
        position: absolute;
        top: 120%;
        left: 0;
    }

.list-news-relate ul li {
    display: block;
    padding: 5px;
}

    .list-news-relate ul li:before {
        content: "\00BB";
        padding-right: 5px;
        color: #F90;
    }

    .list-news-relate ul li a {
        color: #333333;
    }

.list-news-relate label.news-date {
    padding-left: 20px;
    font-size: 12px;
    font-style: italic;
    margin: 0;
    padding-bottom: 0;
}

    .list-news-relate label.news-date:after {
        display: none;
    }

.package-table-info th,
.package-table-info td {
    border: 1px solid #ECD5B3 !important;
}

.package-table-info th {
    font-size: 13px;
    font-weight: bold;
    font-family: "Roboto-Regular";
    background: #FFF1DD;
}

.timeline {
    margin: 0;
    padding: 0;
    position: relative;
    margin-bottom: 30px;
}

    .timeline:before {
        content: '';
        position: absolute;
        display: block;
        width: 4px;
        background: #f5f6fa;
        top: 0px;
        bottom: 0px;
        margin-left: 38px;
    }

.timeline-badge {
    float: left;
    position: relative;
    padding-right: 30px;
    height: 80px;
    width: 80px;
}

.timeline-body {
    position: relative;
    padding: 10px 10px 1px 10px;
    margin-top: 20px;
    margin-left: 110px;
    margin-right: 10px;
    background-color: #f1f1f1;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.timeline-body-title {
    display: block;
    padding: 5px;
    font-size: 13px;
    color: #3E4D5C;
}

.timeline-body-arrow {
    position: absolute;
    top: 22px;
    left: -14px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 14px 14px 0;
    border-color: transparent #f1f1f1 transparent transparent;
}

.tracking-map {
    height: 620px !important;
}

.timeline-badge {
    background: #FFF;
    height: 80px;
    width: 80px;
    border: 4px #f1f1f1 solid;
    -webkit-border-radius: 35% !important;
    -moz-border-radius: 35% !important;
    border-radius: 35% !important;
    display: block;
    text-align: center;
    color: #FF9800;
}

    .timeline-badge i.fa {
        display: block;
        margin-top: 3px;
        line-height: 26px;
        width: 72px;
        text-align: center;
        font-size: 24px;
    }

    .timeline-badge span {
        display: block;
        text-align: center;
        width: 72px;
        font-size: 12px;
    }

    .timeline-badge img {
        display: block;
        width: 24px;
        margin: 3px auto;
    }

.success-item {
    margin: 10px 0;
}

    .success-item .timeline-badge {
        padding-right: 0px;
        border: 4px solid #36D23B;
        color: #169D1A;
    }

.status-done {
    border: 2px solid #20CD45;
}

    .status-done .timeline-body-arrow {
        position: absolute;
        top: 30px;
        left: -14px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 14px 14px 14px 0;
        border-color: transparent #20CD45 transparent transparent;
    }

.current-location {
    border: 2px solid #F7A81B;
}

    .current-location .timeline-body-arrow {
        position: absolute;
        top: 30px;
        left: -14px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 14px 14px 14px 0;
        border-color: transparent #F7A81B transparent transparent;
    }

    .current-location .timeline-body-title {
        color: #F7A81B;
    }

a.refresh-btn {
    display: block;
    float: left;
    padding: 9px;
    background: #34d51f;
    color: #fff;
}

.star {
    color: red !important;
}

.validator {
    color: red !important;
    font-style: italic !important;
    display: block;
    width: 100%;
    clear: both;
}

.map-col,
.list-col {
    margin-top: 10px;
}

.btn-search-branch {
    margin-top: 18px;
    width: 100%;
}

.search-box {
    display: block;
    border: 1px solid #D4CFAC;
    background: #FFFAD5;
    padding: 10px;
    margin-right: 0px;
}

.search-box-2 {
    display: block;
    border: 1px solid #D4CFAC;
    background: #FFFAD5;
    padding: 10px;
}

.list-post {
    margin-top: 15px;
    background: #FFFAD5;
    border: 1px solid #D4CFAC;
    padding: 10px;
    margin-right: 0px;
    font-family: "Roboto-Regular";
    font-size: 14px;
}

    .list-post h2 {
        font-size: 13px;
        padding: 3px 0 3px 0;
        border-bottom: 1px dotted #D4CFAC;
        line-height: 20px;
        margin-bottom: 10px;
        font-family: "Roboto-Medium";
        text-transform: uppercase;
    }

    .list-post .list-office {
        padding: 10px;
        height: 420px;
        overflow-y: auto;
        background: #FFF;
        border: 1px solid #DDD;
    }

    .list-post .list-service {
        padding: 10px;
        height: 470px;
        overflow-y: auto;
        background: #FFF;
        border: 1px solid #DDD;
    }

.list-office hr {
    margin: 10px 0;
}

.list-office i,
.title-post i {
    width: 20px;
    text-align: center;
}

.title-post {
    font-family: 'Roboto-Medium';
    width: 100px;
    display: block;
    float: left;
}

.post-info {
    display: block;
    border: 1px solid #D4CFAC;
    background: #FFFAD5;
    padding: 10px;
    margin-right: 0px;
}

.content-wrapper {
    background: #FFF !important;
}

.tracking-header-info {
    display: flex;
    border: 1px solid #D4CFAC;
    background: #FFFAD5;
    padding: 10px 5px;
    margin-left: 0px;
    margin-right: 0;
    position: relative;
    font-family: "Roboto-Regular";
}

.tracking-detail {
    margin-left: 0px;
    margin-right: 0px;
    border: 1px solid #ddd;
    padding: 10px;
    border-top: none;
    font-family: "Roboto-Regular";
    \ display: block;
}

    .tracking-detail.collapse:not(.show) {
        display: block;
    }

.tracking-detail-btn {
    position: absolute;
    right: 10px;
    top: 18px;
    width: 20px;
    height: 20px;
    color: #333;
    background: #D4D4D4;
    border-radius: 50% !important;
    text-align: center;
}

    .tracking-detail-btn i {
        font-size: 18px;
        line-height: 16px;
    }

    .tracking-detail-btn:hover {
        background: #dcdcdc;
        color: #333;
    }

.package-code {
    padding-left: 3px;
}

    .package-code i,
    .package-weight i,
    .package-location i {
        margin-right: 3px;
        width: 20px;
    }

    .package-code strong,
    .package-weight strong,
    .package-location strong {
        margin-left: 22px;
    }

.package-weight {
    border-left: 1px solid #BBBBBB;
    border-right: 1px solid #BBBBBB;
}

.pre-header input[type="text"] {
    border: none !important;
    padding: 4px 4px 5px 4px !important;
}

.tracking-detail-block {
    margin-bottom: 10px;
    border-bottom: 2px solid #EFBE53;
}

.tracking-detail h2 {
    font-size: 13px;
    padding: 3px 0 3px 0;
    border-bottom: 1px dashed #EFBE53;
    line-height: 20px;
    margin-bottom: 3px;
}

.table-tracking-info {
    width: 100%;
    font-size: 13px;
    margin-bottom: 5px;
}

    .table-tracking-info tr td {
        padding: 3px 5px;
    }

    .table-tracking-info tr th {
        vertical-align: top;
        white-space: nowrap;
        padding: 3px 5px;
    }

.timeline-list-item ul {
    margin-bottom: 5px;
}

    .timeline-list-item ul li {
        display: block;
        padding: 6px 5px 6px 16px;
        font-size: 14px;
        position: relative;
    }

        .timeline-list-item ul li:before {
            content: " ";
            font-family: "FontAwesome";
            position: absolute;
            left: 3px;
            width: 2px;
            height: 100%;
            background: #C7C7C7;
            z-index: -9;
        }

        .timeline-list-item ul li:first-child {
            color: #f90;
        }

            .timeline-list-item ul li:first-child:before {
                top: 11px;
            }

        .timeline-list-item ul li .label-time {
            display: inline-block;
            width: 120px;
            font-weight: 500;
            position: relative;
        }

            .timeline-list-item ul li .label-time:before {
                content: " ";
                position: absolute;
                left: -16px;
                top: 5px;
                width: 8px;
                height: 8px;
                background: #8C8C8C;
                z-index: 999;
                border-radius: 50%;
            }

        .timeline-list-item ul li:first-child .label-time:before {
            background: #F90;
        }

        .timeline-list-item ul li .label-location {
            position: relative;
            display: inline-block;
            border-bottom: 1px dotted #EFBE53;
        }

            .timeline-list-item ul li .label-location:after {
                content: "\f041";
                font-family: "FontAwesome";
                position: absolute;
                font-size: 10px;
                right: -8px;
                top: -5px;
            }

            .timeline-list-item ul li .label-location:hover {
                color: #F3AE18;
            }

.timeline-list-item .table-tracking-info {
    border-bottom: 1px dotted #dcdcdc;
    padding-bottom: 5px;
}

    .timeline-list-item .table-tracking-info:last-child {
        border-bottom: none;
    }

.timeline-list-money {
    max-height: 320px;
    overflow-y: auto;
}

.label-location {
    cursor: pointer;
    color: #038ee2 !important;
}

    .label-location:hover {
        color: #faa61a !important;
    }

.loginContent {
    padding: 20px;
    width: 400px;
    margin: 20px auto;
    /*border: 1px solid #EDE6B3;
    background-color: #FFFAD5;*/
}

.LoginContainerGroup {
    background: #fff;
}

.loginContent .dnnFormItem > label.dnnFormLabel {
    width: 29.5%;
}

.dnnLoginService {
    padding-top: 25px;
    background-color: #FFFAD5;
    border: 1px solid #D2CB95;
}

.dnnLogin .LoginTabGroup span.LoginTabSelected {
    margin-top: -6px;
    padding: 12px 9px 10px;
    background: none repeat scroll 0 0 #FFFAD5;
    border: 1px solid #D2CB95;
    border-bottom: none;
    border-top: 3px solid #FCB71E;
}

.dnnLogin .LoginTabGroup {
    display: inline-block;
    width: 100%;
    height: 37px;
    margin-left: 0;
    margin-top: 5px;
    border-bottom: 1px solid #D2CB95;
}

    .dnnLogin .LoginTabGroup span {
        margin-right: 4px;
        margin-bottom: 0;
        border-bottom: 0 none;
        border-radius: 0;
        box-shadow: none;
        background: #f6f6f6;
    }

.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
    text-shadow: none !important;
    box-shadow: none !important;
    font-family: "Roboto-Regular";
    font-weight: normal;
}

.dnnFormItem button, .dnnFormItem input[type="button"], .dnnFormItem input[type="reset"], .dnnSecondaryAction, a.dnnSecondaryAction, ul.dnnAdminTabNav li a, .dnnLogin .LoginTabGroup span {
    text-shadow: none !important;
    box-shadow: :none !important;
    font-family: "Roboto-Regular";
    font-weight: normal;
}

.dnnLoginRememberMe .dnnFormItem input[type="checkbox"] + span, .dnnFormItem input[type="radio"] + span {
    margin-left: 0px !important;
}

#dnn_ctr547_Login_DNN_Login_DNN_passwordLink {
    background: none;
    margin-top: 20px;
    margin-left: -20px;
    margin-bottom: 0px;
    border: none;
    box-shadow: none;
}

.search-input {
    width: calc(100% - 45px);
    padding: 8px;
    border: 1px solid #ddd;
    margin-right: 4px;
}

.search-result {
    border: 1px solid #ddd;
    border-top: none;
    padding: 10px;
    margin-bottom: 10px;
}

    .search-result h2 {
        font-size: 13px;
        padding: 3px 0 3px 0;
        border-bottom: 1px dashed #EFBE53;
        line-height: 20px;
        margin-bottom: 10px;
        font-family: 'Roboto-Medium';
    }

    .search-result h4 {
        margin-bottom: 10px;
        line-height: 22px;
    }

.restricted-result h4:before {
    content: "\2023";
    padding-right: 3px;
}

.search-result h4 a {
    font-family: 'Roboto-Medium';
}

    .search-result h4 a:before {
        content: "\00BB";
        margin-right: 5px;
    }

.search-result .form-group {
    border-bottom: 1px dotted #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.question-form {
    margin-left: 0px !important;
    margin-right: 0px !important;
    border: 1px solid #ddd;
}

.question-content {
    padding: 5px;
    border-bottom: 1px dashed #ddd;
    font-size: 14px;
}

    .question-content span {
        text-decoration: underline;
        font-family: 'Roboto-Medium';
    }

.question-info {
    padding: 10px 5px 0 5px;
    color: #747474;
}

.answer-content {
    border-top: 1px solid #ddd;
    padding: 5px;
    font-size: 14px;
}

    .answer-content label {
        text-decoration: underline;
        font-family: 'Roboto-Medium';
    }

.answer-info {
    padding: 10px 5px 10px 5px;
    color: #747474;
}

h5.question-label {
    font-family: "Roboto-Medium";
    background-color: #f6f6f6;
    padding: 10px 5px;
    font-size: 14px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
    color: #1470A9;
}

h5.answer-label {
    font-family: 'Roboto-Medium';
    background-color: #E3EBFF;
    padding: 10px 5px;
    font-size: 14px;
    margin-top: 5px;
    border-top: 1px solid #ddd;
    color: #1470A9;
    cursor: pointer;
}

h5.question-label a {
    color: #1470A9;
}

.send-question-btn {
    color: #FFF !important;
    background-color: #F90;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Roboto-Medium';
    width: 110px;
    display: block;
    margin-bottom: 15px;
}

    .send-question-btn:hover {
        opacity: .8;
    }

.send-question label {
    font-weight: 500;
}

.tracking-guide {
    font-size: 12px;
    font-style: italic;
    text-align: left;
    display: block;
    padding: 3px 0;
}

.table-contact em {
    font-size: 18px;
    margin-top: 7px;
}

#dnn_ContentPane {
    width: 100%;
}

.tracking-toolbar {
    text-align: right;
}

.btn-print {
    border: 1px solid #545454;
    border-radius: 3px;
    background: #FFF;
    padding: 3px 10px;
    color: #333;
    font-family: "Roboto-Medium";
    font-weight: 500;
    margin: 0px;
}

.tracking-print {
    font-family: "Roboto-Regular";
}

    .tracking-print h1 {
        display: block;
        text-align: center;
        font-family: 'Roboto-Medium';
        font-size: 24px;
        font-weight: normal;
        border-bottom: 1px solid #333;
    }

.btn-print:hover {
    color: #333;
    background: #ddd;
}

.tracking-search-box {
    margin: 20px 15px 0 15px;
}

.div-err-message {
    margin: 2px 15px;
    border: 1px solid red;
    background: #ddd;
    color: red;
    padding: 5px;
    font-size: 13px;
}

.news-item {
    width: 48.5%;
    float: left;
    padding: 0 15px;
    margin-bottom: 5px;
}

    .news-item .news-short-content p {
        min-height: 110px;
    }

.news-detail-content {
    margin-top: 20px;
    color: #000;
}

    .news-detail-content h1.news-title {
        font-family: "Roboto-Bold";
        font-weight: 600;
        font-size: 20px;
        color: #333;
        line-height: 28px;
    }

    .news-detail-content b {
        font-weight: 500;
        margin-top: 10px;
        display: block;
    }

    .news-detail-content img {
        max-width: 100%;
    }

.addthis_sharing_toolbox {
    display: block;
    float: right;
}

    .addthis_sharing_toolbox a span,
    .addthis_sharing_toolbox a span img {
        width: 32px !important;
        height: 32px !important;
        border-radius: 50%;
    }

.social-box-fixed {
    z-index: 99;
    position: fixed;
    top: 40%;
    right: 0px;
    background: #FFFAD5;
    padding: 5px;
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-box-shadow: -2px 2px 0px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: -2px 2px 0px 0px rgba(50, 50, 50, 0.2);
    box-shadow: -2px 2px 0px 0px rgba(50, 50, 50, 0.2);
}

    .social-box-fixed a.at-share-btn {
        display: block;
        margin-bottom: 3px;
    }

.post-item {
    display: block;
    padding-bottom: 5px;
    position: relative;
}

.detail-post {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 28px;
    height: 28px;
    background: #F90;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
}

    .detail-post span {
        display: none;
    }

    .detail-post:hover {
        color: #FFF;
        opacity: 0.8;
    }

.header-list-package {
    font-family: "Roboto-Medium";
    font-size: 18px;
    margin: 0 0 10px 0;
    padding: 5px;
    display: block;
    color: #024A89;
    border-bottom: 1px solid #ACBED4;
}

.detail-post i.fa {
    margin-top: 6px;
}

.table-multi-tracking {
    width: 100%;
    font-size: 13px;
    margin-bottom: 10px;
}

    .table-multi-tracking tr th {
        font-family: "Roboto-Medium";
        border: 1px solid #ACBED4 !important;
        background: #D5E9FF;
        vertical-align: middle;
        color: #333;
    }

.captcha-form {
    width: 300px;
    margin: 10% auto;
    border: 1px solid #D4CFAC;
    background: #FFFAD5;
    padding: 15px;
}

    .captcha-form h1 {
        display: block;
        text-align: center;
        font-family: "Roboto-Medium";
        font-size: 22px;
        margin: 0 0 10px 0;
        padding: 0px 0 10px 0;
        line-height: 24px;
        border-bottom: 1px solid #D4CFAC;
    }

.captcha-box div {
    float: none !important;
    width: 100%;
    text-align: center;
    margin-left: 55px;
    margin-top: 20px;
}

    .captcha-box div input {
        float: left;
    }

a.btn-default,
a.btn-default i.fa {
    color: #333;
}

.news-index-col {
    margin-bottom: 30px;
}

.html5gallery-elem-0 a[target="_blank"] {
    display: none !important;
}

.html5gallery-container-0 {
    box-shadow: none !important;
    border: 1px solid #ddd;
    background: #f6f6f6;
    position: relative;
}

.magazine-viewport .container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 922px;
    height: 600px;
    margin: auto;
}

.magazine-viewport .magazine {
    width: 922px;
    height: 600px;
    left: -461px;
    top: -300px;
}

.magazine-viewport .page {
    width: 461px;
    height: 600px;
    background-color: white;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.magazine-viewport .zoomer .region {
    display: none;
}

.magazine .region {
    position: absolute;
    overflow: hidden;
    background: #0066FF;
    opacity: 0.2;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    cursor: pointer;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
}

    .magazine .region:hover {
        opacity: 0.5;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        filter: alpha(opacity=50);
    }

    .magazine .region.zoom {
        opacity: 0.01;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
        filter: alpha(opacity=1);
    }

        .magazine .region.zoom:hover {
            opacity: 0.2;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
            filter: alpha(opacity=20);
        }

.magazine .page {
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 20px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 0 20px rgba(0,0,0,0.2);
    -o-box-shadow: 0 0 20px rgba(0,0,0,0.2);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.magazine-viewport .page img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
    width: 100%;
    height: 100%;
}

.magazine .even .gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(0.95, rgba(0,0,0,0)), color-stop(1, rgba(0,0,0,0.2)));
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0) 95%, rgba(0,0,0,0.2) 100%);
    background-image: -moz-linear-gradient(left, rgba(0,0,0,0) 95%, rgba(0,0,0,0.2) 100%);
    background-image: -ms-linear-gradient(left, rgba(0,0,0,0) 95%, rgba(0,0,0,0.2) 100%);
    background-image: -o-linear-gradient(left, rgba(0,0,0,0) 95%, rgba(0,0,0,0.2) 100%);
    background-image: linear-gradient(left, rgba(0,0,0,0) 95%, rgba(0,0,0,0.2) 100%);
}

.magazine .odd .gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, color-stop(0.95, rgba(0,0,0,0)), color-stop(1, rgba(0,0,0,0.15)));
    background-image: -webkit-linear-gradient(right, rgba(0,0,0,0) 95%, rgba(0,0,0,0.15) 100%);
    background-image: -moz-linear-gradient(right, rgba(0,0,0,0) 95%, rgba(0,0,0,0.15) 100%);
    background-image: -ms-linear-gradient(right, rgba(0,0,0,0) 95%, rgba(0,0,0,0.15) 100%);
    background-image: -o-linear-gradient(right, rgba(0,0,0,0) 95%, rgba(0,0,0,0.15) 100%);
    background-image: linear-gradient(right, rgba(0,0,0,0) 95%, rgba(0,0,0,0.15) 100%);
}

.magazine-viewport .zoom-in .even .gradient,
.magazine-viewport .zoom-in .odd .gradient {
    display: none;
}

.magazine-viewport .loader {
    background-image: url(../pics/loader.gif);
    width: 22px;
    height: 22px;
    position: absolute;
    top: 280px;
    left: 219px;
}

.magazine-viewport .shadow {
    -webkit-transition: -webkit-box-shadow 0.5s;
    -moz-transition: -moz-box-shadow 0.5s;
    -o-transition: -webkit-box-shadow 0.5s;
    -ms-transition: -ms-box-shadow 0.5s;
    -webkit-box-shadow: 0 0 20px #ccc;
    -moz-box-shadow: 0 0 20px #ccc;
    -o-box-shadow: 0 0 20px #ccc;
    -ms-box-shadow: 0 0 20px #ccc;
    box-shadow: 0 0 20px #ccc;
}

.magazine-viewport .next-button,
.magazine-viewport .previous-button {
    width: 22px;
    height: 600px;
    position: absolute;
    top: 0;
}

.magazine-viewport .next-button {
    right: -22px;
    -webkit-border-radius: 0 15px 15px 0;
    -moz-border-radius: 0 15px 15px 0;
    -ms-border-radius: 0 15px 15px 0;
    -o-border-radius: 0 15px 15px 0;
    border-radius: 0 15px 15px 0;
}

.magazine-viewport .previous-button {
    left: -22px;
    -webkit-border-radius: 15px 0 0 15px;
    -moz-border-radius: 15px 0 0 15px;
    -ms-border-radius: 15px 0 0 15px;
    -o-border-radius: 15px 0 0 15px;
    border-radius: 15px 0 0 15px;
}

.magazine-viewport .previous-button-hover,
.magazine-viewport .next-button-hover {
    background-color: rgba(0,0,0, 0.2);
}

.magazine-viewport .previous-button-hover,
.magazine-viewport .previous-button-down {
    background-image: url(../pics/arrows.png);
    background-position: -4px 284px;
    background-repeat: no-repeat;
}

.magazine-viewport .previous-button-down,
.magazine-viewport .next-button-down {
    background-color: rgba(0,0,0, 0.4);
}

.magazine-viewport .next-button-hover,
.magazine-viewport .next-button-down {
    background-image: url(../pics/arrows.png);
    background-position: -38px 284px;
    background-repeat: no-repeat;
}

.magazine-viewport .zoom-in .next-button,
.magazine-viewport .zoom-in .previous-button {
    display: none;
}

.animated {
    -webkit-transition: margin-left 0.5s;
    -moz-transition: margin-left 0.5s;
    -ms-transition: margin-left 0.5s;
    -o-transition: margin-left 0.5s;
    transition: margin-left 0.5s;
}

.thumbnails {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    z-index: 1;
}

    .thumbnails > div {
        width: 1050px;
        height: 100px;
        margin: 20px auto;
    }

    .thumbnails ul {
        margin: 0;
        padding: 0;
        text-align: center;
        -webkit-transform: scale3d(0.5, 0.5, 1);
        -moz-transform: scale3d(0.5, 0.5, 1);
        -o-transform: scale3d(0.5, 0.5, 1);
        -ms-transform: scale3d(0.5, 0.5, 1);
        transform: scale3d(0.5, 0.5, 1);
        -webkit-transition: -webkit-transform ease-in-out 100ms;
        -moz-transition: -moz-transform ease-in-out 100ms;
        -ms-transition: -ms-transform ease-in-out 100ms;
        -o-transition: -o-transform ease-in-out 100ms;
        transition: transform ease-in-out 100ms;
    }

.thumbanils-touch ul {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
}

.thumbnails-hover ul {
    -webkit-transform: scale3d(0.6, 0.6, 1);
    -moz-transform: scale3d(0.6, 0.6, 1);
    -o-transform: scale3d(0.6, 0.6, 1);
    -ms-transform: scale3d(0.6, 0.6, 1);
    transform: scale3d(0.6, 0.6, 1);
}

.thumbnails li {
    list-style: none;
    display: inline-block;
    margin: 0 5px;
    -webkit-box-shadow: 0 0 10px #ccc;
    -moz-box-shadow: 0 0 10px #ccc;
    -ms-box-shadow: 0 0 10px #ccc;
    -o-box-shadow: 0 0 10px #ccc;
    box-shadow: 0 0 10px #ccc;
    -webkit-transition: -webkit-transform 60ms;
    -moz-transition: -webkit-transform 60ms;
    -o-transition: -webkit-transform 60ms;
    -ms-transition: -webkit-transform 60ms;
    transition: -webkit-transform 60ms;
}

    .thumbnails li span {
        display: none;
    }

.thumbnails .current {
    -webkit-box-shadow: 0 0 10px red;
    -moz-box-shadow: 0 0 10px red;
    -ms-box-shadow: 0 0 10px red;
    -o-box-shadow: 0 0 10px red;
    box-shadow: 0 0 10px red;
}

.thumbnails .thumb-hover {
    -webkit-transform: scale3d(1.3, 1.3, 1);
    -moz-transform: scale3d(1.3, 1.3, 1);
    -o-transform: scale3d(1.3, 1.3, 1);
    -ms-transform: scale3d(1.3, 1.3, 1);
    transform: scale3d(1.3, 1.3, 1);
    -webkit-box-shadow: 0 0 10px #666;
    -moz-box-shadow: 0 0 10px #666;
    -ms-box-shadow: 0 0 10px #666;
    -o-box-shadow: 0 0 10px #666;
    box-shadow: 0 0 10px #666;
}

.thumbanils-touch .thumb-hover {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
}

.thumbnails .thumb-hover span {
    position: absolute;
    bottom: -30px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 30px;
    font: bold 15px arial;
    line-height: 30px;
    color: #666;
    display: block;
    cursor: default;
}

.thumbnails img {
    float: left;
}

.exit-message {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 10000;
}

    .exit-message > div {
        width: 140px;
        height: 30px;
        margin: auto;
        background: rgba(0,0,0,0.5);
        text-align: center;
        font: 12px arial;
        line-height: 30px;
        color: white;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        border-radius: 10px;
    }

.zoom-icon {
    position: absolute;
    z-index: 1000;
    width: 22px;
    height: 22px;
    top: 10px;
    right: 10px;
    background-image: url(../pics/zoom-icons.png);
    background-size: 88px 22px;
}

.zoom-icon-in {
    background-position: 0 0;
    cursor: pointer;
}

    .zoom-icon-in.zoom-icon-in-hover {
        background-position: -22px 0;
        cursor: pointer;
    }

.zoom-icon-out {
    background-position: -44px 0;
}

    .zoom-icon-out.zoom-icon-out-hover {
        background-position: -66px 0;
        cursor: pointer;
    }

.bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.animated {
    -webkit-transition: margin-left 0.5s;
    -moz-transition: margin-left 0.5s;
    -ms-transition: margin-left 0.5s;
    -o-transition: margin-left 0.5s;
    transition: margin-left 0.5s;
}

.doc-name a {
    font-weight: 500;
    color: #0060CB;
}

.gallery-list {
    text-align: left;
    padding: 0 10px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}

    .gallery-list .gallery-item {
        list-style: none;
        display: block;
        margin-bottom: 15px;
    }

        .gallery-list .gallery-item:hover {
            opacity: .8;
        }

        .gallery-list .gallery-item a {
            display: block;
            float: left;
        }

            .gallery-list .gallery-item a.gallery-img img {
                width: 100%;
                max-width: 100%;
                max-height: 80px;
            }

            .gallery-list .gallery-item a.gallery-name {
                color: #333;
                font-size: 14px;
                font-family: "Roboto-Medium";
            }

h2.galery-list-header {
    font-family: "Roboto-Bold";
    font-size: 16px;
    display: block;
    padding: 0;
    margin: 20px 10px 10px 10px;
    text-transform: uppercase;
    border-bottom: 1px solid #EBC27D;
    color: #FCB71E;
    word-spacing: -1;
}

.left-menu .navbar-collapse {
    padding: 0;
}

.company-member {
    margin-bottom: 20px;
    border-bottom: 1px dotted #ddd;
    padding-bottom: 20px;
}

    .company-member img {
        max-width: 100%;
    }

    .company-member .col-sm-9 {
        padding-left: 0px;
    }

    .company-member h2.company-name {
        font-family: "Roboto-Medium";
        font-size: 16px;
        display: block;
        color: #333;
        padding: 2px 5px;
        margin-bottom: 5px;
    }

    .company-member .company-location,
    .company-member .company-phone,
    .company-member .company-task {
        font-family: "Roboto-Medium";
        display: block;
        padding: 3px 5px;
        margin-bottom: 5px;
    }

.company-task {
    margin-bottom: 0;
}

.company-member .fa {
    padding-right: 5px;
    display: inline-block;
    font-size: 18px;
    text-align: center;
    color: #003FC3;
    font-weight: normal;
}

.company-member ul {
    padding: 5px 5px 5px 35px;
}

    .company-member ul li {
        list-style: disc;
        list-style-type:;
    }

.ebook-content {
    margin-top: 0px;
    background: #A5A5A5;
}

.ebook-title {
    text-align: center;
    display: block;
    z-index: 9999;
    padding-left: 40px;
}

.back-btn {
    position: absolute;
    left: 5px;
    top: 5px;
    font-size: 15px;
    color: #222 !important;
    border: 1px solid #222;
    padding: 5px 10px;
    border-radius: 3px;
    background: #f6f6f6;
}

    .back-btn:hover {
        background: #FFF;
    }

.ebook-date {
    display: none;
}

.ul-style-none li {
    list-style: none;
}

.table-container {
    max-width: 100%;
    overflow-x: auto;
}

#googleMap {
    border: 2px solid #ECE8C8;
}

.news-group {
    margin: 0;
    float: left;
    width: 100%;
    padding-left: 15px;
    margin-bottom: 15px;
    margin-top: -50px;
}

.header-category {
    display: block;
    width: 100%;
    margin: 50px 0 0 0;
    border-top: 1px solid #8198C3;
    background: #EAF6FF;
    border-bottom: 1px solid #D0E4F1;
}

    .header-category ul {
        display: block;
        width: 100%;
        margin-left: 5px;
    }

        .header-category ul li {
            display: block;
            float: left;
            text-align: right;
            margin-right: 10px;
        }

            .header-category ul li a {
                display: block;
                padding: 5px 0;
                color: #4E4B35;
            }

            .header-category ul li:first-child a {
                font-weight: 700;
                color: #485986;
                font-size: 14px;
            }

.content-news-group {
    display: flex;
    clear: both;
    margin-top: 10px;
}

    .content-news-group .col-lastest-news {
        padding-right: 5px;
    }

        .content-news-group .col-lastest-news h2 a {
            display: block;
            font-size: 14px;
            font-weight: 500;
            font-family: "Roboto-Medium";
            line-height: 17px;
            color: #333333;
            margin-bottom: 3px;
        }

        .content-news-group .col-lastest-news .col-img {
            padding-left: 0;
            padding-right: 0;
        }

        .content-news-group .col-lastest-news img {
            max-width: 100%;
            width: 100%;
            max-height: 200px;
        }

    .content-news-group .col-older-news {
        border-right: 1px solid #dcdcdc;
        border-left: 1px solid #dcdcdc;
        padding-left: 10px;
        padding-right: 10px;
    }

        .content-news-group .col-older-news ul li a {
            display: block;
            margin-bottom: 10px;
            color: #333333;
            font-weight: 500;
        }

    .content-news-group .col-most-view-news {
        padding: 0 15px 0 10px;
    }

        .content-news-group .col-most-view-news img {
            max-width: 100%;
            width: 100%;
            max-height: 200px;
        }

        .content-news-group .col-most-view-news h2 a {
            display: block;
            font-size: 14px;
            font-family: "Roboto-Medium";
            line-height: 17px;
            color: #4E4B35;
            margin-bottom: 3px;
        }

.table-tracking-info tr th {
    font-size: 12px;
}

.table-done tr td,
.table-done tr th {
    border: 1px solid #dcdcdc;
}

.table-done tr th {
    padding: 5px;
    background: #f6f6f6;
}

.table-done .tr-status-green {
    display: none;
}

    .table-done .tr-status-green td,
    .table-done .tr-status-green th {
        border: 1px solid #D4CFAC;
        padding: 10px 5px;
        background: #FFFAD5;
    }

.block-span {
    display: inline-block;
}

.margin-b-0 {
    margin-bottom: 0px;
}

    .margin-b-0 .control-label {
        line-height: 34px;
    }

.view {
    float: left;
    font-style: italic;
    margin-top: 30px;
    color: #888888;
}

.rating span {
    font-size: 35px;
    margin-top: 5px;
    display: inline-block;
    cursor: pointer;
}

.navbar-toggle.collapsed {
    display: none;
}

.main-content .container {
    display: flex;
}

.pull-right {
    float: none;
    justify-content: flex-end;
    display: flex;
    width: 100%;
}

    .pull-right li {
        border-right: 1px dotted #4277af;
		padding: 0px 10px;
		height: 15px;
		text-align:center;
    }

.form-group {
    display: flex;
}

.news-row {
    display: flex;
}

    .news-row .news-image {
        display: block;
        float: left;
        width: 50%;
        padding-right: 15px;
    }

    .news-row .news-short-content {
        display: block;
        float: left;
        width: 50%;
    }

.page-slider .container {
    display: flex;
    flex-wrap: wrap;
}

    .page-slider .container .header-black {
        flex: 0 0 100%;
        width: 100%;
    }

.page-slider .search-box {
    display: flex;
    width: 100%;
}

.page-slider .list-post {
    display: flex;
    flex-direction: column;
}

/* Sharing */
.sharing-icon {
    display: block;
    float: right;
    margin-top: -10px;
}

    .sharing-icon > span {
        display: inline-block;
        width: 30px;
        height: 30px;
        background-repeat: no-repeat;
        background-position-y: bottom;
        cursor: pointer;
        border: 2px solid #ffffff;
    }

        .sharing-icon > span:hover {
            border: 2px solid #faa61a;
        }

.sharing-icon-fb {
    background-image: url('/Portals/_default/Skins/VNPost.Skins.FrontEnd/img/social/facebook.png');
}

.sharing-icon-tw {
    background-image: url('/Portals/_default/Skins/VNPost.Skins.FrontEnd/img/social/twitter.png');
}

.sharing-icon-linkedIn {
    background-image: url('/Portals/_default/Skins/VNPost.Skins.FrontEnd/img/social/linkedin.png');
}
.footer .list-inline > li:last-child {
    border-right:0px;
}
