:root{
    --primary-color: #ff5300;
    --white-color: #fff;
    --black-color: #000;
    --text-color: #333;
    --border-color: #dbdbdb;
    --star-gold: #ffce3e;
    --main-font-family: Roboto-Regular;
    --header-height: 120px;
    --login-header-height: 50px;
    --navbar-height: 38px;
    --header__sort-bar-height: 0px;
    --header_search-height: calc(var(--header-height) - var(--navbar-height));
}
@font-face{
	font-family: lato-Regular;
	src: url("../fonts/Roboto/Roboto-Regular.ttf");
}
@font-face{
	font-family: lato-Light;
	src: url("../fonts/Roboto/Roboto-Light.ttf");
}
@font-face{
	font-family: lato-Bold;
	src: url("../fonts/Roboto/Roboto-Bold.ttf");
}
*{
    box-sizing: inherit; 
}
html{
    /* HACK tương đương 10px  */
    font-size: 62.5%;
    line-height: 1.6rem;
    font-family: roboto;
    font-family: var(--main-font-family), sans-serif;
    color: var(--text-color);
    box-sizing: border-box;
}
/* Responsive */
.grid__row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
/* Test */
.grid__column-2{
    padding-left: 5px;
    padding-right: 5px;
    width: calc(100%/6);
}
.grid__column-10{
    padding-left: 5px;
    padding-right: 5px;
    width: calc((100%/6)*5);
}
.grid__column-2-4{
    padding-left: 5px;
    padding-right: 5px;
    width: 20%;
}
/* button */
.btn{
    min-width: 124px;
    min-height: 34px;
    border: none;
    text-decoration: none;
    border-radius: 2px;
    font-size: 1.4rem;
    padding: 0 12px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
}
.btn.btn--free{
    background-color: var(--white-color);
}
.btn.btn--normal:hover{
    background-color: rgba(0,0,0, 0.1);
}
.btn.btn--primary{
    color: var(--white-color);
    background-color: var(--primary-color);
}
.btn.btn-disable{
    cursor: default;
    background: #c3c3c3;
    color: #333;
}
.btn.btn__size--s{
    height: 30px;
    font-size: 1.2rem;
    padding: 0 8px;
}
.modal{
    position: fixed;
    top: 0;
    left: 0;
    right:0;
    bottom: 0;
    display: flex;
    animation: facein linear 0.2s;

}
@keyframes facein {
    from {
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@keyframes Growth{
    from {
        opacity: 0;
        transform: scale(var(--growth-from));
    }
    to{
        opacity: 1;
        transform: scale(var(--growth-to));
    }
}
.modal .modal__overplay{
    position: absolute;
    background-color: rgba(0,0,0, .4);
    width: 100%;
    height: 100%;
}
.modal__body{
    margin: auto;
    z-index: 1;
}
.authen__form--controls{
    display: flex;
    justify-content: flex-end;
}
/* Select */
.select-input{
    min-width: 160px;
    border-radius: 2px;
    background-color: var(--white-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    position: relative;
}
.select-input::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    top: 100%;
    right: 0;
}
.select-input-list{
    position: absolute ;
    list-style: none;
    padding-left: 0px;
    top: 105%;
    left: 0;
    right: 0;
    border-radius: 2px;
    background-color: var(--white-color) ;
    margin: 0px;
    overflow: hidden;
    display: none;
    z-index: 3;
    box-shadow: 0 1px 2px rgb(223 221 221);
}
.select-input:hover .select-input-list{
    display: block;
} 
.select-input-link{
    display: block;
    padding: 10px 12px;
    font-size: 1.4rem;
    color: var(--text-color);
    text-decoration: none;
}
.select-input-link:hover{
    color: var(--primary-color);
    cursor: pointer;
}
/* pagination */

.pagination__list{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 2px;
}
.pagination__list-item{
    margin: 0px 10px
}

.pagination__List-item-link{
    --height: 30px;
    text-decoration: none;
    font-size: 2rem;
    color: #939393;
    min-width: 40px;
    height: var(--height);
    display: inline-block;
    text-align: center;
    line-height: var(--height);
    border-radius: 2px;
}
.pagination__list-item-active 
.pagination__List-item-link{
    background-color: var(--primary-color);
    color: var(--white-color);
}
.pagination__list-item-active 
.pagination__List-item-link:hover{
    background-color: rgb(230, 67, 17);
}
.show-on-mobile-tablet{
    display: none;
}