﻿* {
  margin: 0;
  padding: 0
}

body {
  font-family: "Inter", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #0c2b7b
}

img {
  max-width: 100%
}

a {
  text-decoration: none
}

input:focus,
button:focus,
textarea:focus {
  outline: none
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none
}

.top-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #ededed;
  z-index: 10;
  background: #f5f6f7
}

.top-header .inner-header-top {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center
}

.top-header .inner-header-top .top-left {
  width: 70%
}

.top-header .inner-header-top .top-left>ul {
  display: flex;
  gap: 20px
}

.top-header .inner-header-top .top-left>ul>li>a {
  display: inline-block;
  color: #0c2b7b;
  padding: 20px 0;
  border-bottom: 2px solid #f5f6f7;
  transition: all .3s
}

.top-header .inner-header-top .top-left>ul>li>ul {
  width: 100%;
  box-shadow: 0px 4px 6px 0px rgba(3, 21, 28, 0.1607843137);
  padding: 16px;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  z-index: 2;
  left: 0
}

.top-header .inner-header-top .top-left>ul>li>ul.no-child {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px
}

.top-header .inner-header-top .top-left>ul>li>ul.no-child li {
  width: 100%;
  padding-right: 0
}

.top-header .inner-header-top .top-left>ul>li>ul li {
  width: 250px;
  padding-right: 30px
}

.top-header .inner-header-top .top-left>ul>li>ul li a {
  display: block;
  padding: 10px 15px;
  color: #0c2b7b;
  border-radius: 4px
}

.top-header .inner-header-top .top-left>ul>li>ul li a span {
  color: #7a8699;
  font-weight: 300
}

.top-header .inner-header-top .top-left>ul>li>ul li .read-more-menu a {
  font-size: 14px;
  font-weight: 500;
  color: #0c2b7b !important;
  border: 1px solid;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 6px 12px !important;
  border-radius: 4px
}

.top-header .inner-header-top .top-left>ul>li>ul li ul {
  position: absolute;
  left: 250px;
  top: 30px;
  width: calc(100% - 250px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 100%;
  border-left: 1px solid #ededed;
  align-content: center;
  gap: 5px;
  padding-left: 15px;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 4px 6px 0px rgba(3, 21, 28, 0.1607843137);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #fff;
  max-height: calc(100vh - 80px);
  overflow-y: auto
}

.top-header .inner-header-top .top-left>ul>li>ul li ul li {
  padding-right: 0
}

.top-header .inner-header-top .top-left>ul>li>ul li ul li a {
  padding: 10px 15px
}

.top-header .inner-header-top .top-left>ul>li>ul li:hover>a {
  background: #ebf8f4;
  color: #0c2b7b
}

.top-header .inner-header-top .top-left>ul>li>ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  top: 0px
}

.top-header .inner-header-top .top-left>ul>li:hover>a {
  border-bottom-color: #0c2b7b
}

.top-header .inner-header-top .top-left>ul>li:hover>ul {
  visibility: visible;
  opacity: 1
}

.top-header .inner-header-top .top-right {
  text-align: right;
  width: 30%
}

.top-header .inner-header-top .top-right .upload-action {
  padding: 10px 20px;
  border-radius: 4px;
  background: #0c2b7b;
  color: #fff;
  display: inline-block
}

header .main-header {
  padding: 20px 0
}

header .main-header .inner-main-header {
  display: flex;
  justify-content: center;
  align-items: center
}

header .main-header .top-search {
  max-width: 100%;
  margin-top: 30px;
  width: 1000px
}

header .main-header .inner-form-search form {
  display: flex;
  border: 1px solid #dfe2e6;
  position: relative;
  border-radius: 4px;
  z-index: 1;
  background: #efefef
}

header .main-header .inner-form-search form>* {
  height: 47px
}

header .main-header .inner-form-search form select {
  width: 160px;
  border: none;
  font-size: 14px;
  box-shadow: none !important;
  border-right: 1px solid #dfe2e6;
  border-radius: 0;
  background: #f5f6f7;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  position: relative;
  background: none;
  z-index: 999;
  padding-right: 30px
}

header .main-header .inner-form-search form>.down {
  position: absolute;
  left: 130px;
  z-index: 999;
  line-height: 48px;
  width: 0;
  height: 0
}

header .main-header .inner-form-search form button {
  width: 48px;
  border: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px
}

header .main-header .inner-form-search form>input {
  width: calc(100% - 208px);
  border: none;
  padding-left: 10px
}

header .main-header .account a {
  border: 1px solid;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 4px;
  color: #0c2b7b;
  gap: 5px
}

header .search-mobile {
  padding: 5px;
  background: #ededed
}

header .search-mobile .inner-form-search form {
  display: flex;
  border: 1px solid #dfe2e6;
  position: relative;
  border-radius: 4px;
  z-index: 1;
  justify-content: space-between;
  background: #fff
}

header .search-mobile .inner-form-search form>* {
  height: 35px
}

header .search-mobile .inner-form-search form select {
  width: 120px;
  border: none;
  font-size: 14px;
  box-shadow: none !important;
  border-right: 1px solid #dfe2e6;
  border-radius: 0;
  background: #f5f6f7;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background: none;
  z-index: 999;
  position: relative;
  padding-right: 30px
}

header .search-mobile .inner-form-search form>.down {
  position: absolute;
  left: 95px;
  z-index: 999;
  line-height: 35px;
  width: 0;
  height: 0
}

header .search-mobile .inner-form-search form button {
  width: 48px;
  border: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px
}

header .search-mobile .inner-form-search form>input {
  width: calc(100% - 208px);
  border: none;
  padding-left: 10px
}

main .slider-show img {
  width: 100%;
  border-radius: 8px
}

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

