﻿/* Width of the scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

/* Track (background of the scrollbar) */
::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 2px;
    box-shadow: inset 0 0 5px #f8f8f8;
}

/* Handle (the draggable part of the scrollbar) */
::-webkit-scrollbar-thumb {
    background: #d97819; /* Change the color to match your theme */
    border-radius: 2px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #c83345;
    }


.breadcrumb li {
    display: inline-block;
    font-size: 17px !important;
    font-weight: 600 !important;
    padding: 2px !important;
}
.border-line {
    position: relative; 
}
    .border-line:after {
        content: "";
        display: block;
        background: #d97819 !important;
        border-radius: 5px !important;
        position: absolute !important;
        left: 0;
        width: 5%;
        height: 5px;
        bottom: 0;
    }



.heading {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.decoration-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

