button:focus, a:focus {
    box-shadow: none !important;
}

.owl-dots--basic .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.owl-dots--basic .owl-dots .owl-dot span {
    background: white;
    border: 1px solid #dc3134;
}

.owl-dots--basic .owl-dots .owl-dot.active span {
    background: #dc3134;
}

.owl-nav--basic .owl-nav {
    margin: 0;
}

.owl-nav--basic .owl-nav button {
    position: absolute;
    top: 50%;
    left: 0rem;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 2rem !important;
    color: #dc3134 !important;
    text-shadow: 3px 0px 1px #201f10;
}

.owl-nav--basic .owl-nav button:hover,
.owl-nav--basic .owl-nav button:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.owl-nav--basic .owl-nav button:hover {
    background: transparent !important;
}

.owl-nav--basic .owl-nav button.owl-next {
    left: auto;
    right: 0rem;
    text-shadow: -3px 0px 1px #201f10;
}

.owl-nav--product .owl-nav {
    margin: 0;
}

.owl-nav--product .owl-nav button {
    position: absolute;
    top: 50%;
    left: -0.3rem;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 2rem !important;
    background: #dc3134 !important;
    color: #fff !important;
}

.owl-nav--product .owl-nav button:hover,
.owl-nav--product .owl-nav button:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.owl-nav--product .owl-nav button .fa {
    font-size: 18px;
    padding: 0.75rem 0.35rem;
}

.owl-nav--product .owl-nav button:hover {
    background: #ba2022 !important;
}

.owl-nav--product .owl-nav button.owl-next {
    left: auto;
    right: -0.3rem;
}

.owl-nav--post .owl-nav {
    margin: 0;
}

.owl-nav--post .owl-nav button {
    font-size: 2rem !important;
    color: #dc3134 !important;
    text-shadow: 3px 0px 1px #201f10;
}

.owl-nav--post .owl-nav button:hover,
.owl-nav--post .owl-nav button:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.owl-nav--post .owl-nav button:hover {
    background: transparent !important;
}

.owl-nav--post .owl-nav button.owl-next {
    text-shadow: -3px 0px 1px #201f10;
}

.page-breadcrumb {
    background: #f5f5f9;
    margin-bottom: 2rem;
    border-bottom: 1px solid lightgrey;
    position: relative;
}

.page-breadcrumb::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: -2px;
    left: 0;
    background: #ffffff;
}

.page-breadcrumb .breadcrumb {
    background: inherit;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.page-breadcrumb .breadcrumb-item {
    font-weight: bold;
    color: #333333;
    margin-bottom: 0;
}

.page-breadcrumb .breadcrumb-item:first-child {
    color: #dc3134;
}

.pagination .page-item .page-link {
    color: #333333;
}

.pagination .page-item.pageactive .page-link {
    color: #dc3134;
}

.page-product-cate .cate-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ba2022;
}

.page-product-cate .cate-header .cate-title {
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    color: #ba2022;
    font-weight: bold;
}

.page-product-sidebar .block-product-cate {
    margin-top: 2rem;
}

.page-product-sidebar .block-product-cate .block__header {
    margin-bottom: 0;
}

.page-product-sidebar .block-product-cate .block__content {
    background: #f5f5f9;
}

.page-product-sidebar .block-product-cate .block__content .content__item {
    padding: 0 1rem;
}

.page-product-sidebar .block-product-cate .block__content .content__item a {
    display: block;
    color: #333333;
    padding: 0.75rem 0;
    border-bottom: 1px solid #c4c4c7;
    border-top: 1px solid #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.page-product-sidebar .block-product-cate .block__content .content__item a:hover {
    text-decoration: none;
    color: #dc3134;
}

.page-product-sidebar .block-product-cate .block__content .content__item:last-child a {
    border: none;
}

.page-product-detail__inner {
    display: grid;
    grid-template-columns: 300px calc(100% - 300px);
}

@media screen and (max-width: 768px) {
    .page-product-detail__inner {
        grid-template-columns: 100%;
    }
}

.page-product-detail__inner .inner__left {
    position: relative;
}

.page-product-detail__inner .inner__right {
    padding-left: 1rem;
}

@media screen and (max-width: 768px) {
    .page-product-detail__inner .inner__right {
        padding-left: 0;
    }
}

.page-product-detail__inner .product-detail {
    background: #f5f5f9;
    padding: 1rem;
    display: grid;
    grid-template-columns: 250px calc(100% - 250px);
}

@media screen and (max-width: 768px) {
    .page-product-detail__inner .product-detail {
        grid-template-columns: 100%;
    }
}

.page-product-detail__inner .product-detail__left {
    position: relative;
}

.page-product-detail__inner .product-detail__left::after,
.page-product-detail__inner .product-detail__left::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    right: -1rem;
    top: 50%;
    background: #c4c4c7;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.page-product-detail__inner .product-detail__left::before {
    right: calc(-1rem - 1px);
    background: #ffffff;
}

.page-product-detail__inner .product-detail__right {
    padding-left: 2rem;
}

@media screen and (max-width: 768px) {
    .page-product-detail__inner .product-detail__right {
        padding-left: 0;
    }
}

.page-product-detail__inner .product-detail__image {
    width: 100%;
    height: auto;
    max-height: 450px;
    margin-bottom: 0;
    padding: 0.5rem;
    background: #fff;
    -webkit-box-shadow: 0 0 2px #0000008c;
    -moz-box-shadow: 0 0 2px #0000008c;
    box-shadow: 0 0 2px #0000008c;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 768px) {
    .page-product-detail__inner .product-detail__image {
        width: 220px;
        height: 320px;
        margin: 0 auto 1rem auto;
    }
}

