/* module account */
.box-account{
    margin-bottom: 10px;
}
.box-account .img-account{
    width: 40px; height: 40px;
    margin: 0 auto;
}
.box-account ul.not-logged{
    float: left;
    clear: both;
    width: 100%;
}
.box-account ul.not-logged li{
    list-style: none
}
.box-account ul.not-logged li a{    
    background: #DCDCDC;
    padding: 10px 12px;
    color: #333;
    text-transform: uppercase;
    font-weight: bold;    
    display: block;
    margin: 5px 0;
}
.box-account ul.not-logged li a.active{
    background: #b09d7b;
    color: #ffffff;
}
.box-account .account{  
    padding: 10px 10px 0 10px;
    text-align: center;
}
.box-account .account form{
    text-align: left;
    float: left;
}
.account-login,.account-register{
    display: none
}
.account-login.active,.account-register.active{
    display: block
}
.box-account .button-register-login{    
    background: #707070;
    border: 0;
    outline: none;
    color: #FFF;
    padding:5px 10px;
    float: right;
    margin-bottom: 10px;
}

/*module banner*/
.box_module .banner{
    clear: both;
    padding: 30px 0 0;
}
.box_module .banner a {
    display: block;
    position: relative;
    overflow: hidden;
    background: #000;
}
.box_module .banner a:hover img {
    opacity: 0.8;
}

/*module slideshow*/
.slideshow{
    position:relative;
    overflow: hidden;
    background: #fff;
}
.slideshow .owl-carousel {
    margin: 0px;
}
.slideshow .owl-carousel .item .image {
    height: 100vh;
    background-size: cover;
    background-position: center;
}
.slideshow-over .owl-wrapper-outer .item{
    position: relative;
}
.slideshow-over .owl-wrapper-outer .item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}
.slideshow-over .owl-wrapper-outer .content{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: rgb(255, 255, 255);
    text-align: center;
    display: flex;
    align-items: center;
}
.slideshow-over .owl-wrapper-outer .content .title{
    position: relative;
    display: block;
    font-size: 58px;
    line-height: 1.5;
    font-weight: 500;
}
.slideshow-over .owl-wrapper-outer .owl-item.active .content .title{
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.slideshow-over .owl-wrapper-outer .content .description {
    position: relative;
    display: block;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0 auto 20px;
}
.slideshow-over .owl-wrapper-outer .owl-item.active .content .description{
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.slideshow-over .owl-wrapper-outer .content .view-more {
    position: relative;
    display: inline-block;
    z-index: 8;
    white-space: nowrap;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
}
.slideshow-over .owl-wrapper-outer .owl-item.active .content .view-more {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.slideshow-over .owl-wrapper-outer .content .view-more a{
    color: #fff;
    transition: all 0.2s;
    display: block;
    padding: 10px 35px;
    border: 0;
    background-color: #000;
    border-radius: 50px;
}
.slideshow-over .owl-wrapper-outer .content .view-more a:hover{
    background-color: #BD3C0B;
}
.slideshow-over #slideshow .owl-buttons [class *='owl-']{
    position: absolute;
    top: 50%;
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, -20);
    visibility: visible;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.31);
    border-radius: 0;
    display: block;
    z-index: 100;
    transition: all 0.3s ease;
}
.slideshow-over:hover #slideshow .owl-buttons [class *='owl-']{
    opacity: 1;
    visibility: inherit;
}

.slideshow-over:hover #slideshow .owl-buttons .owl-prev{
    left: 10px;
}
.slideshow-over:hover #slideshow .owl-buttons .owl-next{
    right: 10px;
}
.slideshow-over #slideshow .owl-buttons [class *='owl-']:hover {
    background-color: #000;
}
.slideshow-over #slideshow .owl-buttons [class *='owl-']:before {
    font-family: 'FontAwesome';
    display: block;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #333;
}
.slideshow-over #slideshow .owl-buttons [class *='owl-']:hover:before {
    color: #fff;
}
.slideshow-over #slideshow .owl-buttons .owl-prev:before {
    content: '\f104';
}
.slideshow-over #slideshow .owl-buttons .owl-next:before {
    content: '\f105';
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@media (min-width: 1200px) {
    .slideshow-over .owl-wrapper-outer .content .description{
        max-width: 80%;
    }
}

