
.center-box {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #867e7e80;
    padding: 10px;
    border-radius: 5px;
    color: white;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

@media (max-width: 768px) {
    .center-box {
        position: relative; /* Remove absolute positioning */
        top: 0; /* Reset top positioning */
        left: 0; /* Reset left positioning */
        transform: none; /* Remove translation */
        margin-top: 30px; /* Add margin-top for space from the top */
        padding: 6px; /* Less padding on smaller screens */
        font-size: 14px; /* Smaller font size */
        height: auto;
        max-height: 90%;
    }

    /* Styling adjustments for tabs inside the .center-box on smaller screens */
    .nav-tabs {
        display: flex;
        flex-direction: column; /* Stack the tabs vertically */
        align-items: center;
        width: 100%; /* Ensure full width on mobile */
    }

    .nav-item {
        width: 100%; /* Make each tab take full width */
        text-align: center; /* Center text on mobile */
    }

    .nav-link {
        padding: 10px; /* Ensure the tab buttons have enough padding */
        font-size: 16px; /* Increase font size for readability */
    }

    .tab-content {
        margin-top: 20px;
    }

    .tab-pane {
        padding: 15px; /* Add padding for tab content */
    }
}

@media (max-width: 480px) {
    .center-box {
        margin-top: 20px; /* Reduce the top margin further on very small screens */
        font-size: 12px; /* Further reduce font size */
        height: auto;
        max-height: 90%;
    }

    .nav-tabs {
        flex-direction: column; /* Stack tabs vertically on very small screens */
        padding: 0;
    }

    .nav-item {
        width: 100%; /* Ensure tabs fill the available width */
    }

    .nav-link {
        font-size: 14px; /* Reduce font size further for small screens */
    }

    .tab-pane {
        font-size: 14px; /* Ensure content is readable */
        padding: 10px;
    }
}

/* .seperator {
    text-align: center;
}
.line-head {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 6px;
    position: relative;
    width: 50%;
}
.line-head::before {
    display: inline-block;
    content: "";
    height: 1px;
    background: -moz-linear-gradient(left, rgba(204, 204, 204, 0) 1%, rgba(204, 204, 204, 1) 12%, rgba(204, 204, 204, 1) 88%, rgba(204, 204, 204, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(204, 204, 204, 0) 1%, rgba(204, 204, 204, 1) 12%, rgba(204, 204, 204, 1) 88%, rgba(204, 204, 204, 0) 100%);
    background: linear-gradient(to right, rgba(204, 204, 204, 0) 1%, rgba(204, 204, 204, 1) 12%, rgba(204, 204, 204, 1) 88%, rgba(204, 204, 204, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00cccccc', endColorstr='#00cccccc', GradientType=1);
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 10px;
}
.line-head span {
    background: #eef6f8 !important;
}
.line-head span {
    background-color: white;
    padding: 0px 10px;
    position: relative;
}
.seperator h2 {
    margin-top: 0px;
    margin-bottom: 15px;
} */
.btn-format{
    border-radius: 50px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}
.btn-format:hover{
    color: #fff;
}
.btn-bg-default{
    background-color: #1d1d1b !important;
    border-color: #1d1d1b !important;
}
.btn-bg-choosed{
    background-color: #337ab7 !important;
    border-color: #337ab7 !important;
}

.bg-trans{
    background-color: transparent !important;
    /* border-color: transparent !important; */
}