@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    color: #3c4043;
    margin: 0;
    overflow-wrap: break-word;
    padding: 0;
    background-color: #f9f9f9;
}

#sidebarCollapse {
    cursor: pointer;
    padding: 6px;
}

.be-content {
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .be-content {
        margin-left: 250px;
    }
}

.icon-container {
    background: none;
    padding: 2px;
    display: inline;
    cursor: pointer;
}
.home-icon-container {
    width: 40px;
    height: 40px;
    display: block;
    font-size: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 325px;
    -moz-animation: cssAnimation 0s ease-in 5s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation 0s ease-in 5s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation 0s ease-in 5s forwards;
    /* Opera */
    animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@keyframes cssAnimation {
    0% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes cssAnimation {
    0% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/* NEW CSS */

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}
.navbar h2 {
    font-size: 1.4rem !important;
}


.navbar .user-icon {
    width: 20px;
}

.navbar li {
    padding: 4px 20px;
    display: block;
    width: 100%;
    font-size: 14px;
}

.navbar .dropdown-menu {
    min-width: 200px;
    width: max-content;
}

.divider {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    color: #124bcc;
    padding: 20px 10px 10px 18px;
}

.card-header.page-header {
    background-color: #fff;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 5px 0px;
    margin-bottom: 12px;
}

.form-control {
    font-size: .8rem;
}

.btn {
    font-size: .8rem;
}

.icon {
    display: inline-block;
    margin: 0px 4px;
}

.mdi {
    font-size: 1rem;
}

.filter-data-list .filter-data.active {
    background-color: #007bff30;
}

.filter-data .mdi {
    display: none;
}

.filter-data.active .mdi {
    display: inline;
}

.custom-border-radius{

    border-radius: 12px;
}
.transform-rotate-45deg{
    transform: rotate(45deg);
}
.transform-rotate-135deg {
    transform: rotate(135deg);
}
.bg-success-subtle {
    background-color: #daf4f0!important;
}
.bg-info-subtle {
    background-color: #dff0fa!important;
}
.bg-warning-subtle {
    background-color: #fef4e4!important;
}
.bg-primary-subtle {
    background-color: #e2e5ed!important;
}

/*=============== Custom PNotify css ==================*/

.ui-pnotify-title {
    font-size: 16px;
    text-transform: capitalize;
}

.brighttheme-error {
    background-color: #ff6e5f!important;
    background-image: none !important;
}

.outline-none:focus,
.outline-none:active {
    outline: none !important;
    box-shadow: none;
}

/* START LOADER CSS */

.loading {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #0d6efd;
    width: 90px;
    height: 90px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader.is-active {
    display: block !important;
}
.loader-background {
    height: 120vh;
    background-color: rgb(0 0 0 / 0.25);
    position: fixed;
    z-index: 1186;
    /* width: calc(100%); */
    top: -50px;
    left: -50%;
    right: -50%;
    display: flex;
    justify-content: center;
    /* overflow: hidden; */
    scroll-behavior: unset;
    overflow: hidden;
}

.loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px 11px #bbb;
}
.loader-text {
    margin-top: 12px;
}
/* END LOADER CSS */


@media only screen and (max-width: 800px) {

    /* Force table to not be like tables anymore */
    .responsive-no-table {
        border: 0px;
    }

    .responsive-no-table table,
    .responsive-no-table thead,
    .responsive-no-table tbody,
    .responsive-no-table th,
    .responsive-no-table td,
    .responsive-no-table tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .responsive-no-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .responsive-no-table tr {
        border: 1px solid #ccc;
        margin: 12px 0px;
        border-radius: 12px;
        padding: 8px;
    }

    .responsive-no-table td {
        /* Behave  like a "row" */
        border: none;
        padding: 0.2rem;
        position: relative;
        left: 10px;
        white-space: normal;
        text-align: left;
    }

    .responsive-no-table td:before {
        /* Now like a table header */
        position: relative;
        /* Top/left values mimic padding */
        left: -10px;
        /* left: 6px; */
        /* width: 45%; */
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    /*
Label the data
*/
    .responsive-no-table td:before {
        content: attr(data-title);
    }
}

/* Changes Order Status CSS */

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #474e5d;
    top: 0;
    bottom: 0;
    left: 31px;
    margin-left: -3px;
}

/* Container around content */
.timeline .container {
    position: relative;
    background-color: inherit;
    width: 100%;
    padding-left: 55px;
    padding-right: 25px;
}

/* The circles on the timeline */
.timeline .container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: #474e5d;
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* Place the container to the left */
.timeline .left {
    left: 0;
}

/* Place the container to the right */
.timeline .right {
    left: 50%;
}

/* Add arrows to the left container (pointing right) */
.timeline .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #474e5d;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #474e5d;
}

/* Add arrows to the right container (pointing left) */
.timeline .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #474e5d;
    border-width: 10px 10px 10px 0;
    border-color: transparent #474e5d transparent transparent;
}

/* Fix the circle for containers on the right side */
.timeline .right::after {
    left: -16px;
}

/* The actual content */
.timeline .content {
    padding: 10px;
    border: 2px solid #474e5d;
    position: relative;
    border-radius: 6px;
    margin-bottom: 8px;
}

/* Make sure that all arrows are pointing leftwards */
.timeline .container::before {
    left: 45px;
    border: medium solid #474e5d;
    border-width: 10px 10px 10px 0;
    border-color: transparent #474e5d transparent transparent;
}

.timeline .left::after,
.timeline .right::after {
    left: 15px;
}

/* Make all right containers behave like the left ones */
.timeline .right {
    left: 0%;
}

/* Changes Order Status CSS */


.ui-pnotify.stack-modal .brighttheme-notice {
    background-color: #fff !important;
    border: 0 solid #fff !important;
    color: #4f4f00 !important;
}

.ui-pnotify.stack-modal {
    position: fixed !important;
    left: 50% !important;
    width: 35% !important;
    transform: translate(-50%, 0%) !important;
    margin-left: auto !important;
}


.ui-pnotify.stack-modal  .brighttheme-icon-notice {
    background-color: #dc3545 !important;
    color: #fff !important;
}


.user-name {
    font-size: 18px;
    font-weight: 500;
    margin: 0px;
    margin-top: 0px;
}

.progress-widget {
    padding: 15px !important;
    cursor: default !important;
}

.user-details {
    margin-bottom: 6px;
    border: 2px solid #4285f4;
    padding: 0px;
    border-radius: 8px;
}

.user-detail-title {
    color: #4285f4;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11px;

}

.user-details .user-email {
    font-size: .8rem;
}
.card.category-card {
    padding: 0px;
    cursor: pointer;
    color: #fff;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container*/ 
    background-color: #004867;
}
.card.category-card.active {
    background-color: #0d6efd;
    background-image: none !important;
}
.card.category-card.active::after {
    border: 1px solid;
    background-color: #07bd69;
    width: 20px;
    height: 20px;
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: -10px;
}
.cropper-container.cropper-bg {
    width: 100% !important;
}

.img-preview {
    border-radius: 12px;
    border: 5px solid #007bff;
}
.img-preview-wrap {
    position: relative;
}
.img-preview-wrap .close {
    position: absolute;
    right: 14px;
    background: #fff;
    opacity: 1;
    padding: 2px 6px;
    border-radius: 50%;
    color: #ff0000;
}