main .section-level {
  padding: 40px 0
}

main .section-level .inner-section-level {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px
}

main .section-level .inner-section-level .item-level-box img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 10px
}

main .section-level .inner-section-level .item-level-box img:hover {
  opacity: .8
}

main .section-level .inner-section-level h5 {
  font-size: 14px
}

main .section-level .inner-section-level h5 a {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #0c2b7b
}

main .section-level .inner-section-level h5:hover a {
  color: #0c2b7b
}

main .title-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px
}

main .title-section h2 {
  display: flex;
  color: #0c2b7b;
  font-size: 20px;
  font-weight: 500;
  align-items: center;
  gap: 5px;
  margin-bottom: 0
}

main .title-section .view-all a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #0c2b7b;
  border: 1px solid;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 4px
}

main .title-section .view-all a:hover {
  background: #0c2b7b;
  color: #fff
}

main .title-section .view-all a:hover svg path {
  stroke: #fff
}

main .section-top-download {
  background: #f5f6f7;
  padding: 50px 0
}

main .section-product {
  padding: 50px 0
}

main #products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px
}

main .list-product-archive {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

main .read-more {
  margin-top: 30px;
  text-align: center
}

main .read-more a {
  display: inline-flex;
  padding: 10px 30px;
  color: #0c2b7b;
  border: 1px solid;
  border-radius: 4px;
  gap: 5px;
  align-items: center
}

main .read-more a:hover {
  color: #fff;
  background: #0c2b7b;
  border-color: #0c2b7b
}

main .read-more a:hover * {
  stroke: #fff
}

.owl-carousel .owl-nav {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(50% - 48px)
}

.owl-carousel .owl-nav button {
  width: 32px;
  height: 48px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, .0784313725);
  background: #fff !important;
  border-radius: 4px;
  line-height: 48px;
  position: absolute
}

.owl-carousel .owl-nav button.owl-prev {
  left: -50px
}

.owl-carousel .owl-nav button.owl-next {
  right: -50px
}

.owl-carousel .owl-nav button:hover {
  background: #fff !important;
  opacity: .8
}

.box-product .thumb {
  position: relative
}

.box-product .thumb img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover
}

.box-product .thumb img:hover {
  opacity: .8
}

.box-product .thumb .save,
.box-product .thumb .save-no {
  position: absolute;
  display: inline-block;
  border-radius: 4px;
  font-size: 12px;
  line-height: 22px;
  padding: 2px 7.5px;
  background: #0c2b7b;
  color: #fff;
  top: 10px;
  left: 10px;
  z-index: 2;
  cursor: pointer
}

.box-product .thumb .price {
  background: #f2c94c;
  color: #0c2b7b;
  position: absolute;
  display: inline-block;
  border-radius: 4px;
  font-size: 12px;
  line-height: 22px;
  padding: 2px 7.5px;
  top: 10px;
  right: 10px;
  z-index: 2
}

.box-product .thumb .price.no-vip {
  background: #f2c94c
}

.box-product .thumb .price.vip {
  color: #ededed;
  background: #ff3356;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .5294117647)
}

.box-product .thumb .content-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: rgba(0, 0, 0, .3058823529);
  border-radius: 4px
}

.box-product .thumb .content-thumb div {
  padding: 0 15px;
  width: 100%
}

.box-product .thumb .content-thumb div a {
  display: block;
  padding: 10px 0;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 10px;
  color: #0c2b7b
}

.box-product .thumb .content-thumb div a:last-child {
  margin-bottom: 0
}

.box-product .thumb .content-thumb div a.download-now {
  color: #0c2b7b
}

.box-product .thumb .content-thumb div a:hover {
  opacity: .8
}

.box-product .thumb:hover .content-thumb {
  display: flex
}

.box-product .info-product {
  padding: 12px 0
}

.box-product .info-product h4 {
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
  margin-bottom: 8px;
  font-weight: 500
}

.box-product .info-product h4 a {
  color: #0c2b7b
}

.box-product .info-product h4 a:hover {
  color: #0c2b7b
}

.box-product .info-product .cate-down {
  font-size: 12px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #7a8699
}

.box-product .info-product .cate-down a {
  color: #2f80ed
}

.box-product .info-product .cate-down a:hover {
  color: #0c2b7b
}

.box-product.border-box .thumb img {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px
}

.box-product.border-box .thumb .content-thumb {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px
}

.box-product.border-box .info-product {
  background: #fff;
  padding: 12px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px
}

.section-news {
  padding: 50px 0;
  background: #f5f6f7
}

.box-news .thumb {
  position: relative
}

.box-news .thumb img {
  width: 100%;
  border-radius: 4px
}

.box-news .thumb img:hover {
  opacity: .8
}

.box-news .thumb:hover .content-thumb {
  display: flex
}

.box-news .info-news {
  padding: 12px 0
}

.box-news .info-news h4 {
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
  margin-bottom: 8px;
  font-weight: 500
}

.box-news .info-news h4 a {
  color: #0c2b7b
}

.box-news .info-news h4 a:hover {
  color: #0c2b7b
}

.box-news .info-news .date {
  align-items: center;
  display: flex;
  gap: 5px;
  font-size: 12px;
  font-weight: 400
}

.box-news .info-news .date .text {
  line-height: 22px;
  position: relative;
  top: 1px
}

.box-news.border-box .thumb img {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px
}

.box-news.border-box .info-news {
  background: #fff;
  padding: 12px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px
}

footer {
  padding-top: 50px;
  border-top: 1px solid #ededed
}

footer .box-footer img:hover {
  opacity: .8
}

footer .box-footer .name-company {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 12px
}

footer .box-footer p {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px
}

footer .box-footer p span {
  color: #7a8699
}

