
.swal2-title{
font-size: 3rem;
}
#swal2-html-container{
font-size: 1.6rem;

}
.swal2-confirm.swal2-styled{
font-size: 2rem;
}


/* Header  */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white-color);
    z-index: 10;
    /* background-color: #999; */
}

.active {
    color: red !important;
}

.nav__pc {
    width: var(--main-width);
    height: 100%;
    margin: 0 auto;
    display: flex;
}

.nav__pc-logo {
    width: 150px;
    display: flex;
    align-items: center;
    padding: 10px;
    display: flex;
    align-items: center;
}

.nav__pc-logo-img {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

.nav__pc-menu {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.nav__pc-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__pc-list-item {
    margin: 0 12px;
    position: relative;
}

.nav__pc-list-link {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
}

.nav__pc-list-item-icon-cart {
    font-size: 2.2rem;
    color: var(--primary-color);
    cursor: pointer;

}

.nav__pc-list-link-btn {
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    color: var(--white-color);
    display: none;
}

.cartTotal {
    font-size: 1.2rem;
    width: 1.9rem;
    padding: 2px 0;
    border-radius: 50%;
    color: var(--white-color);
    text-align: center;
    position: absolute;
    top: -10px;
    right: -16px;
    border: 1px solid var(--white-color);
    background-color: var(--primary-color);
}

.icon-menu {
    font-size: 3.2rem;
    position: absolute;
    top: 24px;
    right: 25px;
    display: none;
}

/* Phan menu mobile  */
.nav__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    animation: fadeIn linear 0.2s;
    display: none;
}

.nav__mobile {
    width: 100%;
    z-index: 3;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    background-color: #595959;
    transform: translateX(100%);
    transition: transform linear 0.3s, opacity linear 0.3s;
    opacity: 0;
    display: none;
    
}

.show-menu{
    display: block;
    transform: translateX(0);
     opacity: 0.9;
}

.nav__mobile-list {
    margin-top: 24px;
}

.nav__mobile-list-link {
    color:var(--white-color);
    font-size: 1.6rem;
    display: block;
    padding: 8px 0;
    text-decoration: none;
}
.nav__mobile-list-link:hover{
    /* background-color: #cbc7c7; */
    color: var(--primary-color);
}
.nav__mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--white-color);
}




/* Phan nav bottom */
.nav__mobile-bottom {
    --height-nav-bottom: 40px;
    width: 100%;
    height: var(--height-nav-bottom);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
}

.mobile__bottom-contact {
    flex: 1;
    height: 100%;
    line-height: var(--height-nav-bottom);
    text-align: center;
    color: var(--primary-color);
}

.mobile__bottom-cart {
    text-align: center;
    flex: 1;
    height: 40px;
    line-height: var(--height-nav-bottom);
font-size: 1.5rem;
    color: var(--primary-color);
    border-left: 1px solid #999;
}

.mobile__bottom-buy-now {
    text-align: center;
    flex: 2;
    line-height: var(--height-nav-bottom);
    font-weight: 600;
    display: block;
    color: var(--white-color);
    background-color: var(--primary-color);
}



/* Content  */

/* section chung */
.section {
    width: 100%;
    padding: 10px 20px;
    margin-top: 20px;
}

.section__h2-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.section__p-text {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: justify;
    color: var(--text-color);
    margin: 10px 0;
}

/* END section chung */



