@font-face {
  font-display: swap;
  font-family: "SVN Gilroy";
  font-weight: 300;
  src: url("../fonts/svn-gilroy_light.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "SVN Gilroy";
  font-weight: 400;
  src: url("../fonts/svn-gilroy_regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "SVN Gilroy";
  font-weight: 500;
  src: url("../fonts/svn-gilroy-medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "SVN Gilroy";
  font-weight: 600;
  src: url("../fonts/svn-gilroy_semibold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "SVN Gilroy";
  font-weight: 700;
  src: url("../fonts/svn-gilroy_bold.woff2") format("woff2");
}

.mb-50 {
    margin-bottom: 5rem;
}
.mt-50 {
    margin-top: 5rem;
}
.my-50 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.font-weight-500 {
    font-weight: 500;
}
.font-weight-600 {
    font-weight: 600;
}

.color-yellow {
    color: var(--yellow);
}

body {
    font-family: "SVN Gilroy";
}

/*Header*/
header {
    background-color: var(--white);
    top: 0;
    z-index: 1000;
}
header.fixed {
    position: sticky;
    animation: show .5s ease;
}
header .header-top {
    /*transform: translateY(0);*/
    display: block;
}
header.fixed .header-top {
    /*transform: translateY(-100%);*/
    display: none;
}

@keyframes show {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

.topbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    color: #F6F6F6;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
}
.topbar-wrapper > div {
    align-items: center;
    gap: 12px;
}
.topbar-wrapper .divider {
    position: relative;
    height: 15px;
    width: 1px;
    display: block;
    background-color: var(--white);
}
.topbar-wrapper a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #F6F6F6;
}
.topbar-wrapper .inner-left {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    display: -webkit-flex;
    display: flex;
}
.topbar-wrapper .inner-left a {
    font-weight: bold;
}
.topbar-wrapper .inner-right {
    display: none;
}
.topbar-wrapper .list-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-section .form-dropdown {
    position: absolute;
    background-color: var(--white);
    width: 350px;
    top: 100%;
    left: auto;
    right: 1.5rem;
    z-index: 1000;
    margin-bottom: 0;
    -webkit-animation: nav_menu_anim_close 0.3s both;
    -o-animation: nav_menu_anim_close 0.3s both;
    animation: nav_menu_anim_close 0.3s both;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
}
.search-section form {
    border: 1px solid #B0B0B0;
}
.search-section .btn-submit {
    background-color: transparent;
    border-color: transparent;
    color: var(--color-black);
}
.search-section.show .form-dropdown {
    -webkit-animation: nav_menu_anim_open 0.3s both;
    -o-animation: nav_menu_anim_open 0.3s both;
    animation: nav_menu_anim_open 0.3s both;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    pointer-events: unset;
}

.logo-section {
    text-align: center;
}

.header-mid .menu-section ul {
    display: none;
}
.header-mid .menu-section ul.menu-nav {
    display: block;
    position: relative;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.menu-nav li {
    display: inline-block;
    margin-right: 2rem;
}
.menu-nav li a {
    padding: 1.2rem 0;
    color: var(--color-black);
     text-transform: uppercase; 
    font-weight: 500;
    text-align: center;
}

.setting-menu ul.menu-nav {
    display: none;
}

.is-mobile .menu-nav {
    display: flex;
    gap: 40px;
    padding: 20px 15px;
    position: relative;
}
.is-mobile .menu-nav li {
    display: inline-block;
}
.is-mobile .menu-section > .menu-nav > li > a {
    padding: 0 !important;
    line-height: 1.4;
}
/*Header*/

/*Footer*/
.footer-main {
    color: var(--white);
    background-color: var(--color-black);
}
.footer-main .row > div {
    padding: 0;
    border-left: 1px solid #3D3D3D;
}
body:not(.is-mobile) .footer-main .row > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    padding: 6rem;
    border-right: 1px solid #3D3D3D;
}
.footer-main .row > div:last-child > div {
    flex: 0 0 calc((100% - (40px * 2)) / 2);
    max-width: calc((100% - (40px * 2)) / 2);
}
.footer-main .row > div:last-child > div:last-child{
    flex: 0 0 100%;
    max-width: 100%;
}
.footer-main ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-main a {
    color: #D1D1D1;
}
.title-footer {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 14px;
}

.footer-menu-section ul li a {
    color: #B0B0B0;
    font-size: 12px;
}

.footer-row {
    display: flex;
    flex-direction: column;
    gap: 24px 0;
    padding: 3rem 6rem;
}
.footer-row.copyright {
    border-top: 1px solid #3D3D3D;
}
.footer-row .hotline {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-row .hotline a {
    font-size: 20px;
    color: var(--white);
}

.newsletter {
    padding: 3rem 6rem;
}
.newsletter--input {
    border: 1px solid #3D3D3D;
    background: #3D3D3D;
}
.newsletter--submit {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: auto;
    z-index: 10;
    background-color: #343a40;
    border: 1px solid #343a40;
    height: calc(100% - 10px);
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 14px;
    font-weight: 700;
}

.social-section ul {
    flex-direction: row;
}
.social-section ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    background: #3D3D3D;
}

.payment ul {
    display: flex;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 4px;
    padding: 0;
}
.payment ul li {
    display: inline-flex;
    align-items: center;
}
.copyright {
    font-weight: 600;
}
/*Footer*/


/*MAIN*/
.swiper-slider-main .swiper-button {
    position: absolute;
    bottom: 2rem;
    right: 5rem;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    z-index: 10;
}
.swiper-slider-main .swiper-button > div {
    position: unset;
    width: 4.8rem;
    height: 4.8rem;
    border: 1px solid var(--white);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
}

.section-brand .swiper-slide {
    text-align: center;
}
.section-brand .item-cate {
    height: 60px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}
.section-brand .swiper-slide img {
    width: 75% !important;
}

.section-video {
    width: 100%;
    margin: 0 auto 5rem;
}
body:not(.is-mobile) .section-video {
    width: 80%;
}
.box-flashsale {
    margin: 5rem auto;
    background-color: var(--black);
    padding: 15px;
    border-radius: 10px;
}
body:not(.is-mobile) .box-flashsale {
    width: 80%;
}
.box-flashsale .heading {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}
.box-flashsale .title-section {
    margin-left: 3rem;
    justify-content: flex-start;
    font-weight: 900;
    font-style: italic;
    font-size: 3.2rem;
    color: var(--white);
    gap: 1rem;
}
.box-flashsale .title-section svg {
    width: 15px;
}
.box-flashsale .heading a {
    margin-left: auto;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
    font-weight: 500;
    font-size: 1.8rem;
}

.time-countdown {
    display: flex;
    align-items: center;
    gap: 2px;
}
.time-countdown .number {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: var(--white);
    border-radius: 3px;
    text-align: center;
}

.title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.swiper .item-cate {
    display: block;
    overflow: hidden;
    position: relative;
}
.swiper .item-cate img {
    width: 100%;
    -webkit-transition: transform 300ms cubic-bezier(0.39, 0.575, 0.565, 1), background 200ms linear, opacity 400ms linear;
    -ms-transition: transform 300ms cubic-bezier(0.39, 0.575, 0.565, 1), background 200ms linear, opacity 400ms linear;
    transition: transform 300ms cubic-bezier(0.39, 0.575, 0.565, 1), background 200ms linear, opacity 400ms linear;
}
.swiper .item-cate:hover img {
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
}
.swiper-slider-main .item-cate img {
    aspect-ratio: auto;
}
.swiper-slider-main .item-cate:hover img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.section-cate .item-cate img {
    aspect-ratio: 9 / 16;
}

.section-banner-cate {
    margin: 8rem 0;
}
.section-banner-cate .info-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 2rem;
}
.section-banner-cate .title-section {
    justify-content: flex-start;
}
.section-banner-cate .item-cate .ratio-custome {
    padding-top: 150%;
    overflow: hidden;
}
.section-banner-cate .item-cate .title {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px;
    font-size: 13px;
    color: var(--black);
}
.section-banner-cate .swiper-button-prev, 
.section-banner-cate .swiper-button-next {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.6);
    color: var(--black);
}

.btn-view-more {
    display: block;
    padding: 10px 0;
    text-align: center;
    background: var(--black);
    color: var(--white);
    font-weight: bold;
    width: 100%;
    text-transform: uppercase;
}


.section-trending .item-cate {
    padding-top: 100%;
    position: relative;
}
.section-trending .item-cate img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.section-trending .item-cate .title {
    display: block !important;
    position: absolute;
    text-transform: uppercase;
    color: var(--white);
    font-weight: bold;
    font-size: 4rem;
    left: 0;
    bottom: 15px;
    text-align: center;
    width: 100%;
}

.view-all {
    font-weight: 700;
    font-size: 13px;
    text-decoration: underline;
    color: var(--black);
}

.section-collection .product-item {
    margin-top: 0 !important;
}

.section-kol .product-item {
    margin-bottom: 1.5rem;
}
/*MAIN*/

.section-policy {
    background-color: var(--black);
}
body:not(.home) .section-policy {
    /*background-color: #D1D1D1;*/
}
.list-policy {
    display: flex;
    align-items: center;
    gap: 1px;
    overflow-x: scroll;
}
.list-policy .item {
    -webkit-flex: 0 0 calc(70% - 1px);
    flex: 0 0 calc(70% - 1px);
    max-width: calc(70% - 1px);
}
.list-policy .box {
    padding: 16px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: center;
    background: var(--black);
    color: var(--white);
}
.list-policy .box .thumb {
    width: 53px;
    height: 53px;
}
.list-policy .box h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}
.list-policy .box .detail {
    width: calc(100% - 53px - 16px);
}
.list-policy .box p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

