:root {
  --white-color: #fff;
  --black-color: #000;
  --text-color: #333;
  --primary-color: rgb(231, 76, 43);
  --border-color: #dbdbdb;
  --header-height: 120px;
  --navbar-height: 34px;
  --header-over-height: calc(var(--header-height) - var(--navbar-height));
  --header-sort-bar-hight:46px;
}

* {
  box-sizing: inherit;
}

html {
  /* trick  */
  font-size: 62.5%;
  line-height: 1.6rem;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}



.grid__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

/* test  */
.grid__column-2 {
  padding: 0 5px;
  width: 16.6667%;
}

.grid__column-2-4 {
  padding: 0 5px;
  width: 20%;
}

.grid__column-10 {
  padding: 0 5px;
  width: 83.3334%;
}
/* Animation  */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes growth {
  from {
    transform: scale(var(--growth-from));
  }
  to {
    transform: scale(var(--growth-to));
  }
}

/* modal layout */
.modal {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  position: fixed;
  animation: fadeIn ease-in 0.01s;
}

.modal__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
}

.modal__body {
  --growth-from: 0.7;
  --growth-to: 1;
  z-index: 1;
  margin: auto;
  position: relative;
  animation: growth linear 0.1s;
}

.modal__inner {
}

/* button style  */
.btn {
  height: 34px;
  /* min-width: 142px; */
  min-width: 124px;
  font-size: 1.4rem;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid var(--border-color);
  padding: 0;
  cursor: pointer;
  color: #000;
}

.btn.btn-primary {
  color: var(--white-color);
  background-color: var(--primary-color);
}

.btn-primary-title {
  height: 100%;
  display: flex;
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white-color);
}

.btn.btn--disable {
  color: rgb(129, 115, 115);
  cursor: default;
  background-color: #c3c3c3;
}

/* box white notification  */
.box-white {
  position: absolute;
  top: 100%;
  right: 0;
  border-radius: 2px;
  background-color: var(--white-color);
  box-shadow: 0 1px 1px var(--border-color);
  animation: fadeIn ease-in 0.01s;
}

/* user  */
.user_icon {
  width: 20px;
  height: 20px;
  margin: 5px;
  border-radius: 50%;
  border: 0.1px solid #dbdbdb;
}

.user_name {
  color: var(--white-color);
  text-decoration: none;
  font-size: inherit;
}

/* panination  */
.panination {
}

.panination-list {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.panination-item__item {

  margin: 0 32px;
}

.panination-item__item-current {
  background-color: var(--primary-color);
}
.panination-item__item-current a {
  color: var(--white-color) !important;

}

.panination-item__link {
  min-width: 40px;
  height: 30px;
  color: #7e7d7d;
  display: block;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  line-height: 30px;
}
