/*
Font Styling and Icon styling
--------------------------------------------------
*/
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');*/
:root {
    --bs-gutter-x: 15px;
    --font: 'Montserrat', sans-serif;
    --font-color: #252525;
    --root-font-size: 16px;
    --success: #74c686;
    --danger: #dc3545;
    --danger-btn: #EB3331;
    --active-input: #A6CBF3;
    --active-border: #A6CBF3 1px solid;
    --readonly-background: #F7F9FC !important;
    --readonly-color: #808D95 !important;
    --readonly-border: 1px solid #CED4DA;
    --success-border: #28A745 1px solid;
    --error-danger-border: #DC3545 1px solid;
    --primary: #007BFF;
    --btn-light: #F8F9FA;
    --btn-light-blue: #E0EFFF;
    --dark: #343A40;
    --light-hover-e2e6ea: #E2E6EA;
    --box-shadow-standard: #D1D5DF80 0px 10px 30px;
    --headline-1-font-weight: Bold;
    --headline-1-font-size: 35px;
    --headline-1-line-height: 1.19px;
    --headline-1-color: black;
    --headline-2-font-weight: Bold;
    --headline-2-font-size: 26px;
    --headline-2-line-height: 1.2px;
    --headline-2-color: #353c8B;
    --headline-3-font-weight: Bold;
    --headline-3-font-size: 22px;
    --headline-3-line-height: 1.3px;
    --headline-3-color: black;
    --headline-4-font-weight: Bold;
    --headline-4-font-size: 18px;
    --headline-4-line-height: 1.5px;
    --headline-4-color: #8286ed;
    --headline-5-font-weight: Bold;
    --headline-5-font-size: 18px;
    --headline-5-line-height: 1.5px;
    --headline-5-color: #6c7485;
    --headline-6-font-weight: Bold;
    --headline-6-font-size: 16px;
    --headline-6-line-height: 1.2px;
    --headline-6-color: #353c8b;
    --admin-role: #353c8b;
    --org-role: #8286ed;
    --org-role-disabled-outline: #8286edcc;
    --supplier-role: #e86c56;
    --supplier-role-disabled-outline: #e86c56cc;
    --seller-role: #d5f8ef;
    --sell-role-fontcolor: #119771;
    --sell-role-dsiabled-fontcolor: #14B789;
    --sell-role-disabled-outline: #14b789b3;
    --customer-role-fontcolor: #437ca8;
    --customer-role-background: #85defd;
    --customer-role-disabled-outline: #85defd;
    --customer-role-disabled-fontcolor: #437ca8;
    --checkcircle-color: #96a1b8;
    --elispses-color: #6c7485;
    --searchbar-border: #DADEF0;
    --searchbar-placeholder: #6c7485;
    --spyglass_icon: #96a1b8;
    --navbar-active-bullet: #f3b784;
    --org-notif-bnr-txt: #E86C56;
    --org-bnr-wrapper-bak: #FEF4ED;

}