body:not(.home) .list-policy .box {
    /*background-color: #D1D1D1;*/
}
body:not(.home) .list-policy p {
    /*color: #454545;*/
}
body:not(.home) .list-policy .box h3 {
    /*color: var(--black);*/
}



/*Trang danh sach*/
.orderby-section {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.orderby-section .total {
    color: #6D6D6D;
    font-weight: 500;
}

body.product_detail .section-brand .title-section,
body.product .section-brand .title-section {
    display: flex !important;
    justify-content: flex-start;
    font-size: 2rem;
    font-weight: 700;
}

.page-item .page-link {
    font-weight: 500;
    font-size: 1.5rem;
}
/*Trang danh sach*/

/*Button Contact Fixed*/
.contact-fixed {
    z-index: 999;
    right: 2rem;
    bottom: 9rem;
    position: fixed;
    height: 6rem;
    width: 6rem;
    background: var(--black);
    border-radius: 50%;
    cursor: pointer;
}

.contact-fixed__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    font-size: 1.1rem;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__button.show {
    -webkit-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

.contact-fixed__button i {
    font-size: 2.2rem;
}

.contact-fixed__pulsation {
    width: 8.4rem;
    height: 8.4rem;
    background-color: var(--black);
    border-radius: 50%;
    position: absolute;
    left: -1.2rem;
    top: -1.2rem;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: arcontactus-pulse 2s infinite;
    animation: arcontactus-pulse 2s infinite;
}

.contact-fixed__pulsation:nth-child(2n) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.contact-fixed__close {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    font-size: 2.2rem;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__close.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-fixed__list {
    background: center no-repeat var(--white);
    box-shadow: 0 0 10px rgb(0 0 0 / 60%);
    width: 15rem;
    position: absolute;
    bottom: 8rem;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 7px;
    -webkit-transform-origin: 80% 105%;
    -ms-transform-origin: 80% 105%;
    transform-origin: 80% 105%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-out .12s all;
    -o-transition: ease-out .12s all;
    transition: ease-out .12s all;
    z-index: 10000;
}

.contact-fixed__list:before {
    position: absolute;
    bottom: -0.7rem;
    right: 2.5rem;
    left: auto;
    display: inline-block!important;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFF;
    border-left: 8px solid transparent;
    content: '';
}

.contact-fixed__list.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-fixed__item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    width: 100%;
    color: var(--color-main);
    font-weight: bold;
}

.contact-fixed__item:hover {
    background-color: #eeeeee;
    color: var(--color-text);
}

.contact-fixed__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    background-color: var(--color-highlight);
    border-radius: 50%;
}

.contact-fixed__item-icon img {
    background-color: var(--white);
    border-radius: 5px;
}

@keyframes arcontactus-pulse {
	0% {
		-webkit-transform:scale(0);
		transform:scale(0);
		opacity:1
	}
	50% {
		opacity:.5
	}
	100% {
		-webkit-transform:scale(1);
		transform:scale(1);
		opacity:0
	}
}

#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}
#back-to-top .icon {
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    border-radius: 50%;
    border: 1px solid var(--white);
    background-color: var(--black);
    color: var(--white);
    text-align: center;
}
#back-to-top span {
    font-size: 8px;
    color: var(--white);
}
/*End Button Contact Fixed*/


