/* khai báo biến */
:root {
    /*màu header, tilte*/
    --while-color: #fff;
    --black-color: #000;
    /*Màu chữ, title navbar*/
    --text-color: #8e8f90;
    /*set màu cho narvbar, color button*/
    --navbar-color: #70012c;
    /* set màu cho tất cả các button */
    --button-color: #70012c;
    --icon-color: #eeebeb;
    /* màu hover icon delete trang order Sammary */
    --icon-color-sammary: #FE5F55;
    --deep-red-color: #7F0130;
    --border-img: #D9D9D9;
    --border-img-choosed: #660125;
    --text-color-black: #424242;
    --text-color-white: #ffffff;
    --background-gray: #f4f4f4;
    --border-img-2: #f4f4f4;
    --sum-gross-net: #FDCD95;
}


* {
    box-sizing: inherit;
}

body {
    margin: 0;
    background-color: var(--while-color);
}

html {
    font-size: 62.5%; /*font-size: 100% = 16px| 62.5% = 10px = 1rem */
    line-height: 1.6rem;
    /*font-family: 'Roboto', sans-serif;*/
    font-family: 'Mulish' !important;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes growth {
    from {
        transform: scale(val(--growth-from));
    }

    to {
        transform: scale(val(--growth-from));
    }
}
/* navbar search */
.header__navbar-item-search-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

    .header__navbar-item-search-wrapper.active {
    }

    .header__navbar-item-search-wrapper .input-holder {
        height: 70px;
        width: 70px;
        overflow: hidden;
        background: rgba(255,255,255,0);
        border-radius: 6px;
        position: relative;
        transition: all 0.3s ease-in-out;
    }

    .header__navbar-item-search-wrapper.active .input-holder {
        width: 450px;
        border-radius: 50px;
        background: rgba(0,0,0,0.5);
        transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    }

    .header__navbar-item-search-wrapper .input-holder .search-input {
        width: 100%;
        height: 50px;
        padding: 0px 70px 0 20px;
        opacity: 0;
        position: absolute;
        top: 0px;
        left: 0px;
        background: transparent;
        box-sizing: border-box;
        border: none;
        outline: none;
        font-family: "Open Sans", Arial, Verdana;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        color: #FFF;
        transform: translate(0, 60px);
        transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
        transition-delay: 0.3s;
    }

    .header__navbar-item-search-wrapper.active .input-holder .search-input {
        opacity: 1;
        transform: translate(0, 10px);
    }

    .header__navbar-item-search-wrapper .input-holder .search-icon {
        width: 70px;
        height: 70px;
        border: none;
        border-radius: 6px;
        background: #FFF;
        padding: 0px;
        outline: none;
        position: relative;
        z-index: 2;
        float: right;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .header__navbar-item-search-wrapper.active .input-holder .search-icon {
        width: 50px;
        height: 50px;
        margin: 10px;
        border-radius: 30px;
    }

    .header__navbar-item-search-wrapper .input-holder .search-icon .icon-btn-search {
        width: 22px;
        height: 22px;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        transform: rotate(45deg);
        transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    }

    .header__navbar-item-search-wrapper.active .input-holder .search-icon .icon-btn-search {
        transform: rotate(-45deg);
    }

    .header__navbar-item-search-wrapper .input-holder .search-icon .icon-btn-search::before, .header__navbar-item-search-wrapper .input-holder .search-icon .icon-btn-search::after {
        position: absolute;
        content: '';
    }

    .header__navbar-item-search-wrapper .input-holder .search-icon .icon-btn-search::before {
        width: 4px;
        height: 11px;
        left: 9px;
        top: 18px;
        border-radius: 2px;
        background: #FE5F55;
    }

    .header__navbar-item-search-wrapper .input-holder .search-icon .icon-btn-search::after {
        width: 14px;
        height: 14px;
        left: 0px;
        top: 0px;
        border-radius: 16px;
        border: 4px solid #FE5F55;
    }

    .header__navbar-item-search-wrapper .close {
        position: absolute;
        z-index: 1;
        top: 24px;
        right: 20px;
        width: 25px;
        height: 25px;
        cursor: pointer;
        transform: rotate(-180deg);
        transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
        transition-delay: 0.2s;
    }

    .header__navbar-item-search-wrapper.active .close {
        right: -50px;
        transform: rotate(45deg);
        transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
        transition-delay: 0.5s;
    }

    .header__navbar-item-search-wrapper .close::before, .header__navbar-item-search-wrapper .close::after {
        position: absolute;
        content: '';
        background: #FE5F55;
        border-radius: 2px;
    }

    .header__navbar-item-search-wrapper .close::before {
        width: 5px;
        height: 25px;
        left: 10px;
        top: 0px;
    }

    .header__navbar-item-search-wrapper .close::after {
        width: 25px;
        height: 5px;
        left: 0px;
        top: 10px;
    }

/*nền móng create responsive */
.grid {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

.grid__full-width {
    width: 100%;
}

.grid__row {
    display: flex;
    flex-wrap: wrap;
}