footer .box-footer p a {
  color: #0c2b7b
}

footer .box-footer p a:hover {
  color: #0c2b7b
}

footer .box-footer-child h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px
}

footer .box-footer-child ul li {
  margin-bottom: 8px;
  line-height: 22px;
  font-weight: 400
}

footer .box-footer-child ul li a {
  color: #0c2b7b
}

footer .box-footer-child ul li a:hover {
  color: #0c2b7b
}

footer .box-footer-child .footer-social a {
  display: inline-block;
  margin-right: 10px
}

footer .box-footer-child .footer-social a:hover {
  opacity: .8
}

footer .copyright {
  margin-top: 20px;
  border-top: 1px solid #ededed
}

footer .copyright p {
  margin-bottom: 0;
  font-weight: 400;
  padding: 18px 0
}

.th-load {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 555;
  background: hsla(0, 0%, 100%, .5294117647);
  border-radius: 15px;
  display: flex
}

.th-load img {
  width: 100px
}

.hk-load {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 555;
  background: hsla(0, 0%, 100%, .5294117647);
  border-radius: 15px
}

.hk-load img {
  opacity: .4
}

.hk-load {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 555;
  background: hsla(0, 0%, 100%, .5294117647);
  border-radius: 15px
}

.hk-load img {
  opacity: .4
}

p.ok,
div.error,
p.error {
  background: #e5ffe6;
  font-size: 13px;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  border: 1px solid #009688;
  color: #009688;
  font-weight: 400
}

div.error,
p.error {
  background: #ffe5e5;
  color: #e00;
  border-color: #e00
}

.modal-account .modal-dialog {
  max-width: 440px
}

.modal-account .modal-header {
  position: relative;
  padding: 0
}

.modal-account .modal-header .btn-close {
  position: absolute;
  top: -10px;
  right: -10px;
  box-shadow: none;
  background-color: #fff;
  padding: 4px;
  box-sizing: content-box;
  background-size: 10px;
  background-position: center center;
  border-radius: 50%
}

.modal-account .modal-header .title-login-resgister {
  display: flex;
  width: 100%
}

.modal-account .modal-header .title-login-resgister>a {
  display: block;
  flex: 1;
  text-align: center;
  font-size: 18px;
  color: #7a8699;
  border-bottom: 2px solid #ededed;
  padding: 12px 0
}

.modal-account .modal-header .title-login-resgister>a.active {
  color: #0c2b7b;
  border-color: #0c2b7b
}

.modal-account .modal-body {
  padding: 0 40px
}

.modal-account .modal-body .welcom {
  margin-bottom: 0;
  padding: 20px 0;
  font-weight: 400;
  color: #565656
}

.modal-account .modal-body .group-form {
  margin-bottom: 20px
}

.modal-account .modal-body .group-form .inner-group {
  position: relative
}

.modal-account .modal-body .group-form .inner-group label {
  font-size: 16px;
  font-weight: 600;
  display: block;
  color: #42404a;
  margin-bottom: 5px
}

.modal-account .modal-body .group-form .inner-group input {
  width: 100%;
  border-radius: none;
  border: none;
  height: 48px;
  padding-left: 40px;
  border-bottom: 2px solid #ededed;
  font-weight: 400
}

.modal-account .modal-body .group-form .inner-group .icon {
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center
}

.modal-account .modal-body .group-form .inner-group .ShowPassWord {
  position: absolute;
  height: 48px;
  line-height: 48px;
  right: 10px;
  bottom: 0;
  display: inline-block;
  cursor: pointer
}

.modal-account .modal-body .check-save {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-weight: 400
}

.modal-account .modal-body .check-save a {
  color: #0c2b7b
}

.modal-account .modal-body button {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #0c2b7b;
  margin-bottom: 15px;
  background: #0c2b7b
}

.modal-account .modal-body .login-social a {
  display: flex;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #ededed;
  color: #333;
  margin-top: 15px;
  font-weight: 400;
  margin-bottom: 15px
}

.modal-account .modal-body .login-social a .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center
}

.modal-account .modal-body .login-social a .text {
  width: calc(100% - 40px);
  text-align: center
}

.modal-account .modal-body .login-social a:hover {
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .25)
}

.modal-account .modal-body .bkctk {
  padding-bottom: 24px;
  font-weight: 400
}

.modal-account .modal-body .bkctk a {
  color: #0c2b7b
}

.breadcrumbs {
  margin-bottom: 20px
}

.breadcrumbs a {
  color: #98a1b0
}

.breadcrumbs .arrow-b {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("../images/arrow.svg") no-repeat center center;
  background-size: cover;
  margin: 0 5px;
  position: relative;
  top: 4px
}

.category-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

h1.category-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000
}

.widget {
  margin-bottom: 30px
}

.widget h3 {
  display: flex;
  align-items: center;
  color: #0c2b7b;
  font-size: 20px;
  line-height: 26px;
  gap: 5px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ededed
}

.widget .content-w ul li {
  margin-bottom: 20px
}

.widget .content-w ul li:last-child {
  margin-bottom: 0
}

.box-product-list {
  display: flex
}

.box-product-list .thumb {
  width: 88px
}

.box-product-list .thumb img {
  border-radius: 4px;
  width: 100%
}

.box-product-list .thumb img:hover {
  opacity: .8
}

.box-product-list .info-p {
  padding-left: 12px;
  width: calc(100% - 88px)
}

.box-product-list .info-p h4 {
  line-height: 22px;
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 500
}

.box-product-list .info-p h4 a {
  color: #0c2b7b
}

.box-product-list .info-p h4 a:hover {
  color: #0c2b7b
}

