/* Category Page ========================================================================= */
.category-title {
  border: 0;
  margin: 17px 0 9px;
}
.category-image {
  width: 100%;
  overflow: hidden;
  margin: 0 0 10px;
  text-align: center;
}
.category-image img {
}
.category-description {
  margin: 0 0 10px;
}

/* Category list ========================================================================= */

.category-grid {
  display: grid;
  /* justify-items: center; */
  /* justify-content: center; */
  /* align-content: center; */
  grid-template-columns: 1fr 1fr 1fr 1fr;
  /* grid-template-columns: auto auto auto auto; */
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
}
.category-list {
  width: 100%;
  margin-bottom: 40px;
}
.category-list .item {
  display: flex;
  flex-direction: column;
  border: solid 1px #ddd;
  border-radius: 5px;
}
.category-list .item:hover {
  box-shadow: 0 0.3rem 0.8rem -0.3rem rgba(0, 0, 0, 0.1);
  border-color: #ccc;
}
.category-list .item.last {
  margin-right: 0;
}
.category-list .category-image {
  margin: 1.5rem 0 0;
  height: 110px;
  max-height: 100%;
  max-width: 100%;
}
.category-list .category-image img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
}
.category-list .category-name {
  color: #076f85;
  font-weight: bold;
  padding-right: 6px;
  /* border: solid 1px; */
  width: 100%;
  height: 100%;
  display: block;
  padding: 8px 4px 8px 7px;
  display: flex;
  /* align-content: center; */
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  box-sizing: border-box;
  border-radius: 5px;
  text-align: center;
}
.category-list .category-name .gg-chevron-right {
  display: none;
}
.category-list .category-name:hover {
  /* color:#35b2c2; */
  text-decoration: none;
}
.category-list .name-box {
  /* background: #f0f0f0; */
  /* border: #e9e9e9 1px solid; */
  /* padding:6px 14px 8px 14px; */
  transition: all 0.2s ease-in-out;
  height: 100%;
  width: 100%;
  overflow: hidden;
  overflow: hidden;
  flex: 1;
  border-radius: 5px;
}
.category-list .name-box:hover {
  /* background: #d3d3d3; */
}
.category-list .name-box .arrow-wrapper {
  display: inline-block;
  width: 0px;
  overflow: visible;
}
.category-list .name-box .arrow {
  width: 4px;
  height: 8px;
  display: inline-block;
  background: url("../images/icon-sprite.png") 0 -231px no-repeat;
}

/* ======================================================================================= */