body {
    /*background-color: #F2F8FF !important;*/
    font-family: var(--font);
    overflow-x: clip;
    min-width: 320px;
    font-size: 14px;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

html {
    height: -webkit-fill-available;
    min-width: 320px;
    max-width: 100vw;
    overflow-x: hidden;
}

main {
    background-color: #fff;
}

main {
    display: flex;
    flex-wrap: nowrap;
    /*2023.03.16 - So far the below isn't causing issues but I am marking it just in case the layout looks wonky.*/

    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

h1 {
    font-weight: var(--headline-1-font-weight);
    font-size: var(--headline-1-font-size);
    /*line-height: var(--headline-1-line-height);*/
    color: var(--headline-1-color);
}

h2 {
    font-weight: var(--headline-2-font-weight);
    font-size: var(--headline-2-font-size);
    /*line-height: var(--headline-2-line-height);*/
    color: var(--headline-2-color);
}

h3 {
    font-weight: var(--headline-3-font-weight);
    font-size: var(--headline-3-font-size);
    /*line-height: var(--headline-3-line-height);*/
    color: var(--headline-3-color);
}

h4 {
    font-weight: var(--headline-4-font-weight);
    font-size: var(--headline-4-font-size);
    /*line-height: var(--headline-4-line-height);*/
    color: var(--headline-4-color);
}

h5 {
    font-weight: var(--headline-5-font-weight);
    font-size: var(--headline-5-font-size);
    /*line-height: var(--headline-5-line-height);*/
    color: var(--headline-5-color);
}

h6 {
    font-weight: var(--headline-6-font-weight);
    font-size: var(--headline-6-font-size);
    /*line-height: var(--headline-6-line-height);*/
    color: var(--headline-6-color);
}

table {
    max-width: 100% !important;
}


    table tr td {
        padding: .25em !important;
    }

.site-logo {
    width: 280px;
    margin-top: 1em;
    margin-left: 1em;
}

.ml-auto {
    margin-left: auto !important;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}


.identity-right-side section {
    height: 100%;
    position: relative;
}

.login-right {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}


.identity-overlay {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.identity-background {
    display: block;
    margin-top: auto;
    width: 100%;
}


/*******Error Message*********/
input.error {
    border: var(--error-danger-border) !important;
}

span.error {
    border: var(--error-danger-border) !important;
}

textarea.error {
    border: var(--error-danger-border) !important;
}

select.error {
    border: var(--error-danger-border) !important;
}

.ErrorMessageBox.ui {
    border: 1px solid red;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: .30em;
    background: #FFF;
    color: #AC3232;
    font-weight: normal;
    font-size: 1rem;
    text-align: center;
}

.NotificationMessageBox.ui {
    border: 1px solid #119771;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: .3em;
    background: #D5f8ef;
    color: #119771;
    font-weight: normal;
    font-size: 1rem;
    text-align: center;
    /*height: 2em;*/
}

.alert-danger {
    color: #E0262C !important;
    background-color: transparent !important;
    border-color: transparent !important;
}

.text-danger {
    color: #E0262C !important;
}

.form-check-input {
    font-size: 1.35em;
}

.form-check-input:checked {
    background-color: #353c8b;
    border-color: #353c8b;
    font-size: 1.35em;
}

.rmv-link {
    color: #8286ed;
    padding-right: 10px;
}

.rmv-link:hover {
    color:#353c8B;
}

.pickup-info-header {
text-align:center;
font-size:1em;
}

.pickup-info-text {
    text-align: center;
    font-size: 1em;
}

.btn.btn-lg {
    background-color: #353c8b;
    font-weight: bold;
    width: 195px;
    border-radius: 36px;
    border: none;
    font-size: 14px;
    color: white;
    padding: 1em; /*20221018*/
    min-height: 50px;
}

.btn.btn-next {
    background-color: #353c8b;
    font-weight: bold;
    width: 146px;
    border-radius: 36px;
    border: none;
    font-size: 14px;
    color: white;
    padding: 1em; /*20221018*/
    min-height: 50px;
}

.btn.btn-default {
    background-color: #353c8b;
    font-weight: bold;
    border: 2px solid transparent;
    /* width: 195px; */
    border-radius: 36px;
    font-size: 14px;
    color: white;
    padding: 1em 2em;
}


    .btn.btn-default:hover {
        background: transparent;
        color: #353c8b;
        border: 2px solid #353c8b;
    }

.btn:hover {
    border-width: 2px;
}

.btn.btn-copy {
    background-color: #353c8b;
    font-weight: bold;
    /* width: 195px; */
    border-radius: 6px;
    border: none;
    font-size: 14px;
    color: white;
    padding: 1em 2em;
    margin-left: 1em;
    width: 12em;
}

.btn.btn-copy-link {
    background-color: #353c8b;
    font-weight: bold;
    /* width: 195px
px
; */
    border-radius: 6px;
    border: none;
    font-size: 22px;
    color: white;
    padding: 1em 1em;
    margin-left: 1em;
    text-align: center;
    justify-content: center;
    align-items: center;
}

    .btn.btn-copy-link i {
        margin: 0;
    }

.btn.header-buttons {
    background-color: #353c8b;
    border-radius: 36px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-left: -2em;
    width: 210px;
    height: 52px;
}

.share-panel {
    background: #353c8b;
    padding: 1em;
    border-radius: 16px;
    margin-bottom: 1em;
    /* font-weight: 600; */
    color: #fff;
    text-align: center;
}

    .share-panel:hover {
        background: #d3d5e9;
    }

.share-nodes {
    font-size: 3em;
    text-align: center;
    background: #8286ed;
    padding: 1em;
    border-radius: 50%;
    margin: 0em auto 10px;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .7s ease;
}

.share-nodes-mobile {
    font-size: 2em;
    text-align: center;
    background: #8286ed;
    padding: 1em;
    border-radius: 50%;
    /* margin: 0em auto 10px; */
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .7s ease;
}

.share-nodes:hover {
    background-color: #8d90d1;
}

.fund-share-banner {
    display: none;
}

.add-sale-block {
    border-top: 3px solid #f2f3fd;
    border-bottom: 3px solid #f2f3fd;
    text-align: center;
}

span.share-link-i {
    width: 100px;
    text-align: center;
    display: block;
    border-radius: 50%;
    background: transparent;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    transition: .7s ease;
}

.share-link-i.share-fb {
    background: #4267B2;
    color: #fff;
}

.share-link-i.share-tw {
    background: #1DA1F2;
    color: #fff;
}

.share-link-i.share-em {
    background: #535366;
    color: #fff;
}

.share-link-i.share-qr {
    background: #000;
    color: #fff;
}

.share-link-i.share-fl {
    background: #7a81e6;
    color: #fff;
}

    .share-link-i.share-fl img {
        width: 60px;
    }




span.share-link-i:hover {
    background: #353c8b;
    cursor: pointer;
}

.share-row a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
}

.share-row .share-title {
    font-weight: 600;
    color: #535366;
    text-align: center;
    margin: 1em auto 2em;
    display: block;
}

.share-icons-i {
    font-size: 2em;
    list-style-type: none;
}

    .share-icons-i li {
        margin-right: 1em;
    }


    .share-icons-i i {
        padding: 1em;
    }

.add-sale {
    width: 150px !important;
}

.btn svg, .btn i {
    margin-right: 0.5em;
}


.mission-control {
    margin-top: 4em;
}

    .mission-control a {
        color: #353c8b;
    }

#catalogShipNotice {
    text-align: center;
    font-weight: 600;
    background: #8286ed;
    color: #fff;
    font-size: 1.2em;
    line-height: 2.5em;
}


.dropdown-menu.end-column.table li {
    display: flex;
}

    .dropdown-menu.end-column.table li a {
        width: 100%;
    }
/****Dashboard header***/
.inner-container {
    margin: 0 1.5em;
}

    .inner-container .dashboard-container {
        padding: 0; /*20221018*/
    }


    .inner-container .card-grid-page-container {
        margin: 0; /*20221018*/
    }

.rr-container {
    padding: 1em;
}

.inner-container .rr-container {
    padding: 0; /*20221018*/
}

.bell-notif-button .fa-2x {
    background-color: #fef4ed;
    border-radius: 17px;
    height: 52px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bell-notif-button .fa-bell {
    color: #353c8b;
    font-size: 26px;
    padding: inherit;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 6px;
    margin-bottom: 11px;
}

.supplier-store {
    background-color: #F2F3FD;
    border-radius: 17px;
    width: 52px;
    height: 52px;
    background-color: #F2F3FD;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.topproduct-fundraiser-block {
    background-color: #f2f3fd !important;
    display: flex;
    flex-direction: column;
}

.nav-item a {
    text-decoration: none;
}

.dashboard-header {
    margin-top: 2em;
    align-items: center;
}

.dashboard-column-headers {
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0em;
}

.dashboard-container {
    margin-top: 3em;
    /*margin-left: 1.5em; Adding padding should take care of this.*/
    padding: 1em;
}

.dashViewAllLink {
    float: right;
    text-align: right;
    display: table;
    font-size: 25px;
    text-decoration: underline;
    font: normal normal normal 14px/30px Montserrat;
    letter-spacing: 0px;
    color: #353C8B;
    width: 58px;
    font-size: 14px;
}

    .dashViewAllLink a {
        font-size: 12px;
        color: #353c8b;
    }

/*.dashboard-container .row {
    margin-left: 0px !important;
    --bs-gutter-x: 0;
} */

.dashboard-container .row .col-4 {
    padding-left: 0px;
    padding-right: 0px;
}

.dashboard-container .column-content ul {
    list-style: none;
    padding-left: 0;
}

    .dashboard-container .column-content ul li {
        padding: 10px;
    }

.tooltip {
    --bs-tooltip-bg: #8286ed;
}

.rr-tooltip-inner {
    background-color: #8286ed !important;
    box-shadow: 0px 0px 4px #8286ed;
    border-color: #8286ed;
    opacity: 1 !important;
}

.rr-tooltip.bs-tooltip-right .arrow::before {
    border-right-color: #8286ed !important;
}

.rr-tooltip.bs-tooltip-left .arrow::before {
    border-left-color: #8286ed !important;
    border-color: #8286ed !important;
}

.rr-tooltip.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #8286ed !important;
}

.rr-tooltip.bs-tooltip-top .arrow::before {
    border-top-color: #8286ed !important;
}

.rr-tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #8286ed !important;
}

.rr-tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #8286ed !important;
}

.rr-tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #8286ed !important;
}

.rr-tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #8286ed !important;
}



:root {
    --tooltip-color: #8286ed;
}

.tooltip > .tooltip-inner {
    background-color: #8286ed !important;
}

.tooltip.bs-tooltip-bottom > .tooltip-arrow::before, .color-tooltip.bs-tooltip-auto[data-popper-placement^=bottom] > .tooltip-arrow::before {
    border-bottom-color: #8286ed !important;
}

.tooltip.bs-tooltip-top > .tooltip-arrow::before, .color-tooltip.bs-tooltip-auto[data-popper-placement^=top] > .tooltip-arrow::before {
    border-top-color: #8286ed !important;
}

.tooltip.bs-tooltip-start > .tooltip-arrow::before, .color-tooltip.bs-tooltip-auto[data-popper-placement^=left] > .tooltip-arrow::before {
    border-left-color: #8286ed !important;
}

.tooltip.bs-tooltip-end > .tooltip-arrow::before, .color-tooltip.bs-tooltip-auto[data-popper-placement^=right] > .tooltip-arrow::before {
    border-right-color: #8286ed !important;
}



.icon-edit-goal select {
    text-align: right;
}

.goals .form-select.goal-list {
    background-position: right 0em center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    max-width: 220px;
    word-break: break-all;
}

.icon-edit-goal select {
    max-width: 265px;
}

.goals .progress-goal {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
}

#registerForm .form-check {
    font-size: 2em;
    display: flex;
    align-items: center;
    margin-top: 0.5em;
}

    #registerForm .form-check label {
        font-size: 0.5em;
    }

#registerForm .form-check-input {
    margin-top: 0;
    margin-right: 0.5em;
}

    #registerForm .form-check-input:checked {
        background-color: #353c8b;
        border-color: #353c8b;
font-size:1em!important;
    }

.column-header {
    margin: 1em;
}

