/* 탭 컴포넌트 */
.bc-tab {
}

.bc-tab-button-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.bc-tab-button {
    padding: 10px;
    width: 50%;
    border: none;
    background-color: #ffffff;
    color: rgba(0, 0, 0, 1);
    border-bottom: 2px solid rgba(0, 0, 0, 1);
    font-size: 18px;
    font-weight: 500;
    opacity: 0.25;
    transition: all 0.25s;
}

.bc-tab-button:hover {
    opacity: 0.5;
}

.bc-tab-button:focus {
    outline: none;
}

.bc-tab-button.bc-active {
    opacity: 1;
}

@media (min-width: 768px) {
    .bc-tab-button {
        width: 25%;
    }
}

.bc-tab-content {
    display: none;
    padding: 10px 15px;
    border: 1px solid #ededed;
}

.bc-tab-content.bc-active {
    display: block;
    animation-name: tabFadeIn;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

@keyframes tabFadeIn {
    0% {
        transform: translate(0, 10px);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/* pagination */
.bc-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bc-pagination-item {
    text-decoration: none;
    margin: 0 3px;
    padding: 0.5rem 1rem;
    border: 1px solid #dddddd;
    color: #777777;
    background-color: #ffffff;
}

.bc-pagination-item.disabled {
    background-color: #eeeeee;
}

.bc-pagination-item:not(.disabled):not(.active):hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #bdbdbd;
}

.bc-pagination-item.active {
    color: #ffffff;
    background-color: #212121;
}