/* module carousel*/
.box.module-carousel {
    padding: 35px 0;
    clear: both;
}
.box.module-carousel .owl-carousel {
    background: transparent;
    margin: 0;
}
.box.module-carousel .owl-item .item{
    text-align: center;
    margin-right: 10px;
    margin-left: 10px;
    overflow: hidden;
    padding: 15px 0;
    display: block;
    position: relative;
}
.box.module-carousel .owl-item .item img {
    width: auto;
    margin: auto;
    max-width: 100%;
    display: inline-block;
    max-height: 100%;
    transition: all 0.3s
}
.box.module-carousel .owl-item .item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

/* module note sale */
.note-sale {
    padding: 35px 0;
    background: #fff;
}
.inner-note-sale {
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
}
.note-sale-content {
    border-bottom: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
    min-height: 120px;
    padding: 0 0 15px;
    width: 100%;
    float: left;
    padding-right: 10px;
}
.note-sale-content .img {
    float: left;
    width: 45%;
    text-align: center;
}
.note-sale-content .img img {
    max-height: 64px;
}
.note-sale-content .img h3 {
    font-size: 15px;
    font-weight: bold;
    margin: 10px 0 0;
}
.inner-note-sale-content {
    float: left;
    margin-top: 15px;
    width: 55%;
    color: #888;
}
.inner-note-sale-content {
    float: left;
    margin-top: 15px;
    width: 55%;
    color: #888;
}

@media (min-width: 920px) {
    .inner-note-sale .col-sm-4:nth-child(2n+1){
        clear: both;
    }
}
@media (min-width: 1200px) {
    .inner-note-sale .col-md-4:nth-child(3n+1){
        clear: both;
    }
    .inner-note-sale .col-sm-4:nth-child(2n+1){
        clear: unset;
    }
}

/* module categories combopro*/
.product-by-type .tab-content {
    border: 0;
    padding: 0;
    min-height: unset;
    margin-bottom: 0;
}

/* module contact us*/
.contact_us_home {
    padding: 60px 0 45px;
    width: 100%;
    float: left;
    position: relative;
    text-align: center;
}
.contact_us_home h2 {
    text-transform: uppercase;
    color: #fff;
    font-size: 40px;
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: 700;
}
.contact_us_home p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 20px;
    white-space: pre-wrap;
}
.form-newsletter input[type="email"] {
    height: 40px;
    border: none;
    vertical-align: top;
    padding: 5px 15px;
    background: #fff;
    color: #999;
    width: 35%;
    font-size: 13px;
    display: inline-block;
    border-radius: 0;
}
.form-newsletter button.send-mail {
    height: 40px;
    min-width: 105px;
    margin-left: -4px;
    text-transform: uppercase;
    font-size: 12px;
    transition: 0.3s all ease 0s;
    font-weight: 500;
    color: #fff;
    background: #000;
    border-radius: 0;
    border: 0;
}
.form-newsletter button.send-mail:hover{
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c;
}

