/* PC */

@media (min-width: 1024px) {
    .header__navbar-drop-list {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        min-width: 200px;
        z-index: 10;
        display: none;
        animation: sideDown ease 0.3s;
    }

    .main__header.sticky {
        top: 0;
        padding: 0;
    }

    .sticky .header__with-logo {
        display: none;
    }

}

@media (min-width: 1024px) and (max-width: 1366px) {
    .products__item-thumb img {
        height: 220px;
    }
}

/* TABLET & MOBILE */
@media (max-width: 1023px) {

    .sticky .header__logo {
        display: none;
    }

    .sticky .header__with-logo {
        border: none;
    }

    .sticky .header__with-logo {
        padding: 4px 0;
    }

    .sticky .header__with-input-tm {
        display: none;
    }

    .sticky .header__with-navbar {
        padding: 0;
    }

    .hide-on-tm {
        display: none;
    }

    .header__wrap-cart-list {
        right: -10px;
    }

    .header__wrap-cart-list::after {
        left: calc(100% - 25px);
        border-width: 20px 25px;
    }

    .social-zalo {
        display: block !important;
    }

    .header__navbar-drop-list {
        background: var(--primary-color);
        min-width: 200px;
        animation: sideRightDrop ease 0.3s;
        display: none;
    }

    .header__navbar-item:hover .header__navbar-item-link {
        color: #000;

    }

    .header__navbar-drop-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .header__navbar-drop-item:last-child {
        border-bottom: none;
    }

    .header__navbar-drop-item:hover {
        background: #000;
    }

    .header__navbar-drop-item-link {
        color: #000;
    }


    .header__navbar {
        position: absolute;
        top: 0;
        left: 0;
        background: #000;
        height: 100%;
        flex-direction: column;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        animation: sideRight ease 0.3s;
    }

    .header__bg-opacity {
        position: fixed;
        z-index: 10;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        background: rgba(0, 0, 0, 0.3);
    }

    .header__bg-opacity.open_menu {
        display: block;
    }

    .header__navbar-list {
        flex-direction: column;
        margin: 0;
    }

    .header__navbar-item {
        text-align: left;
        border-bottom: 1px solid;
		width: 90% !important;
    }

    .header__icon-close {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        cursor: pointer;
        margin: 27px 12px 12px 12px;
        height: 30px;
        border-radius: 50%;
        background: #fff;
        opacity: 0.6;
        transition: 0.2s;
    }

    .header__icon-close-link {
        color: #000;
    }

    .header__icon-close:hover {
        opacity: 1;
    }

    .header__with-input {
        display: none;
    }

    .header__with-input-tm {
        width: 100%;
        display: flex;
        align-items: center;
        border: 1px solid var(--text-color);
        border-radius: 20px;
        padding: 0 10px;
    }

    .header__input {
        padding: 4px 6px;
    }

    .header__input-icon {
        background: red;
    }

    .header__icon-list {
        display: flex;
        width: 35px;
        height: 30px;
        border: 1px solid #000;
        justify-content: center;
        align-items: center;
        border-radius: 6px;
        cursor: pointer;
    }

    .header__icon-list-link {
        color: #fff;
    }

    .program__item {
        margin-top: 12px;
    }

    .main__header.sticky {
        padding: 6px 0 4px;
        box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
    }
}


/* TABLET */

@media (min-width: 740px) and (max-width: 1023px) {
    .header__navbar {
        width: 50%;
    }

    .header__with-logo {
        padding: 6px 0;
    }

    .header__wrap-cart-list::after {
        left: calc(100% - 62px);
        border-width: 20px 25px;
    }

}




/* MOBILE */
@media (max-width: 739px) {

    .hide_on_m {
        display: none;
    }

    .header__navbar {
        width: 100%;
    }

    .header__with-logo {
        padding: 6px;
    }

    .header__nav-icon-desc {
        display: none;
    }

    .header__nav-icon {
        border-radius: 50%;
        width: 30px;
        height: 30px;
    }

    .header__nav-product {
        right: -20%;
    }

    .header__input {
        padding: 2px 6px;
    }
	
    .header__logo {
        width: 50px;
    }

    .sticky .header__with-navbar {
        box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
    }

    .footer__items {
        margin-top: 12px;
        border-bottom: 1px solid var(--primary-color);
    }

    .footer__items-logo {
        display: flex;
        margin: 0 auto;
    }

    .products__item-thumb img {
        height: 160px;
    }
}