/*Chi tiet san pham*/
body:not(.is-mobile) .product-info {
    padding: 0 8rem;
}
body:not(.is-mobile) .product-detail-head .row > div:first-child {
    flex: 0 0 63%;
    max-width: 63%;
}
body:not(.is-mobile) .product-detail-head .row > div:last-child {
    flex: 0 0 37%;
    max-width: 37%;
}
body:not(.is-mobile) .all-image {
    padding-right: 25px;
}
.all-image {
    margin-right: -5px;
    margin-left: -5px;
}
.all-image > *{
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 10px;
}

.note-vat {
    font-size: 10px;
    line-height: 16px;
    color: var(--color-black);
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 3rem;
}

.rating-number {
    color: #6B6C6D;
}
.btn-rating {
    font-weight: bold;
    color: var(--black);
    text-decoration: underline;
    font-size: 12px;
    line-height: 18px;
    margin-left: 2rem;
}

.product-content-detail .btn-cart-buy {
    width: calc(100% - 55px);
    margin-right: 10px;
}
.product-content-detail .product-description {
    background: #eaecfa;
    border-radius: 6px;
    padding: 10px 12px;
    color: #110e11;
}
.product-content-detail .product-description ul {
    list-style: none;
    padding: 0;
}
.product-content-detail .product-description li {
    list-style: none;
    padding-left: 20px;
    position: relative;
}
.product-content-detail .product-description li:before {
    content: "❖";
    position: absolute;
    left: 0;
    top: 0;
    color: #110e11;
}

