:root {
    --white-color: #fff;
    --black-color: #000;
    --text-color: #333;
    --primary-color: #ee4d2d;
    --border-color: #dbdbdb;
    --header-height: 120px;
    --navbar-height: 30px;
    --header-with-search-height: calc(var(--header-height) - var(--navbar-height));
    --header-sort-bar-height: 46px;
}

*{
    box-sizing: inherit;
}

html{
    font-size: 62.5%;
    line-height: 1.6rem;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    
}
/* Reponsive */
.grid__row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}


.grid__column-2{
    width: 16.6667%;
    padding-left: 5px;
    padding-right: 5px;
}
.grid__column-10{
    width: 83.3334%;
    padding-left: 5px;
    padding-right: 5px;
}
.grid__column-2-4{
    width: 20%;
    padding-left: 5px;
    padding-right: 5px;
}
@keyframes fadeIn{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes growth{
    from{
        transform: scale(var(--growth-from));
    }
    to{
        transform: scale(var(--growth-to));
    }
}
/* Modal */
.modal{
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    animation: fadeIn linear 0.1s;
}
.modal__overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.4);
}
.modal__body{
    --growth-from: 0.7;
    --growth-to: 1;
    margin: auto;
    z-index: 3;
    position: relative;
    animation: growth linear 0.1s;
}
/* Button style */
.btn{
    min-width: 124px;
    height: 34px;
    border: none;
    text-decoration: none;
    border-radius: 2px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    background-color: var(--white-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.btn.btn--size-s{
    height: 32px;
    font-size: 1.2rem;
    padding: 0 12px;
}
.btn.btn--normal:hover{
    background-color: rgba(0, 0, 0, 0.09);
}
.btn.btn-primary{
    color: var(--white-color);
    background-color: var(--primary-color);
}
.btn--disabled{
    cursor: default;
    color: #949494;
    background-color: #ccc;
}
/* Pagination */
.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
}

.pagination-item{
    list-style: none;
    margin: 0 8px;
}

.pagination-item__link{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #696969;
    height: 30px;
    min-width: 40px;

}

.pagination-item__icon{

}