.home__slider {
    width: 100%;
    padding-top: 43%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Phan gioi thieu */
.section__about {
    width: 80%;
    margin: 0 auto;
    display: flex;
    padding: 15px;
    justify-content: center;

    align-items: center;
}

.section__about-left {
    padding: 20px;
    flex: 1;
}

.section__about-left-img {
    width: 100%;
    height: 310px;
    background-size: contain;
    background-repeat: no-repeat;
}

.section__about-right {
    flex: 1;
    position: relative;
}

.section__about-block-right-list {
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.section__about-block-right-list::before {
    content: '';
    background-color: var(--primary-color);
    width: 2px;
    position: absolute;
    top: 36px;
    left: 25px;
    bottom: 30px;
    z-index: 1;
}

.section__about-block-right-item {
    width: 100%;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.span-round {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin: 0 20px;
    border: 1px solid rgb(10, 103, 233);
    z-index: 2;
}

.span-text {
    font-size: 1.6rem;
    line-height: 1.2;
    flex: 1;
}

.span-text--action {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    border-radius: 5px;
}

.span-text--action::before {
    content: '';
    position: absolute;
    border-width: 10px;
    top: 114px;
    left: 33px;
    border-style: solid;
    border-color: transparent var(--primary-color) transparent transparent;
}

.bg__about {
    background: url('../img/background-20210810095355.jpg');
}

/* Phan san pham  */
.card {
    --line-height-name: 2.0rem;
    width: 100%;
    background-color: rgb(238 241 242);
    position: relative;
    border: 1px solid #999;
    margin-top: 20px;
}

.home-product-item__img {
    /* margin-top: 10px; */
    padding-top: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    /* background-position: center; */

}
.block_masp{
    display: flex;
flex-wrap: wrap;
text-transform: uppercase;
}
.quick__view-list-item-kt-span{
    margin-left: 10px;
}


.block_masp-btn{
    display: block;
    padding: 5px;
    margin-top: 5px;
    margin-right: 5px;
    font-size: 1.3rem;
    line-height: 1.5;
    border-radius: 2px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    cursor: pointer;
}
.block_masp-btn:hover{
    background-color: var(--primary-color);
    color: var(--white-color);
}
.home-product-item__name {
    margin: 10px 10px 6px;
    font-size: 1.4rem;
    color: var(--text-color);
    line-height: var(--line-height-name);
    height: calc(2*var(--line-height-name));
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-product-item__price {
    display: flex;
    flex-wrap: wrap;
    line-height: var(--line--height-price);
    /* height: calc(2*var(--line--height-price)); */
    align-items: baseline;
}

.home-product-item__price-old {
    font-size: 1.4rem;
    color: #666;
    font-weight: 300;
    margin-left: 10px;
    text-decoration: line-through;
}

.home-product-item__price-current {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 10px;
}

.home-product-item__action {
    display: flex;
    justify-content: space-between;
    margin: 10px 10px 0;
}

.home-product-item__like {
    font-size: 1.4rem;
    cursor: pointer;
}

i.home-product-item__like-fill {
    display: none;
    color: #f63d30;
}

.home-product-item__like--liked .home-product-item__like-fill {
    display: inline-block;
}

.home-product-item__like--liked .home-product-item__like-empty {
    display: none;
}

.home-product-item__rating {
    font-size: 1rem;
    transform: scale(0.8);
    transform-origin: right;
    color: #666;
    margin: -1px 0 0 auto;
}

.home-product-item__star--gold {
    color: var(--star-gold-color);
}

.home-product-item__sold {
    margin-left: 6px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.home-product-item__footer {
    --height_product_footer: 32px;
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    color: #595959;
    font-weight: 300;
    font-size: 1.2rem;
    cursor: pointer;
    height: var(--height_product_footer);
    background-color: var(--primary-color);
    align-items: center;
    color: var(--white-color);
}

.home-product-item__footer span {
    display: block;
}

.abc {
    width: 1px;
    height: 100%;
    background-color: #fff;
}

.home-product-item__quick {
    flex: 1;
    line-height: var(--height_product_footer);
    text-align: center;
    font-weight: 700;
font-size: 1.5rem;
}


.home-product-view {
    width: 100%;
    font-size: 1.1rem;
    position: absolute;
    bottom: 30px;
    z-index: 55;
    background-color: rgb(243, 237, 237);
    padding: 10px;
    box-shadow: 1px 0 10px #999;
    cursor: default;
    display: none;
}

.home-product-item__quick:hover .home-product-view {
    display: block;
}

.quick__view-name {
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--primary-color);
    margin: 10px 0;

}


.quick__view-list {
    width: 100%;
    list-style: none;
    padding-left: 0;
}

.quick__view-list-item {
    width: 100%;
    display: flex;
    color: var(--text-color);
    text-align: left;
}
.quick__view-list-item-kt {
    flex-direction: column;
}

.block_kich-thuoc {
    width: 100%;
    display: flex;
}
.quick__view-list-item-left {
    min-width: 70px;

}
.quick__view-list-item-right {
    flex: 1;
    margin-left: 5px;
}





.home-product-item__addcart {
    flex: 1;
    text-align: center;
    line-height: var(--height_product_footer);
    font-size: 1.8rem;
}



.home-product-item__favourite span {
    color: var(--white-color);
}

.home-product-item__favourite i {
    margin: 0 3px;
    font-size: 0.8rem;
    color: var(--white-color);
}

.home-product-item__favourite::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0px;
    border-top: 3px solid currentColor;
    border-left: 3px solid transparent;
    filter: brightness(60%);
}

.home-product-item__sale-of {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 50px;
    height: 40px;
    background-color: rgba(255, 216, 64, 0.94);
    text-align: center;

}

.home-product-item__sale-of::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    border-width: 0 25px 4px;
    border-style: solid;
    border-color: transparent rgba(255, 216, 64, 0.9) transparent rgba(255, 216, 64, 0.9);
}

.home-product-item__sale-of-percent {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2rem;
    color: red;
    margin-top: 4px;
}

.home-product-item__sale-of-label {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3rem;
    position: relative;
    top: 5px;
    padding: 0 5px;
}

/* Phan ho tro 24/7 */
.section__product-contact {
    width: 50%;
    margin: 50px auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.section__product-contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */

}

.section__product-contact-left-1 {
    color: rgb(102, 95, 95);
    font-size: 1.9rem;
    line-height: 2;
}

.section__product-contact-left-2 {
    font-size: 2.6rem;
    margin: 10px 0;
}

.section__product-contact-left-2 i {
    font-size: 2.2rem;
    color: rgb(102, 95, 95);
    text-align: left;
}

.section__product-contact-left-2 a {
    color: var(--text-color);
    font-weight: 700;
}

.section__product-contact-right {
    flex: 1;

}

.video_about {
    width: 100%;
    height: 538px;
}

/* Phan dat hang online */
.order__online {
    display: flex;
    margin-top: 20PX;
}

.order__online-icon {
    font-size: 3.6rem;
    margin-top: 10px;
    color: var(--primary-color);
}

.order__online-info {
    margin-left: 10px;
    flex: 1;
}

.order__online-info-title {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    line-height: 1.6;
    color: var(--primary-color);
}

.order__online-info-description {
    font-size: 1.4rem;
    text-align: justify;
    line-height: 1.6;
}

.order__online-btn {
    width: 20%;
    margin: 50px auto;
}


/* Phản hồi của khách hàng */
.feedback__filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #d3d3d3;
}

.feedback__filter-left {
    font-size: 1.7rem;
    font-weight: bold;
}

.feedback__filter-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback__filter-right-label {
    font-size: 1.6rem;
    margin-right: 20px;
}

.feedback__filter {}




.section__feedback-block {
    display: flex;
    margin-top: 30px;
}

.section__feedback-block-img {
    width: 68px;
    height: 68px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    border: 1px solid #cbc7c7;
}



.section__feedback-block-info {
    flex: 1;
    margin-left: 15px;
}

.section__feedback-block-info-heading {
    display: flex;
    flex-direction: column;
}

.h3__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2;
    color: var(--text-color);
}