.box-product-list .info-p .nganh {
  display: flex;
  color: #7a8699;
  font-size: 12px;
  font-weight: 400;
  justify-content: space-between;
  align-items: center
}

.box-product-list .info-p .nganh a {
  color: #2f80ed
}

.box-product-list .info-p .nganh a:hover {
  color: #0c2b7b
}

.quatrang .page-numbers {
  color: #000;
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid #dfe2e6;
  border-radius: 4px
}

.quatrang .page-numbers img {
  width: 16px
}

.quatrang {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px
}

.quatrang .page-numbers.current {
  color: #fff;
  background: #0c2b7b;
  border-color: #0c2b7b
}

.single-content-post {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px
}

.single-content-post .aligncenter {
  margin: 0 auto;
  display: block
}

.meta-single {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 30px
}

.meta-single span {
  display: flex;
  align-items: center;
  gap: 5px
}

.single-content-post h2 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 1rem
}

.single-content-post ul {
  padding-left: 30px;
  margin-bottom: 1rem
}

.single-content-post ul li {
  list-style: disc;
  margin-bottom: 15px
}

.list-tag {
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ededed;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap
}

.list-tag a {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid #0c2b7b;
  font-size: 13px;
  font-weight: 400;
  color: #0c2b7b;
  transition: all .3s
}

.list-tag a:hover {
  background: #0c2b7b;
  color: #fff;
  transition: all .3s
}

.share-social {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7a8699
}

a.copy-link {
  padding: 5px 15px;
  background: #ebedf0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0c2b7b
}

a.copy-link .icon {
  position: relative;
  top: -2px
}

.filter-container {
  border: 1px solid #dfe2e6;
  margin-bottom: 30px;
  border-radius: 8px
}

.filter-container .title-filter {
  padding: 15px;
  background: #f5f6f7;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  align-items: center
}

.filter-container .title-filter .tit {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600
}

.filter-container .title-filter .action span {
  font-size: 12px;
  line-height: 22px;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #0c2b7b;
  background: #fff;
  color: #0c2b7b;
  cursor: pointer
}

.filter-container .selected {
  padding: 15px;
  border-bottom: 1px solid #ededed
}

.filter-container .title-f {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #0c2b7b;
  margin-bottom: 15px
}

.filter-container .list-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 5px
}

.filter-container .item-select {
  border: 1px solid #a6aebb;
  padding: 5px 13px;
  border-radius: 4px;
  color: #5d6b82;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 13px
}

.filter-container .item-select .remove-filter {
  font-size: 8px;
  display: inline-block;
  border: 1px solid #ededed;
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 8px;
  border-radius: 50%;
  position: relative;
  cursor: pointer
}

.filter-container .item-select .remove-filter:hover {
  background: #e00;
  color: #fff;
  border-color: #e00
}

.filter-container .widget-f {
  padding: 15px;
  border-bottom: 1px solid #ededed
}

.filter-container .widget-f:last-child {
  border-bottom: none
}

.filter-container .item-select-checkbox {
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  margin-bottom: 10px
}

.filter-container .container-filter-select.product_brand {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px
}

.filter-container .container-filter-select.product_brand .item-select-checkbox {
  margin-bottom: 0
}

.filter-container .container-filter-select.product_brand_year {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px
}

.filter-container .container-filter-select.product_brand_year .item-select-checkbox {
  margin-bottom: 0
}

.filter-container .item-select-checkbox label {
  cursor: pointer;
  margin-left: 30px
}

.filter-container .item-select-checkbox label span {
  color: #7a8699;
  font-weight: 400
}

.filter-container .item-select-checkbox label:before {
  display: block;
  width: 23px;
  height: 23px;
  content: "";
  border: 1px solid #dfe2e6;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0
}

.filter-container .item-select-checkbox label:after {
  display: none;
  width: 23px;
  height: 23px;
  content: "";
  border: 1px solid #0c2b7b;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0;
  background: #0c2b7b url("../images/check.svg") no-repeat center center;
  background-size: contain
}

.filter-container .item-select-checkbox input {
  display: none
}

.filter-container .item-select-checkbox input:checked+label {
  font-weight: 600
}

.filter-container .item-select-checkbox input:checked+label::after {
  display: block
}

.page-title h1 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0
}

.header-archive {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px
}

.sort-fillter span {
  display: inline-block;
  padding: 6px 10px;
  line-height: 22px;
  border: 1px solid #ededed;
  border-radius: 4px;
  font-weight: 400;
  color: #5d6b82;
  cursor: pointer
}

.sort-fillter span.active,
.sort-fillter span:hover {
  color: #0c2b7b;
  border-color: #0c2b7b
}

.sort-fillter {
  display: flex;
  gap: 10px
}

.single-product-page {
  display: flex
}

.thumb-single {
  width: 300px;
  position: relative
}

.thumb-single span.save-no,
.thumb-single span.save {
  position: absolute;
  display: inline-block;
  border-radius: 4px;
  font-size: 14px;
  line-height: 22px;
  padding: 4px 14px;
  background: #0c2b7b;
  color: #fff;
  top: 10px;
  left: 10px;
  z-index: 2;
  cursor: pointer
}

.thumb-single .price {
  background: #f2c94c;
  color: #0c2b7b;
  position: absolute;
  display: inline-block;
  border-radius: 4px;
  font-size: 12px;
  line-height: 22px;
  padding: 2px 7.5px;
  top: 10px;
  right: 10px;
  z-index: 2
}

.thumb-single .price.no-vip {
  background: #f2c94c
}

.thumb-single .price.vip {
  color: #ededed;
  background: #ff3356;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .5294117647)
}

.short-detail-product {
  width: calc(100% - 300px);
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between
}

.thumb-single img {
  width: 100%;
  border-radius: 8px
}