.product-detail-footer .tab-pane {
    font-size: 12px;
    line-height: 20px;
}
.product-detail-footer .tab-pane table td {
    padding: 3px;
}

.delivery {
    margin: 28px 0 14px;
    font-size: 12px;
    line-height: 18px;
}
.delivery .title {
    font-weight: 700;
}
.delivery .time {
    color: #434245;
}

.overall-rating .btn-rating {
    height: 56px;
    background: var(--white);
    padding: 16px 22px;
    display: -webkit-flex;
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--color-black);
    font-size: 14px;
    text-decoration: none;
}

.product-news .title-section {
    justify-content: flex-start;
}
.swiper-scrollbar-drag {
    background-color: var(--black);
}
/*Chi tiet san pham*/


/*RESPONSIVE*/
.is-mobile .section-banner .container {
    padding: 0;
    margin: 0;
}
.is-mobile .box-flashsale .heading a {
    display: none;
}
.is-mobile .box-flashsale .title-section {
    font-size: 1.5rem;
}

.is-mobile .footer-main .row > div:last-child > div {
    flex: 0 0 100%;
    max-width: 100%;
}
.is-mobile .newsletter, 
.is-mobile .footer-row {
    padding: 4rem 1.5rem;
    border-bottom: 1px solid #3D3D3D;
}
.is-mobile .payment,
.is-mobile .footer-menu-section {
    border-bottom: 1px solid #3D3D3D;
    padding: 2rem 1.5rem;
}
.is-mobile .footer-menu-section ul {
    display: none;
}
.is-mobile .footer-menu-section .title-footer {
    margin-bottom: 0;
    position: relative;
}
.is-mobile .footer-menu-section .title-footer:before,
.is-mobile .footer-menu-section .title-footer:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2rem;
    height: 2px;
    background-color: var(--white);
}
.is-mobile .footer-menu-section .title-footer:after {
    transform: translateY(-50%) rotate(90deg);
}
.is-mobile .footer-menu-section .title-footer.show {
    margin-bottom: 1rem;
}
.is-mobile .footer-menu-section .title-footer.show:after {
    opacity: 0;
}

