body {
    background: #f3f3f3;
}
.s-list-sp {
    margin: 30px 0;
}
.s-menu-link {
    padding: 10px 0 0;
    text-align: center;
}
.s-menu-link ul li {
    display: inline-block;
    background: #fff;
    margin: 10px;
    padding: 10px 25px 10px 20px;
    -webkit-box-shadow: 1px 1px 5px #bbb;
    box-shadow: 1px 1px 5px #bbb;
    border-radius: 25px;
    transition: ease-in 1s;
}
.s-menu-link ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: #444;
}
.s-menu-link ul li i {
    color: var(--primary-color);
    font-size: 7px;
    padding-right: 5px;
}
a+i, i+a, i+span, span+i {
    margin-left: .1em;
}
.s-menu-link ul li:hover a {
    color: var(--primary-color);
}
.s-menu-link ul li:hover {
    box-shadow: 1px 1px 5px var(--primary-color);
}

/* BEGIN c-radio */
.c-radio {
    display: block;
    line-height: 1;
    margin: 0.715em 0 0.715em 0;
    position: relative;
    z-index: 2;
}
.c-radio label {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    color: #666666;
    position: relative;
    padding: 6px 13px;
}
.c-radio label>span:not(.c_tick) {
    font-size: 1em;
    line-height: 1.42857143;
}
.c-radio label:hover {
    color: var(--primary-color);
}
.c-radio .c_tick {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    border: 1px solid #666666;
    border-radius: 100%;
    margin: 0 0.358em 0.072em 0;
    width: 1.072em;
    height: 1.072em;
    display: none;
}
.c-radio .c_tick::before {
    content: '';
    display: block;
    border-radius: 100%;
    background-color: var(--primary-color);
    width: 1.072em;
    height: 1.072em;
    -webkit-transform: scale3d(0, 0, 0);
    -moz-transform: scale3d(0, 0, 0);
    -o-transform: scale3d(0, 0, 0);
    -ms-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.c-radio input[type=radio] {
    overflow: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.c-radio input[type=radio]:checked~.c_tick {
    border-color: var(--primary-color);
    opacity: 1;
}
.c-radio input[type=radio]:checked~.c_tick::before {
    opacity: inherit;
}
.c-radio input[type=radio]:checked+.c_tick::before {
    -webkit-transform: scale3d(0.65, 0.65, 1);
    -moz-transform: scale3d(0.65, 0.65, 1);
    -o-transform: scale3d(0.65, 0.65, 1);
    -ms-transform: scale3d(0.65, 0.65, 1);
    transform: scale3d(0.65, 0.65, 1);
}
.c-radio input[type=radio][disabled]~.c_tick {
    border-color: #000;
    opacity: 0.26;
}
.c-radio input[type=radio][disabled]~.c_tick::before {
    opacity: inherit;
}

/* END c-radio */
/* BEGIN c-form-border */
/* Copy when using c-form-border */
.c-form-border {
    border: 1px solid #ccc;
    border-radius: 5px;
    -webkit-transition: border-color 0.3s ease-in-out;
    -o-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
}
.c-form-border .c_input {
    padding: 1.215em 1.072em 1.215em 1.072em;
    -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.c-form-border .c_input:focus {
    outline: none;
    border-color: var(--primary-color);
}
.c-form-border--icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.c-form-border--icon .c_input {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 1%;
    z-index: 2;
}
.c-form-border--icon .c_icon {
    -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.c-form-border--icon .c_icon:first-child {
    padding: 0.5em 0 0.5em 1.072em;
}
.c-form-border--icon .c_icon:nth-child(2) {
    padding: 0.5em 1.072em 0.5em 0;
}
.c-form-border--icon .c_icon:not(.c_icon--top) {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.c-form-border--icon .c_icon--top>i {
    position: relative;
    top: -0.142em;
}
.c-form-border--label .c_label {
    color: #999;
    background-color: #fff;
    pointer-events: none;
    padding: 0 0.358em 0 0.358em;
    z-index: 9;
    position: absolute;
    top: 0.572em;
    left: 0.715em;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}
.c-form-border--label:not(.is-empty) .c_label, .c-form-border--label.is-focused .c_label {
    font-size: 0.786em;
    color: var(--primary-color);
    position: absolute;
    top: -0.727em;
}
.c-form-border.is-focused {
    border-color: var(--primary-color);
}
.c-form-border.is-error {
    margin-bottom: 1.786em;
    border-color: #f55145;
}
.c-form-border.is-error .c_label {
    color: #f55145 !important;
}
.c-form-border.is-error .c_icon+.c_error {
    left: 0.143em;
    text-align: left;
}
.c-form-border.is-error .c_icon+.c_error>span {
    left: 0;
    margin: 0;
}

/* END c-form-border */
/* Style chung select */
.c-select {
    position: relative;
}
.c-select.c-form>.c-icons {
    width: 12px;
}
.c-select.c-form>.c_input {
    padding: 0;
}
.c-select>.c_input {
    height: 46px;
    border-radius: 0;
    line-height: 46px;
    padding: 0 30px 0 12px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.c-select>.c-icons {
    height: 100%;
    width: 30px;
    cursor: pointer;
    font-size: 15px;
    position: absolute;
    top: 0;
    right: 0;
}
.c-select>.c-icons>i {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.c-select .c_list {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    max-height: 217px;
    line-height: 20px;
    padding: 5px;
    background-color: #fff;
    overflow: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    z-index: 10000;
    position: absolute;
    top: 35px;
    -webkit-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
.c-select.is-focused .c_list {
    opacity: 1;
    visibility: visible;
    top: 21px;
    width: 170px;
}
.c-select.is-focused>.c-icons i {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: rotate(180deg) translate(50%, 50%);
    transform: rotate(180deg) translate(50%, 50%);
}

/* BEGIN c-select-single */
.c-select .c-radio {
    font-size: 14px;
    padding: 0 10px;
    margin-top: 0;
    margin-bottom: 5px;
    border-radius: 3px;
    -webkit-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
.c-select .c-radio:hover, .c-select .c-radio.is-selected {
    color: #fff;
    background-color: var(--primary-color);
    box-shadow: 0 14px 26px -12px rgba(0, 85, 170, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 85, 170, 0.2);
}
.c-select .c-radio label {
    display: block;
    color: inherit;
    padding: 10px 0;
}
.c-select .c-radio label:hover {
    color: #fff;
}

/* END c-select-single */
/* END c-form-border */
.s-filter .s_heading {
    position: relative;
    margin-bottom: 12px;
}
.s-filter .s_heading span {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 3px solid #c70512;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    color: #a30d18;
    z-index: 1;
}
.s-filter .s_heading::after {
    content: '';
    width: 80%;
    position: absolute;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #ccc;
}
.filter-brand {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.filter-brand li, .filter-price li, .filter-capacity li {
    min-height: 40px;
    margin: 0 6px 10px;
    padding: 4px 6px;
    width: 120px;
    border-radius: 4px;
    color: #333;
    display: flex;
    font-size: 14px;
    justify-content: center;
    line-height: 17px;
    align-items: center;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    cursor: pointer;
}
.filter-brand li {
    padding: 0;
}
.filter-brand li a {
    display: flex;
}
.filter-brand li a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.filter-brand img {
    height: 30px;
}
.filter-brand li.active, .filter-brand li:hover, .filter-price li.active, .filter-price li:hover, .filter-capacity li.active, .filter-capacity li:hover {
    outline: 1px solid var(--primary-color);
    box-shadow: rgb(250 0 89) 0px 2px 5px -1px, rgb(255 12 12) 0px 1px 3px -1px;
}
.bo-loc {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-filter, .btn-ft_brand, .btn-ft_price {
    position: relative;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    padding: 8px 10px;
    display: inline-block;
    margin-right: 12px;
}
.btn-filter i {
    font-size: 17px;
    color: var(--primary-color);
}
.num-filter {
    position: absolute;
    top: -10px;
    right: 3px;
    background-color: var(--primary-color);
    padding: 6px;
    width: 20px;
    border-radius: 50%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.num-filter span {
    color: #fff;
    font-size: 11px;
}
.c-select>.c_input {
    height: 39px;
    border-radius: 0;
    line-height: 39px;
    color: #000;
}
.modal-filter {
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    z-index: 1;
    /* overflow-y: auto; */
    padding: 20px 16px;
    border-radius: 6px;
    width: 900px;
    max-width: 900px;
    opacity: 0;
    visibility: hidden;
    /* max-height: 80vh; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: linear .5s
}
.modal-filter.active {
    opacity: 1;
    visibility: visible;
}
.filter-selected {
    display: flex;
}
.filter-selected .list>div {
    display: inline;
}
.filter-selected .item {
    padding: 10px;
    margin-right: 7px;
    margin-bottom: 7px;
    color: #333;
    border: 1px solid #666;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-height: 36px;
    cursor: pointer;
}
.filter-selected>span, .modal_filter-brand>span, .modal_filter-price>span {
    display: inline-block;
    width: 120px;
    font-weight: 500;
}
.filter-selected .item .item-name {
    margin-right: 7px;
    font-size: 15px;
}
.filter-selected .item i {
    width: 12px;
    height: 12px;
    font-weight: 200;
    color: #b1b0b0;
}
.filter-price, .filter-capacity {
    display: flex;
    align-items: center;
    margin-top: 12px;
    flex-wrap: wrap;
}
.filter-selected {
    display: none;
}
.filter-selected.active {
    display: flex;
}
.arrow-filter {
    width: 27px;
    height: 14px;
    top: -39px;
    left: 25px;
    position: absolute;
    z-index: 2;
    /* overflow: hidden; */
}
.arrow-filter::before {
    content: "";
    position: absolute;
    width: 27px;
    height: 27px;
    background: #fff;
    transform: rotate(45deg);
    top: 28px;
    left: 0;
    z-index: 2;
    box-shadow: -2px -2px 5px -4px;
}
.modal-filter .arrow-filter {
    width: 27px;
    height: 14px;
    top: -39px;
    left: 27%;
    transform: translateX(0);
    position: absolute;
    z-index: 2;
    /* overflow: hidden; */
}
.modal-filter {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-45%);
}
.btn-ft_brand .list-brand, .btn-ft_price .list-price {
    position: absolute;
    top: 58px;
    left: -6px;
    width: 585px;
    background: #fff;
    z-index: 3;
    padding: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
}
.btn-ft_brand .list-brand.active, .btn-ft_price .list-price.active {
    opacity: 1;
    visibility: visible;
}
.b-card-36 .b-market>span:last-child {
    font-size: 12px;
    font-weight: 500;
}
.b-card-36 .b-market {
    font-size: 22px;
    font-weight: bold;
    color: #b71f38;
}
.modal_filter-button {
    text-align: center;
    border-top: 1px dashed #ccc;
    margin-top: 13px;
    padding-top: 12px;
}
.c-select .arrow-filter {
    top: -20px;
    z-index: 100001;
    opacity: 0;
}
.c-select .list-sort {
    position: absolute;
}
.c-select.is-focused .arrow-filter {
    opacity: 1;
}
.btn-ft_price.active i {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transition: all 0.2s linear;
}
.btn-ft_brand.active i {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transition: all 0.2s linear;
}
.c-button-1 {
    display: inline-block;
    font-size: 14px;
    padding: 0.5em 1.072em 0.5em 1.072em;
    overflow: hidden;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    position: relative;
    -webkit-transition: box-shadow 0.5s;
    -o-transition: box-shadow 0.5s;
    transition: box-shadow 0.5s;
    margin-right: 20px;
}
.s-sort {
    display: flex;
    align-items: center;
    margin: 12px;
}
.s-sort .c_list {
    display: flex;
    align-items: center;
}
.s-sort .c-radio {
    /* padding: 6px 13px; */
    display: block;
    line-height: 1;
    /* margin: 0.715em 0 0.715em 0; */
    position: relative;
    z-index: 2;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #ccc;
    margin: 0 8px 0 8px;
    cursor: pointer;
}
.s-sort .c-radio.active, .s-sort .c-radio:hover {
    border-color: var(--primary-color);
}
.s-sort .c-radio.active span {
    color: var(--primary-color);
}
.s-filter {
    margin-top: 21px;
    /* position: sticky;
    top: 20px; */
}
.s-filter .heading {
    color: var(--primary-color);
}

.ht-format-detail.view-more {
    position: relative;
    max-height: 450px;
    overflow: hidden;
}
.ht-format-detail.pure::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(100, 100, 100, 0) 80%, #fff 100%);
    z-index: 111;
}
.btn-view-more {
    cursor: pointer;
    display: inline-block;
    font-weight: 300;
    margin-top: 16px;
    transition: 0.25s ease;
    padding: 10px;
    color: #fff;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: var(--primary-color);
}
.btn-view-more:hover {
    color: #f30;
}
.see-more {
    display: flex;
    justify-content: center;
}
.ht-format-detail.is-active {
    max-height: inherit;
}
.b-card-37 {
    display: block;
    margin-bottom: 20px;
}
.b-card-37 img{
    transition: all 0.5s
}
.b-card-37 .b_title {
    text-align: center;
    margin: 10px 0;
    font-size: 1.3em;
    display: block;
}
.b-card-37:hover img{
    transform: scale(1.2);
}
.b-card-37:hover .b_title {
    color: var(--primary-color);
}
@media screen and (min-width: 1903px){
    .s-menu-link ul li a{
        font-size: 25px;
    }
    .s-menu-link {
        padding: 30px 0 30px;
    }
    .s-filter .heading {
        font-size: 24px;
    }
    .filter-brand li, .filter-price li, .filter-capacity li {
        min-height: 60px;
        margin: 0 8px 17px;
        line-height: 1.2;
        padding: 6px;
        width: 157px;
        border-radius: 4px;
        color: #333;
        display: flex;
        font-size: 19px;
    }
    .s-sort {
        display: flex;
        align-items: center;
        margin: 12px;
        font-size: 23px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 1256px) {
    .s-menu-link ul li {
        display: inline-block;
        background: #fff;
        margin: 8px;
        padding: 8px 12px 8px 12px;
        -webkit-box-shadow: 1px 1px 5px #bbb;
        box-shadow: 1px 1px 5px #bbb;
        border-radius: 20px;
    }
    .s-menu-link ul li a {
        font-size: 14px;
    }
    .s-list-sp {
        margin: 15px 0;
    }
    .s-breadcrumb-1 {
        margin-bottom: 15px;
    }
    .s-sort .c-radio {
        padding: 6px 6px;
        margin: 0 5px 0 8px;
    }
    .c-radio label>span:not(.c_tick) {
        font-size: 13px;
    }
    .filter-brand li, .filter-price li{
        width: 85px;
    }
    .filter-brand img {
        height: 26px;
    }
}
@media screen and (min-width: 992px){
    .s-filter-mobile {
        display: none;
    }
}
@media screen and (max-width: 992px){
    /* Style chung select */
    .c-select {
      position: relative;
    }
    .c-select.c-form > .c-icons {
      width: 12px;
    }
    .c-select.c-form > .c_input {
      padding: 0;
      color: var(--primary-color);
    }
    .c-select > .c_input {
      height: 36px;
      line-height: 36px;
      padding: 0 30px 0 12px;
      cursor: pointer;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .c-select > .c-icons {
      height: 100%;
      width: 30px;
      cursor: pointer;
      font-size: 15px;
      position: absolute;
      top: 0;
      right: 0;
    }
    .c-select > .c-icons > i {
      -webkit-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear;
    }
    .c-select .c_list {
      opacity: 0;
      visibility: hidden;
      width: 100%;
      max-height: 217px;
      line-height: 20px;
      padding: 5px;
      background-color: #fff;
      overflow: auto;
      border-radius: 4px;
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
      z-index: 10000;
      position: absolute;
      top: 35px;
      -webkit-transition: all 150ms linear;
      -o-transition: all 150ms linear;
      transition: all 150ms linear;
    }
    .c-select.is-focused .c_list {
      opacity: 1;
      visibility: visible;
      top: 40px;
    }
    .c-select.is-focused > .c-icons i {
      -webkit-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear;
      -webkit-transform: rotate(180deg) translate(50%, 50%);
      transform: rotate(180deg) translate(50%, 50%);
    }

    /* BEGIN c-select-multi */
    .c-select .c-checkbox {
      margin: 10px;
    }
    .c-select .c-checkbox label:hover span {
      color: #05a;
    }

    /* END c-select-multi */
    .s-filter {
        display: none;
    }
    .s-filter-mobile {
        display: none;
        margin: 12px 0;
    }
    .s-filter-mobile .ft-b, .s-filter-mobile .ft-p {
        display: flex;
        align-items: center;
    }
    .s-filter-mobile .heading {
        display: none;
        width: 35%;
        color: var(--primary-color);
    }
    .s-filter-mobile .c-select {
        width: 100%;
    }

    .c-select.is-focused .c_list {
        opacity: 1;
        visibility: visible;
        top: 42px;
        width: 200px;
    }
    .text-hide {
        display: none;
    }
    .c-checkbox img {
        height: 30px;
        margin-left: 20px;
    }
    .s-sort {
        margin: 12px 0;
    }
    .s-sort .heading {
        width: 65px;
    }
    .s-sort .c_list {
        width: 88%;
        display: -webkit-box;
        display: -ms-flexbox;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
    }
}
@media screen and (max-width: 479px){
    .bg-white {
        padding: 10px 10px;
    }
    .s-menu-link ul li {
        padding: 8px;
        margin: 8px 3px;
    }
    .s-menu-link ul li a {
        font-size: 13px;
    }
    .c-select.is-focused .c_list {
        width: 100%;
    }
    .b-card-36 .b-market {
        font-size: 18px;
    }
}