.short-detail-product h1 {
  font-size: 23px;
  font-weight: 600;
  color: #000
}

.meta-product {
  margin-bottom: 15px;
  font-weight: 400;
  display: flex;
  gap: 20px;
  color: #7a8699
}

.meta-product strong {
  color: #0c2b7b;
  font-weight: 500
}

.meta-product a {
  color: #2f80ed
}

.price-product {
  padding-top: 20px;
  border-top: 1px solid #ededed;
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  color: #ff5a20;
  padding-bottom: 20px
}

.price-product .icon {
  display: inline-flex
}

.price-product {
  padding-top: 20px;
  border-top: 1px solid #ededed;
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  color: #ff5a20;
  padding-bottom: 20px
}

.price-product .icon {
  display: inline-flex
}

.short-decs p:last-child {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400
}

.detail-bottom {
  display: flex;
  gap: 10px
}

.detail-bottom a {
  padding: 11px 33px;
  font-size: 14px;
  border-radius: 4px;
  display: inline-block;
  color: #0c2b7b;
  border: 1px solid #0c2b7b
}

.detail-bottom a.download {
  background: #0c2b7b;
  color: #fff
}

.product-content-text {
  margin-top: 20px
}

.product-content-text h2 {
  font-size: 20px;
  font-weight: 600;
  color: #0c2b7b;
  margin-bottom: 16px
}

.product-content-text .single-content-post {
  margin-bottom: 20px
}

.item-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ededed
}

.item-first {
  display: flex;
  align-items: center;
  gap: 15px;
  width: calc(100% - 270px)
}

@media screen and (max-width: 768px) {
  .item-first {
    width: 100%
  }
}

.meta-file {
  display: flex;
  font-size: 12px;
  color: #7a8699;
  gap: 13px;
  font-weight: 400;
  align-items: center
}

.item-first h4 {
  font-size: 16px;
  margin-bottom: 5px
}

.item-file:last-child {
  border-bottom: 0
}

.item-last {
  display: flex;
  gap: 10px
}

.item-last a {
  padding: 10px 30px;
  font-size: 13px;
  border-radius: 4px;
  display: inline-block;
  color: #0c2b7b;
  border: 1px solid #0c2b7b
}

.item-last a.download {
  background: #0c2b7b;
  color: #fff
}

.max-200 {
  height: 200px;
  overflow: auto;
  margin-right: -15px
}

.selected {
  display: none
}

#documents {
  position: relative;
  min-height: 350px
}

.meta-product.meta-product-custom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px
}

.content-show-post {
  position: relative;
  min-height: 300px
}

.menu-mobile {
  display: none
}

.thumb-news img {
  height: 200px;
  object-fit: cover
}

.goi-hoi-vien .row {
  align-items: center
}

.goi-hoi-vien .row .box-content-bac {
  text-align: center;
  max-width: 320px;
  background: #f7f7f7;
  min-height: 440px;
  padding: 30px 10px;
  margin: 0 auto;
  border-radius: 5px;
  position: relative
}

.goi-hoi-vien .row .box-content-bac ul li {
  list-style: none;
  font-size: 15px;
  margin-top: 0
}

.goi-hoi-vien .row .box-content-bac ul {
  text-align: left;
  padding: 0;
  margin: 20px 0
}

.goi-hoi-vien .row .box-content-bac .price {
  font-size: 21px;
  font-weight: 600;
  color: #e00;
  margin-bottom: 10px
}

.goi-hoi-vien .row .box-content-bac ul li:before {
  content: "✓";
  color: #0c2b7b;
  font-size: 17px;
  display: inline-block;
  margin-right: 5px
}

.box-content-bac .price del {
  display: block;
  font-size: 15px;
  color: #646464;
  font-weight: 500;
  display: block;
  margin-bottom: 5px
}

.box-content-bac ul li {
  margin-left: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 14px
}

.col-xs-12.col-md-4:nth-child(2) .box-content-bac {
  padding: 80px 10px;
  border-top-color: #e00
}

.box-content-bac {
  border-top: 10px solid #0c2b7b
}

.kd a {
  background: #0c2b7b;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px
}

.kd a:hover {
  background: #009688
}

h1.page-title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000
}

div#customer_details .woocommerce-shipping-fields {
  display: none
}

div#customer_details {
  max-width: 1000px;
  margin: 0 auto
}

div#customer_details .col-1 {
  width: 100%
}

div#customer_details .col-2 {
  display: none
}

div#order_review {
  margin: 0 auto;
  max-width: 1000px
}

h3#order_review_heading {
  display: block;
  margin: 20px auto;
  width: 1000px
}

section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses {
  display: none
}

h2.woocommerce-order-details__title {
  font-size: 28px;
  font-weight: 600;
  margin: 15px 0
}

nav.woocommerce-MyAccount-navigation ul {
  padding: 0
}

nav.woocommerce-MyAccount-navigation ul li {
  list-style: none;
  background: #ededed;
  padding: 10px;
  border-radius: 3px;
  margin-left: 0;
  margin-bottom: 10px
}

nav.woocommerce-MyAccount-navigation ul li a {
  color: #0c2b7b
}

nav.woocommerce-MyAccount-navigation ul li.is-active,
nav.woocommerce-MyAccount-navigation ul li:hover {
  background: #0c2b7b
}

nav.woocommerce-MyAccount-navigation ul li.is-active a,
nav.woocommerce-MyAccount-navigation ul li:hover a {
  color: #fff
}

li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--edit-address {
  display: none
}

li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--downloads {
  display: none
}

form.woocommerce-EditAccountForm.edit-account input[type=text],
form.woocommerce-EditAccountForm.edit-account input[type=email],
form.woocommerce-EditAccountForm.edit-account input[type=password] {
  display: block;
  width: 100%;
  height: 40px;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  font-size: 14px;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  box-shadow: none
}