/* module faq: nhận xét khách hàng*/
.faq {
    width: 100%;
    float: left;
    padding: 60px 0;
    background-image: url(../theme/aptech/image/wallpaper-4k.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.faq:before{
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    right: 0;
    background: rgba(10, 15, 28, 0.7);
    display: block;
    height: 100%;
}
.faq .box-heading h4, .faq .box-heading .about_desc{
    text-transform: uppercase;
    margin: 0 0 30px 0;
    font-weight: normal;
    font-size: 30px;
    color: #fff;
    text-align: center;
}
.faq .box-heading .about_desc{
    font-size: 20px;
    line-height: 30px;
    display: block;
}
.faq .faq_slide{
    background-color: transparent;
}

.faq .media-body {
    cursor: pointer;
    padding: 30px;
    margin: 0 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease;
    text-align: center;
    background-color: #fff;
}
.faq .media-body:hover{
    background-color: #86bc42;
}
.faq .media-body .testi-inner{
    width: 100%;
    height: 235px;
    overflow: hidden;
    transition: all 0.8s ease;
}
.faq .media-body .testi-content p {
    display: none;
    text-align: justify;
    font-size: 13px;
    line-height: 24px;
    height: 72px;
    color: #fff;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all 0.8s ease;
}
.faq .media-body:hover .testi-content p {
    display: block;
}
.faq .media-body .testi-meta h4 {
    font-size: 18px;
    color: #49575f;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.faq .media-body:hover .testi-meta h4{
    color: #fff;
    margin-bottom: 10px;
}
.faq .media-body img.testi-thumb {
    border-radius: 50%;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    margin-bottom: 15px;
    transition: all 0.8s ease;
}
.faq .media-body:hover img.testi-thumb{
    max-width: 90px;
    margin-bottom: 10px;
}

.faq .media-body .testi-link a{
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    color: #fff;
    background-color: #a4abaf;
    display: inline-block;
    transition: all 0.5s ease;
}
.faq .media-body .testi-link a i{
    line-height: 30px;
}
.faq .media-body:hover .testi-link a{
    color: #a4abaf;
    background-color: #fff;
}
.faq .owl-controls .owl-buttons>div{
    position: absolute;
    font-size: 24px;
    border: 2px solid;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 53px;
    border-radius: 50%;
    opacity: 0;
    top: 50%;
    margin-top: -25px;
    padding: 0;
    transition: all 0.3s linear;
    cursor: pointer;
    z-index: 10;
    text-shadow: none;
    color: #fff;
}

.faq .owl-controls .owl-buttons>div i{
    line-height: 53px;margin-top: 0;
}
.faq_slide.owl-carousel:hover .owl-buttons>div{
    opacity: 1;
}
.faq_slide.owl-carousel .owl-buttons .owl-prev{
    left: -30px;
}
.faq_slide.owl-carousel .owl-buttons .owl-next{
    right: -30px;
}
.faq_slide.owl-carousel:hover .owl-buttons .owl-prev{
    left: -50px;
}
.faq_slide.owl-carousel:hover .owl-buttons .owl-next{
    right: -50px;
}
/*module form_change*/
.form-change .box-content {
    width: 100%;
    display: inline-block;
}
.form-change button.close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    color: #fff;
    opacity: 1;
    width: 35px;
    height: 30px;
}
.form-change .modal-body {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}
.form-change .text-center.title-form {
    background: #000;
    position: relative;
    margin: -15px -15px 30px;
}
.form-change h2.title-form {
    font-size: 23px;
    color: #fff;
    margin: 0;
    padding: 10px 0;
}
.form-change p.subtitle {
    color: #fff;
    margin: 0;
    padding: 0 0 10px;
}
.form-change td {
    color: #333;
    font-weight: 700;
}
.form-change input[type='text'], input[type='password'], textarea{
    margin-bottom: 15px;
    color: #333;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ddd;
    font-weight: 400;
}
.form-change #button-send-book {
    background: #000;
}
[id *= column-] .form-change{
    padding: 30px 0;
}

/* module info_home */


/* module news featured */
.box-news-featured.pos-content .box-news-content .image{
    float: left;
    width: 30%;
    padding: 10px;
    border: 2px solid #b09d7b;
    border-radius: 5px;
}
.box-news-featured.pos-content .box-news-content .content{
    float: left;
    width: 70%;
    padding: 10px;
}
.box-news-featured .box-news-content .name a{
    color: #000;
    display: block;
    text-transform: capitalize; 
    font-weight: 700;
    font-size: 20px;
}
.box-news-featured .box-news-content a:hover{
    color: #b09d7b;
}
.box-news-featured .box-news-content .date_added{
    color: #7f7f7f;
    font-style: italic;
}

