.wrapper {
    padding-bottom: 100px;
}

.main_topcolor {
    background: transparent;
    /* background: linear-gradient(135deg, rgba(1,59,175,1) 0%, rgba(0,66,199,1) 100%); */
}

.main_topcolor.scrolled {
    background: linear-gradient(135deg, rgba(1,59,175,1) 0%, rgba(0,66,199,1) 100%);
}
/* 메인 백그라운드 */
.main_back {
    width: 100%;
    height: 40%;
    background: linear-gradient(135deg, rgba(1,59,175,1) 0%, rgba(0,66,199,1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0px 0px 15px 15px;
}

/* 큰 타이틀 */
.main_title {
    width: calc(100% - 40px);
    margin-left:20px;
}
.main_title div:nth-child(1) {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}
.main_title div:nth-child(2) {
    font-size: 14px;
    color: #ffffff;
    margin-top: 5px;;
}

/* best 스와이퍼 슬라이드 */
.best_swiper {
    width: calc(100% - 40px);
    margin: 0 20px;
    overflow: hidden;
    margin-top: 10px;
    position: relative;
}
.swiper-wrapper {
    height: auto !important;
}
.pagination-container {
    position: absolute;
    top: 110px !important;
    text-align: right !important;
    right: 40px !important;
    bottom: unset !important;
    left: unset !important;
}
.swiper-pagination-bullet {
    margin: unset !important;
    margin-left: 5px !important;
    background-color: #D5D5D5 !important;
}
.swiper-pagination-bullet-active {
    background-color: #f4f5f6 !important;
}

/* 상품 스타일 고정 */
.product_img {
    margin-bottom: 10px;
}
.product_img img {
    max-width: 100%;
    border: 1px solid #f4f5f6;
}
.product_title {
    height: 60px;
}
.product_title div:nth-child(1) {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
}
.product_title div:nth-child(2) {
    font-size: 14px;
    color: #5D5D5D;
    margin-top: 5px;
    text-overflow:ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;  
}
.product_price div:nth-child(1) {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
}
.product_price div:nth-child(2) {
    font-size: 14px;
    color: #063491;
    margin-top: 5px;
    text-overflow:ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;  
}

.product_list {
    width: calc(100% - 40px);
    margin-left:20px;
    display: flex;
}

/* 중분류 선택 */
.category_select {
    width: calc(100% - 40px);
    margin-left:20px;
    display: flex;
    align-items: center;
    overflow: auto;
    white-space: nowrap;
}
.category_select div {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 20px;
    margin-right: 10px;
    border-radius: 50px;
    background-color: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category_select div:last-child {
    margin-right: 0px;
}
.category_select div.selected {
    background-color: #ffffff;
    color: #063491;
}
.category_select::-webkit-scrollbar {
    display: none;
}

.category_select {
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
}