/* announcement */
#annModal .modal-dialog {
    background-color: transparent;
    margin: 10px auto 0 auto;
    width: 90%;
}
.annbox {
    border-radius: 16px;
}
.ann-title {
    font-size: 32px;
    font-weight: 700;
    /* height: 40px; */
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    z-index: 2;
    padding: 0 30px;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-bg-body);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ann .icon {
    padding-right: 10px;
    display: inline-block;
}
.ann .text {
    display: inline-block;
    line-height: 35px;
    vertical-align: top;
    width: calc(100% - 55px);
}
.annbox .cclose {
    position: absolute;
    right: 0;
    top: -96px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(var(--black-100), var(--black-100)) padding-box,  var(--gradient-bg-body) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
}
.annbox .cclose::before {
    content: "×"; 
    font-size: 28px; 
    line-height: 1;
    position: relative;
    left: 7px;
    background: var(--gradient-bg-body);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.anncon {
    height: 100%;
    display: block;
}
.anncon .nav {
    display: block;
}
.ann-tab-wrapper .nav {
    max-width: 20%;
    width: 20%;
    margin-right: 12px;
    height: 100%;
}
.anncon .nav .nav-link {
    text-align: center;
    font-size: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 4px;
}
.anncon .nav-pills .nav-link,
.anncon .nav-link[data-bs-toggle="pill"] {
    position: relative;
    color: transparent; 
    width: 6px;                  
    height: 6px;
    padding: 0;
    background: none;  
    border: none;
}
.anncon .nav-link[data-bs-toggle="pill"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;                
    height: 6px;
    background-color: var(--color-primary-20);       
    border-radius: 50%;          
    transition: background-color 0.2s ease;
}
.anncon .nav-link[data-bs-toggle="pill"].active::before {
    background: var(--gradient-bg-body);    
}
.anncon .nav .nav-link p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}
.anncon .tab-content {
    width: 100%;
    display: block;
}
.anncon .tab-content>.active {
    display: grid;
    gap: 14px;
}
.anncon .tab-content h5 {
    font-weight: 700;
    font-size: 18px;
    order: 2;
    color: var(--color-primary-400);
}
.anncon .tab-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    order: 3;
    margin-bottom: 0;
}
.annbox .annimg {
    border-radius: 16px 16px 0 0;
    width: 100%;
    order: 1;
    border-bottom: 1px solid transparent;
    border-image: var(--gradient-bg-body) 1;
}
.ann-tab-wrapper {
    width: 100%;
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}
.ann-tab-wrapper::-webkit-scrollbar {
    display: none;
}
.anncon .tab-pane > :nth-child(1),
.anncon .tab-pane > :nth-child(2) {
    margin: 0 16px;
}