@media(max-width:700px){
    .logo-img{
        width: 100px;
    }
}
input[type="radio"] {
    display: none;
}

/* Style the selected thumbnail */
input[type="radio"]:checked + label {
    background-color: #0aad0a !important;
    border-color: #0aad0a !important;
    color: #fff;
}

/* Apply the background image to .productModal .zoom based on the checked radio input */
input[type="radio"]:checked + .zoom img {
    display: block; /* Display the image */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Hide other images */
input[type="radio"] + .zoom img {
    display: none;
}



#alert-container {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    z-index: 1000;
    text-align: center;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Optional: Add animation for the popup */
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.alert {
    animation: fadeInOut 2s ease;
}

.toggle-bar svg{
    color: rgb(17, 17, 17) !important;
}

@media (min-width:701px){

    .row .rm-padd{
        padding: 0px !important;
    }
    .rm-mob{
        display: inherit;
    }
    .rm-web{
        display: none;
    }

}


@media (max-width:700px){
    #alert-container {

        width: 90%;

    }
    .row .rm-padd{
        padding: 0px !important;
    }
    .rm-mob{
        display: none;
    }
    .rm-web{
        display: inherit;
    }
    .d-mob-flex{
        display: flex;
    }
    .footer{
        padding-bottom: 80px;
    }

}

@media (min-width:700px){
    .dataTables_wrapper.no-footer{
        padding: 1.5rem !important;
    }
}


.dataTables_wrapper.no-footer th{
 border-bottom: 0px;
}

.dataTables_wrapper.no-footer input[type="search"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #dfe2e1;
    border-radius: 0.5rem;
    color: #21313c;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.6;
    padding: 0.55rem 1rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.dataTables_wrapper.no-footer select[name="myTable_length"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #dfe2e1;
    border-radius: 0.5rem;
    color: #21313c;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.6;
    padding: 0.55rem 1rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#myTable{
    padding-top: 20px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    border: 0 !important;
    color: white !important;
    z-index: 3 !important;
    background: #e41b10 !important ;
    border-radius: 0.5rem !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: 0 !important;
    color: white !important;
    z-index: 3 !important;
    background: #e41b10 !important ;
    border-radius: 0.5rem !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    cursor: default;
    color: #666 !important;
    border: 1px solid transparent;
    box-shadow: none;
    background: #ecf0ef;
    border-radius: 0.5rem !important;

}
.dataTables_wrapper .dataTables_paginate .paginate_button{
    border: 1px solid #dfe2e1;
    border-radius: 0.5rem !important;
    margin-left: 0;
    margin-right: 0.25rem;
}

.navbar-vertical-nav .navbar-vertical .navbar-nav .nav-item .nav-link.active {
    background-color: #ffebe2;
    color: rgb(28, 28, 28);
}



.back-icon{
    font-size: 13px;
    padding: 10px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 10px;
}

.back-btm-main {
    position: relative; /* Add this line if not already present */
}

.back-btm-main .back-icon {
    font-size: 25px;
    position: absolute;
    top: 43px;
    left: 10px;
}

@media (max-width: 768px) {
    .back-btm-main {
        position: relative; /* Add this line if not already present */
    }
    
    .back-btm-main .back-icon {
        position: absolute;
        top: 22px;
        left: 10px;
    }
}