button.woocommerce-Button.button {
  width: 100%;
  border: none;
  padding: 15px 10px;
  background: #0c2b7b;
  color: #fff;
  border-radius: 5px;
  font-weight: 400
}

#download-form .modal-dialog {
  max-width: 600px
}

.data-ajax-return {
  padding: 15px 0px
}

.data-ajax-return p.error {
  padding: 10px
}

ul.download-list li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #ededed;
  justify-content: space-between;
  gap: 15px
}

.modal-account .modal-body ul.download-list li button {
  width: 90px;
  height: 40px;
  margin-bottom: 0;
  font-size: 15px
}

ul.download-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 250px
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: calc(100% - 250px);
  padding-left: 30px
}

span.text-acc {
  text-transform: uppercase
}

.account {
  display: flex
}

.cart-icon a {
  border: none
}

header .main-header .account .cart-icon a {
  height: auto;
  border: none;
  padding: 0;
  position: relative
}

header .main-header .account .cart-icon a svg {
  width: 30px
}

header .main-header .account .cart-icon a svg path {
  fill: #0c2b7b
}

header .main-header .account .cart-icon a b {
  position: absolute;
  display: inline-block;
  width: 21px;
  height: 21px;
  background: #e00;
  border-radius: 50%;
  color: #fff;
  line-height: 20px;
  text-align: center;
  font-size: 10px;
  top: -10px;
  right: -12px
}

header .main-header .account {
  display: flex;
  align-items: center;
  gap: 20px
}

.favourite-products .box-product {
  margin-bottom: 20px
}

.loading {
  position: relative
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid rgba(0, 0, 0, .2);
  border-top: 3px solid #0c2b7b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10
}

@keyframes spin {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.loading .box-product {
  opacity: .5;
  pointer-events: none
}

header .main-header .account .hv-mobile,
.fillter-mb,
.button-show-mobile {
  display: none
}

.meta-product.more-info {
  display: block
}

.meta-product.more-info>* {
  display: block;
  margin-bottom: 8px
}

a.checkout-button.button.alt.wc-forward {
  background: #0c2b7b;
  font-size: 14px
}

td.product-thumbnail {
  display: none
}

th.product-thumbnail {
  display: none
}

th.product-quantity {
  display: none
}

td.product-quantity {
  display: none
}

td.product-name a {
  color: #0c2b7b
}

.cart_totals.calculated_shipping h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px
}

input#coupon_code {
  width: 120px
}

.content-page>.woocommerce {
  max-width: 1000px;
  margin: 0 auto
}

.woocommerce-account .content-page>.woocommerce {
  max-width: 100%
}

button#place_order {
  background: #0c2b7b
}

.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  border-color: #ccc !important;
  height: 40px !important
}

.status_user span {
  display: inline-block;
  padding: 7px 30px;
  background: #eaeaea;
  border-radius: 5px
}

.status_user span.package_1 {
  background: #0080e5;
  color: #fff
}

.status_user span.package_6 {
  background: #009688;
  color: #fff
}

.status_user span.package_12 {
  background: #ffad1e;
  color: #fff
}

.status_user ul {
  padding: 0;
  display: flex;
  justify-content: space-between;
  margin: 0
}

.status_user ul li {
  list-style: none;
  padding: 0;
  margin: 0
}

.status_user {
  border: 1px solid #ededed;
  padding: 10px;
  border-radius: 4px;
  background: rgba(247, 247, 247, .5215686275);
  margin-bottom: 20px
}

#detail-form .modal-dialog.modal-dialog-centered.modal-xl {
  max-width: 930px
}

ul.download-list li>span {
  width: calc(100% - 90px)
}

.detail-top {
  width: 100%
}

.in-hoa {
  text-transform: uppercase
}

.download_now,
.download-file {
  cursor: pointer
}

button.accordion-button {
  font-size: 18px;
  font-weight: 500
}

.accordion-button:not(.collapsed) {
  background: #0c2b7b;
  color: #fff
}

.accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #0c2b7b !important
}

.accordion-body {
  font-size: 15px
}

.list-button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  border-top: 1px solid #ededed;
  padding-top: 10px
}

.list-button a {
  display: inline-block;
  width: 120px;
  text-align: center;
  background: #ff4040;
  padding: 10px;
  color: #fff;
  border-radius: 4px
}

.list-button a.vtc {
  background: #0c2b7b
}

.search-mobile {
  display: none
}

ul.cap-hoc-menu {
  display: flex !important;
  padding-top: 15px
}

ul.menu-doan {
  background: #fff;
  position: relative
}

ul#full-menu-container {
  align-content: normal !important
}

.read-more-menu {
  position: absolute;
  right: 0;
  bottom: 15px;
  width: 100%;
  text-align: center
}

.read-more-menu a {
  font-size: 14px;
  font-weight: 500;
  color: #0c2b7b !important;
  border: 1px solid;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 6px 12px !important;
  border-radius: 4px
}

.top-header .inner-header-top .top-left>ul>li>ul li a#load-more-menu-ga.hidden {
  display: none !important
}

.logo-desktop {
  transition: all .3s;
  width: 225px
}

.top-header .inner-header-top .top-left {
  display: flex;
  align-items: center;
  gap: 20px
}

.top-header .inner-header-top .top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px
}

.top-header .inner-header-top .top-right .action-header {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all .3s
}

.top-header .inner-header-top .top-right .action-header a {
  border: 1px solid;
  height: 35px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 4px;
  color: #0c2b7b;
  gap: 5px;
  position: relative;
  text-align: left
}

.top-header .inner-header-top .top-right .action-header a svg {
  width: 30px
}

