﻿/*#region Basic */
html * {
    box-sizing: border-box;
}

body {
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
}

.img-fluid {
    width: 100%;
}
/*#endregion */

/*#region heading */
#article-detail h1,
#product-detail h1,
#contact h1 {
    text-transform: uppercase;
    padding: 15px 0;
    font-size: 25px;
}

    #article-detail h1:before,
    #product-detail h1:before,
    #contact h1:before {
        content: "";
        width: 15px;
        height: 35px;
        background-color: #825f43;
        border-radius: 10px;
        display: block;
        float: left;
        margin-right: 10px;
    }

h3.header {
    text-transform: uppercase;
    font-weight: bold;
    color: #376afd;
    text-decoration: underline overline;
}

/*#endregion */

/*#region dùng chung */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

.add-cart .button {
    background-color: #825f43;
    color: #fff;
}

    .add-cart .button:hover {
        background-color: #fff;
        color: #825f43;
        border: 1px solid #825f43;
    }

.product-box {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

    .product-box:hover {
        box-shadow: 2px 2px 5px 2px rgba(0,0,0,.15)
    }

    .product-box .product-thumnail {
        position: relative;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .product-box .product-info {
        text-align: center;
    }

        .product-box .product-info .product-name {
            color: #376afd;
            font-weight: bold;
        }

.product .product-box .product-info .product-name a:hover {
    text-decoration: none
}

.product-box .product-info .price-box .special-price {
    color: red;
    font-weight: bold;
}

.product-box .product-info .price-box .old-price {
    color: orange;
    text-decoration: line-through;
}

.product-box .product-info button {
    background-color: #825f43;
    color: #fff;
}

    .product-box .product-info button:hover {
        background-color: #fff;
        color: #825f43;
        border: 1px solid #825f43;
    }


/*#endregion */

/*#region Header */
header {
    background-color: #fff;
    color: #376afd;
    padding-top: 30px;
    padding-bottom: 10px;
}

    header .support-search {
        margin: 20px 0px 8px 48px;
        line-height: 1.5;
        color: #ededed;
    }

        header .support-search h5 {
            display: inline-flex;
            font-size: 14px;
            color: #898989;
        }

        header .support-search span {
            font-size: 14px;
            color: #825f43;
            font-weight: bold;
        }

    header .search-ip {
    }

        header .search-ip .search {
            border: 1px solid #825f43;
        }

            header .search-ip .search.search-category {
                width: 150px;
                color: #898989;
                font-size: 13px;
            }

        header .search-ip .button {
            border: 1px solid #825f43;
            background-color: #825f43;
            color: #fff;
        }

    header .account-cart {
        text-align: center;
        padding-top: 10px;
    }

        header .account-cart a {
            color: #898989;
            font-size: 13px;
        }

            header .account-cart a:hover {
                text-decoration: none;
                color: #dc3333;
            }

        header .account-cart img {
            display: block;
            margin-bottom: 20px;
        }

        header .account-cart .account {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: block;
            overflow: hidden;
        }

            header .account-cart .account img {
                width: 100%;
                height: 100%;
            }

        header .account-cart .cart span {
            background-color: #ff9d06;
            color: #fff;
            line-height: 24px;
            border-radius: 50%;
            display: block;
            width: 24px;
            height: 24px;
            position: absolute;
            top: -5px;
            right: 50%;
            text-align: center;
        }

/*#region minicart */
.mini-cart {
    position: relative;
}

    .mini-cart .contain-main {
        opacity: 0;
        z-index: 9999;
        position: absolute;
        transition: all .4s;
        right: 0;
        height: auto;
        background-color: #fff;
        box-shadow: 0 0 15px -5px rgba(0,0,0,0.4);
        padding: 15px;
        border-radius: 5px;
        width: 350px;
        display: none;
    }

@media only screen and (min-width: 768px) {
    .mini-cart:hover .contain-main {
        opacity: 1;
        height: auto;
        display: block;
    }
}


/*#endregion */

/*#region list-item-cart */

.list-item-cart .input-group {
    width: 80px !important;
}

.list-item-cart {
    padding: 0 5px;
}

    .list-item-cart li {
        height: 100px;
        border-bottom: 1px dotted #ccc;
        padding: 15px 0;
    }

        .list-item-cart li .img-avatar {
            width: 55px;
            display: block;
        }

            .list-item-cart li .img-avatar .img-thumbnail {
                background-color: #fff;
                border: 1px solid #dee2e6;
                border-radius: 0.25rem;
                max-width: 100%;
                height: auto;
            }

        .list-item-cart li .price {
            color: red;
            font-weight: bold;
        }

        .list-item-cart li .mini-right {
            height: 100px;
        }

        .list-item-cart li .form-control {
            min-height: 32px !important;
        }

        .list-item-cart li .number {
            margin-top: 5px;
            text-align: left;
            font-size: 13px;
            color: #898989;
        }

        .list-item-cart li .close-cart {
            padding: 0;
            line-height: 70px;
        }

            .list-item-cart li .close-cart .button {
                padding: 7px;
            }

.price-mini {
    padding: 5px 20px;
    height: 50px;
    line-height: 40px;
}

    .price-mini .pull-left {
        font-weight: bold;
        font-size: 1.1em;
    }

    .price-mini .pull-right {
        font-weight: bold;
        font-size: 1.2em;
        color: #dc3333;
    }

.thanh-toan {
    padding: 0 20px;
}

    .thanh-toan a {
        width: 130px;
        float: left;
        margin-right: 5px;
        color: #fff !important;
    }

        .thanh-toan a.btn:last-child {
            color: #dc3333 !important;
            font-weight: bold;
            background-color: #fff;
            border: 1px solid #dc3333;
        }
/*#endregion */

/*#endregion */

/*#region Nav */
nav#main-menu {
    background-color: #376afd !important;
    padding: 0 1rem;
    margin-bottom: 10px;
}

    nav#main-menu .navbar-toggler {
        margin: 5px 0;
        border-color: #fff;
    }

    nav#main-menu ul {
        background-color: #376afd;
    }

        nav#main-menu ul li {
            padding: 0 5px;
        }

            nav#main-menu ul li.active,
            nav#main-menu ul li:hover {
                background-color: #825f43;
            }

            nav#main-menu ul li a {
                color: #fff;
            }

                nav#main-menu ul li a .fa {
                    font-size: 25px;
                    color: #fff;
                    margin-right: 10px;
                }

    nav#main-menu .dropdown-item:hover {
        background-color: #825f43 !important;
        color: #fff !important;
    }