.page-product-detail__inner .product-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-product-detail__inner .product-detail__image .discount-ticket {
    position: absolute;
    top: 1rem;
    right: -3.5rem;
    padding: 0.5rem 4rem;
    background: #dc3134;
    color: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.page-product-detail__inner .product-detail__title {
    margin: 0 0 1rem 0;
    font-size: 1.8rem;
}

.page-product-detail__inner .product-detail__price {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.page-product-detail__inner .product-detail__price h2 {
    margin: 0;
    font-size: 1.8rem;
}

.page-product-detail__inner .product-detail__price strike {
    margin-left: 1rem;
    font-size: 1.3rem;
    color: #808080;
}

.page-product-detail__inner .product-detail__meta tr td {
    padding: 0 0 0.5rem;
}

.page-product-detail__inner .product-detail__meta tr td:first-child {
    color: #666565;
}

.page-product-detail__inner .product-detail__meta .meta__soluong .soluong__inner {
    display: flex;
    align-items: center;
    width: max-content;
    margin: 0;
}

.page-product-detail__inner .product-detail__meta .meta__soluong .soluong__inner .soluong__them,
.page-product-detail__inner .product-detail__meta .meta__soluong .soluong__inner .soluong__giam {
    background: #dc3134;
    color: #ffff;
    width: 34px;
    height: 34px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.page-product-detail__inner .product-detail__meta .meta__soluong .soluong__inner .form-control {
    height: 34px;
    width: 60px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid #dc3134;
    border-left: none;
    border-right: none;
}

.page-product-detail__inner .product-detail__cart-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.page-product-detail__inner .product-detail__cart-btns .btn-add-cart,
.page-product-detail__inner .product-detail__cart-btns .btn-add-cart-muangay {
    background: #dc3134;
    color: #fff;
    width: calc(50% - 0.5rem);
    border: 1px solid lightgrey;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.page-product-detail__inner .product-detail__cart-btns .btn-add-cart:hover,
.page-product-detail__inner .product-detail__cart-btns .btn-add-cart-muangay:hover {
    background: #efea7b;
    color: #333333;
}

.page-product-detail__inner .product-detail__cart-btns .btn-add-cart-muangay {
    background: #efea7b;
    color: #333333;
}

.page-product-detail__inner .product-detail__cart-btns .btn-add-cart-muangay:hover {
    background: #dc3134;
    color: #ffffff;
}

.page-product-detail__inner .product-detail--bottom {
    margin-top: 2rem;
}

.page-product-detail__inner .product-detail--bottom .nav-tabs {
    border-bottom: 4px solid #ba2022;
}

.page-product-detail__inner .product-detail--bottom .nav-tabs .nav-item {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.page-product-detail__inner .product-detail--bottom .nav-tabs .nav-item .nav-link {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    position: relative;
    background: white;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #dc3134;
    font-weight: bold;
    height: 100%;
    border: 1px solid #dc3134;
}

.page-product-detail__inner .product-detail--bottom .nav-tabs .nav-item .nav-link span {
    position: relative;
    z-index: 1;
}

.page-product-detail__inner .product-detail--bottom .nav-tabs .nav-item .nav-link.active {
    background: #ed1c22;
    color: #fff;
    z-index: 2;
}

.page-product-detail__inner .product-detail--bottom .nav-tabs .nav-item:last-child {
    z-index: 1;
}

.page-product-detail__inner .product-detail--bottom .tab-content {
    background: #f5f5f9;
    padding-top: 1rem;
}

.page-product-detail__inner .product-detail--bottom .tab-content p:last-child,
.page-product-detail__inner .product-detail--bottom .tab-content table:last-child {
    margin-bottom: 0;
}

.page-product-detail__inner .product-detail--bottom .tab-content * {
    max-width: 100%;
}

.page-product-detail__inner .product-detail__related {
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    .page-product-detail__inner .product-detail__related {
        margin-bottom: 2rem;
    }
}

.page-product-detail__inner .product-detail__related .block__header {
    margin-bottom: 0;
}

.page-product-detail__inner .product-detail__related .block__content {
    padding: 1rem;
    background: #f5f5f9;
}

.page-order {
    background: #f5f5f9;
    margin-bottom: -2rem;
}

.page-order .page-order-header {
    background: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid lightgray;
}

.page-order .page-order-header h1 {
    text-transform: uppercase;
    color: #ba2022;
    font-weight: bold;
    margin: 0;
}

.page-order .page-order-content {
    padding-top: 2rem;
}

.page-order .table-checkout {
    margin-bottom: 0;
}

.page-order .table-checkout thead th {
    border: none;
    font-weight: normal;
    color: grey;
}

.page-order .table-checkout thead th:nth-child(2) {
    color: #000;
    font-size: 1.2rem;
}

.page-order .table-checkout #magiamgia {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #f5f5f9;
    border: none;
}

.page-order .table-checkout .qty__action {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}

@media screen and (max-width: 768px) {
    .page-order .table-checkout .qty__action {
        height: 30px;
        width: 100px;
        margin-left: 1rem;
    }
}

.page-order .table-checkout .qty__action .form-control {
    border-color: #ed1c22;
    border-width: 1px 0 1px 0;
    margin-bottom: 0;
    text-align: center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.page-order .table-checkout .qty__action .form-control:hover,
.page-order .table-checkout .qty__action .form-control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

@media screen and (max-width: 768px) {
    .page-order .table-checkout .qty__action .form-control {
        height: 30px;
    }
}

.page-order .table-checkout .qty__action .btn {
    background: #ed1c22;
    border: 1px solid #ed1c22;
    color: #fff;
    font-weight: bold;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.page-order .table-checkout .qty__action .btn:hover,
.page-order .table-checkout .qty__action .btn:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

@media screen and (max-width: 768px) {
    .page-order .table-checkout .qty__action .btn {
        height: 30px;
    }
}

.page-order .table-checkout .qty__action .btn:hover {
    color: #ed1c22;
    background: white;
}

.page-order .table-checkout .qty .btn-capnhat {
    width: 100%;
    border: 1px solid #ed1c22;
    color: #ed1c22;
    padding: 0.25rem;
    display: block;
    margin-top: 0.5rem;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .page-order .table-checkout .qty .btn-capnhat {
        margin-top: 0;
        width: 30px;
        height: 30px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 1rem;
    }
}

.page-order .table-checkout .qty .btn-capnhat:hover {
    text-decoration: none;
    color: white;
    background: #ed1c22;
    cursor: pointer;
}

.page-order .table-checkout #btnMaGiamGia {
    border: 1px solid #ed1c22;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #ed1c22;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.page-order .table-checkout #btnMaGiamGia:hover {
    color: #fff;
    background: #ed1c22;
}

.page-order .table-checkout .tientotal {
    font-size: 1.3rem;
    font-weight: normal;
    margin-bottom: 0;
}

.page-order .table-checkout .tientotal--final {
    color: #dc3134;
}

.page-order .btn-laphoadon {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #ed1c22;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #ed1c22;
}

.page-order .btn-laphoadon:hover {
    color: #333333;
    background: #efea7b;
    border-color: #333333;
}

.box-checkout-info {
    background: #ffffff;
    padding: 1rem;
    -webkit-box-shadow: 1px 2px 2px #d0d0d0;
    -moz-box-shadow: 1px 2px 2px #d0d0d0;
    box-shadow: 1px 2px 2px #d0d0d0;
}

.box-checkout-info__heading {
    font-size: 1.3rem;
    font-weight: bold;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.box-checkout-info__content {
    padding-top: 1rem;
}

.form-box .form-group {
    display: grid;
    grid-template-columns: 130px calc(100% - 130px);
    position: relative;
    align-items: center;
}

.form-box .form-group:last-of-type {
    align-items: start;
}

.form-box .form-group:last-of-type label {
    margin-top: 0.5rem;
}

.form-box .form-group label {
    text-align: right;
    padding-right: 2rem;
    font-size: 1rem;
}

.form-box .form-group label.error {
    color: #dc3134;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: -18px;
    right: 0;
}

.form-box .form-group .form-control {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-width: 0 0 1px 0;
    padding: 0.5rem 0;
}

.form-box .form-group .form-control:hover,
.form-box .form-group .form-control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.form-box .form-group .form-control.error {
    border-color: #dc3134;
}

.form-box .form-group .form-control.error::placeholder {
    color: #dc3134;
}

.form-group__icon {
    position: relative;
}

.form-group__icon .fa {
    position: absolute;
    color: grey;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 1.5rem;
    text-align: center;
}

.form-group__icon .form-control {
    padding-left: 2rem !important;
}

.product-item {
    background: #ffffff;
    overflow: hidden;
    border: 1px solid #ba2022;
    position: relative;
    padding-bottom: 5.5rem;
}

.product-item--vertical {
    display: flex;
    padding-bottom: 0;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.product-item .item__image {
    display: block;
    height: 200px;
    width: 100%;
    margin-bottom: 0;
    position: relative;
}

.product-item .item__image > a {
    display: block;
}

.product-item .item__image > a::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.38);
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 2;
}

.product-item .item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    transform-origin: top center;
}

.product-item:not(.product-item--vertical):hover .item__image img {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
}

.product-item--vertical .item__image {
    display: flex;
    flex: 0 0 100px;
    height: 100px;
    border: 1px solid lightgrey;
    padding: 0.5rem;
}

.product-item--vertical .item__image::before {
    display: none;
}

.product-item--vertical .item__image img {
    object-fit: contain;
}

.product-item .item__saleoff {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #dc3134;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.product-item--vertical .item__saleoff {
    position: unset;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 0.15rem 0.5rem;
    width: 2.5rem;
    height: max-content;
}

.product-item .item__info {
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 100%;
    background: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 3;
}

@media screen and (max-width: 768px) {
    .product-item .item__info {
        bottom: 0;
    }
}

.product-item .item__info .info__title {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    text-align: left;
    font-weight: bold;
    font-size: 0.9rem;
    height: 3.4em;
    color: #333333;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.product-item .item__info .info__title:hover {
    color: #dc3134;
}

.product-item .item__info .info__price {
    color: #F59300;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    padding: 0 0.5rem;
    justify-content: space-between;
    align-items: flex-end;
}

.product-item .item__info .info__price strike {
    font-size: 11px;
    color: #666666;
}

.product-item .item__info .info__utils .btn-add-cart-homepage {
    background: #dc3134;
    color: #ffffff;
    font-size: 12px;
    width: 100%;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.product-item .item__info .info__utils .btn-add-cart-homepage:hover,
.product-item .item__info .info__utils .btn-add-cart-homepage:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.product-item .item__info .info__utils .btn-add-cart-homepage:hover {
    background: #efea7b;
    color: #333333;
}

.product-item:not(.product-item--vertical):hover .item__image > a::before {
    opacity: 1;
}

.product-item:not(.product-item--vertical):hover .item__info {
    bottom: 0;
}

.product-item:not(.product-item--vertical):hover .item__info a {
    text-decoration: none;
}

.product-item:not(.product-item--vertical):hover .item__info .info__title {
    height: 6.4em;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.product-item--vertical .item__image {
    padding: 0;
    border: none;
}

.product-item--vertical .item__info {
    position: unset;
    padding-left: 1rem;
    border-left: none;
    padding-right: 0.35rem;
}

.product-item--vertical .item__info:hover a {
    text-decoration: none;
}

.product-item--vertical .item__info .info__title {
    padding: 0.5rem 0 0 0;
    font-size: 1.1rem;
    height: auto;
    max-height: 3.4em;
}

.product-item--vertical .item__info .info__price {
    padding: 0 0.5rem 0.5rem 0;
    justify-content: flex-end;
}

.product-item--vertical .item__info .info__price span:nth-child(2) {
    margin: 0 1rem;
    display: inline-block;
}

.product-item--vertical .item__info .info__utils {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.product-item--vertical:hover .item__info .info__utils {
    bottom: 0;
}

.block-product-sidebar .block__content .product-item {
    border: none;
}

.page-post-cate .cate-header {
    padding-bottom: 1rem;
    position: relative;
}

.page-post-cate .cate-header::after {
    content: '';
    position: absolute;
    width: 5rem;
    height: 2px;
    background: #dc3134;
    bottom: 2rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.page-post-cate .cate-header .cate-title {
    margin: 0 0 1rem 0;
    font-weight: bold;
    color: #dc3134;
    text-align: center;
}

.page-post-cate .cate-header .cate-description {
    margin-bottom: 2rem;
    text-align: center;
}

.page-post-detail .post-header .post-title {
    margin: 0;
}

.page-post-detail .post-header .post-meta {
    padding: 0.5rem 0;
}

.page-post-detail .post-header .post-meta .post-date {
    text-align: center;
    color: grey;
    margin-bottom: 2rem;
    position: relative;
}

.page-post-detail .post-header .post-meta .post-date::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    width: 3rem;
    height: 1px;
    background: #dc3134;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.page-post-detail .post-header .post-meta .post-date .fa {
    color: #dc3134;
}

.page-post-detail__inner {
    display: grid;
    grid-template-columns: 300px calc(100% - 300px - 2rem);
    grid-column-gap: 2rem;
}

@media screen and (max-width: 768px) {
    .page-post-detail__inner {
        grid-template-columns: 100%;
        grid-column-gap: 0;
    }
}

.page-post-detail__inner img {
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .page-post-detail__inner .post-detail-left {
        order: 1;
    }
}

.post-item {
    background: #f5f5f9;
    border: 1px solid #333333;
}

.post-item--vertical {
    display: grid;
    grid-template-columns: 80px auto;
    grid-template-rows: 80px;
    margin-bottom: 1rem;
    border-color: lightgray;
}

.post-item__image {
    display: block;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.post-item__image::after {
    content: '\f06e';
    font-family: FontAwesome, sans;
    color: #fff;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.post-item__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.post-item:hover .post-item__image::after {
    opacity: 1;
}

.post-item--vertical .post-item__image {
    height: 80px;
}

.post-item--vertical .post-item__image::after {
    font-size: 2rem;
}

.post-item__meta {
    padding-top: 0.5rem;
    position: relative;
}

.post-item__meta .meta__date {
    text-align: center;
    margin-bottom: 0;
    color: #333333;
    padding-bottom: 0.25rem;
}

.post-item__meta .meta__date .fa {
    color: #dc3134;
    margin-right: 0.35rem;
}

.post-item__meta::after {
    content: '';
    position: absolute;
    width: 4rem;
    height: 1px;
    background: #dc3134;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.post-item--vertical {
    border: none;
    background: white;
}

.post-item--vertical .post-item__meta .meta__date {
    text-align: left;
    padding: 0;
}

.post-item--vertical .post-item__meta::after {
    display: none;
}

.post-item__content {
    padding: 0.5rem;
}

.post-item__content a:hover {
    text-decoration: none;
}

.post-item__content .post-item__title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #333333;
    height: 3em;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.post-item__content .post-item__title:hover {
    color: #dc3134;
}

.top-header {
    position: relative;
    z-index: 3;
    -webkit-box-shadow: 2px 2px 3px #00000052;
    -moz-box-shadow: 2px 2px 3px #00000052;
    box-shadow: 2px 2px 3px #00000052;
}

@media screen and (max-width: 768px) {
    .top-header {
        display: none;
    }
}

.top-header__inner {
    display: grid;
    grid-template-columns: auto auto;
    padding: 0.5rem;
}

.top-header__inner a {
    color: #333333;
    cursor: pointer;
}

.top-header__inner a:hover {
    text-decoration: none;
}

.top-header__inner a .fa {
    color: #dc3134;
}

.frmSearch .input-group {
    background: #ffffff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 3px 3px 3px #00000052;
    -moz-box-shadow: 3px 3px 3px #00000052;
    box-shadow: 3px 3px 3px #00000052;
}

.frmSearch .input-group .form-control {
    border: none;
    background: transparent;
    padding: 1.3rem 1rem;
}

.frmSearch .input-group .form-control:hover,
.frmSearch .input-group .form-control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.frmSearch .input-group .btn {
    position: relative;
    color: #dc3134;
}

.frmSearch .input-group .btn:hover,
.frmSearch .input-group .btn:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.frmSearch .input-group .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 1px;
    height: 80%;
    background: #dc3134;
}

.cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 100%;
    position: relative;
}

.cart-link .fa,
.cart-link span {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background: #ffffff;
    color: #dc3134;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid #ed1c22;
}

.cart-link:hover {
    text-decoration: none;
    border-color: white;
}

.cart-link:hover .fa {
    color: #fff;
    background: #ed1c22;
    border-color: white;
}

.cart-link span {
    position: absolute;
    top: 10%;
    right: -50%;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 0.9rem;
}

.header-banner {
    background: #efea7b;
    padding: 2rem 0;
}

@media screen and (max-width: 768px) {
    .header-banner {
        padding: 1rem 0;
    }
}

.header-banner__inner {
    display: grid;
    grid-template-columns: 40% 30% 30%;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .header-banner__inner {
        grid-template-columns: 100%;
    }
}

.header-banner__inner .inner__logo {
    display: grid;
    grid-template-columns: 20% auto;
}

.header-banner__inner .inner__logo .logo__image {
    width: 100%;
    height: 100%;
}

.header-banner__inner .inner__logo .logo__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-banner__inner .inner__logo .logo__site-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.618rem;
    font-weight: bolder;
    color: #dc3134;
    text-transform: uppercase;
    padding-left: 1rem;
}

@media screen and (max-width: 768px) {
    .header-banner__inner .inner__logo .logo__site-name {
        font-size: 1.4rem;
    }
}

.header-banner__inner .inner__logo .logo__site-name:hover {
    text-decoration: none;
}

.header-banner__inner .inner__logo .logo__site-name span {
    font-weight: lighter;
    font-size: 1.3rem;
    color: #595959;
}

.header-banner__inner .inner__searchbar {
    padding: 0 2rem;
}

@media screen and (max-width: 768px) {
    .header-banner__inner .inner__searchbar {
        display: none;
    }
}

.header-banner__inner .inner__medals {
    height: 80px;
    display: flex;
    justify-content: flex-end;
}

.header-banner__inner .inner__medals img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .header-banner__inner .inner__medals {
        display: none;
    }
}

.page-header {
    background: #dc3134;
    -webkit-box-shadow: 2px 2px 3px #00000052;
    -moz-box-shadow: 2px 2px 3px #00000052;
    box-shadow: 2px 2px 3px #00000052;
    position: sticky;
    top: 0;
    z-index: 5;
}

.page-header #main-menu {
    padding: 0;
}

.page-header #main-menu .mobile-menu-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

@media screen and (min-width: 769px) {
    .page-header #main-menu .mobile-menu-bar {
        display: none;
    }
}

.page-header #main-menu .mobile-menu-bar .navbar-toggler {
    color: white;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 0;
    font-size: 2.5rem;
}

.page-header #main-menu .mobile-menu-bar .navbar-toggler:hover,
.page-header #main-menu .mobile-menu-bar .navbar-toggler:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.page-header #main-menu .mobile-menu-bar__utils {
    display: flex;
}