.column-content {
    margin: 15px;
}


.product-preview-card-container .sort-bar {
    width: 100%;
}



.sort-bar {
    display: flex;
}


    .sort-bar .supplier-sort {
        padding-left: 0px;
    }

.search-sort-bar {
    margin: 2em 0;
    border-bottom: 1px solid #e3e6f3;
    padding: 1em 0;
}

.product-preview-card-container .search-sort-bar {
    margin: 0;
    border-bottom: 0;
}

.search-bar .input-group .btn {
    background: transparent !important;
}

.noresult {
    background-color: #353c8b;
    border-radius: 19px;
    opacity: 1;
    padding: 2em;
    /*width:300px;*/
}

.noresult_header {
    font-weight: bold;
    font-size: 22px;
    color: #ffffff;
}

.noresult_body {
    margin-top: 20px;
    text-align: left;
    font-size: 14px;
    color: #ffffff;
    font-weight: normal;
}

.noresult_viewall_link {
    margin-top: 27px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    text-decoration: underline;
    color: #f3b784 !important;
}

.noresult_link {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    text-decoration: underline;
    color: #f3b784 !important;
}

.recentadd-links {
    text-decoration: none !important;
}

.btn-login {
    width: 100%;
    background: #353c8b;
    font-weight: 600;
    color: #fff;
    margin-top: 1em;
}



/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
#side-bar {
    width: 369px;
    color: #FFF;
    min-height: 100vh;
    max-height: 100vh;
    justify-content: space-between;
    position: fixed;
    background: #fff;
}

.main-menu {
    height: 100%;
    background: #182E38 !important;
}

/*.custom-padding {
    padding: 0;
    width: 80%;
    margin-left: 369px;
} */

.custom-padding {
    padding: 0;
    width: calc(100% - 360px);
    margin-left: 359px;
}

.navbar-light {
    padding: 16px 30px;
}

    .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
        color: #000000;
    }

.navbar-toggler {
    border: none !important;
}

.nav-item {
    position: relative;
    cursor: pointer;
}

    .nav-item:hover {
        cursor: pointer;
    }

    .nav-item .welcome-name {
        margin-left: -10px;
    }

span.brand-title-grey {
    color: #B0B6BA;
}

.navbar-light ul.navbar-nav li .text-dark {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #6C757D;
}

/* QUICK FIX FOR BUTTONS */
button:focus:not(:focus-visible) {
    outline: none;
}

.full-screen-top-nav i.fa-bell {
    position: relative;
    font-size: 25px;
    color: #7A7E83;
    margin-right: 28px;
}

.bell-notif-count-red {
    font-size: 8px;
    background: #DC3545 0% 0% no-repeat padding-box;
    border-radius: 20px;
    color: #fff;
    padding: 4px 5px;
    line-height: 8px;
    font-family: 'Inter';
    position: absolute;
    z-index: 2;
    left: 20px;
}

.icon-user-initials {
    background-color: #e86c56;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 17px;
    position: relative;
}

.sidebar-user-initials div {
    background-color: #353c8b;
    border-radius: 15px;
    border: solid 1px #dadef0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
    width: 3em;
    color: white;
    font-size: 14px;
    font-weight: lighter;
}

.header-notification-dropdown {
    position: relative;
}


/*.dropdown-menu {

    left: -15em !important;
}*/
.dropdown-menu.table {
    /*left: 0px !important;*/
}

.dropdown-menu.block-grid-ellipsis {
    /*z-index: 9999;
    overflow: visible;*/
    /* position: absolute; */
    /* inset: 0px auto auto 0px; */
    /* margin: 0px; */
    /* transform: translate(-160px, 40px); */
    /*position: fixed !important;
    inset: unset !important;
    margin: 0 !important;
    transform: translate(-90px, 5px) !important;*/
}

.dropdown-toggle::after {
    display: none;
}

.right-notif-flyout {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    width: 400px;
    background: #FFF;
    height: 100%;
    padding-left: 30px;
    /*border: 1px solid #E2E6EA;
    border-radius: 15px;*/
}


.dropdown-menu.notifications {
    background: #f2f3fd;
    color: #f2f3fd;
    border-color: #f2f3fd;
    box-shadow: 0 0 4px #b4bbc8;
}

    .dropdown-menu.notifications li {
        background: #fff;
        color: #000;
    }

        .dropdown-menu.notifications li:first-of-type {
            background: transparent;
            color: #353c8b;
        }


.bell-notif:hover .fa-bell {
    animation: bellshake .5s cubic-bezier(.36,.07,.19,.97) both;
    backface-visibility: hidden;
    transform-origin: top right;
}

@keyframes bellshake {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(5deg);
    }

    30% {
        transform: rotate(-5deg);
    }

    45% {
        transform: rotate(4deg);
    }

    60% {
        transform: rotate(-4deg);
    }

    75% {
        transform: rotate(2deg);
    }

    85% {
        transform: rotate(-2deg);
    }

    92% {
        transform: rotate(1deg);
    }

    100% {
        transform: rotate(0);
    }
}

/************USER MANAGEMENT TABLE**************/
.user-role {
    font-size: 11px;
    text-align: left;
}

    .user-role p {
        border-radius: 3px;
        margin-top: auto;
        margin-bottom: auto;
        display: inline-block;
        padding: 5px;
    }

    .user-role .admin-active {
        background-color: var(--admin-role);
        color: white;
    }

    .user-role .admin-inactive {
        background-color: var(--admin-role);
        color: white;
    }

    .user-role .supplier-active {
        background-color: var(--supplier-role);
        color: white;
    }

    .user-role .supplier-inactive {
        background-color: #ffffff;
        border: 1px var(--supplier-role-disabled-outline) solid;
        color: var(--supplier-role-disabled-outline);
    }

    .user-role .organization-active {
        background-color: var(--org-role);
        color: white;
    }

    .user-role .organization-inactive {
        background-color: #ffffff;
        border: 1px var(--org-role-disabled-outline) solid;
        color: var(--org-role-disabled-outline);
    }

    .user-role .seller-active {
        background-color: var(--seller-role);
        color: white;
    }

    .user-role .seller-inactive {
        background-color: #ffffff;
        border: 1px var(--sell-role-disabled-outline) solid;
        color: var(--sell-role-disabled-outline);
    }

    .user-role .customer-active {
        background-color: var(--customer-role-background);
        color: var(--customer-role-fontcolor);
    }

    .user-role .customer-inactive {
        background-color: #ffffff;
        border: 1px var(--customer-role-disabled-outline) solid;
        color: var(--customer-role-disabled-outline);
    }

.usertable tbody tr td.active {
    color: #0c1b33;
}

.usertable tbody tr td.inactive {
    color: #9ea4ad;
}


.usertable tbody tr:hover {
    background-color: #f2f3fd !important;
}

.usertable tbody tr, .usertable tbody tr.odd, .usertable tbody tr.even, .usertable tbody tr td {
    /*background-color: white;*/
    box-shadow: none !important;
}

.usertable tbody tr.highlighted-row {
    background-color: #8286ed !important;
    box-shadow: none;
}



.usertable tbody tr, .usertable tbody tr.odd, .usertable tbody tr.even, .usertable tbody tr td {
    /*background-color: white;*/
    box-shadow: none !important;
}

.usertable tbody tr.highlighted-row {
    background-color: #8286ed !important;
    box-shadow: none;
}
.usertable tr .sorting_1 {
    background-color: white !important;
}

.usertable tr td.sorting_1 {
    background-color: white !important;
}

.usertable tr.odd > .sorting_1 {
    background-color: white !important;
}

td i.status {
    margin-left: auto;
    margin-right: auto;
}