@media(max-width: 991px) {
    nav #main-menu ul li {
        padding-left: 15px;
    }
}
/*#endregion */

/*#region main-carousel */
#carousel {
    margin-top: 20px;
}

    #carousel #main-carousel .control .fa {
        font-size: 40px;
        color: #825f43;
    }

/*#endregion */

/*#region productnew */
.product {
    margin-top: 20px;
}

    .product .container {
        border-bottom: 1px solid #ddd;
    }

    .product .title-header {
        color: #376afd;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 30px;
        border-bottom: 1px dotted #ddd;
    }

/*#endregion */

/*#region partner */
#partner {
}

    #partner h3 {
        text-transform: uppercase;
        font-weight: bold;
        color: #376afd;
        text-decoration: underline overline;
    }

/*#endregion */

/*#region footer */
footer {
    background-color: #825f43;
    color: #fff;
    padding-top: 50px;
}

    footer .map {
        border-radius: 5px;
        border: 3px solid #ffffff;
        margin: 5px auto;
        line-height: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    footer .text-footer {
        margin-top: 20px;
        padding-bottom: 20px;
        text-align: center;
    }


/*#endregion */

/*#region Contact */

#contact .title-contact,
#about .title-contact {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    color: #28aadf;
    font-size: 2em;
    position: relative;
}

    #contact .title-contact::before,
    #about .title-contact::before {
        content: '';
        width: 60px;
        height: 3px;
        position: absolute;
        top: 100%;
        left: 45%;
        display: block;
        border-radius: 15px;
        border-bottom: 1px solid #dc3333;
    }

#contact .form-group .form-control {
    border: 1px solid #1f9cd0;
}

    #contact .form-group .form-control:focus {
        border: 1px solid red;
    }

#contact .form-group textarea.form-control {
    border-radius: 20px;
}

#contact .form-group.sent {
    font-size: 1.3em;
}

    #contact .form-group.sent .btn {
        border-radius: 5px;
    }

#contact .info p,
#about .info p {
    margin-bottom: 20px !important;
    color: #777;
}

    #contact .info p i,
    #about .info p i {
        color: #dc3333;
        margin-right: 5px;
    }


    #contact .info p a,
    #about .info p a {
        color: #dc3333;
        margin-left: 5px;
    }




/*#endregion */