.page-header #main-menu .mobile-menu-bar__utils .cart-link span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
    top: -9px;
    right: 65%;
}

.page-header #main-menu #main-menu-content .navbar-nav {
    width: 100%;
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item:hover > .nav-link {
    background: #ba2022;
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item > .nav-link {
    color: #ffffff;
    padding: 1rem 1.5rem;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .page-header #main-menu #main-menu-content .navbar-nav > .nav-item > .nav-link {
        border-bottom: 1px solid #a12426;
        border-top: 1px solid #ff3e42;
    }
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item:last-child > .nav-link {
    border-right: none;
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item.active > .nav-link,
.page-header #main-menu #main-menu-content .navbar-nav > .nav-item--categories > .nav-link {
    background: #ba2022;
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item.dropdown .dropdown-menu {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-shadow: 2px 2px 3px #00000052;
    -moz-box-shadow: 2px 2px 3px #00000052;
    box-shadow: 2px 2px 3px #00000052;
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item.dropdown .dropdown-menu .dropdown-item {
    padding: 0;
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item.dropdown .dropdown-menu .dropdown-item a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    background: #dc3134;
    border-bottom: 1px solid #a12426;
    border-top: 1px solid #ff3e42;
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item.dropdown .dropdown-menu .dropdown-item a:hover {
    background: #ba2022;
    text-decoration: none;
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item--categories {
    position: relative;
    width: 300px;
}

@media screen and (max-width: 768px) {
    .page-header #main-menu #main-menu-content .navbar-nav > .nav-item--categories {
        width: 100%;
    }
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item--categories > .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item--categories .dropdown-menu {
    width: 100%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 0;
    padding: 0;
    border: none;
    -webkit-box-shadow: 2px 2px 3px #00000052;
    -moz-box-shadow: 2px 2px 3px #00000052;
    box-shadow: 2px 2px 3px #00000052;
}

@media screen and (max-width: 768px) {
    .page-header #main-menu #main-menu-content .navbar-nav > .nav-item--categories .dropdown-menu {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item--categories .dropdown-menu .nav-item .nav-link {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    background: #dc3134;
    border-bottom: 1px solid #a12426;
    border-top: 1px solid #ff3e42;
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item--categories .dropdown-menu .nav-item .nav-link:hover {
    background: #ba2022;
}

.page-header #main-menu #main-menu-content .navbar-nav > .nav-item--extra {
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .page-header #main-menu #main-menu-content .navbar-nav > .nav-item--extra {
        display: none;
    }
}

.page-features {
    background: #f5f5f9;
}

.page-features__inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.page-features__inner .features__item {
    min-width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

@media screen and (max-width: 768px) {
    .page-features__inner .features__item {
        min-width: 50%;
    }
}

.page-features__inner .features__item .item__icon {
    font-size: 2rem;
}

@media screen and (max-width: 768px) {
    .page-features__inner .features__item .item__icon {
        font-size: 1.2rem;
    }
}

.page-features__inner .features__item .item__content {
    padding-left: 1rem;
}

.page-features__inner .features__item .item__content .content__title {
    font-weight: bolder;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .page-features__inner .features__item .item__content .content__title {
        font-size: 1rem;
    }
}

.page-features__inner .features__item .item__content .content__text {
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .page-features__inner .features__item .item__content .content__text {
        font-size: 0.8rem;
    }
}

.main-content-block .block__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 4px solid #ba2022;
    overflow: hidden;
}

.main-content-block .block__header p {
    position: relative;
    margin-bottom: 0;
    padding: 0.75rem 0.75rem calc(0.75rem - 3px) 0.75rem;
    background: #ED1C22;
    color: #fff;
    font-weight: bold;
    font-size: 1.15rem;
}

.main-content-block .block__header p::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 46px;
    height: 100%;
    z-index: 0;
    background-image: url('../image/heading.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.main-content-block .block__header a {
    color: #ba2022;
}

.page-products-top {
    padding: 2rem 0;
}

.page-products-top__inner {
    display: grid;
    grid-template-columns: 300px calc(100% - 300px);
}

@media screen and (max-width: 768px) {
    .page-products-top__inner {
        grid-template-columns: 100%;
    }
}

@media screen and (max-width: 768px) {
    .page-products-top__inner .page-products-top__left {
        margin-bottom: 1rem;
    }
}

.page-products-top__inner .page-products-top__left .product-item {
    margin-bottom: 1rem;
}

.page-products-top__inner .page-products-top__right {
    padding-left: 1.5rem;
}

@media screen and (max-width: 768px) {
    .page-products-top__inner .page-products-top__right {
        padding-left: 0;
    }
}

.page-products-top__inner .page-products-top__right .block--best-selling {
    margin-bottom: 2rem;
}

.block--support .block__content .list-group-item {
    display: grid;
    grid-template-columns: 1fr 4fr;
    padding: 1rem 0;
}

.block--support .block__content .list-group-item:first-child {
    padding-top: 0;
}

.block--support .block__content .list-group-item:last-child {
    padding-bottom: 0;
}

.block--support .block__content .list-group-item figure {
    margin-bottom: 0;
}

.block--support .block__content .list-group-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block--support .block__content .list-group-item > div {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.block--support .block__content .list-group-item > div p {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.block--support .block__content .list-group-item > div a {
    font-weight: bold;
    color: #dc3134;
    display: flex;
    align-items: center;
}

.block--support .block__content .list-group-item > div a .fa {
    display: inline-flex;
    background: #dc3134;
    color: #fff;
    margin-right: 0.5rem;
    justify-content: center;
    align-items: center;
    width: 27px;
    height: 27px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.page-ad-top {
    margin-bottom: 2rem;
}

.page-content-bottom .block--featured .block__content .featured__ad-block {
    display: block;
    width: 100%;
    height: 280px;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .page-content-bottom .block--featured .block__content .featured__ad-block {
        height: 80px;
    }
}

.page-content-bottom .block--featured .block__content .featured__ad-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-content-bottom .block--featured .block__content:last-child {
    margin-bottom: 0;
    margin-top: 1rem;
}

.page-content-bottom .block--featured .block__content .featured__item {
    display: grid;
    grid-template-columns: 300px calc(100% - 300px - 1.5rem);
    grid-template-rows: 280px;
    margin-bottom: 1rem;
    grid-column-gap: 1.5rem;
}

@media screen and (max-width: 768px) {
    .page-content-bottom .block--featured .block__content .featured__item {
        grid-template-columns: 100%;
    }
}

.page-content-bottom .block--featured .block__content .featured__item .item__avatar {
    order: 0;
}

@media screen and (max-width: 768px) {
    .page-content-bottom .block--featured .block__content .featured__item .item__avatar {
        margin-bottom: 1rem;
    }
}

.page-content-bottom .block--featured .block__content .featured__item .item__avatar a {
    display: block;
    width: 100%;
    height: 100%;
}

.page-content-bottom .block--featured .block__content .featured__item .item__avatar a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-content-bottom .block--featured .block__content .featured__item:nth-of-type(2n) {
    grid-template-columns: calc(100% - 300px - 1.5rem) 300px;
}

@media screen and (max-width: 768px) {
    .page-content-bottom .block--featured .block__content .featured__item:nth-of-type(2n) {
        grid-template-columns: 100%;
    }
}

.page-content-bottom .block--featured .block__content .featured__item:nth-of-type(2n) .item__avatar {
    order: 1;
}

@media screen and (max-width: 768px) {
    .page-content-bottom .block--featured .block__content .featured__item:nth-of-type(2n) .item__avatar {
        order: 0;
    }
}

.page-content-bottom .block--featured .block__content .featured__item:last-of-type {
    margin-bottom: 0;
}

.page-content-bottom .block--news {
    margin-top: 2rem;
}

/* Start Video Image */
.vid_slide_nav button.btn {
    padding: 0 3px;
    color: #BA2022;
}

.vid_slide_nav button.slick-disabled {
    opacity: .4;
    cursor: auto !important;
}

.vid_slide_nav button.btn:hover {
    color: #dc3134;
}

.video-item {
    position: relative;
}

.video-item .img {
    height: 170px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.video-item .img iframe {
    height: 100%;
    width: 100%;
}

.video-item a span {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: #fff;
    margin: 0 auto;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0px 0px 1px rgba(0, 0, 0, .2);
    transition: .3s all cubic-bezier(0.78, 1.26, 1, 1.17);
}

.video-item a span i {
    margin-left: 3px;
}

.video-item a {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: .3s all cubic-bezier(0.78, 1.26, 1, 1.17);
}

.video-item:hover a {
    background: rgba(186, 32, 34, 0.29);
    opacity: 1;
    visibility: visible;
}

.video-item:hover a span {
    top: 50%;
    opacity: 1;
    visibility: visible;
    color: #dc3134;
}

.video-item a span:before {
    content: " ";
    position: absolute;
    border: 4px solid rgba(220, 49, 52, 0.29);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    z-index: 1;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
}

#video-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transition-delay: 0.5s;
    background-color: #c1bfda !important;
    color: #FFFFFF !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px !important;
    transition: 0.7s all;
    -webkit-transition: 0.7s all;
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    opacity: 0;
    visibility: hidden;
}

#video-slider .owl-nav button span {
    display: block;
    height: 100%;
    width: 100%;
    line-height: 100%;
}

#video-slider:hover .owl-nav button {
    transform: translate(0, -50%) !important;
    opacity: 1;
    visibility: visible;
}

#video-slider .video-item:hover span:before {
    border-color: #dc3134;
    box-shadow: 0 0px 0px 1px rgba(0, 0, 0, 0);
}

#video-slider .owl-nav button.owl-prev {
    top: 50%;
    transform: translate(45px, -50%);
    left: 1%;
    background: #fff !important;
    color: #333 !important;
}

#video-slider .owl-nav button.owl-next {
    right: 1%;
    background: #fff !important;
    color: #333 !important;
    top: 50%;
    transform: translate(-45px, -50%);
}

#video-slider .owl-nav button:hover {
    background: #dc3134 !important;
    color: #fff !important;
}

@media screen and (max-width: 767px) {
    .module-video {
        padding: 30px 0
    }


    .video-item a {
        background: rgba(186, 32, 34, 0.29);
        opacity: 1;
        visibility: visible;
    }

    .video-item .img {
        height: 230px;
    }

    #video-slider .owl-nav button.owl-next {
        right: 1% !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%);
    }

    #video-slider .owl-nav button.owl-prev {
        left: 1% !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%);
    }
}