.box-news-featured .box-news-content .list-news-featured li{
    display: block;
    width: 100%;
    border-bottom: 1px solid #ececec;
    padding: 10px 0;
    float: left;
    clear: both;
    position: relative;
}
.box-news-featured .box-news-content .list-news-featured li>i{
    position: absolute;
    top: 10px;
    right: 0;
    cursor: pointer;
    transition: all 0.5s;
}
.box-news-featured .box-news-content .list-news-featured li>i.open{
    transform: rotate(180deg);
}
.box-news-featured .box-news-content .list-news-featured li .small-content{
    display: none;
    float: left;
    clear: both;
}
.box-news-featured. .box-news-content .list-news-featured li img{
    width: 100px;
    float: left;
}
.box-news-featured .box-news-content .list-news-featured li .small-short-content{
    width: calc(100% - 100px);
    float: left;
    height: 80px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre-wrap;
    display: -webkit-box;
    margin: 10px 0;
    padding: 0 10px;
}
/* module  news-latest*/
.box-news-latest{
    display: block;
    clear: both;
    padding: 30px 0 60px;
    width: 100%;
    float: left;
    background: #fff;
}
.box-news-latest .owl-item .item{
    margin: 0 15px 15px;
}
.box-news-latest .item .box-news-content {
    box-shadow: 0px 3px 10px 0px rgba(34, 34, 34, 0.3);
    background: #fff;
}
.box-news-latest .item .box-news-content .info-p {
    padding: 20px 15px 30px;
}
/* box news content */
.box-news-content .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}
.box-news-content .image img{
    width: 100%;
    transition: all 0.3s;
}
.box-news-content .image:hover img {
    opacity: 0.8;
}
.box-news-content p.date {
    color: #888888;
    margin-bottom: 0;
    font-size: 13px;
}
.box-news-content .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 5px 0 10px;
}
.box-news-content .name a {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
}
.box-news-content .name a:hover{
    color: #000;
}
.box-news-content .excerpt{
    color: #888888;
    margin-bottom: 10px;
}
.box-news-content .continue_red a {
    color: #000;
    font-size: 13px;
    text-transform: capitalize;
}
.box-news-content .continue_red a:after {
    content: "\f105";
    font-family: "FontAwesome";
    padding: 5px;
    vertical-align: middle;
}
.box-news-content ul li {
    line-height: 19px;
}
#content .box-news-content, .slide-news-related .box-news-content {
    box-shadow: 0px 3px 10px 0px rgba(34, 34, 34, 0.3);
    background: #fff;
}
#content .box-news-content .info-p, .slide-news-related .box-news-content .info-p {
    padding: 10px 15px;
}

/* module our team */
.our-team {
    background-color: #333;
    color: #fff;
}
.our-team:not(.our-team-column) {
    width: 100%;
    float: left;
    padding: 50px 0;
}
.our-team:not(.our-team-column) .box-team-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
}
.our-team:not(.our-team-column)  .inner-team-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-basis: 100%;
    margin-top: 10px;
    text-align: justify;
    text-align-last: center;
}
.our-team:not(.our-team-column) .inner-team-content p {
    max-width: 65%;
    margin: 0 auto;
    font-size: 16px;
    position: relative;
}
.our-team:not(.our-team-column) .image {
    margin-right: 30px;
}
.our-team:not(.our-team-column) .image img {
    border-radius: 50%;
}
.our-team:not(.our-team-column) .inner-team-info h3 {
    font-size: 16px;
    font-weight: 700;
}
.our-team-column .slide-our-team .item {
    padding: 0 18px;
    width: 100%;
    float: left;
}
.our-team-column .slide-our-team .item .image {
    height: 60px;
    width: 60px;
    float: left;
    margin: 10px 0 0 0;
}
.our-team-column .slide-our-team .item .inner-team-info {
    float: left;
    text-align: left;
    padding: 0 0 0 15px;
}
.our-team-column .slide-our-team .item .inner-team-info h3 {
    font-size: 15px;
    margin-bottom: 0;
    color: #fff;
}
.our-team-column .slide-our-team .item .inner-team-info p{
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
}
.our-team-column .slide-our-team .item .inner-team-content {
    margin: 5px 0 0 0;
    float: left;
    width: 100%;
    text-align: left;
    color: #888888;
}
.our-team-column .slide-our-team.owl-carousel .owl-buttons {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 15px;
}
.our-team-column .slide-our-team.owl-carousel .owl-buttons [class*=owl-] {
    position: unset;
    display: inline-block;
}

/* special product */
.product-by-type.box-pro-special {
    background: #fff;
    margin: 0;
}

/* latest product */
.product-by-type.new-product {
    margin: 30px 0;
}

/* featured product */
.featured-product:not(.featured-product-column) {
    padding: 30px 0;
    margin-bottom: 0;
}
.featured-product .box-count-time {
    text-align: center;
    margin-bottom: 30px;
}
.featured-product span.cdown {
    display: inline-block;
    margin-right: 15px;
}
.featured-product span.cdown:last-child {
    margin-right: 0;
}
.featured-product span.cdown strong {
    background: #000000;
    color: #fff;
    height: 60px;
    width: 60px;
    line-height: 60px;
    margin-bottom: 5px;
    display: inline-block;
    font-size: 24px;
}
.featured-product span.cdown p {
    text-transform: uppercase;
    margin-bottom: 0;
}