/*#region trang giỏ hàng */
#shopping-cart table {
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

    #shopping-cart table thead tr th {
        padding: 10px 0;
    }

    #shopping-cart table th,
    #shopping-cart table td {
        vertical-align: middle;
        text-align: center;
        padding: 10px 5px;
    }

    #shopping-cart table tbody tr {
        border-bottom: 1px dotted #ddd;
    }

        #shopping-cart table tbody tr .img-cart img {
            width: 100px;
            height: auto;
            border: 1px solid #ddd;
            padding: 2px
        }

        #shopping-cart table tbody tr .quantity .input-quantity {
            float: left;
            width: 50px;
        }

.table-orther {
    border: 0;
}

/*#endregion */

/*#region article-list */
#article-list {
}

    #article-list .container {
    }

        #article-list .container .row {
            padding: 10px 0;
            margin: 0;
        }

            #article-list .container .row:hover {
            }

            #article-list .container .row:last-child:hover {
            }

            #article-list .container .row .btn {
                background-color: #825f43;
                font-weight: bold;
                margin-top: 15px;
            }

                #article-list .container .row .btn:hover {
                    color: #fff;
                }

            #article-list .container .row img {
                box-shadow: #bbb 2px 2px 2px;
            }
/*#endregion */

/*#region article-detail */
#article-detail {
}

    #article-detail .desc {
    }

        #article-detail .desc img {
            width: 100%;
            float: left;
            margin-right: 15px;
            margin-bottom: 15px;
        }

        #article-detail .desc span {
            font-size: 18px;
            font-style: italic;
        }

    #article-detail .content img {
        width: 50%;
        display: block;
        margin: 15px auto;
        padding: 0.25rem;
        background-color: #fff;
        border: 1px solid #bbb;
        border-radius: 0.25rem;
    }


/*#endregion */

/*#region tin tức liên quan */

#article-orther {
    margin-top: 40px;
}

    #article-orther ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #article-orther ul li a.title {
            display: block;
            color: #007bff;
            font-weight: bold;
            text-align: center;
        }

        #article-orther ul li a.artist {
            color: #808080;
            font-size: 0.8em;
        }

        #article-orther ul li a:hover {
            color: #376afd;
            text-decoration: none;
        }

/*#endregion */

/*#region sản phẩm liên quan */

#product-related {
    margin-top: 40px;
}

    #product-related ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #product-related ul li a.title {
            display: block;
        }

        #product-related ul li a.artist {
            color: #808080;
            font-size: 0.8em;
        }

        #product-related ul li a:hover {
            color: #376afd;
            text-decoration: none;
        }

/*#endregion */

/*#region trang thanh toán */
#checkout-cart .checkout-outer {
    border: 1px solid #ddd;
    margin: 0 0 10px 0;
}

    #checkout-cart .checkout-outer .checkout-header {
        background-color: #825f43;
        color: #fff;
        padding: 10px;
    }

    #checkout-cart .checkout-outer .checkout-content {
        margin-top: 20px;
    }

        #checkout-cart .checkout-outer .checkout-content .pay {
            display: block !important;
        }


/*#endregion */

/*#region Sản phẩm chi tiết */
#product-detail .product-img {
}

    #product-detail .product-img .product-img-avatar {
        width: 50%;
        display: block;
        margin: 15px auto;
        padding: 0.25rem;
        background-color: #fff;
        border: 1px solid #bbb;
        border-radius: 0.25rem;
    }

        #product-detail .product-img .product-img-avatar img {
            width: 100%;
        }

    #product-detail .product-img ul.product-img-thumb {
        list-style: none;
    }

        #product-detail .product-img ul.product-img-thumb li {
            width: 50%;
            display: block;
            margin: 15px 5px;
            padding: 0.25rem;
            background-color: #fff;
            border: 1px solid #bbb;
            border-radius: 0.25rem;
            width: 50px;
            float: left;
        }

        #product-detail .product-img ul.product-img-thumb a {
            float: left;
        }

        #product-detail .product-img ul.product-img-thumb img {
            width: 100%;
            height: auto;
        }

#product-detail .product-info .title {
    color: #825f43;
    font-weight: bold;
}

#product-detail .content {
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 5px;
    margin-bottom: 30px;
}

/*#endregion */


.page-link.active {
    background-color: #376afd;
    color: #fff;
    border: 1px solid #dee2e6;
}

.thumb-autocomplete {
    width: 50px;
    height: 50px;
}

.highlight-autocomplete {
    background-color: #fff200;
}

.ui-autocomplete {
    z-index: 9999;
    left: 40%;
    top: 120px;
    width: 450px;
}

