/* .ctgr-tabs 이벤트 적용 되지 않는 class */
.ctgr-tabs {
    height: 100% !important;
    position: relative;
    /*overflow-x: auto;*/
    /*overflow-y: hidden;*/
    height: 48px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    margin: 0 auto;
    /*white-space: nowrap;*/
}
.ctgr-tabs.tabs-transparent {
    background-color: transparent;
}
.ctgr-tabs.tabs-transparent .tab a,
.ctgr-tabs.tabs-transparent .tab.disabled a,
.ctgr-tabs.tabs-transparent .tab.disabled a:hover {
    color: rgba(15, 23, 42, 0.68);
}
.ctgr-tabs.tabs-transparent .tab a:hover,
.ctgr-tabs.tabs-transparent .tab a.active {
    color: #fff;
}
.ctgr-tabs.tabs-transparent .indicator {
    background-color: #fff;
}
.ctgr-tabs.ctgr-tabs-fixed-width {
    display: flex;
}
.ctgr-tabs.ctgr-tabs-fixed-width .tab {
    flex-grow: 1;
}
.ctgr-tabs .tab {
    display: flex;
    width: 100%;
    text-align: center;
    line-height: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}
.ctgr-tabs .tab a {
    color: #111111;
    font-size: 1rem;
    border: 1px solid #E1E1E1;
    /*color: rgba(15, 23, 42, 0.68);*/
    font-family: "Pretendard";
    font-weight: 600;
    font-size: 15px;
    line-height: 171.43%;
    text-decoration: none;
    letter-spacing: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 24px;
    text-overflow: ellipsis;
    transition: color 0.28s ease, background-color 0.28s ease;
}
@media screen and (max-width: 1024px) {
    .ctgr-tabs .tab a {
        font-size: 0.9rem;
    }
    .ctgr-tabs .tab a i {
        font-size: 0.9rem;
    }
}
.ctgr-tabs .tab a i {
    margin-right: 0.3rem;
}
.ctgr-tabs .tab a:focus, .ctgr-tabs .tab a:focus.active {
    background: rgb(47, 91, 193);
}
.ctgr-tabs .tab a:hover, .ctgr-tabs .tab a.active {
    background: rgb(47, 91, 193);
    color: #fff;
}
.ctgr-tabs .tab a:hover i.material-icons, .ctgr-tabs .tab a.active i.material-icons {
    color: rgb(47, 91, 193);
}
.ctgr-tabs .tab.disabled a, .ctgr-tabs .tab.disabled a:hover {
    color: rgba(47, 91, 193, 0.4);
    cursor: default;
}

.sub-o .ctgr-tabs .tab a.active {
    background: rgb(255, 130, 1);
    color: #111111;
}
.sub-o .ctgr-tabs .tab a:focus, .sub-o .ctgr-tabs .tab a:hover, .sub-o .ctgr-tabs .tab a:focus.active {
    background: rgb(255, 130, 1);
    color: #111111;
}

/*@media only screen and (max-width : 992px) {*/
/*    .ctgr-tabs {*/
/*        display: flex;*/
/*    }*/
/*    .ctgr-tabs .tab {*/
/*        flex-grow: 1;*/
/*    }*/
/*    .ctgr-tabs .tab a {*/
/*        padding: 0 12px;*/
/*    }*/
/*}*/


@media only screen and (max-width : 1025px) {
    .ctgr-tabs {
        display: block;
    }
    .ctgr-tabs .tab {
        flex-grow: 1;
        width: 49% !important;
        margin-bottom: 0.2rem;
        display: inline-block;
    }
    .ctgr-tabs .tab a {
        padding: 0 12px;
    }
}
/* END */