.sec-device {
    /* padding-bottom: 15px; */
    border: 1px solid;
    border-image: linear-gradient(90deg,
            #002a92 0%,
            #002a92 50%,
            rgba(255, 255, 255, 0) 100%);
    max-height: 75px;
}

.sec-device .tab-btns {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.sec-device .tab-btns>div {
    padding-bottom: 1.2rem;
}

.sec-device .tab-btns>div {
    color: var(--themePrimaryTxtColor);
    font-size: 14px;
    font-weight: 600;
    /* margin-bottom: -2px; */
}

.sec-device .tab-btns>div span {
    cursor: pointer;
}

.sec-device .tab-btns>div.active {
    color: var(--themeActiveColor);
    border-bottom: 3px solid var(--themeActiveColor);
}

.custom-icon {
    font-size: 3rem;
    /* Adjust the size as needed */
}

.pdf-icon {
    color: var(--themeActiveColor);
    /* Bright blue for PDF */
}

.word-icon {
    color: var(--themeActiveColor);
    /* Darker blue for Word */
}

.other-icon {
    color: var(--themeActiveColor);
    /* Light blue for other file types */
}


.custom-text {
    color: var(--themePrimaryTxtColor);
    /* Dark blue for text */
}

.custom-link {
    color: var(--themeActiveColor);
    /* Dark blue for link */
    text-decoration: none;
    /* Remove underline from links */
}

.custom-link:hover {
    text-decoration: underline;
    /* Add underline on hover */
}

.custom-border {
    border: 1px solid var(--themeActiveColor);
    /* Light blue border */
}

.product_bindfullbox {
    margin-top: 0px !important;
}

.content-text {
    color: var(--themePrimaryTxtColor) !important;
}

.custom-image {
    position: relative;
}

.custom-image img {
    transition: opacity 0.3s ease;
}

.custom-image:hover img {
    opacity: 0.3;
    /* Optional: makes the image semi-transparent on hover */
}

.custom-image .image-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--themeActiveColor);
    /* Dark background for better readability */
    color: var(--themePrimaryTxtColor);
    /* White text color */
    padding: 5px;
    text-align: center;
    font-size: 0.8rem;
    /* Smaller font size */
    white-space: nowrap;
    /* Prevent text from wrapping */
    overflow: hidden;
    /* Hide text overflow */
    text-overflow: ellipsis;
    /* Add ellipsis for overflow text */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-image:hover .image-name {
    opacity: 1;
}

.container-costum {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

/* @media (min-width: 1400px) {
    .sec-device .tab-btns {
        margin-bottom: 6rem;
    }
} */
/* Container for the dropdown */
.custom-dropdown {
    position: relative;
    width: 250px;
    margin-left: 1%;
}

/* Transparent dropdown styling */
.styled-dropdown {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--themePrimaryTxtColor); /* Semi-transparent border */
    border-radius: 5px;
    background: var(--bgcolor); /* Transparent background */
    font-size: 16px;
    color: var(--themePrimaryTxtColor); /* White text */
    appearance: none; /* Remove default arrow */
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="10" height="6"%3E%3Cpath fill="none" stroke="white" stroke-width="1.5" d="M1 1l4 4 4-4"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center; /* Custom arrow position */
    cursor: pointer;
}

/* Focused state */
.styled-dropdown:focus {
    outline: none;
    border-color: var(--themePrimaryTxtColor); /* Solid white border */
    background-color: var(--bgcolor); /* Slight background change */
}

/* Dropdown menu styling (for most browsers) */
select.styled-dropdown option {
    background-color: var(--bgcolor); /* Slight background change */
    color: var(--themePrimaryTxtColor); /* White text */
    padding: 10px 15px;
    border: none;
    font-size: 16px;
}

/* Hover and focus effect for dropdown options */
select.styled-dropdown option:hover,
select.styled-dropdown option:focus {
    background: var(--bgcolor); /* Highlight with semi-transparent white */
    color: var(--themePrimaryTxtColor); /* Ensure text remains white */
}

/* Optional: Smooth transition */
.styled-dropdown,
select.styled-dropdown option {
    transition: background-color 0.3s, color 0.3s;
}

@media (min-width: 768px) {
    .sec-device .tab-btns {
        margin-bottom: 3rem;
    }

    .sec-device .tab-btns>div {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .container-costum {
        padding-right: calc(var(--bs-gutter-x) * .5);

    }
}

/* @media (max-width: 600px) {
    .slick-slide{
        width: 170px;
    }
    .thumbnail_img{
        height: 100px !important;
    }
    .thumbnail_img:first-child {
        margin-left: 1px !important;
    }
}
@media (max-width: 400px) {
    .sec-device .tab-btns > div {
        font-size: 13px !important;
    }
    .thumbnail_img{
        height: 95px !important;
    }
} */