@media (max-width: 768px) {
    .ui-autocomplete {
        top: 220px;
        left: 25%;
    }
}

/*#region Phone coppy trên mạng */
* {
    box-sizing: border-box;
}

.quick-alo-phone .quick-alo-show {
    visibility: visible;
}

.quick-alo-phone {
    position: fixed;
    visibility: hidden;
    background-color: transparent;
    height: 200px;
    width: 82px;
    height: 64px;
    right: 150px;
    top: 60%;
    cursor: pointer;
    z-index: 200000 !important;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
}

    .quick-alo-phone .quick-alo-green .quick-alo-ph-circle {
        border-color: #00A1FF;
        opacity: 0.5;
    }

.quick-alo-ph-circle {
    width: 160px;
    height: 160px;
    top: 50px;
    left: 50px;
    border: 2px solid #00A1FF;
    background-color: transparent;
    border-radius: 100%;
    opacity: .1;
    animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    transform-origin: 50% 50%;
}

.quick-alo-phone .quick-alo-green .quick-alo-ph-circle-fill {
    background-color: rgb(246, 202, 98);
    opacity: .75 !important;
}

.quick-alo-ph-circle-fill {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 30px;
    left: 30px;
    background-color: rgba(0, 161, 255, 0.5);
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .1;
    animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-img-circle {
    background-color: #00A1FF;
}

.quick-alo-ph-img-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50px;
    left: 50px;
    background: #00A1FF url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABrklEQVRYR82XjTEEQRCFX0dABlwEiAARkAEyIAJEoERACETARUAIJwIyeOqptfbm5qeP3lpTdVVXVzPd3/R0v+4zTLxsYv/4XwAkrwDsV6JyZmaLyKj1ESB5AOCpYfzazAQZttYFuDWz8zDvwE8OkNwF8NIwvjCz2SgAMkqSDuOzyDxYqgKSrwB2GhBKxHsHqGtLCiDDJ42Tj2Z27LLu2JQCnAK4a5x7M7Nth23XlhRgE8B74+SemempQtaKEpKsPUPo++sGOYCSIIU7zwJ05ficSLLkV6H/CIn7wEi2GRVkOVwFixEoREE/hz9DsR2TVKkp2zeSsI9bBUNnJNV4bhIA5cFhVCk2B5JCWVYhSEopjwAob6qa4QGQOKkqcj1iJSdIpmoqWEHIhr7Ph1BNgC4haxAPAC7UITPOc1UrCOXR12TlAnBAyKhAdHvPUg4pIn6AAYQc1ebG8QC+LXfD66XHU2HP7yKQlKhGODWu1gCTY/g7wCAaendNyltrRCQOIAERjCc/ejV1V4H3dp2ES4jU1vVJpXxpogoHSEE7oOEIp9G+/3c1OkArcpMDfAIqL6EhVS6JOAAAAABJRU5ErkJggg==") no-repeat center center;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .99;
    animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
    transform-origin: 50% 50%;
}

.quick-alo-phone .quick-alo-green .quick-alo-hover .quick-alo-ph-img-circle,
.quick-alo-phone.quick-alo-green:hover .quick-alo-ph-img-circle {
    background-color: #ff0101;
}

@-moz-keyframes quick-alo-circle-anim {
    0% {
        -moz-transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1;
        -moz-opacity: .1;
        -webkit-opacity: .1;
        -o-opacity: .1
    }

    30% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5;
        -moz-opacity: .5;
        -webkit-opacity: .5;
        -o-opacity: .5
    }

    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6;
        -moz-opacity: .6;
        -webkit-opacity: .6;
        -o-opacity: .1
    }
}

@-webkit-keyframes quick-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -webkit-opacity: .1
    }

    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -webkit-opacity: .5
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-o-keyframes quick-alo-circle-anim {
    0% {
        -o-transform: rotate(0) kscale(.5) skew(1deg);
        -o-opacity: .1
    }

    30% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        -o-opacity: .5
    }

    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        -o-opacity: .1
    }
}

@-moz-keyframes quick-alo-circle-fill-anim {
    0% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        -moz-transform: rotate(0) -moz-scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-webkit-keyframes quick-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-o-keyframes quick-alo-circle-fill-anim {
    0% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-moz-keyframes quick-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes quick-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-o-keyframes quick-alo-circle-img-anim {
    0% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.phone {
    position: fixed;
    bottom: 100px;
    right: -20px;
    z-index: 1021;
}


/*#endregion */