.top-header .inner-header-top .top-right .action-header a svg path {
  fill: #0c2b7b
}

.top-header .inner-header-top .top-right .action-header .cart-icon a {
  border: none;
  padding: 0 !important
}

.top-header .inner-header-top .top-right .action-header a b {
  position: absolute;
  display: inline-block;
  width: 21px;
  height: 21px;
  background: #e00;
  border-radius: 50%;
  color: #fff;
  line-height: 20px;
  text-align: center;
  font-size: 10px;
  top: -10px;
  right: -12px
}

.list-category-tl ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap
}

.list-category-tl ul li a {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid #cfcfcf;
  color: #333;
  border-radius: 4px;
  font-size: 15px
}

.list-category-tl {
  margin-top: 30px
}

.list-category-tl ul li a:hover {
  background: #e5e5e5
}

.mobile-mn {
  display: none
}

.note-top-in {
  background: #0c2b7b;
  padding: 10px 0
}

.note-top-in a {
  color: #fff;
  display: inline-block;
  padding-right: 15px
}

.note-single-product {
  background: #ffefd7;
  padding: 10px;
  font-size: 13px;
  border: 1px solid #ffcc7e;
  border-radius: 5px;
  margin-bottom: 10px;
  color: #333;
  margin-top: 20px;
  font-weight: 400
}

@media(max-width: 1400px) {
  .top-header .inner-header-top .top-left>ul>li>ul li ul li {
    width: auto;
    font-size: 12px
  }
}

@media(max-width: 1199px) {
  .top-header .inner-header-top .top-left {
    width: calc(100% - 100px)
  }

  header .main-header .account a {
    padding: 0 10px;
    font-size: 12px
  }

  header .main-header .inner-main-header .logo {
    width: 195px
  }

  header .main-header .top-search {
    width: 500px
  }
}

@media(max-width: 991px) {
  .top-header .inner-header-top .top-left>ul {
    display: block;
    position: fixed;
    background: #fff;
    width: 100%;
    top: 63px;
    right: 0;
    height: 100%;
    overflow: auto;
    padding: 0 10px;
    transition: all .3s;
    left: -100%
  }

  .top-header .inner-header-top .top-left>ul li {
    position: relative
  }

  .top-header .inner-header-top .top-left>ul li.active .downClick {
    transform: rotate(180deg);
    transition: all .3s
  }

  .top-header .inner-header-top .top-left>ul.active {
    left: 0;
    transition: all .3s
  }

  .top-header .inner-header-top .top-left>ul>li>a {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #ededed
  }

  .top-header .inner-header-top .top-left>ul>li>ul {
    position: initial;
    opacity: 1;
    visibility: visible;
    padding: 0;
    box-shadow: none;
    display: none;
    padding-left: 15px
  }

  .top-header .inner-header-top .top-left>ul>li>ul li {
    width: 100%;
    padding-right: 0
  }

  .top-header .inner-header-top .top-left>ul>li>ul li ul {
    width: 100%;
    position: initial;
    opacity: 1;
    visibility: visible;
    display: block;
    border-left: 0;
    padding-left: 15px
  }

  .top-header .inner-header-top .top-left>ul>li>ul.no-child {
    display: none
  }

  .top-header .inner-header-top .top-left>ul>li>ul li a {
    border-bottom: 1px solid #ededed;
    border-radius: 0;
    padding: 10px 0px
  }

  .top-header .inner-header-top .top-left>ul>li>ul li ul li a {
    padding: 10px 0px
  }

  .top-header .inner-header-top .top-left>ul>li>.downClick {
    width: 30px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    line-height: 30px;
    background: #fff;
    background: url("../images/arrow-down.svg") no-repeat center center;
    background-size: 16px 16px
  }

  header .main-header .top-search {
    display: none
  }

  main .section-level .inner-section-level {
    grid-template-columns: repeat(2, 1fr)
  }

  main #products {
    grid-template-columns: repeat(3, 1fr)
  }

  .top-header .inner-header-top {
    padding: 10px 0
  }

  .menu-mobile {
    display: flex;
    width: 30px;
    height: 23px;
    align-content: space-between;
    flex-wrap: wrap;
    cursor: pointer
  }

  .menu-mobile span {
    width: 30px;
    height: 3px;
    background: #0c2b7b;
    display: block;
    border-radius: 3px;
    transition: all .3s
  }

  .menu-mobile.active span {
    transform: rotate(45deg);
    transition: all .3s;
    position: relative;
    top: 12px;
    width: 28px
  }

  .menu-mobile.active span:last-child {
    display: none
  }

  .menu-mobile.active span:nth-child(2) {
    top: -8px;
    transform: rotate(-45deg)
  }

  .owl-carousel .owl-nav button.owl-prev {
    left: 20px
  }

  .owl-carousel .owl-nav button.owl-next {
    right: 20px
  }

  main .list-product-archive {
    grid-template-columns: repeat(2, 1fr)
  }

  .header-archive {
    display: block
  }

  .page-title {
    margin-bottom: 10px
  }

  .filter-container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: #fff;
    left: 0;
    top: 56px;
    overflow: scroll;
    border: none;
    border-radius: 0;
    padding: 10px;
    padding-bottom: 68px;
    left: -100%;
    transition: all .3s;
    padding-bottom: 120px;
    visibility: hidden;
    opacity: 0
  }

  .filter-container.active {
    left: 0;
    transition: all .3s;
    visibility: visible;
    opacity: 1
  }

  .fillter-mb {
    position: absolute;
    right: 0;
    display: flex;
    gap: 5px;
    border: 1px solid #6acbb2;
    padding: 5px 10px;
    border-radius: 4px;
    color: #0c2b7b;
    cursor: pointer
  }

  .header-archive {
    position: relative
  }

  .fillter-mb span {
    width: 19px
  }

  .fillter-mb span svg path {
    fill: #0c2b7b
  }

  .button-show-mobile {
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #ededed
  }

  .button-show-mobile button {
    width: 100%;
    height: 35px;
    background: #0c2b7b;
    border: none;
    border-radius: 6px;
    color: #fff
  }

  .breadcrumbs span {
    display: inline
  }

  .single-product-page {
    display: block
  }

  .short-detail-product {
    width: 100%;
    padding-left: 0
  }

  .thumb-single {
    width: 100%;
    margin-bottom: 15px
  }

  .detail-bottom {
    margin-top: 14px
  }

  .search-mobile {
    display: block
  }

  header .search-mobile .inner-form-search form>input {
    padding-left: 0
  }

  .logo-desktop {
    transition: all .3s;
    width: 150px;
    margin-left: 40px
  }

  .desk {
    display: none
  }

  .mobile-mn {
    display: block
  }

  .top-header {
    position: sticky;
    top: 0;
    width: 100%;
    left: 0;
    border-bottom: 1px solid #ededed
  }

  .top-header .inner-header-top .top-right .action-header a {
    padding: 0 5px
  }
}