.is-mobile .footer-row.copyright {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.is-mobile.product .title-section {
    justify-content: flex-start !important;
    margin-bottom: 1.5rem !important;
}
.is-mobile .orderby-section {
    justify-content: end;
}
/*RESPONSIVE*/

@media (max-width: 767px) {
    .section-banner-cate {
        margin: 6rem 0;
    }
    .section-banner-cate  .title-section{
        margin-bottom: 0;
    }
    .section-banner-cate .swiper {
        margin-top: 3rem;
    }
    
    .product_detail .all-image {
        display: none;
    }
    .product_detail .swiper {
        display: block !important;
        width: calc(100% + 30px);
        transform: translateX(-15px);
    }
    .product_detail .swiper .swiper-button {
        width: 48px;
        height: 48px;
        line-height: 48px;
        text-align: center;
        background-color: var(--white);
        border-radius: 8px;
        color: var(--black);
    }
    .product_detail .swiper .swiper-pagination-bullet {
        width: 25px;
        height: 2px;
        background-color: var(--black);
        opacity: .3;
        border-radius: 0;
    }
    .product_detail .swiper .swiper-pagination-bullet-active {
        background-color: white;
        opacity: 1;
    }
    
    .group-action-product {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 10px;
        background-color: var(--white);
        z-index: 100;
        margin-bottom: 0 !important;
    }
    
}
@media (max-width: 768px) {
    .container, .container-sm, .container-md {
        max-width: 768px;
    }
    
    .product_detail .swiper {
        display: none;
    }
}

@media (min-width: 768px) {
    .list-policy .item {
        -webkit-flex: 0 0 calc(60% - 1px);
        flex: 0 0 calc(60% - 1px);
        max-width: calc(60% - 1px);
    }
}

@media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        padding: 0 15px;
        max-width: 1100px;
    }
    
    .topbar-wrapper .inner-left {
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
        max-width: 80%;
    }
    .topbar-wrapper .inner-right {
        -ms-flex: 0 0 calc(20% - 32px);
        flex: 0 0 calc(20% - 32px);
        max-width: calc(20% - 32px);    
        justify-content: flex-end;
        display: flex;
    }
    
    .footer-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .list-policy {
        flex-direction: row;
        overflow: hidden;
    }
    .list-policy .item {
        -webkit-flex: 0 0 calc((100% - 3px) / 4);
        flex: 0 0 calc((100% - 3px) / 4);
        max-width: calc((100% - 3px) / 4);
    }
    .list-policy .box {
        padding: 16px 32px;
        gap: 16px;
    }
    .list-policy .box h3 {
        font-size: 16px;
        line-height: 30px;
        font-weight: 600;
    }
}

@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        padding: 0 15px;
        max-width: 1440px;
    }
}

@media (min-width: 1400px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        padding: 0 40px;
        max-width: 1640px;
    }
}

@media (min-width: 1600px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        padding: 0 40px;
        max-width: 1840px;
    }
}