/* .section__feedback-block-info-heading img {
    width: 216px;
    margin-top: 5px;
} */

.feedback__ggv-info-img {
    width: 216px;
    height: 216px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 10px;
}

.like-feedback {
    display: flex;
    margin-top: 5px;
}

.like-feedback span {
    margin-right: 10px;
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgb(67, 102, 176);
}

.section__feedback-block-info-footer {}

.feedback__ggv {
    margin-top: 10px;
    padding-left: 5px;
    display: flex;
    justify-content: center;
    border-left: 2px solid rgb(230, 224, 224);
}

.feedback__ggv-img {
    width: 68px;
    height: 68px;
    border-radius: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 10px;
}


.feedback__ggv-info-p {
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: justify;
}

.feedback__ggv-info-icon {
    color: blue;
    font-size: 1.3rem;
}

.feedback-load {
    width: 60px;
    height: 40px;
    margin: 20px auto;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Phan uu dai  */
.uudai__block {
    width: 70%;
    margin: 10px auto;
    display: flex;
    align-items: center;
}

.uudai__block-h3 {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2;
    color: var(--primary-color);
    margin: 20px 0;
}

.uudai__block-h3-mobile {
       display: none;
}

.uudai__block-img {
    width: 200PX;
    height: 144PX;
    background-size: contain;
    background-repeat: no-repeat;
}

.uudai__block-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.uudai__block-info-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.w-100 {
    width: 100px;
    margin-top: 10px;
}

/* Footer  */

.footer {
    width: 100%;
}

.footer_h2 {
    /* width: 100%; */
    display: inline-block;
    font-size: 2rem;
    line-height: 2;
    font-weight: 700;
    margin-left: 40px;
    text-transform: uppercase;
    border-bottom: 2px solid #999;
}

.footer__list {
    padding: 15px;
}

.footer__list-item {
    display: flex;
    margin: 15px 0;
    align-items: center;
}

.footer__list-item i {
    font-size: 1.8rem;
    margin-right: 10px;
}

.footer__list-item-label {
    font-size: 1.6rem;
    line-height: 2;
}

.footer__list-item>a>i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.footer__page {
    width: 100%;
    height: 330px;
}

.footer_bottom {
    background-color: #666;
    min-height: 60px;
    margin-bottom: 40px;
}

.footer_bottom p {
    font-size: 1.4rem;
    line-height: 20px;
    padding: 10px;
    text-align: center;
    color: var(--white-color);
}

.card__emptry_right{
   float: right;
   margin-right: 50px;
}

.nav__mobile-list-item{
    margin: 20px 5px;
}

/* growth */
.btn_scale{
animation: scale 1.2s infinite linear alternate;
}

