/* grid system */

.container {
    width: 100%;
    max-width: 100%;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1190px) {
    .container {
      max-width: 1190px;
    }
}
/* grid system */

.head-text {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 50px;
    padding-top: 60px;
    line-height: 39px;
}
.menu-category {
    display: flex;
    margin-right: 10px;
    margin-bottom: 0;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-overflow-style: none; /* IE 11 */
    scrollbar-width: none; /* Firefox 64 */
}
.menu-category::-webkit-scrollbar {
  display: none;
}
ul.menu-category li {
    display: flex;
    margin-right: 20px;
}
ul.menu-category li a.category-name {
    font-size: 20px;
    font-weight: 400;
    color: black;
    text-align: center;
    padding-bottom: 13px;
}
ul.menu-category .category-name.active {
    color: #999999;
    box-shadow: inset 0 -4px 0 black;
}

ul.item-list {
    margin: 0;
    padding-top: 20px;
    margin-bottom: 80px;

    border-top: 1px solid black;
}
ul.item-list li.item-info {
    position: relative;
    padding-bottom: 0;
    padding-right: 10px;
    padding-left: 0;
}
ul.item-list li.item-info img {
    border-radius: 10px;
}
ul.item-list li.item-info .item-name {
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 50px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    color: white;
    font-size: 11px;
}
.tags .new-tag {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background-color: #005bb7;

    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tags .best-tag {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background-color: #b70000;

    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.mobile-category {
    display: none;
}

.hidden {
    display: none !important;
}
.view-more-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 185px;
}
.view-more-wrapper button.view-more {
    outline: none;
    color: black;
    font-size: 20px;
    letter-spacing: -0.5px;
    display: flex;
    border: 1px solid black;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    font-weight: 200;
    padding: 13px 22px;
    background-color: unset;
    font-weight: 500;
}
@media (max-width: 720px) {
    ul.menu-category li a.category-name {
        font-size: 18px;
    }
}

@media (min-width: 992px){
    .col-lg-24p {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 680px) {
    .view-more-wrapper {
        margin-bottom: 40px;
    }
    .view-more-wrapper button.view-more {
        font-size: 10px;
        line-height: 15px;
        letter-spacing: -0.25px;
        padding: 7px 8px;
        outline: none;
    }
    .head-text {
        font-size: 23px;
        padding-top: 10px;
        margin-bottom: 30px;
        line-height: 30px;
    }
    ul.menu-category {
        margin-right: 5px;
    }
    ul.item-list {
        padding-top: 10px;
        margin-bottom: 25px;
    }
    ul.item-list li.item-info {
        padding-right: 5px;
    }
    ul.item-list li.item-info .item-name {
        font-size: 12px;
        margin-bottom: 15px;
        margin-top: 5px;
        display: flex;
        justify-content: center;
    }
    li.item-info .item-name p {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .tags {
        top: 5px;
        left: 5px;
        letter-spacing: -0.25px;
    }
    .tags .new-tag {
        width: 26px;
        font-size: 10px;
        height: 26px;
        letter-spacing: -0.25px;
    }
    .tags .best-tag {
        width: 26px;
        font-size: 10px;
        height: 26px;
        letter-spacing: -0.25px;
        margin-right: 2px;
    }

}

#top_btn {
    border: unset;
    background: unset;
    border-radius: 100%;
}
.circle-button {
	display: flex;
	align-items: center;
	justify-content: center;
    position: relative;
	width: 56px;
	height: 56px;
}
.circle-button img {
    position: absolute;
}
.circle-button img.background {
	width: 56px;
	height: 56px;
}
.footer-button {
	position: fixed;
    bottom: 40px;
    right: 89px;
	display: flex;
	z-index: 1000;
    z-index: 1;
}
.footer-button #top_btn {
    box-shadow: 0px 5px 7px 0px rgb(0 0 0 / 30%);
}
#inquiry-button {
	width: 184px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: black;
	border: 0;
	color: white;
	margin-right: 10px;
}
.footer-button #inquiry-button {
    box-shadow: 0px 5px 7px 0px rgb(0 0 0 / 30%);
}

@media (max-width: 680px){
    .footer-button {
        bottom: 12px;
        right: 15px;
    }
    .circle-button {
        width: 45px;
        height: 45px;
    }
    .circle-button img.background {
        width: 45px;
        height: 45px;
    }
}