.add-form label.control-label {
    font-size: 13px !important;
    font-weight: bold;
    color: #42444c;
    margin-top: 31px;
}

.add-forms {
    font-size: 20px;
    font-weight: bold;
    color: #0c1b33;
}

.form-control {
    border: 1px solid #dadef0;
    border-radius: 5px;
    opacity: 1 !important;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

    .form-control:active {
        border: 1px solid #7a7cbb;
        border-radius: 5px;
    }

    .form-control:focus {
        border: 1px solid #7a7cbb;
        border-radius: 5px;
    }


#table_id th {
    border-bottom: 0px !important;
}
/************ INPUTS - RADIO *************/
.form-check-input:checked[type=radio] {
    background-color: #8286ed;
    border-color: #8286ed;
}

/************* CARD GRID CSS ***************/
.block-grid-button {
    /*background-color: #fff;*/
    color: #6c7485;
    border: none;
    margin-right: 1em;
}

    .block-grid-button:focus {
        /*background-color: #fff;*/
        color: #6c7485;
        border: none;
        margin-right: 1em;
        box-shadow: none;
    }

    .block-grid-button:hover {
        /*background-color: #fff;*/
        color: #6c7485;
        border: none;
        margin-right: 1em;
    }

.block-grid-ellipsis .dropdown-item {
    text-align: center;
}

    .block-grid-ellipsis .dropdown-item.disable_enable {
        border-bottom: 1px solid #DADEF0;
    }

.navbar-toggler:focus {
    box-shadow: none;
}

.col-content-listitem a {
    color: #353c8b;
    text-decoration-color: #353c8b;
    font-weight: bold;
    text-decoration-line: underline;
}

.card .dropdown {
    text-align: right;
}

.card-info {
    position: relative;
    color: #222;
    padding: 1em 1em 1em 1.5em;
    margin-top: 1.5em !important;
}

.block-grid-button, .block-grid-button:hover {
    margin-top: 0.25em;
    margin-right: 1.5em;
}


.report-card {
    background: #fef4ed;
    padding: 1em;
    border: 0;
    height: 100%;
}

.btn-download-report {
    background-color: #353c8b;
    border-radius: 36px;
    color: #fff !important;
    font-size: 14px;
    /* margin-top: -2em; */
    font-weight: bold;
    display: block;
    width: fit-content;
    padding: 1em;
    text-decoration: none;
}

    .btn-download-report:hover {
        border-color: var(--bs-btn-hover-border-color);
    }


.dropdown-menu a {
    color: #353c8b;
}


    .dropdown-menu a:hover {
        color: #8e91ee;
    }

    .dropdown-menu a:active {
        background: #8286ed;
        color: #fff;
    }

.dropdown-menu .btn {
    color: #fff;
}

.modal .number-code {
    background: #eeefff;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 10px;
}

.modal .code-input {
    width: 2em;
    text-align: center;
    padding: 3px;
    font-weight: 600;
}

.modal-name {
    font-size: 1.5em;
}

.modal-cost {
    font-weight: 600;
}

    .modal-cost:before {
        content: "$";
    }

.modal-badges span {
    display: table;
    border: 1px solid;
    border-radius: 3px;
    padding: 3px 5px;
    text-transform: capitalize;
}
/************* DATA TABLES ***************/

table.dataTable thead .sorting {
    background-position: center left !important;
}

.dataTables_length label {
    font-size: 18px;
    color: #0c1b33;
    margin: 1em auto;
}

    .dataTables_length label select {
        border: none !important;
        color: #353c8b !important;
        font-weight: bold;
        text-decoration: underline;
    }

        .dataTables_length label select:focus {
            box-shadow: none;
        }

        .dataTables_length label select:active {
            box-shadow: none;
        }

        .dataTables_length label select::selection {
            box-shadow: none;
        }

/*    .dataTable.usertable thead tr th{
        border-bottom:3px solid #dadef0 !important;
    }
*/
table.dataTable thead th {
    border-bottom: none !important;
}

table.dataTable.no-footer {
    border-bottom: 3px solid #dadef0 !important;
    margin-bottom: 1em;
}

table.dataTable.display tbody tr td {
    border-top: none;
    border-bottom: none;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: none !important;
}

table.dataTable thead th, table.dataTable thead td {
    border-bottom: 3px solid #dadef0 !important;
}

.dataTables_scrollHeadInner table.dataTable.no-footer {
    border-bottom: 0px !important;
}

.dataTables_wrapper {
    /*margin-right: 2em;*/
}

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        color: #ffffff !important;
        /*change the hover text color*/
    }


    /*below block of css for change style when active*/

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        color: #ffffff !important;
    }
/************* DATA TABLES SEARCH BAR ***************/
.dataTables_filter {
    width: 30%;
}

    .dataTables_filter label {
        width: 100%
    }

        .dataTables_filter label input {
            width: 100%;
            font-size: 14px;
            height: 50px;
            border-color: #DADEF0 !important;
            border-radius: 9px !important;
            margin-bottom: 1em;
        }

            .dataTables_filter label input:focus-visible {
                outline: none;
            }

            .dataTables_filter label input::placeholder {
                padding-left: 20px;
            }