/* End Video Slide */

.page-footer .footer-cta {
    background: #071a2d;
    color: #fff;
    padding: 3rem 0;
    margin-top: 2rem;
}

.page-footer .footer-cta__inner {
    display: grid;
    grid-template-columns: 45% auto;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .page-footer .footer-cta__inner {
        grid-template-columns: 100%;
    }
}

.page-footer .footer-cta__content {
    text-align: center;
}

.page-footer .footer-cta__content .content__title {
    font-size: 1.8rem;
}

.page-footer .footer-cta__content .content__text {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.page-footer .footer-cta__form {
    padding-left: 30px;
}

@media screen and (max-width: 768px) {
    .page-footer .footer-cta__form {
        padding: 0;
        margin-top: 1rem;
    }
}

.page-footer .footer-cta__form .input-group {
    background: #dc3134;
    padding: 0.1rem;
}

.page-footer .footer-cta__form .input-group input:hover,
.page-footer .footer-cta__form .input-group input:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.page-footer .footer-cta__form .input-group input[type="email"] {
    background: #071a2d;
    border: none;
    color: white;
}

.page-footer .footer-cta__form .input-group input[type="email"]::placeholder {
    font-size: 1rem;
    color: #cccccc;
}

.page-footer .footer-cta__form button {
    color: #fff;
    padding: 0 1.5rem;
}

@media screen and (min-width: 769px) {
    .w-80 {
        width: 80%;
    }

    .w-20 {
        width: 20%;
    }

    .footer-cta .w-20 {
        padding-left: 30px;
    }

    .footer-cta .w-80 {
        padding-right: 30px;
    }
}

.analytics-detail {
    min-width: 50%;
    padding: 2px 5px;
    font-size: 1.1rem;
}

.analytics-detail:last-of-type {
    padding-right: 0;
    border: 0;
}

.access-analytics i {
    color: #fff;
    margin-right: 2px;
}

.access-analytics img {
    width: .85rem;
    height: .85rem;
    margin-top: -2px;
    margin-right: 2px;
    margin-left: -3px;
}

@media screen and (max-width: 768px) {
    .access-analytics {
        display: flex;
        flex-wrap: wrap;
    }

    .analytics-detail {
        margin-top: 5px;
    }
}


.footer-info {
    background: #f5f5f9;
    padding: 3rem 0;
}

.footer-info__inner {
    display: grid;
    grid-template-columns: 36% 39% 25%;
}

.footer-info__inner > * {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .footer-info__inner {
        grid-template-columns: 100%;
    }
}

.footer-info__inner .footer-item--intro .item__header {
    margin-bottom: 1rem;
}

.footer-info__inner .footer-item--intro .item__list {
    margin-left: 1rem;
}

.footer-info__inner .footer-item--intro .item__list .list__item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-info__inner .footer-item--intro .item__list .list__item .fa {
    background: #dc3134;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5rem;
    width: 2rem;
    height: 2rem;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.footer-info__inner .footer-item--link .footer-item__header {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-info__inner .footer-item--link .footer-item__list .list__item {
    position: relative;
    padding-left: 1rem;
}

.footer-info__inner .footer-item--link .footer-item__list .list__item::before {
    content: '\f105';
    font-family: FontAwesome, sans;
    position: absolute;
    left: 0;
    top: 0.5em;
    color: #ba2022;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 1rem;
    height: 1rem;
}

.footer-info__inner .footer-item--link .footer-item__list .list__item a {
    color: #333333;
}

.footer-info #map {
    display: block;
    height: 150px;
    width: 100%;
    border: 1px solid lightgrey;
}

.copyright-inform {
    text-align: center;
    padding: 0.5rem 0;
    background: #071a2d;
    color: #fff;
    border-top: 1px solid lightgrey;
}

.copyright-inform a {
    color: white;
}

html {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    html {
        font-size: 13px;
    }
}

body {
    font-family: 'Roboto Condensed', sans-serif;
}

.block-site-name {
    display: flex;
    align-items: center;
}

.block-site-name:hover {
    text-decoration: none;
}

.block-site-name figure {
    width: 70px;
    height: auto;
    margin-bottom: 0;
}

.block-site-name figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block-site-name p {
    color: #dc3134;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.6rem;
    margin-bottom: 0;
    line-height: 1em;
}

.block-site-name p span {
    color: #333333;
    font-size: 1.2rem;
    font-weight: normal;
}

.box-auth {
    padding: 1rem;
    background: #f5f5f9;
    height: 100%;
}

.box-auth__header {
    font-size: 2rem;
    color: #dc3134;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 2rem;
}

.box-auth__header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 5rem;
    height: 2px;
    background: #dc3134;
}

.box-auth__content .content__info .info__site {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.box-auth__content .content__info .info__site .site__logo {
    margin-bottom: 0;
    width: 70px;
    height: 70px;
    margin-right: 0.5rem;
}

.box-auth__content .content__info .info__site .site__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.box-auth__content .content__info .info__site .site__name {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #dc3134;
    line-height: 1.2em;
    margin-bottom: 0;
}

.box-auth__content .content__info .info__site .site__name span {
    font-size: 1.3rem;
    font-weight: normal;
    color: #333333;
}

.box-auth__content .content__info li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.box-auth__content .content__info li.info__address {
    flex-direction: column;
    align-items: flex-start;
}

.box-auth__content .content__info li.info__address .info__item {
    padding-left: 40px;
    position: relative;
}

.box-auth__content .content__info li.info__address .info__item:not(:last-of-type) {
    margin: 0.5rem 0;
}

.box-auth__content .content__info li.info__address .info__item::before {
    content: '\f041 ';
    font-family: FontAwesome, sans;
    position: absolute;
    left: 28px;
    color: #dc3134;
    font-size: 1rem;
}

.box-auth__content .content__info li .info__header {
    font-weight: bold;
    display: flex;
    align-items: center;
    color: #dc3134;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.box-auth__content .content__info li .info__header .fa {
    width: 1.6rem;
    height: 1.6rem;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    font-size: 0.8rem;
    background: #dc3134;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5rem;
}

.box-auth__content .content__info li .info__item {
    margin-bottom: 0;
}

.box-auth__content #map {
    border: 1px solid lightgrey;
}

.box-auth .form-control {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.box-auth label {
    font-weight: bold;
}

.box-auth .btn-send {
    color: #ffffff;
    background: #dc3134;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.box-auth .btn-send:hover {
    background: #efea7b;
    color: #333333;
}

#btnScroll {
    position: fixed;
    bottom: 1rem;
    right: 0.5rem;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #dc3134;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.75rem;
    height: 2.75rem;
    color: white;
    -webkit-box-shadow: 2px 2px 3px #00000052;
    -moz-box-shadow: 2px 2px 3px #00000052;
    box-shadow: 2px 2px 3px #00000052;
}

#calltrap-btn {
    left: 15px;
    bottom: 65px;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease-in-out;
}