/*module product by category*/
.product-by-type.product-by-cat .box-content > .row > .col-lg-9 > .row{
    margin-right: 0;
}
.product-by-type.product-by-cat .box-content > .row > .col-lg-9 > .row > div{
    padding: 0;
}
.product-by-type.product-by-cat .box-content > .row > .col-lg-9 > .row .box-product_{
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #ebebeb;
    border-right: 0;
    border-bottom: 0;
}
[class *= content-] .product-by-type.product-by-cat .col-lg-8 > .row > div:nth-child(2n + 1){
    clear: both;
}
[id *= content_] .product-by-type.product-by-cat .col-lg-9 > .row > div:nth-child(3n + 1){
    clear: both;
}
/* module product latest*/
.box-product-latest .first{
    width: 35%; 
    float: left
}
.box-product-latest .gird-product{
    width: 65%; 
    float: left;
}
.box-product-latest .gird-product .product-item{
    width: 25%;
    float: left;
    display: inline-block;
    position: relative;
    border: 1px solid #ebebeb;
    border-right: 0;
    border-bottom: 0;
}
.box-product-latest .product-item{
    text-align: center;padding: 3px;
}

/* module product by category */
.box-heading ul.list-child {
    position: absolute;
    top: 10px;
    right: 0;
}
.box-heading ul.list-child li {
    display: inline-block;
    padding: 0 10px;
    font-size: 13px;
}

/*module project latest : mô tả dưới slide */
.new-news.project .banner-image{
    position: relative;
} 
.new-news.project .banner-image:before{
    position: absolute;
    content: "";
    background-color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    opacity: 1;
    transition: all  0s ease;
    border-radius: 100%;
}
.new-news.project figcaption:hover .banner-image:before{
    background-color: transparent;
    opacity: 0;
    transform: scale(1);
    transition: all  0.8s ease;
}
.new-news.project .banner-content{
    position: absolute;
    bottom: auto;
    margin: 0 auto;
    left: 7.5%;
    right: auto;
    top: 28%;
    text-align: left;
    color: #fff;
}
.new-news.project .banner-content span{
    font-size: 26px;
    line-height: 30px;
    display: block;
    padding-bottom: 4px;
    font-weight: 700;
}
.new-news.project .banner-content .link{
    padding-top: 17%;
    display: block;
    font-size: 14px;
    color: #c0aa83;
    text-decoration: underline;
}

/* module support online*/
#support-online {
    background-color: #f8f8fa;
    padding: 30px;
    clear: both;
}
#support-online.column {
    background-color: unset;
    padding: unset;
    clear: both;
}
#support-online h2{
    text-align: center;
}

#support-online .box-inner{
    border: 1px solid #e8e8e8;
    padding: 10px;
    align-items: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    display: flex;
    background: #fff;
    margin-bottom: 30px;
}
#support-online.column .box-inner{
    display: block;
    border: none;
}
#support-online .box-inner .image{
    width: 30%;
    float: left;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    max-height: 100px;
    margin: 0;
    display: table-cell;
    position: relative;
    max-width: 320px;
}
#support-online.column .box-inner .image{
    width: 100%;
    float: unset;
    text-align: center;
    display: block;
}
#support-online .box-inner .description {
    width: 70%;
    float: left;
    max-width: unset;
    margin-left: 15px;
    display: table-cell;
    position: relative;
    vertical-align: top;
}
#support-online.column .box-inner .description{
    width: 100%;
    display: block;
    margin-left: 0;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
}
#support-online .box-inner .description h4{
    color: #333;
    line-height: 1em;
    font-weight: bold;
}
#support-online.column .box-inner ul{
    display: flex;justify-content: center;align-items: center;
}
#support-online .box-inner ul li{
    margin: 5px 15px 5px 0;
    line-height: 1;
    vertical-align: middle;
}
#support-online.column .box-inner ul li{
    display: inline-block;
    float: left;
}
#support-online .box-inner ul li i{
    width: 20px;
}
#support-online .box-inner .phone{
    color: #35AC19;
}
#support-online .box-inner .email{
    color: #D93025;
}
#support-online .box-inner .skype{
    color: #0C65A4;
}
#support-online .box-inner .facebook{
    color: #4267B2;
}

/* manufacturer */
.box.module-manufacturer {
    margin: 0;
    background: #ffffff;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    height: 130px;
    line-height: 130px;
}
.module-manufacturer-column ul {
    padding: 15px;
}
.module-manufacturer-column ul li {
    margin-bottom: 5px;
}

