.offcanvas {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -300px;
    width: 300px;
    z-index: 1045;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
}
.offcanvas.show {
    left: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    background-color: #4b545c;
    color:white;
}
.offcanvas-header .close {
    color:white;
}
.offcanvas-body {
    padding: 1rem;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.overlay.show {
    opacity: 1;
    visibility: visible;
}

input[type=search] {
    width: 130px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    cursor: pointer;
}
.searchFilterPlace {
    position: relative;
}
.searchFilterPlace input {
    padding-left: 30px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}
.searchFilterPlace i {
    position: absolute;
    top: calc(50% - 20%);
    font-size: 18px;
    color: rgba(0, 0, 0, .2);
    padding-right:10px;
    padding-left:10px;
}
.perPage select {
    width: 100px;
    padding:5px;
}
input[type=search]:focus {
    width: 100%;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    cursor: pointer;
}
.pagination {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.page-link {
    padding:15px;
}

/* Sidebar list group styling */
.list-group-item {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

.list-group-item.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* Tab content spacing */
.tab-pane {
    padding: 15px;
}

/* Form check alignment */
.form-check-label {
    font-size: 0.9rem;
    /*color: #333;*/
}

/* Permissions header */
h6 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.select2-selection__choice {
    background-color: var(--primary) !important;
    color: #FFF !important;
}
.select2-container .select2-selection--single {
    height: 45px !important;
}

.popover-header {
    background-color: #000;
    font-size: 12px;
}


.popover {
    background-color: #0000FF;
    border: 1px solid black;
    color: #ADB5BDFF !important;

}

.moreInformation {
    cursor: help;

}

.popoverLabelText {
    cursor: pointer !important;
    color: #000 !important;
}

.show-notes {
    color: red;
    font-weight: bold;
}

.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before, .bs-popover-bottom .popover-header::before {
    border-bottom: none;
}

span.key {
    display: inline-block;
    margin: 0 0.1em;
    padding: 0.1em 0.6em;
    font-size: 11px;
    line-height: 1.5;
    color: hsl(210, 8%, 15%);
    text-shadow: 0 1px 0 hsl(0, 0%, 100%);
    background-color: hsl(210, 8%, 90%);
    border: 1px solid hsl(210, 8%, 65%);
    border-radius: 3px;
    box-shadow: 0 1px 1px hsl(210deg 8% 5% / 15%), inset 0 1px 0 0 hsl(0deg 0% 100%);
    overflow-wrap: break-word;
}
.languageTabErrorAlert {
    position: relative;
}

.languageTabErrorAlert:before {
    content: '\f06a';
    display: inline-block;
    text-rendering: auto;
    font: var(--fa-font-solid);
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 5%;
    left: 0;
    color: red;
    border-radius: 50%;
    animation: .75s linear infinite spinner-grow;
}
.select2-container {
    width: 100% !important;
}
.board {
    border-radius: .25rem;
}
.statusOfColumnDiv {
    margin-bottom: 10px;

}
.iconOfStatusOfColumn {
    padding:3px 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.iconOfStatusOfColumn {

}

/* Base style for the form-check input (radio button) */
.modelStatusOfSectionsColumns .iconOfStatusOfColumn {
    opacity: 0.5;  /* Default opacity */
    transition: opacity 0.3s ease;

}

/* When the radio button is checked, increase opacity of the icon */
.modelStatusOfSectionsColumns .form-check-input:checked + label .iconOfStatusOfColumn {
    opacity: 1;  /* Full opacity when selected */
}

/* Bold font-weight when hovering over the label */
.modelStatusOfSectionsColumns .statusOfColumnDiv:hover > label {
    font-weight: bold;
}

/* Ensure opacity stays 1 after selecting the radio button */
.modelStatusOfSectionsColumns .form-check-input:checked + label .iconOfStatusOfColumn {
    opacity: 1; /* Maintain opacity when checked */
}

/* Font-weight bold when hovering over label */
.modelStatusOfSectionsColumns .statusOfColumnDiv:hover > label {
    font-weight: bold; /* Bold text when hovered */
}

/* Glowing effect when checked */
.modelStatusOfSectionsColumns .form-check-input:checked + label {
    font-weight: bold; /* Make label bold when checked */
}

/* When radio button is selected, don't revert opacity back */
.modelStatusOfSectionsColumns .form-check-input:checked + label .iconOfStatusOfColumn {
    opacity: 1; /* Keep opacity at 1 when selected */
}

#my-notification .dropdown-menu {
    height:400px !important;
    overflow: scroll !important;
}


.notice {
    position: relative;
    margin: 1em;
    background: #F9F9F9;
    padding: 1em 1em 1em 2em;
    border-left: 4px solid #DDD;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
}

.notice:before {
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: -17px;
    background-color: #DDD;
    color: #FFF;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-family: Georgia;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.info {
    border-color: #0074D9;
}

.info:before {
    content: "i";
    background-color: #0074D9;
}

.success {
    border-color: #2ECC40;
}

.success:before {
    content: "√";
    background-color: #2ECC40;
}

.warning {
    border-color: #FFDC00;
}

.warning:before {
    content: "!";
    background-color: #FFDC00;
}

.error {
    border-color: #FF4136;
}

.error:before {
    content: "X";
    background-color: #FF4136;
}

.main-sidebar .nav-item .active-nav {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}
.productMarketPlace {

}
.soonProduct {
    cursor: not-allowed;
}
.availableProduct {
    cursor: pointer;

}
.availableProduct:hover .card {
    transition: all .5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
