﻿/*===== Main =====*/
:root {
    --font-family:Tahoma, Arial, Helvetica, sans-serif;
    --font-size:14px;
    --color-text:#111;
    --color-text-hover:#fc0f8f;
    --color-primary:#fc0f8f;
    --color-primary-hover:#cd0471;
    --color-red:#ea0000;
    --color-blue:#0094da;
    --color-orange:#fd6e1d;
    --color-border:#e0e0e0;
}
body {
    font-family:var(--font-family);
    font-size:var(--font-size);
    font-weight:400;
    color:var(--color-text);
    line-height:1.4;
    background:url(../images/bg.jpg);
}
h1,h2,h3,h4,h5,h6{
    font-size:100%;
    line-height:1.4;
}
strong,b{
    font-weight:700;
}
a{
    color:var(--color-text);
}
a:hover,
a:active,
a:focus{
    color:var(--color-text-hover);
    text-decoration:none;
}
.row{
    margin-left:-10px;
    margin-right:-10px;
}
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9,
.container,.navbar{
    padding-left:10px;
    padding-right:10px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.5);
}
.form-control{
    font-family:var(--font-family);
    font-size:var(--font-size);
    -webkit-border-radius: 3px;
            border-radius: 3px;
    box-shadow:none!important;
}
select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select:not([multiple]){
    background: url(../images/select-arrow.png) right center #fff no-repeat!important;
    padding-right: 23px!important;
}
select option {
    padding:5px!important;
}
select::-webkit-scrollbar {
    width:.625rem;
}
select::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(193,193,193,.3);
}
select::-webkit-scrollbar-thumb {
    background: rgba(193,193,193,.8);
    -webkit-box-shadow: inset 0 0 6px rgba(193,193,193,.5);
}
select.form-control:not([size]):not([multiple]){
    height:auto!important;
}
input[type="radio"], input[type="checkbox"] {
    margin-top: 0;
    vertical-align: top;
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    box-shadow:none;
    outline:none;
}
input[type="checkbox"][disabled], input[type="radio"][disabled] {
    opacity: .5!important;
}
input[type="radio"] {
    position: relative;
    margin:0;
    cursor:pointer;
}
input[type="radio"]:before {
    -webkit-transition: -webkit-transform .4s cubic-bezier(.45,1.8,.5,.75);
    -moz-transition: -moz-transform .4s cubic-bezier(.45,1.8,.5,.75);
    transition: transform .4s cubic-bezier(.45,1.8,.5,.75);
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -ms-transform: scale(0,0);
    -o-transform: scale(0,0);
    transform: scale(0,0);
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 1;
    width: 10px;
    height: 10px;
    background: #58b3f0;
    border-radius: 50%;
}
input[type="radio"]:after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 50%;
}
input[type="radio"]:checked:before {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -o-transform: scale(1,1);
    transform: scale(1,1);
}
input[type="checkbox"] {
    position: relative;
    top:0;
    margin: 0;
    cursor: pointer;
}
input[type="checkbox"]:before {
    -webkit-transition: -webkit-transform .4s cubic-bezier(.45,1.8,.5,.75);
    -moz-transition: -moz-transform .4s cubic-bezier(.45,1.8,.5,.75);
    transition: transform .4s cubic-bezier(.45,1.8,.5,.75);
    -webkit-transform: rotate(-45deg) scale(0,0);
    -moz-transform: rotate(-45deg) scale(0,0);
    -ms-transform: rotate(-45deg) scale(0,0);
    -o-transform: rotate(-45deg) scale(0,0);
    transform: rotate(-45deg) scale(0,0);
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    top: .3em;
    margin: auto;
    z-index: 1;
    width: 12px;
    height: 6px;
    border: 3px solid #58b3f0;
    border-top-style: none;
    border-right-style: none;
}
input[type="checkbox"]:after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.2);
    cursor: pointer;
    border-radius: 2px;
}
input[type="checkbox"]:checked:before {
    -webkit-transform: rotate(-45deg) scale(1,1);
    -moz-transform: rotate(-45deg) scale(1,1);
    -ms-transform: rotate(-45deg) scale(1,1);
    -o-transform: rotate(-45deg) scale(1,1);
    transform: rotate(-45deg) scale(1,1);
}
.form-check-label{
    padding-left:0;
    cursor:pointer;
}
.form-check-label>input[type="radio"],
.form-check-label>input[type="checkbox"] {
    margin-right:.325rem;
}
.form-check-inline .form-check-label:not(:last-child) {
    margin-right:1rem;
}
.required{
	color:#b70100;
}
.money{
    font-weight:bold;
    color:#b70100;
}
.money.large{
	font-size:115%;
}
.empty-data{
    font-size:110%;
    text-align:center;
    color:var(--color-red);
    padding:10px 0;
    margin-bottom:0!important;
}
.maps {
    height:500px;
}
/*===== SELECT =====*/
.dropdown-select .btn{
    position:relative;
    font-size:100%;
    width: 200px;
    border-radius: 0;
    background-color: #fff !important;
    border: 1px solid #ccc !important;
    color: #777 !important;
    padding: 5px 30px 5px 12px;
    text-align: left;
}
.dropdown-select .btn:after {
    content:"";
    position: absolute;
    top: 0;
    bottom: 0;
    right:0;
    width: 30px;
    border-left: 1px solid #ccc;
}
.dropdown-select .btn .arrow{
    display:inline-block;
    width:8px;
    height:8px;
    position: absolute;
    top:50%;
    right:10px;
    margin-top:-4px;
}
.dropdown-select .btn .arrow::before,
.dropdown-select .btn .arrow::after{
    content: '';
    position: absolute;
    width:2px;
    height:8px;
    background-color:#555;
}
.dropdown-select .btn .arrow::before{
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.dropdown-select .btn .arrow::after{
    left:5px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.dropdown-select .dropdown-menu {
    font-size:100%;
    width: 200px;
    padding:2px 0;
    border-radius: 0;
}
.dropdown-select .dropdown-menu .dropdown-item{
    color: #777;
    padding: 7px 12px;
}
.dropdown-select .dropdown-menu .dropdown-item:hover,
.dropdown-select .dropdown-menu .dropdown-item:focus{
    color: #60a703;
    background-color:transparent;
}
.dropdown-select .dropdown-menu .dropdown-item:not(:last-child) {
    border-bottom: 1px dashed #ccc;
}
/*===== BUTTON =====*/
.btn{
    font-size:100%;
    line-height:20px;
    padding:10px 20px;
    -webkit-border-radius:2px;
       -moz-border-radius:2px;
            border-radius:2px;
}
.btn:focus, .btn.focus {
  -webkit-box-shadow:none;
          box-shadow:none;
}
.btn-default{
    position:relative;
    color:#fff!important;
    background:var(--color-primary);
    border:none;
    font-size:100%;
    -webkit-transition: all 0.25s ease-in;
       -moz-transition: all 0.25s ease-in;
            transition: all 0.25s ease-in;
    z-index: 1;
}
.btn-default:hover,
.btn-default:focus{
    color:#fff;
    background-color:transparent;
    cursor:pointer;
    text-decoration:none!important;
}
.btn-default:before {
    position: absolute;
    content: "";
    z-index: -1;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:var(--color-primary-hover);
    -webkit-border-radius:2px;
       -moz-border-radius:2px;
            border-radius:2px;
    -webkit-transform: scaleX(0);
       -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
         -o-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: all 0.25s ease-in-out;
       -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
}
.btn-default:hover:before,
.btn-default:focus:before {
    -webkit-transform: scaleX(1);
       -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transition: all 0.25s ease-in-out;
       -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
           transition: all 0.25s ease-in-out;
}
.btn-default>.fa{
    margin-right:5px;
}
.btn-bigbuynow,
.btn-bigcallnow{
    display:block;
    color: #fff;
    font-size:120%;
    line-height:24px;
    text-transform: uppercase;
    padding:10px;
}
.btn-bigbuynow{
    background:var(--color-orange);
}
.btn-bigcallnow{
    background:var(--color-blue);
}
.btn-bigcallnow .fa{
    width:20px;
    height:20px;
    margin-right:5px;
}
.btn-bigbuynow:hover,
.btn-bigbuynow:focus,
.btn-bigcallnow:hover,
.btn-bigcallnow:focus{
    color:#fff;
    opacity:.9;
}
.btn-delete{
    color:#888;
    font-size:14px;
}
.btn-delete span{
    position: relative;
    display:inline-block;
    width: 12px;
    height: 12px;
    background: #888;
    -webkit-border-radius:50%;
            border-radius: 50%;
    margin-right:3px;
}
.btn-delete span::before,
.btn-delete span::after{
    position: absolute;
    top: 2px;
    left: 5px;
    content: '';
    width: 2px;
    height: 8px;
    background: #fff;
}
.btn-delete span::before{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.btn-delete span::after{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
/*===== IMAGE BLOCK =====*/
.img-block{
    position: relative;
    display:inline-block!important;
    overflow:hidden;
}
.img-block:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    z-index: 9;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    transform: scale(0, 1);
}
.img-block::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    z-index: 9;
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(255, 255, 255, 0.8);
    transform: scale(1, 0);
}
.img-block:hover:before,
.img-block:hover:after {
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out 0.1s;
    -moz-transition: all 0.3s ease-out 0.1s;
    -o-transition: all 0.3s ease-out 0.1s;
    transition: all 0.3s ease-out 0.1s;
}
.img-block img{
    width: 100%;
    height: auto!important;
    -webkit-transition: all 0.3s ease-out 0.1s;
    -moz-transition: all 0.3s ease-out 0.1s;
    -o-transition: all 0.3s ease-out 0.1s;
    transition: all 0.3s ease-out 0.1s;
}
.img-block:hover img {
    transform: scale(1.05);
}
/* ===== SOCIAL ===== */
.social{
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}
.social>li {
    float:left;
    display: inline-block;
    margin-left:5px;
}
.social>li:first-child{
    margin-left: 0;
}
.social>li>a {
    position:relative;
    display: inline-block;
    color: #eee;
    width:40px;
    height:40px;
    text-align: center;
    background-color: rgba(255,255,255,.03);
    -webkit-border-radius:50%;
            border-radius:50%;
}
.social>li>a:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #fff;
    opacity: .03;
    -webkit-border-radius:50%;
            border-radius:50%;
}
.social>li>a:hover,
.social>li>a:focus,
.social>li>a:active{
    color: #018fe5;
}
.social>li>a>.fa,
.social>li>a>.far,
.social>li>a>.fas,
.social>li>a>.fab{
    font-size:120%;
    margin-top:12px;
}
.social>li>a:hover .fa,
.social>li>a:focus.fa,
.social>li>a:active.fa{
    
}
.social .facebook{
    background-color:#3d5a98
}
.social .instagram{
    background-color: #d6005d;
}
.social .youtube{
    background-color: #ff0000;
}
.social .twitter{
    background-color: #00aced;
}
.social .pinterest{
    background-color: #bd081c;
}
.social .linkedin{
    background-color: #0077b5;
}
.social-share>span{
    margin-right:6px;
}
/* ===== RATING STAR ===== */
.rating{
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    margin-bottom:0;
}
.rating .rating-box {
    position:relative;
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
}
.rating .rating-box .fa{
    color:#777;
    width:16px;
    height:16px;
    margin:0 1px;
}
.rating .rating-box span {
    display:inline-block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1;
}
.rating .rating-box span .fa{
    color:#fed101;
}
.rating .rating-value{
    display:inline-block;
    color:var(--color-blue);
    white-space: nowrap;
    line-height: 1;
    margin-left:6px;
}
.rating .rating-value>a{
    color:var(--color-blue);
}
.rating .rating-value>a:hover,
.rating .rating-value>a:focus{
    color:var(--color-blue);
    opacity:0.8;
}
.starrr{
    display:inline-block;
}
.starrr .fa,
.starrr .far,
.starrr .fas,
.starrr .fab{
    font-size:175%;
    color:#fed101;
}
/* ===== SPINNER ===== */
.spinner{
    width:120px;
}
.spinner .form-control{
    text-align:center;
    border-radius:0!important;
    border-left-width:0;
    border-right-width:0;
    border-top:1px solid var(--color-border);
    border-bottom:1px solid var(--color-border);
    padding:5px 10px;
    height:36px;
}
.spinner button{
    width:36px;
    font-size:120%;
    text-align:center;
    border-color:var(--color-border);
    background-color:transparent;
    padding:5px 10px;
    height:36px;
}
.spinner button:hover,
.spinner button:focus,
.spinner button:active{
    cursor:pointer;
    color:var(--color-text);
    border-color:var(--color-border);
    background-color:var(--color-border);
}
.spinner button:first-child{
    border-top-right-radius:0;
    border-bottom-right-radius:0;
}
.spinner button:last-child{
    border-top-left-radius:0;
    border-bottom-left-radius:0;
}
/*== CAPTCHA ==*/
.captcha {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    width: 300px;
}
.captcha input {
    color: #0094da;
    font-weight:500;
    height: 39px;
}
.captcha .captcha-img {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    min-width:110px;
    height: 39px;
    background-color: #fff;
    margin:0 5px;
}
.captcha .captcha-img img{
    max-width:100%;
    border:none!important;
}
.captcha a {
    min-width: 44px;
    width: 44px;
    border: 0;
    outline: none !important;
    cursor: pointer;
    text-decoration: none !important;
    border-radius: 8px;
    background-color: rgba(0,0,0,.2);
    background-image: url(../images/reload.svg);
    background-repeat: no-repeat;
    background-position: center;
}
/*===== ADS =====*/
.ads {
    margin-bottom:10px;
}
.box-ads-left .ads {
    margin-top:10px;
    margin-bottom:0;
}
.box-fanpage-left .fanpage {
    margin-top:10px;
    overflow:hidden;
}
/*===== BACK TOP =====*/
#back-top {
	display:none;
	position:fixed;
	bottom:70px;
	right:10px;
	text-align: center;
	z-index:9999;
    margin:0;
}
#back-top a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    font-size:200%;
	color:#fff;
	background: #888;
	width: 40px;
	height: 40px;
    -webkit-border-radius:4px;
       -moz-border-radius:4px;
            border-radius:4px;
    opacity:.8;
}
#back-top a:hover{
	color:#fff;
	background: #888;
    opacity:1;
    text-decoration:none;
}
#back-top .fa {
    width:32px;
    height:32px;
}
/* ===== PHONE RING ===== */
@-webkit-keyframes sonar-anim{
    0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}
    100%{-webkit-transform:scale(3);transform:scale(3);opacity:0}
}
@keyframes sonar-anim{
    0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}
    100%{-webkit-transform:scale(3);transform:scale(3);opacity:0}
}
@-webkit-keyframes ring-anim {
    0% {-webkit-transform:rotate(0) scale(1) skew(1deg);transform:rotate(0) scale(1) skew(1deg)}
    10% {-webkit-transform:rotate(-25deg) scale(1) skew(1deg);transform:rotate(-25deg) scale(1) skew(1deg)}
    20% {-webkit-transform:rotate(25deg) scale(1) skew(1deg);transform:rotate(25deg) scale(1) skew(1deg)}
    30% {-webkit-transform:rotate(-25deg) scale(1) skew(1deg);transform:rotate(-25deg) scale(1) skew(1deg)}
    40% {-webkit-transform:rotate(25deg) scale(1) skew(1deg);transform:rotate(25deg) scale(1) skew(1deg)}
    50% {-webkit-transform:rotate(0) scale(1) skew(1deg);transform:rotate(0) scale(1) skew(1deg)}
    100% {-webkit-transform:rotate(0) scale(1) skew(1deg);transform:rotate(0) scale(1) skew(1deg)}
}
@keyframes ring-anim {
    0% {-webkit-transform:rotate(0) scale(1) skew(1deg);transform:rotate(0) scale(1) skew(1deg)}
    10% {-webkit-transform:rotate(-25deg) scale(1) skew(1deg);transform:rotate(-25deg) scale(1) skew(1deg)}
    20% {-webkit-transform:rotate(25deg) scale(1) skew(1deg);transform:rotate(25deg) scale(1) skew(1deg)}
    30% {-webkit-transform:rotate(-25deg) scale(1) skew(1deg);transform:rotate(-25deg) scale(1) skew(1deg)}
    40% {-webkit-transform:rotate(25deg) scale(1) skew(1deg);transform:rotate(25deg) scale(1) skew(1deg)}
    50% {-webkit-transform:rotate(0) scale(1) skew(1deg);transform:rotate(0) scale(1) skew(1deg)}
    100% {-webkit-transform:rotate(0) scale(1) skew(1deg);transform:rotate(0) scale(1) skew(1deg)}
}
.aside-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    z-index: 99999;
}
.phone-ring {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center!important;
    align-items: center!important;
    color: #fff!important;
    padding: 5px 0;
}
.phone-circle {
    font-size:150%;
    margin-bottom:2px;
}
.phone-circle .animation{
    -webkit-animation:ring-anim 1s infinite ease-in-out;
            animation:ring-anim 1s infinite ease-in-out;
}
.phone-text {
    font-weight:bold;
    text-transform:uppercase;
}
.phone-ring.shopping-cart {
    border-left: 1px dotted #ddd;
}
.phone-ring.shopping-cart .phone-circle {
    position:relative;
    padding-right:20px;
}
.phone-circle .badge {
    position:absolute;
    right:0;
    top:0;
    color:#111;
    font-size:12px;
    font-weight:normal;
    background-color:#fff;
    -webkit-border-radius: 50%;
            border-radius: 50%;
}
/* ===== PAGE ===== */
.container {
    position:relative;
    background:#fff;
}
.wrap-nav .container,
.wrap-main .container{
    padding-bottom:10px;
}
.wrap-top .container:after,
.wrap-nav .container:before,
.wrap-nav .container:after,
.wrap-footer .container:before{
    position:absolute;
    content:"";
    left:10px;
    right:10px;
}
.wrap-top .container:after {
    height:1px;
    bottom:0;
    background-color:var(--color-border);
}
.wrap-nav .container:before,
.wrap-nav .container:after{
    height:2px;
    background-color:#4f4f4f;
}
.wrap-nav .container:before {
    top:0;
}
.wrap-nav .container:after {
    bottom:10px;
}
.wrap-slider:after,
.wrap-slider .container:after{
    content:"";
    display:table;
}
.wrap-slider .owl-sliderbanner,
.col-right .owl-sliderbanner {
    margin-bottom:10px;
}
.wrap-footer .container:before {
    height:1px;
    top:0;
    background-color:var(--color-border);
}
/*===== TOP =====*/
.logo,
.banner-top{
    text-align:center;
}
.logo a,
.banner-top a{
    display:block;
}
.logo img,
.banner-top img{
    max-width:100%;
}
/*===== SEARCH BOX =====*/
.form-search{
    position:relative;
    border:1px solid var(--color-border);
    -webkit-border-radius:3px;
            border-radius:3px;
}
.form-search .form-control{
    padding:8px 30px 8px 10px;
    height:32px;
    border:none;
    background:transparent;
    -webkit-border-radius:4px;
            border-radius:4px;
}
.form-search .form-control:hover,
.form-search .form-control:focus{
    outline:none;
}
.form-search .btn-search{
    position:absolute;
    right:24px;
    top:6px;
}
.form-search .btn-search::before,
.form-search .btn-search::after {
    content: '';
    position: absolute;
    display: block;
    transition: all 0.1s;
}
.form-search .btn-search::before {
    border: 2px solid #777;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    left:0;
    top:0;
}
.form-search .btn-search::after {
    width: 8px;
    height: 2px;
    background:#777;
    top:14px;
    left:12px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.form-search .btn-search:hover:before,
.form-search .btn-search:focus:before{
    border-color:var(--color-text-hover);
}
.form-search .btn-search:hover:after,
.form-search .btn-search:focus:after{
    background:var(--color-text-hover);
}
/*===== CART =====*/
.cart{
    position:relative;
    font-weight:700;
    padding:6px 0;
    height:30px;
    text-transform:uppercase;
    margin-right:auto;
}
.cart .cart-number {
    margin-left:4px;
}
.cart .cart-text {
    margin-left:2px;
}
.cart a:hover,
.cart a:focus{
    color:var(--color-text-hover);
    text-decoration:underline;
}
/*===== LANGUAGE =====*/
.language {
    height:30px;
}
.language .vi,
.language .en{
    position:relative;
    display: inline-block;
    float:left;
    width:36px;
    height:30px;
    border-left:1px solid var(--color-border);
    margin:0;
    padding:0;
}
.language .vi:before,
.language .en:before{
    position:absolute;
    content:"";
    top:10px;
    left:10px;
    width: 16px;
    height: 11px;
    background:url(../images/icon-language.jpg) 0 0 no-repeat;
}
.language .vi:before {
    background-position-y:-11px;
}
/*===== MENU =====*/
.navbar{
    padding:0!important;
}
.dropdown-menu {
    font-size:100%;
}
.caret{
    display:inline-block;
    width:8px;
    height:8px;
    position: absolute;
    top:50%;
    right:1rem;
    margin-top:-4px;
}
.caret::before,
.caret::after{
    position: absolute;
    content: '';
    width:2px;
    height:8px;
    background-color:#999;
}
.caret::before{
    left:-1px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.caret::after{
    left:50%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.show>a>.caret::before{
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
}
.show>a>.caret::after{
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
/*===== MENU VERTICAL =====*/
.nav-vertical{
    -ms-flex-direction: column;
        flex-direction: column;
    padding:0 10px 10px 10px;
}
.nav-vertical .nav-item>.nav-link {
    border-top: 1px dashed #fc0f8f;
}
.nav-vertical>.nav-item:first-child>.nav-link {
    border-top:none;
}
.nav-vertical .nav-link{
    position:relative;
    font-weight:500;
    padding:10px 10px;
}
.nav-vertical .dropdown>.nav-link{
    padding-right:38px;
}
.nav-vertical .nav-link:hover,
.nav-vertical .nav-link:focus,
.nav-vertical .nav-link.active{
    color:var(--color-text-hover);
}
.nav-vertical .show > .nav-link {
    color:var(--color-text);
    font-weight:bold;
}
.nav-vertical > .nav-item > .nav-link {
    padding-left:14px;
}
.nav-vertical>.nav-item > .nav-link:before {
    position:absolute;
    top:16px;
    left:0;
    content:"";
    width:8px;
    height:8px;
    background-color:#777;
    -webkit-border-radius:50%;
            border-radius:50%;
}
.nav-vertical .dropdown-menu>.nav-item>.nav-link:before {
    position:absolute;
    top:15px;
    content:"";
    width: 0; 
    height: 0; 
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;  
    border-left:5px solid #777;
}
.nav-vertical .dropdown-menu {
    position:relative;
    top:0;
    float:none;
    border:none;
    background-color:transparent;
    padding:0;
    margin:0;
    -ms-flex-direction: column;
        flex-direction: column;
}
.nav-vertical .show>.dropdown-menu {
    display: block;
}
.nav-vertical .caret{
    width:28px;
    height:28px;
    right:0;
    margin-top:-14px;
    border:1px solid #ccc;
    -webkit-border-radius:50%;
            border-radius:50%;
}
.nav-vertical .caret::before,
.nav-vertical .caret::after{
    top:50%;
    margin-top:-4px;
}
.nav-vertical .caret::before{
    left:10px;
}
.nav-vertical .caret::after{
    left:15px;
}
.nav-vertical ul .nav-link {
    padding-left:24px;
}
.nav-vertical ul .nav-link:before {
    left:14px;
}
.nav-vertical ul ul .nav-link {
    padding-left:34px;
}
.nav-vertical ul ul .nav-link:before {
    left:24px;
}
.nav-vertical ul ul ul .nav-link {
    padding-left:44px;
}
.nav-vertical ul ul ul .nav-link:before {
    left:34px;
}
/* ===== Box ===== */
.box{
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    margin-bottom:10px;
}
.box .box-header{    
    display: -ms-flexbox;
    display: flex;
}
.box .box-title{
    position:relative;
    display:block;
    width:100%;
    font-weight:600;
    padding: 10px 12px;
    margin-bottom:0;
}
.box .box-body{
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
}
/* ===== BOX MAIN ===== */
.box-default .box-header,
.box-product .box-header,
.box-news .box-header,
.box-service .box-header,
.box-product-list .box-header,
.box-news-list .box-header,
.box-service-list .box-header,
.box-cart .box-header,
.box-contact .box-header,
.box-maps .box-header{
    border-bottom:2px solid var(--color-primary);
}
.box-default .box-title,
.box-product .box-title,
.box-news .box-title,
.box-service .box-title,
.box-product-list .box-title,
.box-news-list .box-title,
.box-service-list .box-title,
.box-cart .box-title,
.box-contact .box-title,
.box-maps .box-title {
    text-transform:uppercase;
    padding-left:0;
}
.box-contact .box-body,
.box-maps .box-body {
    padding-top:16px;
}
/* ===== BOX CART ===== */
.box-cart-left {
    color:#fff;
    background:var(--color-primary);
}
.box-cart-left .box-title {
    color:#fff;
    text-align:center;
    text-transform:uppercase;
    padding-top:16px;
}
.box-cart-left .box-body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    padding:10px 10px 16px 10px;
}
.box-cart-left .box-body p {
    display: -ms-flexbox;
    display: flex;
    margin-bottom:12px;
}
.box-cart-left .box-body p > span:first-child {
    margin-right:auto;
}
.box-cart-left .box-body p > span:last-child {
    font-weight:bold;
}
.box-cart-left .box-body a {
    color:#fff;
    font-weight:bold;
    text-align:center;
}
.box-cart-left .box-body a > i {
    font-size:120%;
    margin-right:5px;
}
.box-cart-left .box-body a:hover,
.box-cart-left .box-body a:focus {
    color:#fff;
    text-decoration:underline;
}
/* ===== BOX CATEGORY ===== */
.box-category-left {
    background:#f7ecac url(../images/bg-box-category-header.png) repeat-x;
}
.box-category-left .box-header {
    padding-top:12px;
}
.box-category-left .box-title {
    color:var(--color-primary);
    text-transform:uppercase;
}
/* ===== BOX LEFT ===== */
.box-product-left .box-header,
.box-news-left .box-header,
.box-service-left .box-header,
.box-support-left .box-header,
.box-ads-left .box-header,
.box-link-left .box-header,
.box-fanpage-left .box-header,
.box-statistic-left .box-header{
    position:relative;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    background-color:var(--color-primary);
}
.box-product-left .box-title,
.box-news-left .box-title,
.box-service-left .box-title,
.box-support-left .box-title,
.box-ads-left .box-title,
.box-link-left .box-title,
.box-fanpage-left .box-title,
.box-statistic-left .box-title {
    color:#fff;
    text-transform:uppercase;
}
/*===== LIST BOX =====*/
.box .box-header ul{
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
}
.box .box-header ul>li>a{
    position:relative;
    display:block;
    color:var(--color-bgbox);
    line-height:20px;
    padding-left:10px;
    padding-right:10px;
}
.box .box-header ul>li>a:hover,
.box .box-header ul>li>a:active,
.box .box-header ul>li>a:focus,
.box .box-header ul>li>a.active{
    text-decoration:underline;
}
.box .box-header ul>li:not(:first-child):not(.not-line)>a:after {
    content: "|";
    color:var(--color-bgbox);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top:-11px;
}
/*===== MAX CONTENT =====*/
.box-content{
    padding:10px;
    border:1px solid var(--color-border);
}
.wrap-content .max-height{
    max-height: 400px;
    overflow: hidden;
}
.wrap-content .show-more{
    position:relative;
    text-align:center;
    margin-top:var(--margin-bottom);
    margin-bottom:0;
}
.wrap-content .show-more:before{
    position: relative;
    display:none;
    content: "";
    height: 40px;
    margin-top: -30px;
    background: -webkit-gradient(linear, 0% 100%, 0% 0%, from(rgb(255, 255, 255)), color-stop(0.5, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
}
.wrap-content .max-height+ .show-more:before{
    display:block;
}
.wrap-content .show-more .btn{
    position:relative;
    color:var(--color-blue)!important;
    background-color:transparent;
    border:1px solid var(--color-blue)!important;
    width:220px;
}
.wrap-content .show-more .btn:hover,
.wrap-content .show-more .btn:focus{
    color:var(--color-primary)!important;
    border:1px solid var(--color-primary)!important;
}
.wrap-content .show-more .btn:before{
    background-color:transparent;
}
/*===== LINKS =====*/
.links{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}
.links>li{
    list-style:none;
    position:relative;
}
.links>li:before{
    position:absolute;
    top:16px;
    content:"";
    width:6px;
    height:6px;
    background-color:#777;
    -webkit-border-radius:50%;
            border-radius:50%;
}
.links>li>a{
    display:block;
    padding:8px 0 4px 14px;
}
/* ===== STATISTIC ===== */
.statistic{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    list-style:none;
    margin:0;
    padding:10px 0 0 0;
}
.statistic li{
	position:relative;
    display: -ms-flexbox;
    display: flex;
    padding:3px 0;
}
.statistic li>span:first-child{
	padding-left:20px;
    margin-right:auto;
}
.statistic li>span:first-child:before{
	content: "";
	background: url(../images/icon-statistic.png) no-repeat 0 0;
	width:16px;
	height:16px;
	position: absolute;
	left: 0;
}
.statistic li>span.today:before{
	background-position:0 -16px;
}
.statistic li>span.yesterday:before{
	background-position:0 -32px;
}
.statistic li>span.week:before{
	background-position:0 -48px;
}
.statistic li>span.month:before{
	background-position:0 -64px;
}
.statistic li>span.total:before{
	background-position:0 -80px;
}
/*===== FOOTER =====*/
.copyright p{
    color:var(--color-text);
    font-size:90%;
    padding:8px 0;
    margin-bottom:0;
}
.copyright .designedby {
    text-align:right;
}
.copyright a:hover,
.copyright a:focus{
    text-decoration:underline;
}
.footer-block{
    padding:20px 0; 
}
.footer-block .footer-block-title{
    font-size:110%;
    font-weight:700;
    margin-bottom:10px;
}
.footer-block .footer-list{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}
.footer-block .footer-list>li{
    list-style:none;
    position:relative;
}
.footer-block .footer-list>li:before{
    position:absolute;
    top:14px;
    content:"";
    width:6px;
    height:6px;
    background-color:#777;
    -webkit-border-radius:50%;
            border-radius:50%;
}
.footer-block .footer-list>li>a{
    display:block;
    padding:6px 0 6px 14px;
}
.footer-block .footer-fanpage{
    margin-bottom:15px;
    overflow:hidden;
}
.footer-contact{
    position:relative;
}
.footer-contact .media{
    margin-bottom:10px;
}
.footer-contact .footer-contact-icon{
    width:24px;
}
.footer-contact .footer-contact-title{
    font-size:110%;
    font-weight:700;
    margin-bottom:6px;
}
.footer-contact .footer-contact-text{
    margin-bottom:6px;
}
.footer-contact .footer-contact-text:last-child{
    margin-bottom:0;
}
.footer-maps{
    margin-bottom:10px;
    overflow:hidden;
}
/* ===== Bread Crumbs ===== */
.wrap-breadcrumb {
}
.breadcrumbs{
    max-width:100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height:20px;
    padding-bottom:10px;
}
.breadcrumb{
    background-color:transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap:nowrap;
    white-space: nowrap;
    overflow-x: auto;
    padding:0;
    margin-bottom:0;
}
.breadcrumb>.breadcrumb-item{
    float:none;
    display:inline-block;
    z-index:1;
}
.breadcrumb a{
    color:var(--color-text);
}
.breadcrumb>.active,
.breadcrumb>.active a{
    color:var(--color-blue);
}
.breadcrumb a:focus,
.breadcrumb a:hover,
.breadcrumb a:active{
    color:var(--color-text-hover);
}
.breadcrumb>.breadcrumb-item+.breadcrumb-item:before{
    content: '\000BB';
    color:var(--color-text);
}
/* ===== PAGINATION ===== */
.pagination-list{
    padding:10px;
    margin-top:10px;
    border: 1px solid var(--color-border);
    background-color:#f9f9f9;
}
.pagination{
    -ms-flex-pack: center;
    justify-content: center;
    margin:0;
}
.pagination>.page-item{
    margin:0 3px;
}
.pagination>.page-item>.page-link{
    color: #555;
    width:40px;
    height:36px;
    line-height:36px;
    text-align:center;
    border-color:var(--color-border);
    -webkit-border-radius:4px;
       -moz-border-radius:4px;
            border-radius:4px;
    outline:none!important;
    box-shadow:none!important;
    padding:0;
}
.pagination>.page-item.previous>.page-link,
.pagination>.page-item.next>.page-link{
    position:relative;
}
.pagination>.page-item.previous .page-link{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.pagination>.page-item.active>.page-link, 
.pagination>.page-item.active>.page-link:focus, 
.pagination>.page-item.active>.page-link:hover, 
.pagination>.page-item>.page-link:hover,
.pagination>.page-item>.page-link:focus{
    color:#fff;
    font-weight:bold;
    background-color:var(--color-primary);
    border-color:var(--color-primary);
}
/*===== PRODUCT ITEM =====*/
.col-product {
    display: -ms-flexbox;
    display: flex;
}
.col-product .product-item {
    margin-top:10px;
}
.box-product .row,
.box-product-list .row{
    margin-left:-5px;
    margin-right:-5px;
}
.box-product .col-product,
.box-product-list .col-product{
    padding-left:5px;
    padding-right:5px;
}
.product-item{
    text-align:left;
    border:1px solid var(--color-border);
    -webkit-border-radius: 4px;
            border-radius: 4px;
    background-color:#fff;
    padding:10px 10px 4px 10px;  
    -webkit-transition: all 0.4s ease 0s;
       -moz-transition: all 0.4s ease 0s;
         -o-transition: all 0.4s ease 0s;
}
.product-item:hover {
    -webkit-box-shadow: 0 0 10px #bcbcbc;
        -moz-box-shadow: 0 0 10px #bcbcbc;
            box-shadow: 0 0 10px #bcbcbc;
}
.product-item .product-item-img{
    display:block;
    position:relative;
    overflow:hidden;
    margin-bottom:10px;
}
.product-item .product-item-img>a{
    display:block;
}
.product-item .product-item-img>a>img{
    max-width:100%;
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
            transition: all 0.5s ease;
    transform: scale(1);
}
.product-item .product-item-img>a:hover img,
.product-item .product-item-img>a:focus img{
    transform: scale(1.1);
}
.product-item .product-item-icon{
    display:inline-block;
    position:absolute;
    top:0;
    width:32px;
    height:32px;
    line-height:32px;
    font-size:12px;
    color:#fff;
    text-align:center;
    -webkit-border-radius: 50%;
            border-radius: 50%;
}
.product-item .product-item-icon.new {
    left:0;
    background-color:var(--color-blue);
}
.product-item .product-item-icon.discount {
    right:0;
    background-color:var(--color-red);
}
.product-item .card-body{
    padding:0 0 42px 0;
    text-align:center;
}
.product-item .product-item-title{
    font-weight:700;
    line-height:20px;
    height:40px;
    max-height:40px;
    overflow:hidden;
    margin-bottom:6px;
}
.product-item .product-item-desc{
    display:none;
    font-size:90%;
    color:#666;
    margin-bottom:0;
}
.product-item .product-item-desc ul {
    padding:0 0 0 20px;
    margin:0;
}
.product-item .product-item-desc p,
.product-item .product-item-desc li {
    margin-bottom:6px;
}
.product-item .product-item-price{
    margin-bottom:6px;
}
.product-item .product-item-price .price{
    color:var(--color-red);
    font-size:110%;
    font-weight:700;
    margin-bottom:0;
}
.product-item .product-item-price .old-price{
    color:#aaa;
    text-decoration:line-through;
    margin-bottom:0;
}
.product-item .product-item-btn{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:42px;
    text-align:center;
}
.product-item .product-item-btn .btn-buynow,
.product-item .product-item-btn .btn-detail {
    color:#fff;
    min-width:90px;
    line-height:20px;
    text-transform:uppercase;
    padding:6px 12px;
    border:none;
    -webkit-border-radius: 4px;
            border-radius: 4px;
}
.product-item .product-item-btn .btn-buynow {
    background-color:var(--color-primary);
}
.product-item .product-item-btn .btn-detail {
    display:none;
    background-color:#222;
}
.product-item .product-item-btn .btn-buynow:hover,
.product-item .product-item-btn .btn-buynow:focus,
.product-item .product-item-btn .btn-detail:hover,
.product-item .product-item-btn .btn-detail:focus{
    opacity:0.9;
}
/*===== SLIDER PRODUCT ITEM =====*/
.owl-product{
    margin-top:10px;
}
.owl-product .product-item{
    border:none;
    box-shadow:none;
    padding:0;
    margin-bottom:0;
}
.owl-product .product-item .product-item-img {
    padding:10px;
    border:1px solid var(--color-border);
}
.owl-product .product-item .product-item-icon {
    top:10px;
}
.owl-product .product-item .product-item-icon.new {
    left:10px;
}
.owl-product .product-item .product-item-icon.discount {
    right:10px;
}
.owl-product .product-item .card-body{
    padding:0;
}
.owl-product .product-item .product-item-price {
    margin-bottom: 0;
}
/*===== PRODUCT LEFT =====*/
.product-item.vertical,
.product-item.horizontal{
    border:none;
    box-shadow:none;
    padding:0;
    margin-top:10px;
}
.product-item.vertical .card-body,
.product-item.horizontal .card-body{
    text-align:left;
    padding:0;
}
.product-item.vertical .product-item-title,
.product-item.horizontal .product-item-title{
    height: auto;
    max-height:none;
}
.product-item.vertical .product-item-price,
.product-item.horizontal .product-item-price{
    margin-bottom: 0;
}
.product-item.horizontal {
    border-top:1px dashed var(--color-border);
    padding-top:10px;
}
.product-item.horizontal .product-item-img {
    width:120px;
    margin-right:8px;
    margin-bottom:0;
}
.product-item.horizontal .product-item-icon {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size:75%;
    font-weight: normal;
}
.product-item.horizontal .product-item-title {
    font-weight:normal;
}
.product-item.horizontal .product-item-price .price {
    font-size:100%;
}
.product-item.horizontal .product-item-price .old-price {
    font-size:90%;
}
/*===== PRODUCT LIST =====*/
.product-option {
    border: 1px solid var(--color-border);
    background-color:#f9f9f9;
    padding:8px 12px;
    margin-top:10px;
}
.product-sort {
    margin-right:auto;
}
.product-sort>span{
    display:none;
}
.product-display {
    display:none!important;
    margin-left:6px;
    margin-right:auto;
}
.product-display .dropdown-select .btn,
.product-display .dropdown-select .dropdown-menu{
    width:70px;
    min-width:70px;
}
.product-view a{
    display:inherit;
    border: 1px solid var(--color-border);
    background-color: #efefef;
    margin-left: 10px;
    padding: 8px 12px;
}
.product-view a .fa {
    color:#999;
}
.product-view a:hover,
.product-view a:focus,
.product-view a.active {
    background-color:var(--color-red);
    border-color:var(--color-red);
}
.product-view a:hover .fa,
.product-view a:focus .fa,
.product-view a.active .fa{
    color:#fff;
}
.view-list .col-product {
    display:block!important;
    -ms-flex: 0 0 100%!important;
        flex: 0 0 100%!important;
    max-width: 100%!important;
}
.view-list .product-item{
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: stretch;
        align-items: stretch;
}
.view-list .product-item .product-item-img {
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 120px;
    margin-right:10px;
    margin-bottom:0;
    border-bottom:none;
}
.view-list .product-item .card-body {
    -ms-flex: 1;
        flex: 1;
    text-align:left;
    padding-bottom:0;
}
.view-list .product-item .rating {
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.view-list .product-item .product-item-title {
    height:auto;
    max-height:none;
}
.view-list .product-item .product-item-desc {
    display:block;
}
.view-list .product-item .product-item-btn {
    position:relative;
    text-align:left;
}
.view-list .product-item .product-item-btn .btn-detail{
    display:inline-block;
}
/*===== NEWS ITEM =====*/
.news-item-img{
    overflow:hidden;
}
.news-item-img>a{
    display:block;
    overflow:hidden;
    -webkit-border-radius: 4px;
            border-radius: 4px;
}
.news-item-img>a img{
    max-width:100%;
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
            transition: all 0.5s ease;
    transform: scale(1);
}
.news-item-img>a:hover img,
.news-item-img>a:focus img{
    transform: scale(1.1);
}
.news-item-title{
    font-size:110%;
    font-weight:700;
    line-height:1.3;
    margin-bottom:10px;
}
.news-item-desc{
    color:#333;
    margin-bottom:10px;
}
.news-item-time{
    color: #b7b7b7;
    font-size:14px;
    margin-bottom:10px;
}
.news-item-time .fa{
    width:12px;
    height:12px;
    margin-right:4px;
}
.news-item-icon {
    display: inline-block;
    color: #eee;
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    padding: 1px 4px 2px 4px;
    margin-left: 2px;
    -webkit-border-radius: 4px;
            border-radius: 4px;
}
.news-item-icon.new{
    color:#fff;
    background-color:var(--color-blue);
}
.news-item-icon.new,
.news-item-icon.hot{
    color:#fff;
    background-color:var(--color-red);
}
/*===== NEWS ITEM VERTICAL =====*/
.box-news .news-item-vertical {
    margin-top:10px;
}
.news-item-vertical{
    border:none;
    -webkit-border-radius:0;
            border-radius:0;
}
.news-item-vertical .card-body{
    position:relative;
    padding:10px 10px 30px 10px;
    -webkit-border-radius: 0;
            border-radius: 0;
}
.news-item-vertical .news-item-desc {
    margin-bottom:0;
}
.news-item-vertical .btn-viewmore{
    position:absolute;
    left:10px;
    bottom:0;
    color:var(--color-blue);
    line-height:20px;
    margin-bottom:0;
}
.news-item-vertical .btn-viewmore:hover,
.news-item-vertical .btn-viewmore:focus {
    text-decoration:underline;
}
/*===== BOX NEWS ITEM =====*/
.box-news .news-item,
.box-news-left .news-item{
    border-bottom:1px dashed var(--color-border);
    padding-bottom:8px;
    margin-top:10px;
}
.box-news .news-item:last-child,
.box-news-left .news-item:last-child{
    border-bottom:none;
}
.box-news .news-item .news-item-img,
.box-news-left .news-item .news-item-img{
    width:120px;
    margin-right:8px;
}
.box-news .news-item .news-item-title,
.box-news-left .news-item .news-item-title{
    font-size:100%;
    font-weight:normal;
    margin-bottom:0;
}
/*===== NEWS LIST =====*/
.box-news-list .news-item {
    padding:10px 0;
}
.box-news-list .news-item:not(:first-child){
    border-top:1px solid var(--color-border);
}
.box-news-list .news-item-img {
    width:120px;
    margin-right:10px;
}
/*===== SERVICE ITEM =====*/
.service-item-img{
    overflow:hidden;
}
.service-item-img>a{
    display:block;
    overflow:hidden;
}
.service-item-img>a img{
    max-width:100%;
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
            transition: all 0.5s ease;
    transform: scale(1);
}
.service-item-img>a:hover img,
.service-item-img>a:focus img{
    transform: scale(1.1);
}
.service-item-title{
    font-size:100%;
    font-weight:700;
    line-height:1.3;
    margin-bottom:0;
}
.service-item-desc {
    font-size:90%;
    margin-bottom:0;
}
/*===== BOX SERVICE =====*/
.col-service {
    display: -ms-flexbox;
    display: flex;
}
.box-service .row,
.box-service-list .row{
    margin-left:-5px;
    margin-right:-5px;
}
.box-service .col-service,
.box-service-list .col-service{
    padding-left:5px;
    padding-right:5px;
}
.box-service .service-item,
.box-service-list .service-item {
    padding:1px;
    margin-top:10px;
    -webkit-border-radius: 0;
            border-radius: 0;
}
.box-service .service-item .card-body,
.box-service-list .service-item .card-body {
    padding:8px;
    background-color:#eee;
}
/*===== BOX LEFT SERVICE ITEM =====*/
.box-service-left .service-item{
    border-bottom:1px dashed var(--color-border);
    padding-bottom:8px;
    margin-top:10px;
}
.box-service-left .service-item:last-child{
    border-bottom:none;
}
.box-service-left .service-item .service-item-img{
    width:120px;
    margin-right:8px;
}
.box-service-left .service-item .service-item-img>a {
    display: block;
    overflow: hidden;
    -webkit-border-radius: 4px;
            border-radius: 4px;
}
.box-service-left .service-item .service-item-title{
    font-size:100%;
    font-weight:normal;
    margin-bottom:0;
}
/*===== Support =====*/
.support-item {
    -ms-flex-direction: column!important;
        flex-direction: column!important;
    padding:20px 10px;
}
.support-item .support-item-img{
    text-align:center;
}
.support-item img {
    max-width:100%;
}
.support-item .support-item-title {
    font-weight:bold;
    text-align:center;
    padding-top:10px;
    margin:0;
}
/* ===== DETAIL PRODUCT ===== */
.product-summary{
    padding:10px;
    margin-bottom:10px;
    border:1px solid var(--color-border);
}
.product-summary .slider-product{
    margin-bottom:16px;
}
.product-info .product-panel{
    border-top:1px solid var(--color-border);
    padding:10px 0;
}
.product-info .product-label{
    color:#787878;
}
.product-info .product-name{
    font-size:175%;
    line-height:1.3;
}
.product-info .rating{
    margin-right:auto;
    margin-bottom:8px;
}
.product-info .rating .rating-value{
    font-size:15px;
}
.product-info .product-code{
    color:#999;
    line-height:1;
    margin-bottom:8px;
}
.product-info .product-code .fa{
    width:14px;
    height:14px;
    margin-right:4px;
}
.product-info .product-special{
    font-weight:600;
}
.product-info .product-price{
    margin-bottom:.25rem;
}
.product-info .product-price .product-label{
    width:100px;
}
.product-info .product-price .price{
    color:var(--color-red);
    font-size:150%;
    font-weight:700;
}
.product-info .product-price .old-price{
    color:#787878;
    text-decoration:line-through;
}
.product-info .product-price .sale{
    color:#787878;
}
.product-info .product-price .sale-off{
    position:relative;
    color:#fff;
    padding:4px 6px;
    margin-left:1rem;
    background-color:var(--color-red);
    border-radius:4px;
}
.product-info .product-price .sale-off:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    left: -4px;
    top: 50%;
    margin-top: -5px;
    background-color: var(--color-red);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.product-info .product-desc ul {
    padding:0 0 0 20px;
    margin:0;
}
.product-info .product-desc p,
.product-info .product-desc li {
    margin-bottom:6px;
}
.product .social-share>span{
    margin-right:6px;
}
.article-body .nav-tabs .nav-link {
    font-weight:bold;
    padding:10px 12px;
    margin-right:4px;
    border-top-left-radius:0;
    border-top-right-radius:0;
    border-color: var(--color-border) var(--color-border) #fff;
    background-color:#f1f1f1;
}
.article-body .nav-tabs .nav-item:last-child>.nav-link {
    margin-right:0;
}
.article-body .nav-tabs .nav-link.active {
    background-color:transparent;
}
.article-body .tab-content{
    border-left:1px solid var(--color-border);
    border-right:1px solid var(--color-border);
    border-bottom:1px solid var(--color-border);
    padding:10px;
    margin-bottom:10px;
}
/* ===== DETAIL ARTICLE ===== */
.article{
    position:relative;
    margin-bottom:0;
}
.article-title{
    font-size:125%;
    font-weight:bold;
    line-height:1.3;
}
.article-meta{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    padding:8px 0;
    margin-bottom:10px;
    border-top:1px solid var(--color-border);
    border-bottom:1px solid var(--color-border);
}
.article-meta .article-time{
    color:#555;
    margin-right:auto;
}
.article-meta .article-time .fa{
    width:12px;
    height:12px;
    margin-right:5px;
}
.article-body{
    margin-bottom:10px;
}
.article-review{
    padding:16px 0;
    margin-bottom:10px;
    border-top:1px solid var(--color-border);
    border-bottom:1px solid var(--color-border);
}
.article-review .article-review-title{
    font-size:110%;
    margin-right:10px;
}
.article-review .article-review-result{
    margin-left:10px;
}
.article-comments {
    padding-top:10px;
    overflow:hidden;
}
.article-tags{
    margin-bottom:10px;
}
.article-social{
    border-top:1px solid var(--color-border);
    padding:10px 0;
}
.article-resource{
    border-bottom:1px solid var(--color-border);
}
.article-resource .resource-title{
    position:relative;    
    display: inline-block;
    width: 100%;
    font-size:120%;
    color:var(--color-primary);
    line-height:26px;
    padding:12px 0 12px 20px;
}
.article-resource .resource-title:before {
    display: block;
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 15px;
    left: 0;
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #36ce72;
    transform: rotate(135deg);
    transition: all .5s ease;
    cursor: pointer;
}
.article-resource .resource-title.collapsed:before {
    top: 18px;
    transform: rotate(45deg);
}
.article-resource ul{
    margin:0;
    padding:0 0 0 20px;
}
.article-resource ul li{
    position:relative;
    list-style: none;
    vertical-align: middle;
    padding-left:16px;
    margin-bottom:10px;
    line-height:20px;
    font-size:90%;
}
.article-resource ul li:before{
    content:"";
    background: #999;
    position:absolute;
    left:0;
    top:5px;
    display: inline-block;
    width:8px;
    height:8px;
    border-radius: 50%;
}
.article-resource ul li>a{
    font-weight:700;
}
.article-resource ul li span{
    font-style:italic;
    margin-left:5px;
}
/* ===== LIST TAGS ===== */
.list-tags>span{
    display:inline-block;
    margin-right:5px;
}
.list-tags>span>.fa{
    margin-right:3px;
}
.list-tags a{
    position:relative;
    display:inline-block;
    border:1px solid var(--color-border);
    border-left:2px solid var(--color-primary);
    padding: 3px 10px;
    margin:0 3px 5px 0;
    white-space: nowrap;
    -webkit-border-radius: 4px;
            border-radius: 4px;
}
/* ===== CART ===== */
.table-bordered td,
.table-bordered th {
    border-color:var(--color-border);
}
.table {
    color:var(--color-text);
}
.table thead th {
    text-align:center;
    vertical-align:middle;
    border-bottom-color:var(--color-border);
}
.table img {
    max-width:100%;
}
.box-cart .box-body {
    padding-top:10px;
}
.box-cart .table th,
.box-order .table th{
    padding:8px;
}
.box-cart .table td,
.box-order .table td{
    vertical-align:middle;
    padding:8px;
}
.box-cart .table .form-control {
    text-align:center;
}
/* ===== CART BANK ===== */
.cart-note {
    color:var(--color-red);
    font-weight:bold;
    font-style:italic;
}
.cart-bank {
    display:none;
    position: relative;
    background: #f0f0f0;
    padding:0 10px;
}
.cart-bank:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 48%;
    width: 0;
    height: 0;
    border-bottom: 6px solid #f0f0f0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}
.cart-bank p {
    margin-bottom:6px;
}
.cart-bank p:last-child {
    margin-bottom:0;
}
.cart-bank .media {
    padding:10px 0;
    border-bottom:1px solid #ccc;
}
.cart-bank .media:last-child {
    border-bottom:none;
}
.cart-bank .media img{
    width:100px;
    margin-right:10px;
}
/* ===== SUCCESS CART ===== */
.box-order {
    margin-bottom:20px;
}
.box-order .box-title {
    font-size: 110%;
    font-weight:bold;
    padding-bottom: 4px;
    border-bottom: 1px solid #ddd;
    margin-bottom:10px;
}
.box-order .order-date {
    color:#888;
    font-size:14px;
    font-weight:normal;
}
.box-order.thanks {
    text-align:center;
    margin-bottom:40px;
}
.box-order.thanks .box-title {
    color:#e31d1a;
    font-size:150%;
    font-weight:bold;
    padding-top:10px;
    border-bottom:none;
}
.box-order.thanks img {
    max-width:200px;
}
.box-order.thanks p {
    margin-bottom:4px;
}
/* ===== EMPTY CART ===== */
.empty-cart {
    text-align:center;
}
.empty-cart img {
    max-width:100%;
}
.empty-cart p {
    margin-bottom:20px;
}
.empty-cart .empty-cart-title {
    color: #e31d1a;
    font-size: 150%;
    font-weight: bold;
}
/* ===== ERROR ===== */
.error {
    text-align:center;
    padding: 2rem 0;
    background-color: #fff;
}
.error .error-title {
    font-size: 200%;
    font-weight: 700;
    margin-bottom:10px;
}
.error p {
    margin-bottom:10px;
}
/*== RESPONSIVE ==*/
@media (min-width: 992px){
    .col-left {
        padding-right:5px;
    }
    .col-right {
        padding-left:5px;
    }
    .container {
        padding-left:30px;
        padding-right:30px;
    }
    .wrap-top .container:after,
    .wrap-nav .container:before,
    .wrap-nav .container:after,
    .wrap-footer .container:before{
        left:30px;
        right:30px;
    }
    .aside-bottom,
    .logo {
        display:none;
    }
    .form-search {
        width:200px;
    }
    .navbar-toggler{
        display:none;
    }
    .navbar-nav {
        margin-right:auto;
    }
    .navbar-nav>.nav-item {
        position: relative;
    }
    .navbar-nav>.nav-item::after {
        position:absolute;
        content:"";
        top:50%;
        right:0;
        height:16px;
        width:1px;
        margin-top:-8px;
        background:#ccc;
    }
    .navbar-nav>.nav-item>.nav-link {
        position: relative;
        color:var(--color-text);
        font-weight:700;
        line-height:20px;
        padding:20px 20px;
        text-transform:uppercase;
        -webkit-transition: all .25s;
             -o-transition: all .25s;
                transition: all .25s;
    }
    .navbar-nav>.nav-item.dropdown>.nav-link {
        padding-right:28px;
    }
    .navbar-nav .nav-item:hover .nav-link,
    .navbar-nav .nav-item:focus .nav-link{
        color:var(--color-text-hover);
    }
    .navbar-nav .dropdown-menu {
        display: block;
        padding: 8px;
        margin: 0px;
        border:1px solid #d6645d;
        background-color:#d77872;
        min-width:250px;
        -webkit-transition: all .25s;
             -o-transition: all .25s;
                transition: all .25s;
        -webkit-transform: rotateX(90deg);
                transform: rotateX(90deg);
        -webkit-transform-origin: top;
            -ms-transform-origin: top;
                transform-origin: top;
        -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
           -moz-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
                box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
        -webkit-border-radius: 4px;
                border-radius: 4px;
        opacity: 0;
        z-index: 5000;
    }
    .navbar-nav>.nav-item:not(.full)>.dropdown-menu:after {
        bottom: 100%;
        left: 30px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #d77872;
        border-width: 10px;
    }
    .navbar-nav .dropdown-menu .dropdown-menu {
        position: absolute;
        top: 0px;
        left: 100%;
    }
    .navbar-nav .nav-item:hover>.dropdown-menu{
        opacity: 1;
        -webkit-transform: rotateX(0deg);
                transform: rotateX(0deg);
    }
    .navbar-nav .dropdown-menu>.nav-item>.nav-link {
        position:relative;
        color:#fff;
        padding:8px 12px;
        -webkit-border-radius: 4px;
                border-radius: 4px;
    }
    .navbar-nav .dropdown-menu>.nav-item.dropdown>.nav-link{
        padding-right:23px;
    }
    .navbar-nav .dropdown-menu>.nav-item>.nav-link:hover,
    .navbar-nav .dropdown-menu>.nav-item>.nav-link:active,
    .navbar-nav .dropdown-menu>.nav-item.dropdown:hover>.nav-link,
    .navbar-nav .dropdown-menu>.nav-item.dropdown:focus>.nav-link{
        color:#fc0f8f;
        background-color:#f6e5a6;
    }
    .navbar-nav .nav-link .caret{
        right:14px;
    }
    .navbar-nav>.nav-item>.nav-link>.caret:before,
    .navbar-nav>.nav-item>.nav-link>.caret:after{
        background-color:#111;
    }
    .navbar-nav>.nav-item>.nav-link:hover>.caret:before,
    .navbar-nav>.nav-item>.nav-link:hover>.caret:after,
    .navbar-nav>.nav-item>.nav-link:focus>.caret:before,
    .navbar-nav>.nav-item>.nav-link:focus>.caret:after,
    .navbar-nav>.nav-item.dropdown:hover>.nav-link>.caret:before,
    .navbar-nav>.nav-item.dropdown:hover>.nav-link>.caret:after{
        background-color:#fc0f8f;
    }
    .navbar-nav .dropdown-menu .caret{
        right:5px;
    }
    .navbar-nav .dropdown-menu .caret::before{
        top:-2px;
        left:0;
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
        background-color:#fff;
    }
    .navbar-nav .dropdown-menu .caret::after{
        top:2px;
        left:0;
        -webkit-transform: rotate(235deg);
                transform: rotate(235deg);
        background-color:#fff;
    }
    .navbar-nav .dropdown-menu > .nav-item > .nav-link:hover .caret::before,
    .navbar-nav .dropdown-menu > .nav-item > .nav-link:hover .caret::after,
    .navbar-nav .dropdown-menu > .nav-item > .nav-link:active .caret::before,
    .navbar-nav .dropdown-menu > .nav-item > .nav-link:active .caret::after,
    .navbar-nav .dropdown-menu > .nav-item.dropdown:hover .caret::before,
    .navbar-nav .dropdown-menu > .nav-item.dropdown:hover .caret::after{
        background-color:#fc0f8f;
    }
    .navbar-nav .nav-item.full {
        position: static;
    }
    .navbar-nav .full>.dropdown-menu{
        display: -ms-flexbox;
        display: flex;
        width:100%;
        border-top-left-radius:0;
        border-top-right-radius:0;
    }
    .navbar-nav .full>.dropdown-menu>.nav-item {
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .navbar-nav .full>.dropdown-menu>.nav-item>.nav-link {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        text-align:center;
    }
    .navbar-nav .full>.dropdown-menu>.nav-item>.nav-link>img {
        width:100%;
        margin-bottom:8px;
    }
    /*== MENU VERTICAL ==*/
    .nav-vertical.nav-hover .nav-link:hover,
    .nav-vertical.nav-hover .nav-link:focus,
    .nav-vertical.nav-hover .nav-link:active,
    .nav-vertical.nav-hover .dropdown:hover>.nav-link,
    .nav-vertical.nav-hover .dropdown:focus>.nav-link {
        color:var(--color-text-hover);
        text-decoration:underline;
    }
    .nav-vertical.nav-hover .dropdown > .nav-link {
        padding-right:10px;
    }
    .nav-vertical.nav-hover .dropdown-menu {
        position:absolute;
        top:0;
        left:100%;
        padding:6px 12px;
        background:#f7ecac;
        min-width:250px;
        border:1px solid #f27f95;
        -webkit-border-radius: 4px;
                border-radius: 4px;
    }
    .nav-vertical.nav-hover .nav-item:hover>.dropdown-menu {
        display: block;
    }
    .nav-vertical.nav-hover .dropdown-menu .nav-link{
        padding:10px 10px!important;
    }
    .nav-vertical.nav-hover .dropdown-menu .nav-link:before {
        left:0!important;
    }
    .nav-vertical.nav-hover .caret{
        width:0;
        height:0;
        right:5px;
        border:none;
        margin-top:0;
    }
    .nav-vertical.nav-hover .caret::before{
        top:-2px;
        left:0;
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
    }
    .nav-vertical.nav-hover .caret::after{
        top:2px;
        left:0;
        -webkit-transform: rotate(235deg);
                transform: rotate(235deg);
    }
    /*== PRODUCT ==*/
    .product-item .product-item-icon {
        width:36px;
        height:36px;
        line-height:36px;
        font-weight:bold;
    }
    .product-item .product-item-price .price {
        font-size:120%;
    }
    .product-item .product-item-btn .btn-buynow,
    .product-item .product-item-btn .btn-detail {
        min-width:100px;
    }
    .box-product .col-product,
    .box-product-list .col-product{
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .box-product .row,
    .box-product-list .row{
        margin-left:-8px;
        margin-right:-8px;
    }
    .box-product .col-product,
    .box-product-list .col-product{
        padding-left:8px;
        padding-right:8px;
    }
    .col-product .product-item {
        padding:16px 16px 8px 16px; 
        margin-top:16px;
    }
    .col-product .product-item .card-body {
        padding-bottom:48px;
    }
    .col-product .product-item .product-item-title,
    .col-product .product-item .product-item-price{
        margin-bottom:8px;
    }
    .col-product .product-item .product-item-btn {
        height:48px;
    }
    .owl-product {
        margin-top:16px;
        padding-left:25px;
        padding-right:25px;
    }
    .product-sort {
        margin-right:unset;
    }
    .product-sort > span {
        display:block;
    }
    .product-display{
        display: -ms-flexbox!important;
        display: flex!important;
    }
    .view-list .product-item .product-item-img {
        width:200px;
    }
    .view-list .product-item .card-body {
        position:relative;
        padding-right:210px;
    }
    .view-list .product-item .product-item-right {
        position:absolute;
        right:0;
        top:0;
        bottom:0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        text-align:center;
        width:200px;
        padding-top:10px;
        padding-left:16px;
        border-left:1px solid var(--color-border);
    }
    .view-list .product-item .product-item-right .product-item-price {
        margin-bottom:20px;
    }
    .view-list .product-item .product-item-right .product-item-btn {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        text-align:center;
        height:auto!important;
    }
    .view-list .product-item .product-item-right .product-item-btn .btn-detail {
        margin-bottom:4px;
    }
    .product-item.horizontal .product-item-img,
    .box-news-left .news-item .news-item-img,
    .box-service-left .service-item .service-item-img{
        width:90px;
    }
    /*== NEWS ==*/
    .box-news-list .news-item {
        padding:16px 0;
    }
    .box-news-list .news-item-img {
        width:250px;
    }
    .box-news-list .news-item-title {
        font-size:125%;
        font-weight:normal;
    }
    /*== SERVICE ==*/
    .box-service .col-service,    
    .box-service-list .col-service{
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .box-service .row,
    .box-service-list .row{
        margin-left:-8px;
        margin-right:-8px;
    }
    .box-service .col-service,
    .box-service-list .col-service{
        padding-left:8px;
        padding-right:8px;
    }
    .box-service .service-item,
    .box-service-list .service-item{
        margin-top:16px;
    }
    .box-content,
    .product-summary,
    .article-body .tab-content {
        padding:16px;
    }
    .box-cart.form-order .box-body{
        padding:16px;
        border-left:1px solid var(--color-border);
        border-right:1px solid var(--color-border);
        border-bottom:1px solid var(--color-border);
    }
}
@media (max-width: 991px){
    .banner-top{
        display:none;
    }
    body {
        -webkit-transition: -webkit-transform .3s ease-in-out;
                transition: -webkit-transform .3s ease-in-out;
         -o-transition: transform .3s ease-in-out;
            transition: transform .3s ease-in-out;
        transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    }
    .col-left {
        -ms-flex-order: 2;
                 order: 2;
    }
    .col-right {
        -ms-flex-order: 1;
                 order: 1;
    }
    .form-search{
        width:290px;
        padding:2px 0;
        margin:4px 5px 0 5px;
    }
    .form-search .form-control{
        padding:8px 10px 8px 30px;
    }
    .form-search .btn-search{
        left:6px;
        top:8px;
    }
    .navbar-collapse-show {
        position: fixed;
        width: 100vw;
        overflow: hidden;
        -webkit-transform: translateX(300px);
        -ms-transform: translateX(300px);
        transform: translateX(300px);
    }
    .bg-overlay {
        opacity: 0;
        visibility: hidden;
        background-color: rgba(0, 0, 0, 0.4);
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        z-index: 999;
        padding:0!important;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }
    .navbar-collapse-show .bg-overlay {
        opacity: 1;
        visibility: visible;
    }
    .wrap-nav .container{
        padding-top:8px;
        padding-bottom:18px;
        height:66px;
    }
    .navbar-toggler{
        position:relative;
        display:inline-block;
        line-height:1px;
        text-align:center;
        height:40px;
        padding:18px 15px 18px 15px;
        border:1px solid var(--color-border);
        -webkit-border-radius: 4px;
                border-radius: 4px;
        z-index:9999;
    }
    .navbar-collapse-show .navbar-toggler{
        position:fixed;
        left:0px;
        top:0;
        background-color:#fff;
        border:none;
        height:44px;
        padding-top:20px;
        border-top-left-radius:0;
        border-bottom-left-radius:0;
        border-top-right-radius:0;
    }
    .icon-bars{
        position:relative;
        display:inline-block;
        width:20px;
        height:2px;
        background-color:#555;
    }
    .icon-bars::before,
    .icon-bars::after{
        content: '';
        position: absolute;
        left:0;
        width:20px;
        height:2px;
        background-color:#555;
    }
    .icon-bars::before{
        top:-6px;
    }
    .icon-bars::after{
        top:6px;
    }
    .navbar-collapse-show .navbar-toggler .icon-bars,
    .navbar-collapse-show .navbar-toggler .icon-bars::before,
    .navbar-collapse-show .navbar-toggler .icon-bars::after{
        background-color:#555;
    }
    .navbar-collapse {
        display: block;
        position: fixed;
        top: 0px;
        bottom:0;
        left: -300px;
        width: 300px;
        height:auto!important;
        z-index: 1000;
        background-color:#fff;
        -webkit-transition: all .5s ease-in-out;
             -o-transition: all .5s ease-in-out;
                transition: all .5s ease-in-out;
    }
    .navbar-collapse .navbar-nav {
        position:absolute;
        top:46px;
        left:0;
        right:0;
        height:100vh;
        overflow-y: auto;
        padding:5px 0;
    }
    .navbar-nav .nav-link{
        position:relative;
        padding:10px;
        line-height:20px;
        border-bottom:1px solid var(--color-border);
    }
    .navbar-nav .dropdown-menu > li > .nav-link{
        padding-left:20px;
    }
    .navbar-nav .dropdown-menu ul > li > .nav-link {
        padding-left:30px;
    }
    .navbar-nav .dropdown-menu ul ul > li > .nav-link {
        padding-left:40px;
    }
    .navbar-nav .dropdown-menu ul ul ul > li > .nav-link {
        padding-left:50px;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link:active,
    .navbar-nav .nav-link.active{
        color:var(--color-text);
        background-color:#fff;
    }
    .navbar-nav .show>.nav-link{
        font-weight:600;
    }
    .navbar-nav .dropdown-menu {
        background-color:#fff;
        padding:0;
        margin: 0px;
        border:none;
    }
    .navbar-nav .show>.dropdown-menu {
        display: block;
        top: 100%;
    }
    .navbar-nav .caret{
        width:28px;
        height:28px;
        right:10px;
        margin-top:-14px;
        border:1px solid #ddd;
        -webkit-border-radius:50%;
                border-radius:50%;
    }
    .navbar-nav .caret::before,
    .navbar-nav .caret::after{
        top:50%;
        margin-top:-4px;
    }
    .navbar-nav .caret::before{
        left:10px;
    }
    .navbar-nav .caret::after{
        left:15px;
    }
    .navbar-nav .show.full>.dropdown-menu{
        display: -ms-flexbox;
        display: flex;        
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .navbar-nav .full>.dropdown-menu>.nav-item {
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
        max-width: 50%;
    }
    .navbar-nav .full>.dropdown-menu>.nav-item>.nav-link {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        text-align:center;
    }
    .navbar-nav .full>.dropdown-menu>.nav-item>.nav-link>img {
        width:100%;
        margin-bottom:8px;
    }
    .product-panel .row {
        margin-left:-5px;
        margin-right:-5px;
    }
    .product-panel .col-6 {
        padding-left:5px;
        padding-right:5px;
    }
    .article-body .nav-tabs{
        -ms-flex-wrap:nowrap;
            flex-wrap:nowrap;
    }
    .article-body .nav-tabs .nav-link {
        padding:8px;
    }
}
@media (min-width: 576px) {
    .form-order .row>label,
    .form-contactus .row>label{
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important;
        margin-bottom:0;
    }
    .form-order .row>label>.required,
    .form-contactus .row>label>.required {
        margin-right:5px;
        -ms-flex-order: -1;
                 order: -1;
    }
}
@media (max-width: 375px) {
    .article-review .article-review-title{
        font-size:100%;
        display:none;
    }
    .article-review .article-review-result{
        
    }
}