@-webkit-keyframes dot-keyframes {
0% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
25% {
-webkit-transform: scale(1);
transform: scale(1);
}
75% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
100% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
}
@keyframes dot-keyframes {
0% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
25% {
-webkit-transform: scale(1);
transform: scale(1);
}
75% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
100% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
}
@-webkit-keyframes rotate {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotate {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
} .store-category-box {
position: relative;
}
.store-category-box .category-detail .entry-title a {
color: currentColor;
text-decoration: none;
-webkit-transition: all 0.1s cubic-bezier(0.25, 0.1, 0.25, 1);
transition: all 0.1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.store-category-box .category-detail .entry-title a:hover {
color: var(--theme-primary-color);
}
.store-category-box.style-1 {
padding: 0.3125rem;
}
@media screen and (min-width: 576px) {
.store-category-box.style-1 {
padding: 0.9375rem;
}
}
.store-category-box.style-1 .category-thumbnail {
margin-bottom: 0.25rem;
}
.store-category-box.style-1 .category-thumbnail img {
-webkit-transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.store-category-box.style-1 .category-thumbnail a:hover img {
opacity: 0.7;
}
.store-category-box.style-1 .category-detail {
text-align: center;
}
.store-category-box.style-1 .category-detail .entry-title {
font-size: 0.75rem;
font-weight: 500;
}
@media screen and (min-width: 576px) {
.store-category-box.style-1 .category-detail .entry-title {
font-size: 0.8125rem;
}
}
.store-category-box.style-2 {
padding: 0.4375rem;
}
@media screen and (min-width: 576px) {
.store-category-box.style-2 {
padding: 0.9375rem;
}
}
.store-category-box.style-2 .category-thumbnail {
margin-bottom: 0.5rem;
}
.store-category-box.style-2 .category-thumbnail a {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.store-category-box.style-2 .category-thumbnail a::before {
content: "";
position: absolute;
width: 95%;
height: 95%;
background-color: var(--color-gray-100);
border-radius: 50%;
z-index: -1;
}
.store-category-box.style-2 .category-detail {
text-align: center;
}
.store-category-box.style-2 .category-detail .entry-title {
font-size: 0.8125rem;
}
.store-category-box.style-3 {
padding: 0.5rem;
}
.store-category-box.style-3 .category-thumbnail {
margin-bottom: 0.5rem;
padding-left: 0.4375rem;
padding-right: 0.4375rem;
}
.store-category-box.style-3 .category-detail {
text-align: center;
}
.store-category-box.style-3 .category-detail .entry-title {
font-size: 0.75rem;
font-weight: 500;
}