.dataTables_info {
    color: #6c7485;
    /*margin-top:30px;*/
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    left: -1.6em !important;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.child {
    /* border: 1px solid #000; */
    background-color: #f9faff !important;
    padding: 9px !important;
    border-radius: 0.5em;
}

table.dataTable > tbody > tr.child ul.dtr-details {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

/************* DATA TABLES PAGINATION ***************/

table.dataTable {
    width: 100% !important;
}

.dataTables_paginate.paging_simple_numbers {
    float: none !important;
    text-align: center !important;
    /*margin-right: 250px;*/
    margin-top: 30px;
    margin-bottom: 30px;
}

.dataTables_wrapper a.dataTables_paginate {
    color: #6c7485 !important;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button.previous, .dataTables_wrapper .dataTables_paginate a.paginate_button.previous:hover, .dataTables_wrapper .dataTables_paginate a.paginate_button.next, .dataTables_wrapper .dataTables_paginate a.paginate_button.next:hover {
    border: none !important;
    display: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button, .dataTables_wrapper .dataTables_paginate a.paginate_button,
.dataTables_wrapper .dataTables_paginate .paginate_button, .dataTables_wrapper .dataTables_paginate a.paginate_button:hover {
    border-radius: 8px !important;
    border: 1px solid #dadef0 !important;
    background-color: transparent !important;
    background: none !important;
    color: #6c7485 !important;
    font-size: 14px !important;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate a.paginate_button.current {
        color: #ffffff !important;
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate a.paginate_button.current:hover {
            border: 1px solid #353C8B !important;
            background-color: #353C8B !important;
            color: #ffffff !important;
        }


.nav-link.sidebar-menu.table-dropdown {
    /* padding-top: 5px; 20221018*/
    padding-left: 1em;
    /* margin-top: 0.5em; 20221018*/
}

.dropdown-menu.end-column.table.show {
    position: absolute;
    width: 60px;
    font-size: 13px;
    color: rgb(12, 27, 51);
    text-align: center;
    inset: 0px 0px auto auto;
    margin-left: .5em;
    transform: translate(-10px, 139px);
}

.dashboard-column-headers {
    min-height: 50px;
}


.fundraiser-add-button {
    margin-left: 2em;
}

.mobile-logo {
    display: none;
}


.mobile-table-controller {
    padding-bottom: 2em;
}

.modal-header h2 {
    margin: 0;
}

.fa-trophy {
    font-size: 20px !important;
}

.page-title h1 {
    margin-right: 1em !important;
    /*margin-left: .6em !important;             20221017*/
}

.btn-status-change {
    margin-left: 1em;
    font-size: 0.8em !important;
    width: 215px;
}

/*.navbar.navbar-expand-lg.navbar-toggleable-lg .container-fluid div.navbar-collapse.collapsing {
overflow:visible;
}               

.dropdown-menu.notifications.show {
    position: absolute;
    top: 4em;
    left: -6em;
}
*/

.logout {
    font-size: 14px;
    margin: 1em 0 1em 1em !important;
}



.remove-notification {
    border: 0;
    background: 0;
    color: #e86c56;
    font-weight: 600;
}

.parent-child-grid {
    margin-bottom: 2em;
}


.tag span, .goals-title {
    white-space: nowrap;
}

.prod-name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.list-group .fa-copy {
    margin: 0.5em;
}


.icon-trophy {
    align-items: center;
    display: flex;
}

    .icon-trophy i {
        font-size: 2em;
    }

.reports-list-item {
    flex-direction: column;
}

.reports-list-item {
    margin-bottom: 2em;
    border: 1px solid #DADEF0;
    padding: 2em;
    font-size: 13px;
    color: #6c7485;
    background-color: #ffffff !important;
    border-radius: 9px;
    flex-direction: column;
}

.fundraiser-details .nav-link p {
    font-weight: 700;
    color: #0C1B33 !important;
    text-align: left;
    margin-right: 2em;
    padding: 1em 1em 2em 1em !important;
}

.total-sales-block {
    background-color: #d5f8ef;
    border-radius: 19px;
    color: #353c8b;
    height: auto;
    /*padding: 1em; Trouble on supplier fundraiser page */
    margin-bottom: 1em;
}

.goals-leaderboard .total-sales-block {
    height: auto;
}


.select-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.product-select-image {
    height: 165px;
    width: 200px;
    min-width: calc(10vw)
}


.product-row-container {
    border: 1px solid #dadef0;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 1em;
}


.active-fundraisers-block {
    background: #FEF4ED 0% 0% no-repeat padding-box;
    border-radius: 19px;
    opacity: 1;
}

.product-name {
    color: #0c1b33;
    font-size: 18px;
    margin-bottom: 1em;
}

.product-info .product-details span {
    color: #353c8b;
    font-size: 16px;
    font-weight: 600;
   
}

/*.product-information {
    min-width: calc(20vw);
}*/

.product-name {
    color: #0c1b33;
    font-weight: 600;
    max-width: 290px;
   
}


.sg-price, .og-price, .profit-amount {
    text-align: center;
    font-size: 22px;
}


.product-info, .sg-price, .og-price, .profit-amount {
    padding: 0 1em;
}

    .sg-price label, .og-price label, .profit-amount label {
        color: #353c8b;
        text-align: center;
        font-weight: 600;
        font-size: 16px;
        line-height: 1.0625em;
        margin-bottom: 1em;
    }

.selling-price {
    border: 1px solid #dadef0;
    padding: 5px;
    border-radius: 3px;
    text-align: center;
    background: #f2f3fd;
    color: #353c8b;
    font-size: 22px;
    line-height: 1.2;
    width: 130px;
    font-weight: 600;
    margin-left: 10px;
}

.negativeProfit {
    font-weight: 600;
    color: #ce3535;
}


.positiveProfit {
    font-weight: 600;
    color: #119771;
}

.select-product-text {
    color: #353c8b;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3125;
}

.select-price-text {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3125;
}

.select-product .form-switch {
    padding: 0;
}

.select-product .form-check-input {
    margin: 1em auto;
    font-size: 1.55em;
    background-color: #f2f3fd;
    border-color: #8286ed;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28130, 134, 237, 1%29'/%3e%3c/svg%3e") !important;
    height: 1.25em;
    width: 2.5em;
}

    .select-product .form-check-input:checked {
        background-color: #8286ed;
        border-color: #8286ed;
        font-size: 1.55em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 1%29'/%3e%3c/svg%3e") !important;
    }

        .select-product .form-check-input:checked:after {
            content: "Added!";
            color: #119771;
            font-weight: 400;
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-top: 2em;
            line-height: 2;
            width: 100%;
            text-align: center;
        }

.modal .select-product .form-check-input {
    margin: 0em;
}


.setup-page-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .progress-milestone span {
        position: absolute;
        bottom: -1.5em;
    }


    .progress-milestone.current span {
        font-weight: 600;
    }

    .progress-milestone.complete .r-icon {
        background: #d5f8ef;
    }

    .progress-milestone .r-icon {
        padding: 1em 1.25em;
        background: #dadef0;
        border-radius: 50%;
        text-align: center;
        z-index: 9;
    }


    .progress-milestone.current .r-icon {
        background: #8286ed;
        border-radius: 20px;
    }

    .progress-milestone .r-icon img {
        width: 1.5em;
    }

    .progress-milestone.complete .r-icon {
        padding: 1em;
    }

    .progress-milestone .r-icon .fa-light {
        height: 26.5px;
        /* margin-right: -5px; */
        padding-left: 3px;
        /* margin-left: -5px; */
        vertical-align: middle;
        font-size: 1.75em;
        /* font-weight: 600; */
        display: flex;
        align-items: center;
        justify-content: center;
        color: #119771;
    }


.fundy-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-button-icons {
    text-align: center;
    margin: 4em 0;
}

.icon-bubble {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
}


    .icon-bubble:hover {
        cursor: pointer;
    }

.icon-bubble-icon {
    font-size: 4em;
    padding: 22%;
    border-radius: 50%;
    margin: 0 auto;
}

.icon-share-section {
    cursor: pointer;
}


.icon-bubble.email-icon-share .icon-bubble-icon:hover {
    background-color: #B2F5E4 !important;
}

.icon-bubble.print-icon-share .icon-bubble-icon:hover {
    background-color: #FFECBB !important;
}

.icon-bubble.copy-icon-share .icon-bubble-icon:hover {
    background-color: #E1E3FB !important;
}

.progress {
    --bs-progress-bg: #dadef0;
}

.progress-bar {
    background-color: #d5f8ef;
}

.markup-block {
    margin-bottom: 1em;
}

.active-fundraisers-block {
    color: #353c8b;
    /*   display: flex; */
}


    .active-fundraisers-block .fundyroster-code {
        font-weight: 600;
        font-size: 1.5em;
        padding: 0 1em;
    }

    .active-fundraisers-block.fundy-code {
        padding: 1em !important;
    }

.icon-bubble span {
    font-weight: 600;
    text-align: center;
}

.footer-r-logo {
    width: 40px;
    margin-bottom: 1em;
}

.footer-text-logo {
    width: 170px;
    margin-right: 1em;
}

.active-fundraisers-block .middle-text {
    font-size: 16px;
    font-weight: 600;
}

.active-fundraisers-block .tag {
    background: #353c8b;
    display: table;
    color: #fef4ed;
    border-radius: 5px;
    padding: 5px;
}

.review-titles {
    margin-top: 2em;
}

.markup-all-40 {
    font-weight: 600;
}

.request-fundraiser-form {
    padding-left: 30%;
}

.col-sm .product-card {
    margin: 1em auto;
}

/**** DATATABLES ****/
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control:before {
    background-color: #f2f3fd !important;
    color: #353c8b !important;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    background-color: #353c8b !important;
    border: 0.15em solid #353c8b !important;
}


.order-status p {
    display: table; /** Gives this a min-width "pill" appearance **/
}

.order-status .Pending {
    background-color: #8286ed;
    color: #ffffff;
    border-radius: 5px;
    font-size: 11px;
    text-align: center;
    margin-top: 1.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
}


.order-status .Shipped {
    background-color: #e86c56;
    color: #ffffff;
    border-radius: 5px;
    font-size: 11px;
    text-align: center;
    margin-top: 1.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.fundraiser-tab-details {
    border: 1px solid #8286ed;
}

.dropzone {
    min-height: 150px;
    border: 2px dashed rgba(0,0,0,.3) !important;
    background: #fff;
    border-radius: 9px;
    padding: 20px 20px;
    color: grey;
    font-weight: 500;
    font-size: 1.25em;
    margin-bottom: 2em;
}

    .dropzone .dz-preview {
        margin: 5px;
    }

        .dropzone .dz-preview .dz-progress .dz-upload {
            background: linear-gradient(to bottom, #8286ed, #353c8b) !important;
        }

.dropdown-menu.notifications.show, .dropdown-menu.dropdown-account.show {
    position: absolute;
    max-height: 200px;
}


.dropdown-menu.notifications.show {
    overflow-y: scroll;
}


div.dataTables_scrollBody::-webkit-scrollbar {
    width: 15px;
    visibility: hidden;
}

div.dataTables_scrollBody::-webkit-scrollbar-track {
    background-color: #dadef0;
    visibility: hidden;
}

div.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background-color: #353C8B;
    border: 3px solid transparent;
    border-radius: 9px;
    background-clip: content-box;
    visibility: hidden;
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-social {
    margin-left: 1em;
    margin-right: auto;
}

    .share-social button {
        padding: 0;
    }

.scroll-range::-webkit-slider-thumb {
    background: #353C8B;
}

.scroll-range::-moz-range-thumb {
    background: #353C8B;
}

.scroll-range::-ms-thumb {
    background: #353C8B;
}


.details-section {
    padding: 0 1.5em;
}

.notification-count {
    top: -0.25em;
}

.confirm-email-form .btn {
    background-color: #353c8b;
    font-weight: bold;
    width: 195px;
    border-radius: 36px;
    border: none;
    font-size: 14px;
}

.dataTables_scrollBody {
    overflow: visible;
}

.form-group {
    margin-bottom: 1em;
}

#registerForm .control-label, #registerForm .form-label, .modal .control-label {
    margin: 0.5em 0;
    font-weight: 600;
}

#registerForm .form-control {
    margin-bottom: 1em;
}

.details-page-details {
    font-size: 16px;
    color: #0c1b33 !important;
    overflow-wrap: break-word;
}

.leaderboard {
    background-color: #FEF4ED;
    color: #353c8b !important;
    border-radius: 19px;
    padding: 2em;
    margin-bottom: 2em;
}

.launch-product-editor:hover {
    cursor: pointer;
}

.mobile-table-controller {
    padding-bottom: 2em;
}


.share-button {
    padding: 0;
}


#messageBanner {
    background: rgb(53 60 139 / 90%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5em;
    font-weight: 600;
    color: #fff;
    z-index: 9999;
    display: none;
}

    #messageBanner a {
        color: #fff;
    }


.footer {
    background: #fef4ed;
    padding: 1em;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 1em;
}

.fundraiser-details {
    margin-top: 3em;
    border-bottom: 1px solid #DADEF0;
    margin-left: 1em;
    margin-right: .5em;
    margin-bottom: 1em;
    padding-bottom: .5em;
}

    .fundraiser-details .nav-link {
        background-color: transparent !important;
        border-radius: 0px;
    }

        .fundraiser-details .nav-link p {
            font-weight: 700;
            color: #0C1B33 !important;
            padding-bottom: 2em;
            padding-left: 2em;
            padding-top: 1em;
            text-align: left;
            margin-right: 2em;
            border: 1px solid #dadef0;
        }

        .fundraiser-details .nav-link.active p {
            border-radius: 14px;
            background-color: #f2f3fd;
            color: #353c8b !important;
            border: 1px solid #8286ed !important;
        }


.view-supplier-edit-badge {
    background: #8286ed;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
}


.fundraiser-roster-code-block {
    max-width: 315px;
    margin-bottom: 2em;
    text-align: center;
    margin: 0 auto 2em auto;
}


.password-req {
    font-size: .8em;
    clear: both;
    width: 100%;
    display: block;
    margin-top: 1em;
}

.splr-appr-bnr .approved-fundraisers-block {
    background: #FFFFFF;
    border-radius: 19px;
    color: #3a3737;
    height: 100%;
    margin: 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.splr-appr-bnr .bnr-wrapper {
    background-color: var(--org-bnr-wrapper-bak);
    padding: .5% 1%;
    opacity: 1;
    border-radius: 7px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.splr-appr-bnr .bnr-content {
    display: flex;
    font-size: calc(14px + .05vw);
    color: var(--org-notif-bnr-txt);
    align-items: flex-start;
}

.splr-appr-bnr .bnr-text-content {
    margin-bottom: 0;
    margin-left: 5px;
}

.splr-appr-bnr span.bolded-bnr {
    font-weight: 700;
}

.splr-appr-bnr .bnr-icon {
    color: var(--org-notif-bnr-txt);
    padding-right: 1%;
    font-size: calc(20px + .15vw);
    flex-grow: 0;
}

.splr-appr-bnr .bnr-button {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.splr-appr-bnr button {
    background-color: var(--org-notif-bnr-txt);
    color: #ffffff;
    border-radius: 30px;
    padding: 1.5% 5%;
    font-size: calc(12.5px + .05vw);
    font-weight: 700;
}

.splr-appr-bnr button:hover {
    background-color: var(--admin-role);
    color: #ffffff;
}


.supplier-logo-prods {
    width: 114px !important;
    background: #dadef0;
    padding: 1em;
    border-radius: 1em;
}


    .supplier-logo-prods img {
        width: 100%;
    }


.fundraiser-details div,
.fundraiser-tab-details div {
    height: 100%;
}

.fundraiser-details .nav-link {
    padding-left: 0;
}

    .fundraiser-details .nav-link p {
        margin: 0;
        margin-right: 1em;
        height: 100%;
    }

.fundraiser-tab-details div:last-of-type,
.fundraiser-details div:last-of-type {
    padding-right: 0;
}

.fundraiser-tab-details:last-of-type p {
    margin-right: 0;
}


.icon-edit-leaderboard select {
    font-size: 12px;
    color: black;
    background-color: transparent;
    border: none;
    text-decoration: underline;
    width: auto;
    /* margin-left: 2em; */
    margin-right: 0;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1em;
}


.dataTables_scrollBody tr:hover td, .dataTables_scrollBody tr:hover .sorting_1 {
    background-color: #dadef0 !important;
}

.request-fundraiser-col {
    width: 100%;
    padding: 0 2em;
}

.identity-right-side {
    align-items: center;
    display: flex;
}

.orgsignup-left-side {
    /*align-items: center;*/
    justify-content: center;
    display: flex;
}

.outofstock.col-sm {
display:none;
}

.btn-copy-link svg {
    margin-right: 0;
}

.org-logo {
    max-width: 200px;
}

.Logo {
    max-width: 200px;
    max-height: 200px;
}


@media print {
    .dashboard-header, .dashboard-container, .fundraiser-details, #side-bar, .navbar, .side-bar, .breadcrumbs {
        display: none !important;
    }
    .custom-padding {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    #contentToPrint {
        display: block !important;
        height: 90vh !important;
        max-height: 100% !important;
        max-width: 95vw !important;
    }    
}

@media screen and (max-width:1900px) {
    .dataTables_wrapper .dataTables_filter input {
        /*margin-right:5em;*/
        margin-left: 0;
    }

    .catalogtable {
        /*overflow-x:scroll !important;*/
    }
    .icon-title-section.row {
        width: 400px !important;
    }
}

@media screen and (max-width: 1800px) {
    .import-directions-row {
        margin-right: 4em !important;
    }
}

@media screen and (max-width: 1530px) {
    .user-header {
        width: 40%;
    }
}

@media screen and (max-width: 1156px) {

    /* .dropdown-menu.notifications.show {
        position: absolute;
        top: 55px;
        left: -3em;
    }      */

    .fundraiser-managment-title {
        width: 100%;
        font-size: 28px !important;
    }

        .fundraiser-managment-title h1 {
            font-size: 28px !important;
        }

    .navbar-nav.full-screen-top-nav.notif-initials {
        margin-right: 30px;
    }


    #table_id_filter {
        width: 100%;
        margin: 0;
    }
}

@media screen and (max-width: 1300px) {
    .import-directions-row {
        margin-right: 2em !important;
    }

    .user-header {
        width: 50%;
    }

    .custom-padding {
        padding: 0;
        width: calc(100% - 340px);
        margin-left: 330px;
    }


    .footer.custom-padding {
        padding: 1em;
    }
    .site-logo {
        width: 260px;
    }

    #side-bar {
        width: 320px !important;
        border-right: solid #dadef0 2px;
    }

    .goals-title {
        font-size: 9px !important;
    }

    .inner-container .dashboard-container .column-header,
    .inner-container .dashboard-container .column-content {
        margin: 0px;
    }

    .dashboard-column-headers {
        font-size: 13px;
        min-height: 40px;
        margin-bottom: 1em;
    }
       
}

.request-fundraiser-col {
    padding-left: 20%;
    padding-right: 20%;
}


.btn.request{
    background-color: #8286ed!important;
    color: #fff!important;
font-weight:600;
    margin-right: 2em;
    animation: animate-pulse 3s linear infinite;
    width: auto;
}

.seller-credit-box {
    background-color: #f1f2ff;
    border-radius: 9px;
    padding: 1em;
    width: 100%;
    display: block;
    margin-bottom: 1em;
    animation: animate-pulse 3s linear infinite;
}

.seller-credit-box select {
    width: 100%;
    font-size: 1.125em;
}

    .seller-credit-box .tag-multiple-seller {
        font-size: 1.125em;
        font-weight: 600;
        color: #353c8b;
    }

@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(142,145,238,0.7), 0 0 0 0 rgba(142,145,238,0.7);
    }

    40% {
        box-shadow: 0 0 0 10px rgba(142,145,238,0.0), 0 0 0 0 rgba(142,145,238,0.7);
    }

    80% {
        box-shadow: 0 0 0 10px rgba(142,145,238,0.0), 0 0 0 10px rgba(142,145,238,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(142,145,238,0.0), 0 0 0 10px rgba(142,145,238,0);
    }
}


@media screen and (max-width: 1205px) {
    .navbar-nav.full-screen-top-nav.notif-initials {
        margin-right: 20px;
    }

    .dataTables_filter {
        width: 50%;
    }

    .site-logo {
        width: 200px;
    }

    #side-bar {
        width: 275px !important;
    }


    .custom-padding {
        margin-left: 275px;
        width: calc(100% - 275px);
    }

    .fund-share-banner {
        display: flex;
    }
}

@media screen and (max-width: 1175px) {
    .navbar-nav.full-screen-top-nav.notif-initials {
        margin-right: 0 !important;
    }

    .product-preview-card-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: auto;
    }
}

@media screen and (max-width: 1115px) {

    .user-header {
        width: 60%;
    }

    .add-user-button {
        width: 25%;
    }
}

@media screen and (max-width: 1090px) {
    .navbar-nav.full-screen-top-nav.notif-initials {
        margin-right: 40px !important;
    }

    .dataTables_filter {
        width: 50%;
        margin-right: 40px;
    }
}


@media screen and (max-width: 1050px) {
    .navbar-nav.full-screen-top-nav.notif-initials {
        margin-right: 60px;
        flex-direction: initial
    }
}

@media screen and (max-width: 990px) {


    .splr-appr-bnr .bnr-content i.bnr-icon {
        margin-top: .5%;
    }

    .splr-appr-bnr .bnr-text-content {
        margin-left: 3%;
    }

    .icon-title-section {
        display: flex;
        flex-wrap: nowrap;
    }


    .request-fundraiser-form {
        padding-left: 0;
    }    

   .identity-right-side {
        position: relative !important;

   }
    .details-section, .details-section-margin-left {
        margin-left: 0 !important;
    }

    .mobile-logo {
        display: block;
        max-width: 180px;
        margin-left: 2em;
    }

    .sidebar-fullscreen {
        display: none !important;
    }

    .full-screen-top-nav.notif-initials {
        display: contents;
    }

    .full-screen-top-nav-welcome {
        display: none !important;
    }

    .custom-padding {
        width: 100%;
    }

    .footer.custom-padding {
        padding: 1em;
    }

    .footer-text-logo {
        margin-right: 0;
        margin-bottom: 1em;
    }

    .navbar.navbar-expand-lg .container-fluid {
        justify-content: end !important;
    }

    .account-management {
        width: 330px;
        margin: 1em;
    }

    .logout {
        margin-left: 1em;
    }

    .navbar.navbar-expand-lg.navbar-toggleable-lg {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

        .navbar.navbar-expand-lg.navbar-toggleable-lg .container-fluid {
            /*      padding-left: 16px !important;
        padding-right: 16px !important;*/
        }

            .navbar.navbar-expand-lg.navbar-toggleable-lg .container-fluid button.navbar-toggler {
                margin-right: 16px;
            }


        .navbar-collapse.full-screen-nav.collapse.show {
            box-shadow: 1px 1px 2px #dadef0;
            max-width: 100%;
        }

        .navbar-collapse {
            margin-top: 1.5em;
        }

        .custom-padding {
            margin-left: 0;
        }


        .card-grid {
            width: 93vw !important;
        }

        .pagination-item-count {
            margin-top: -2em;
        }

        .dash-right-side.col-xl-3 {
            width: 100%;
        }

        .icon-title-section.row .col-div-icon{
            padding-left:0px !important;
            margin-left:-10px !important;
        }

    .navbar-collapse {
        margin-top: 1.5em;
    }

    .custom-padding {
        margin-left: 0;
    }


    .card-grid {
        width: 93vw !important;
    }

    .pagination-item-count {
        margin-top: -2em;
    }

    .dash-right-side.col-xl-3 {
        width: 100%;
    }


    datalist {
        z-index: 999;
        margin-top: 2.5em!important;
    }


    }


@media screen and (min-width: 991px) {

    .collapse.navbar-collapse.full-screen-nav {
        display: none !important;
    }

    .orgsignup-left-side {
        justify-content: center;
        display: flex;
        position: absolute;
        top: 0;
        bottom: 0;
        align-items: center;
    }

}

@media screen and (max-width:880px) {
    .add-sale {
        font-size: 12px !important;
        width: 125px !important;
    }
}

@media screen and (max-width: 795px) {

    .product-name {
        padding: 0 1em;
    }

    table {
        font-size: .9em;
    }

    .import-btn-form {
        /*margin-top: 4em;  20221018
    */
        margin-bottom: 1em;
    }
}

@media screen and (max-width: 768px) {

    .fundraiser-details .nav-link {
        padding-left: 1em;
    }
    .splr-appr-bnr .bnr-wrapper {
        flex-direction: column;
        padding: 2% 6%;
        align-items: flex-start;
    }

    .splr-appr-bnr .bnr-button {
        justify-content: flex-start;
        padding: 2% 2%;
        margin-left: 1%;
    }

    .splr-appr-bnr .bnr-content i.bnr-icon {
        margin-left: -8%;
        margin-top: 1%;
    }

    .splr-appr-bnr .bnr-content {
        align-items: flex-start;
    }

    .splr-appr-bnr .bnr-text-content {
        margin-left: 3%;
    }

    .unselected {
        border: none;
        background-color: #353c8b;
        box-shadow: none;
        color: #fff;
        font-size: 11px;
        border-radius: 50%;
        padding: 1em;
        line-height: 1;
    }

        .unselected .fa-pencil {
            display: none;
        }

    .selected {
        border: none;
        background-color: transparent;
        box-shadow: none;
        color: #8286ed;
        font-size: 15px;
        border-radius: 1em;
        padding: 1em 0.5em;
        line-height: 1;
    }

        .selected .fa-plus {
            display: none;
        }



    .product-name .fa-circle-info {
        color: #8286ED;
    }

    .fundraiser-logo-block {
        margin-bottom: 1em !important;
    }

    .name-role .role p {
        color: #000;
    }

    .page-title h1 {
        margin: 1em 0 !important;
        text-align: center;
    }

    .fundraisersort-code {
        margin: 1em auto;
    }

    .dashtable-title {
        text-align: center;
    }

    .reports-list-item {
        flex-direction: column;
    }

    .card-info {
        margin-top: 0.5em !important;
    }

    .dashboard-container {
        margin-top: 0;
    }

    .dashViewAllLink {
        margin-left: 1em;
    }

    .dashboard-header {
        display: flex;
        justify-content: center;
        /* margin: 1em 0; */
        text-align: center;
        flex-direction: column-reverse;
    }

    .fundy-details-header {
        display:block !important;

    }

    .fundy-details-header span{
        margin-left:0em !important;
    }

    .fundy-details-header .btn-group-lg.ms-5{
        margin-left:0 !important;
        margin-top:1em;
    }

        .dataTables_paginate.paging_simple_numbers {
            margin-right: 0px;
        }

    .fundraiser-details {
        border-bottom: 1px solid #DADEF0;
        margin-left: 1em;
        background: #F2F3FD;
        flex-direction: row;
        margin: 1em -2em !important;
        flex-wrap: wrap;
        padding: 2em 0;
    }



    .nav-link div {
        border: 1px solid #54466e !important;
        background: transparent;
    }

    .nav-link.active {
        background-color: transparent !important;
    }

        .nav-link.active, .nav-link.active div {
            border-radius: 1em;
        }

    .fundraiser-details .nav-link.active p {
        border-radius: 1em !important;
        background-color: #353c8b !important;
        color: #fff !important;
        border: 1px solid #dadef0;
        text-align: center;
    }

    .fundraiser-details .nav-link p {
        font-weight: 700;
        color: #0C1B33 !important;
        text-align: left;
        margin-bottom: 0;
        padding: 1em !important;
        margin: 0em !important;
        border: 1px solid #8286ed !important;
        text-align: center !important;
    }


    .fundraiser-details .nav-link {
        flex-basis: unset;
        width: 50%;
        background-color: transparent !important;
    }

        .fundraiser-details .nav-link,
        .fundraiser-details .nav-link p {
            border: 0 !important;
        }

    .account-detail-holder .nav-pills {
        width: 100% !important;
    }
}

@media screen and (max-width: 640px) {


    .fundraiser-details .nav-link p {
        padding: 1.25em 0.8em !important;
        font-size: .8em;
    }

    .product-name {
        font-size: 1em;
        padding: 0 0.5em;
    }

    .selling-price {
        font-size: 1em;
        width: 90px;
    }

    .product-block .product-select-image {
        min-width: 31%;
        height: 100%;
    }

    .sg-price label, .og-price label, .profit-amount label {
        font-size: .8em;
    }

    .sg-price, .og-price, .profit-amount {
        font-size: 1em;
    }
    /*body {
        background: url(/images/R-Logo.png);
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: 24px 95%!important;
        background-size: 6%!important;
    } */
    .navbar .account-management {
        /* margin-left: 2em !important; */
        max-width: 100% !important;
        width: 315px;
        margin: 1em auto;
        border-radius: 15px;
        background: #dadef0;
        border: solid 1px #dadef0;
    }

    .search-bar {
        width: 100%;
    }

    .page-title h1 {
        margin: 1em 0 !important;
    }

    .card-grid-page-container {
        margin-left: 0px !important;
    }

    .dashboard-container .right-side .card {
        margin: 0 !important;
        margin-bottom: 2em !important;
    }


    .dataTables_filter {
        margin-left: auto;
        margin-right: auto;
        width: 80%
    }

    .user-header {
        width: 100%;
    }

    /*.col-5.add-user-button{
        margin-top:3em;
        margin-left:2em;
    } */
    .responsive-table {
        overflow-x: auto;
    }


    .fundraiser-add-button {
        margin: 1em auto;
    }

    .card-content, .card-grid, .card {
        width: 100% !important;
    }

    .noresult {
        width: 100% !important; /* width:280px!important; */
    }
}

@media screen and (max-width:530px) {
    .supplier-logo-prods {
        width: 90px !important;
        margin-left: auto !important;
    }

    .prod-select-title {
        font-size: 28px !important;
    }
}

@media screen and (max-width: 480px) {

    .login-submit {
    width:100%!important;
    }

    .splr-appr-bnr .bnr-wrapper {
        flex-direction: column;
        padding: 4% 7%;
        align-items: flex-start;
    }

    .splr-appr-bnr .bnr-button {
        justify-content: flex-start;
        padding: 2% 2%;
        margin-left: 6%;
    }

    .splr-appr-bnr .bnr-content i.bnr-icon {
        margin-left: -8%;
        margin-top: 2%;
        padding-left: 2%;
    }

    span.share-link-i {
        width: 90px;
        height: 90px;
        margin: 5px;
    }

    .progress-milestone .r-icon {
        padding: 0.5em 0.75em;
    }

        .progress-milestone .r-icon img {
            width: 1em;
        }

        .progress-milestone .r-icon .fa-light {
            padding-left: 0;
            font-size: 1em;
            height: auto;
        }

    .icon-bubble-icon {
        font-size: 2em;
    }


    .search-bar {
        width: 100%;
    }

    .navbar .account-management {
        width: 305px;
    }

    .dropdown-menu.notifications.show,
    .dropdown-menu.dropdown-account.show {
        position: fixed;
        top: 4.5em;
        left: 0;
        width: 100% !important;
    }

    h1 {
        font-size: 1.25em;
        line-height: 1.5em;
    }

    .mobile-logo {
        max-width: 115px;
        margin-left: 1em;
    }


    .bell-notif-button .fa-bell {
        color: #353c8b;
        font-size: .5em;
        margin: auto;
    }

    .supplier-store {
        font-size: 1em;
        width: 35px;
        height: 35px;
    }

    .icon-user-initials {
        width: 35px;
        height: 35px;
    }


    .navbar.navbar-expand-lg.navbar-toggleable-lg .container-fluid button.navbar-toggler {
        margin-right: 0;
    }

    .bell-notif-button .fa-2x {
        background-color: #fef4ed;
        border-radius: 17px;
        height: 35px;
        width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bell-notif-button .fa-layers {
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .user-header {
        font-size: 28px !important;
    }
}



@media screen and (max-width: 380px) {

    .bell-notif-button .fa-bell {
        font-size: .5em;
    }

    .supplier-store {
        font-size: .5em;
    }

    .mobile-logo {
        max-width: 100px;
        margin-left: 1em;
    }

    .status-badge {
        margin-left: 15px !important;
    }

    .card .dropdown {
        margin-left: 0px !important;
    }
}