@media(max-width: 991px) {
  span.text-acc {
    display: none
  }

  header .main-header .account .hv-mobile {
    color: #fff;
    display: flex;
    background: #0c2b7b
  }

  header .main-header .account {
    gap: 15px
  }

  .cart-icon {
    position: relative;
    right: 5px;
    top: 3px
  }

  header .main-header .account a {
    height: 35px
  }

  header .main-header .inner-main-header .logo {
    width: 140px;
    margin-left: 45px
  }

  .menu-mobile {
    position: absolute;
    top: 16px;
    height: 23px;
    width: 27px
  }

  header .main-header {
    padding: 10px 0;
    border-bottom: 1px solid #ededed;
    display: none
  }

  header {
    position: sticky;
    top: 84px;
    width: 100%;
    left: 0;
    background: #fff;
    z-index: 9;
    margin-bottom: 10px
  }

  .top-header .inner-header-top .top-left>ul {
    top: 101px
  }

  .modal-account .modal-header .btn-close {
    right: 0px;
    top: -15px
  }

  .breadcrumbs span {
    display: inline
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    padding-left: 0
  }

  .item-file {
    display: block
  }

  .item-first {
    margin-bottom: 10px
  }

  .item-last {
    justify-content: center
  }

  main .section-level {
    padding-top: 15px
  }

  div#download-form .modal-body {
    padding: 0 15px
  }

  ul.download-list li {
    gap: 15px
  }

  .category-news {
    grid-template-columns: repeat(1, 1fr)
  }

  .thumb-news img {
    height: auto
  }

  main #products {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width: 768px) {
  main #products {
    grid-template-columns: repeat(2, 1fr)
  }

  span.text-acc {
    display: none
  }

  header .main-header .account .hv-mobile {
    color: #fff;
    display: flex;
    background: #0c2b7b
  }

  header .main-header .account {
    gap: 15px
  }

  .cart-icon {
    position: relative;
    right: 5px;
    top: 3px
  }

  header .main-header .account a {
    height: 35px
  }

  header .main-header .inner-main-header .logo {
    width: 140px;
    margin-left: 45px
  }

  .menu-mobile {
    position: absolute;
    top: 16px;
    height: 23px;
    width: 27px
  }

  header .main-header {
    padding: 10px 0;
    border-bottom: 1px solid #ededed;
    display: none
  }

  header {
    position: sticky;
    top: 97px;
    width: 100%;
    left: 0;
    background: #fff;
    z-index: 9;
    margin-bottom: 10px
  }

  .modal-account .modal-header .btn-close {
    right: 0px;
    top: -15px
  }

  .breadcrumbs span {
    display: inline
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    padding-left: 0
  }

  .item-file {
    display: block
  }

  .item-first {
    margin-bottom: 10px
  }

  .item-last {
    justify-content: center
  }

  main .section-level {
    padding-top: 15px
  }

  div#download-form .modal-body {
    padding: 0 15px
  }

  ul.download-list li {
    gap: 15px
  }

  .category-news {
    grid-template-columns: repeat(1, 1fr)
  }

  .thumb-news img {
    height: auto
  }
}

@media(max-width: 575px) {
  .sort-fillter {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width: 490px) {
  main .section-level .inner-section-level {
    gap: 10px
  }
}

@media(max-width: 430px) {
  header .main-header .account {
    gap: 10px
  }

  main .section-level .inner-section-level h5 {
    font-size: 11px
  }

  main #products {
    gap: 10px
  }

  .box-product .thumb img {
    height: auto
  }

  .sort-fillter span {
    padding: 4px 6px;
    font-size: 12px
  }

  main .list-product-archive {
    gap: 10px
  }

  header .main-header .account .cart-icon a b {
    width: 17px;
    height: 17px;
    line-height: 17px;
    font-size: 9px
  }

  .short-detail-product h1 {
    font-size: 21px
  }

  a.copy-link {
    padding: 8px
  }

  .share-social {
    display: flex;
    flex-wrap: wrap
  }

  .breadcrumbs .arrow-b {
    margin: 0;
    position: relative;
    top: 3px
  }

  main .title-section h2 {
    font-size: 17px
  }

  header .main-header .account {
    gap: 17px
  }
}

@media(max-width: 390px) {
  header .main-header .account .cart-icon a svg {
    width: 25px
  }

  header .main-header .account a {
    padding: 0 7px
  }

  header .main-header .account .hv-mobile {
    font-size: 11px
  }
}

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