﻿.hidden {
    display: none !important;
}

.btn-primary {
    background-color: #1eb1e3 !important;
    border-color: #306fef !important;
}

.bg-primary {
    background-color: #1d2065 !important;
    background: linear-gradient(to right,#1eb1e3,#1eb1e3) !important;
    /*background: linear-gradient(to right,#008b8a,#008b8a) !important;*/
}

.text-primary {
    color: #1d2065 !important;
}

.app-header {
    /*background: linear-gradient(to right,#5187f6,#5187f6) !important;*/
    background: #fff;
    box-shadow: 0 0 0 1px rgba(61, 119, 180, 0.12), 0 8px 16px 0 rgba(91, 139, 199, 0.24);
    border-bottom: 0;
}

/*
.app-header {
    background: linear-gradient(to right,#f6bc51,#28a745) !important;
}*/

.card-header:before, .resp-tabs-list li.active:before {
    background: #26c2f7 !important;
}

.page-item.active .page-link {
    color: #fff;
    background-color: #1eb1e3 !important;
}

.toast-top-center {
    top: 12px;
    margin: 0 auto;
    left: 50%;
    margin-left: -150px;
}


.ui-corner-all {
    -moz-border-radius: 4px 4px 4px 4px;
}

.ui-widget-content {
    border: 1px solid #ccc;
    color: #222222;
    background-color: #fff;
}

.ui-widget {
    font-family: Verdana,Arial,sans-serif;
    font-size: 15px;
}

.ui-menu {
    display: block;
    float: left;
    list-style: none outside none;
    margin: 0;
    padding: 2px;
}

.ui-autocomplete {
    cursor: default;
    position: absolute;
    z-index: 100000000000000 !important
}

.ui-menu .ui-menu-item {
    clear: left;
    float: left;
    margin: 0;
    padding: 7px !important;
    width: 100%;
    border-bottom: 1px dashed #ccc
}

    .ui-menu .ui-menu-item a {
        display: block;
        padding: 3px 3px 3px 3px;
        text-decoration: none;
        cursor: pointer;
        background-color: Green;
    }

        .ui-menu .ui-menu-item a:hover {
            display: block;
            padding: 3px 3px 3px 3px;
            text-decoration: none;
            color: White;
            cursor: pointer;
            background-color: ButtonText;
        }

.ui-widget-content a {
    color: #222222;
}

.ui-helper-hidden-accessible {
    display: none;
}

.bootbox-confirm .modal-header {
    background: linear-gradient(to right,#fcd2c0,#303192) !important;
    padding: 10px !important;
}

.bootbox-confirm .modal-title {
    color: white !important;
    font-weight: bold;
    text-align: center;
}

.bootbox-confirm .bootbox-body {
    font-size: 16px !important;
    font-weight: bold;
}

.bootbox-close-button {
    display: none !important;
}
/*
.dataTables_filter {
    display: none !important;
}
*/

.header-fullscreen {
/*    display: none !important;*/
}

div.dataTables_wrapper div.dataTables_paginate {
    padding-top: 6px !important;
}

.select2-container {
    width: 100% !important;
}

.sweet-alert .confirm {
    background-color: #1eb1e3 !important;
}

.table-row-effect {
    cursor: pointer;
}

    .table-row-effect :hover {
        background: lightgray !important;
    }

.dataTables_scrollHeadInner {
    width: 100% !important;
}

.inner-img {
    transition: 0.3s;
}

    .inner-img:hover {
        transform: scale(1.15);
    }



.animate-me {
    animation: 3s infinite bgTwocolorchange;
}

@keyframes bgTwocolorchange {
    0% {
        color: antiquewhite;
    }
/*
    25% {
        background: #c2dcf3b0;
    }*/

    50% {
        background: antiquewhite;
    }
/*
    75% {
        background: yellow;
    }*/

    100% {
        background-color: aquamarine;
    }
}

@keyframes bgcolorchange {
    0% {
        color: antiquewhite;
    }

    25% {
        background: #c2dcf3b0;
    }

    50% {
        background: yellow;
    }

    75% {
        background: yellow;
    }

    100% {
        background-color: aquamarine;
    }
}

@-webkit-keyframes bgcolorchange {
    0% {
        background: antiquewhite;
    }

    25% {
        background: yellow;
    }

    75% {
        background: antiquewhite;
    }

    100% {
        background: yellow;
    }
}

@media (min-width: 768px) {
    .app-content {
        margin-left: 0px !important;
    }
}


.marqueproductname {
    width: 90%; /* Adjust as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% {
        text-indent: 50%;
    }

    100% {
        text-indent: -100%;
    }
}




/* Tooltip container */
.customtip {
    position: relative;
    cursor: pointer;
}

    /* Tooltip text (hidden by default) */
    .customtip::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 125%; /* Position the tooltip above the text */
        left: 50%;
        transform: translateX(-50%);
        background-color: #333; /* Tooltip background */
        color: #fff; /* Tooltip text color */
        padding: 5px 10px;
        border-radius: 4px;
        white-space: nowrap;
        font-size: 12px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease-in-out;
        z-index: 1000;
    }

    /* Show the tooltip on hover */
    .customtip:hover::after {
        opacity: 1;
        visibility: visible;
    }

    /* Add an arrow below the tooltip */
    .customtip::before {
        content: '';
        position: absolute;
        bottom: 115%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent #333 transparent;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease-in-out;
        z-index: 1000;
    }

    .customtip:hover::before {
        opacity: 1;
        visibility: visible;
    }

/*CSS for Dashboard List View*/

.list-view {
    margin: 0 auto;
    max-width: 100%;
}

.list-item {
    display: flex;
    align-items: center;
    padding: 5px;
    border: 2px solid #17a2b8;
    border-radius: 10px;
    box-shadow: 0px 2px 2px 0px #17a2b8;
}

    .list-item img {
        width: 100px;
        height: 100px;
        border-radius: 8px;
    }

    .list-item label {
        font-size: 18px;
        font-weight: bold;
        color: #17a2b8;
    }

    .list-item p {
        margin: 5px 0 0;
        font-size: 14px;
        color: #666;
    }

    .list-item a {
        color: #17a2b8;
        font-size: 14px;
        text-decoration: none;
    }

/*End*/