#calltrap-ico {
    width: 24px;
    height: 24px;
}

#neoZalo {
    position: fixed;
    left: 50%;
    bottom: 10px;
    width: 355px;
    z-index: 10000;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px 0 rgb(48 56 70 / 35%);
    transition: all 0.3s ease-in-out;
}


.float-right .float-contact {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-right .float-wrapper {
    display: flex;
    padding: 0.625rem;
}

.float-right .float-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0 0.625rem;
}

.float-right .float-content .title {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.float-right .float-content .text {
    font-size: 0.625rem;
    font-weight: 400;
    color: #86868b;
}

.float-right .float-logo {
    width: 32px;
    height: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

#return-to-top {
    right: 15px;
    bottom: 65px;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 414px) {
    #neoZalo {
        width: auto;
        transform: unset;
        right: 25px;
        left: 25px;
    }

    #return-to-top {
        right: 25px;
    }

    #calltrap-btn {
        left: 25px;
    }

    .float-right .float-content .text,
    .float-right .float-content .title {
        font-size: 0.75rem;
    }


}

@media only screen and (min-width: 576px) {
    #neoZalo {
        right: 25px;
        bottom: 140px;
    }

    #neoZalo {
        width: max-content;
        left: unset;
    }

}

#fb-root .fb_dialog .fb_dialog_content > iframe {
    bottom: 70px !important;
    right: -5px !important;
}

#fb-root .fb_customer_chat_bounce_in_v2 {
    bottom: 123px !important;
    right: -5px !important;
}

@media only screen and (min-width: 768px) {
    .float-right .float-content .title {
        font-size: 0.875rem;
    }

    #neoZalo.float-right {
        border-radius: 50%;
        right: 15px;
        bottom: 150px;
        background-color: transparent;
    }

    .float-right .float-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        padding: 0 0;
    }

    .float-right .float-wrapper > .float-logo img,
    .float-right .float-wrapper > .float-logo {
        width: 50px;
        height: 50px;
    }

    .float-right .float-hidden {
        display: none !important;
    }

    #return-to-top {
        right: 15px;
    }

    #calltrap-btn {
        left: 15px;
    }
}


.tet-canvas_item {
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
}

.tet-left,
.tet-right {
    display: none;
}

.tet-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 80px;
    background-repeat: repeat-x;
    background-size: auto 100% !important;
    pointer-events: none;
}

@media screen and (min-width: 1024px) {
    .tet-left {
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        width: 191px;
        display: block;
        z-index: 99;
    }

    .tet-right {
        position: fixed;
        top: 0;
        right: 0;
        pointer-events: none;
        width: 191px;
        display: block;
        z-index: 99;
    }

    .tet-left img,
    .tet-right img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

.header-banner {
    background: #fff;
}

.header-banner__inner .inner__logo .logo__site-name {
    color: #018b00;
}


.frmSearch .input-group {
    box-shadow: 0 0 3px #00000072;
}

.contact-new {
    display: flex;
    align-items: center;
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
}

.contact-new > a {
    display: flex;
    align-items: center;
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
}

.contact-new > a i {
    margin-right: 5px;
}

.contact-new:before,
.contact-new > a:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 1px;
    background: #a9a9a9;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}


.contact-new > a:last-child {
    margin-right: 0;
    padding-right: 0;
}

.contact-new > a:last-child:before {
    display: none;
}

.block__content .owl-item {
    padding-bottom: 5px;
    padding-left: 2px;
    padding-right: 2px;
}

.product-item_new {
    padding-bottom: 0;
    border: 0;
    -webkit-box-shadow: 0 1px 3px -2px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    box-shadow: 0 1px 3px -2px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    transition: .3s all ease;
}

.product-item_new .item__saleoff {
    width: 2.4rem;
}

.product-item_new:not(.product-item--vertical):hover .item__image img {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

.product-item_new .item__info {
    position: relative;
    bottom: unset;
    left: unset;
    padding-top: .25rem;
    height: 70px;
    display: flex;
    flex-direction: column;
}

.product-item_new .item__info .info__price {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    height: 100%;
}

.product-item_new .item__info .info__price strike {
    font-size: 13px;
    line-height: 1;
}

.product-item_new .item__info .info__utils {
    margin-top: auto;
}

.product-item_new:hover {
    -webkit-box-shadow: 0 3px 6px -4px rgb(0 0 0 / 16%), 0 3px 3px rgb(0 0 0 / 25%);
    box-shadow: 0 3px 6px -4px rgb(0 0 0 / 16%), 0 3px 3px rgb(0 0 0 / 25%);
}

@media screen and (max-width: 991px) {
    #btnScroll {
        bottom: 60px;
        left: 15px;
        right: unset;
        z-index: 99;
    }


    #fb-root .fb_dialog .fb_dialog_content > iframe {
        bottom: 60px !important;
        right: -4px;
    }

    #btnScroll.hieuung-tet {
        bottom: 100px;
    }

    #neoZalo.hieuung-tet {
        bottom: 50px;
    }

    #fb-root .hieuung-tet + .fb_dialog .fb_dialog_content > iframe {
        bottom: 100px !important;
    }
}

/*# sourceMappingURL=style.css.map */
